creates video voice memos from audio clips; with bluesky integration.
trill.ptr.pet
1import { ark } from '@ark-ui/solid'
2import type { ComponentProps } from 'solid-js'
3import { styled } from 'styled-system/jsx'
4import { type ButtonVariantProps, button } from 'styled-system/recipes'
5
6export type IconButtonProps = ComponentProps<typeof IconButton>
7export const IconButton = styled(ark.button, button, {
8 defaultProps: { px: '0' } as ButtonVariantProps,
9})