UNPKG

@royyanbach-mhg-test/material-tailwind-react

Version:

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

25 lines 944 B
import type { ReactNode } from "react"; import type { animation } from "../generic"; /** * This file contains the types and prop-types for Tabs and TabsHeader, TabsBody, Tab, TabPanel, and TabsContext components. */ export type id = string; export type value = string | number; export type animate = animation; export type disabled = boolean; export type className = string; export type isInitial = boolean; export type orientation = "horizontal" | "vertical"; export type indicatorProps = { [key: string]: any; }; export type children = ReactNode; export declare const propTypesId: any; export declare const propTypesValue: any; export declare const propTypesAnimate: any; export declare const propTypesDisabled: any; export declare const propTypesClassName: any; export declare const propTypesOrientation: any; export declare const propTypesIndicator: any; export declare const propTypesChildren: any; //# sourceMappingURL=tabs.d.ts.map