@material-tailwind/react
Version:
@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.
30 lines • 830 B
TypeScript
import cardFilled from "./cardFilled";
import cardGradient from "./cardGradient";
import type { variant, color, shadow, floated, className } from "../../../types/components/card";
export interface CardHeaderStylesType {
defaultProps?: {
variant?: variant;
color?: color;
shadow?: shadow;
floated?: floated;
className?: className;
};
valid?: {
variants?: string[];
colors?: string[];
};
styles?: {
base?: {
initial?: object;
shadow?: object;
floated?: object;
};
variants?: {
filled?: typeof cardFilled;
gradient?: typeof cardGradient;
};
};
}
declare const cardHeader: CardHeaderStylesType;
export default cardHeader;
//# sourceMappingURL=cardHeader.d.ts.map