UNPKG

@brizy/ui

Version:
16 lines (15 loc) 431 B
import { ResponsiveType, FontSizeType } from "./utils"; import { Color, FCC } from "../types"; export interface Props { code?: boolean; strong?: boolean; color?: Color; hoverColor?: Color; mark?: boolean; underline?: boolean; size?: FontSizeType | ResponsiveType<FontSizeType>; italic?: boolean; ellipsis?: boolean; onClick?: VoidFunction; } export declare const TypographyText: FCC<Props>;