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 757 B
import type { ReactNode } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Checkbox, Radio and Switch components. */ export type color = colors; export type label = ReactNode; export type icon = ReactNode; export type ripple = boolean; export type className = string; export type disabled = boolean; export type objectType = { [key: string]: any; }; export declare const propTypesColor: any; export declare const propTypesLabel: any; export declare const propTypesIcon: any; export declare const propTypesRipple: any; export declare const propTypesClassName: any; export declare const propTypesDisabled: any; export declare const propTypesObject: any; //# sourceMappingURL=checkbox.d.ts.map