UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS

14 lines (11 loc) 380 B
import { AllHTMLAttributes, ReactNode, ElementType } from 'react'; import { Variants } from './Typography.constants.js'; interface TypographyProps extends AllHTMLAttributes<HTMLElement> { children?: ReactNode; element?: ElementType; inlineStyle?: boolean; emailVariant?: boolean; variant?: `${Variants}`; xs?: boolean; } export type { TypographyProps };