UNPKG

@material-tailwind/react

Version:

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

14 lines 545 B
import type { ReactNode } from "react"; import type { colors } from "../generic"; /** * This file contains the types and prop-types for Timeline components. */ export type className = string; export type children = ReactNode; export type color = "white" | colors; export type variant = "filled" | "outlined" | "ghost" | "gradient"; export declare const propTypeClassName: any; export declare const propTypeChildren: any; export declare const propTypeColor: any; export declare const propTypeVariant: any; //# sourceMappingURL=timeline.d.ts.map