@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
8 lines (7 loc) • 413 B
TypeScript
import { TypographyProps } from "@material-ui/core/Typography";
export interface TextProps extends Omit<TypographyProps, "variant"> {
variant?: "caption1" | "caption2" | "small1" | "small2" | "label" | TypographyProps["variant"];
customStyle?: () => string;
}
declare const _default: import("styled-components").StyledComponent<(props: TextProps) => JSX.Element, any, {}, never>;
export default _default;