import type { GetProps } from '@tamagui/web' import { styled } from '@tamagui/web' import { SizableText } from './SizableText' export const Paragraph = styled(SizableText, { name: 'Paragraph', render: 'p', userSelect: 'auto', color: '$color', size: '$true', whiteSpace: 'normal', }) export type ParagraphProps = GetProps