@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
15 lines (12 loc) • 413 B
TypeScript
import { AllHTMLAttributes, ReactNode, ElementType } from 'react';
import { Variants } from './Typography.constants.js';
interface TypographyProps extends AllHTMLAttributes<HTMLElement> {
children?: ReactNode;
element?: ElementType;
fullStyle?: boolean;
inlineStyle?: boolean;
variant?: `${Variants}`;
xs?: boolean;
disableClickTracking?: boolean;
}
export type { TypographyProps };