@brizy/ui
Version:
React elements in Brizy style
16 lines (15 loc) • 431 B
TypeScript
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>;