@material-tailwind/react
Version:
@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.
21 lines • 723 B
TypeScript
import type { colors } from "../generic";
/**
* This file contains the types and prop-types for Progress component.
*/
export type variant = "filled" | "gradient";
export type color = colors;
export type size = "sm" | "md" | "lg";
export type value = number;
export type label = string | boolean;
export type barProps = {
[key: string]: any;
};
export type className = string;
export declare const propTypesVariant: any;
export declare const propTypesColor: any;
export declare const propTypesSize: any;
export declare const propTypesValue: any;
export declare const propTypesLabel: any;
export declare const propTypesBarProps: any;
export declare const propTypesClassName: any;
//# sourceMappingURL=progress.d.ts.map