creates video voice memos from audio clips; with bluesky integration. trill.ptr.pet
1import type { ComponentProps, JSX } from 'solid-js' 2import { styled } from 'styled-system/jsx' 3import { type TextVariantProps, text } from 'styled-system/recipes' 4import type { StyledComponent } from 'styled-system/types' 5 6type ParagraphProps = TextVariantProps & { as?: JSX.Element } 7 8export type TextProps = ComponentProps<typeof Text> 9export const Text = styled('p', text) as StyledComponent<'p', ParagraphProps>