UNPKG

@material-tailwind/react

Version:

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

20 lines 794 B
import type { ReactNode } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Card, CardHeader, CardBody and CardFooter components. */ export type variant = "filled" | "gradient"; export type color = "transparent" | "white" | colors; export type shadow = boolean; export type floated = boolean; export type divider = boolean; export type className = string; export type children = ReactNode; export declare const propTypesVariant: any; export declare const propTypesColor: any; export declare const propTypesShadow: any; export declare const propTypesFloated: any; export declare const propTypesDivider: any; export declare const propTypesClassName: any; export declare const propTypesChildren: any; //# sourceMappingURL=card.d.ts.map