@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
16 lines (15 loc) • 510 B
TypeScript
import { Variants } from "./Typography.constants.js";
import { AllHTMLAttributes, ElementType, ReactNode } from "react";
//#region src/components/Typography/Typography.types.d.ts
interface TypographyProps extends AllHTMLAttributes<HTMLElement> {
children?: ReactNode;
element?: ElementType;
fullStyle?: boolean;
inlineStyle?: boolean;
variant?: `${Variants}`;
xs?: boolean;
disableClickTracking?: boolean;
}
//#endregion
export { TypographyProps };
//# sourceMappingURL=Typography.types.d.ts.map