UNPKG

@material-tailwind/react

Version:

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

22 lines 875 B
import type { ReactNode } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Button and IconButton component. */ export type variant = "filled" | "outlined" | "gradient" | "text"; export type size = "sm" | "md" | "lg"; export type color = "white" | "black" | colors; export type fullWidth = boolean; export type ripple = boolean; export type className = string; export type children = ReactNode; export type loading = boolean; export declare const propTypesVariant: any; export declare const propTypesSize: any; export declare const propTypesColor: any; export declare const propTypesFullWidth: any; export declare const propTypesRipple: any; export declare const propTypesClassName: any; export declare const propTypesChildren: any; export declare const propTypesLoading: any; //# sourceMappingURL=button.d.ts.map