UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

9 lines (8 loc) 294 B
import { PolymorphicProps } from '../../theme/types'; import { TAG_NAMES } from '.'; export interface TextOptions { lines?: number; variant?: keyof typeof TAG_NAMES; withDash?: boolean; } export type TextProps<T extends React.ElementType = 'p'> = PolymorphicProps<T> & TextOptions;