UNPKG

@material-tailwind/react

Version:

@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.

18 lines 785 B
import type { ReactNode, ElementType } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Typography component. */ export type variant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "lead" | "paragraph" | "small"; export type color = "inherit" | "current" | "black" | "white" | colors; export type asType = ElementType; export type textGradient = boolean; export type className = string; export type children = ReactNode; export declare const propTypesVariant: any; export declare const propTypesColor: any; export declare const propTypesAs: any; export declare const propTypesTextGradient: any; export declare const propTypesClassName: any; export declare const propTypesChildren: any; //# sourceMappingURL=typography.d.ts.map