UNPKG

@material-tailwind/react

Version:

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

23 lines 969 B
/// <reference types="react" /> import type { Placement } from "@floating-ui/dom"; import type { offsetType, dismissType, animation } from "../generic"; /** * This file contains the types and prop-types for SpeedDial, SpeedDialHandler and SpeedDialContent component. */ export type open = boolean; export type handler = React.Dispatch<React.SetStateAction<boolean>>; export type placement = Placement; export type offset = offsetType; export type dismiss = dismissType; export type children = React.ReactNode; export type animate = animation; export type className = string; export declare const propTypesOpen: any; export declare const propTypesHanlder: any; export declare const propTypesPlacement: any; export declare const propTypesOffset: any; export declare const propTypesDismiss: any; export declare const propTypesChildren: any; export declare const propTypesAnimate: any; export declare const propTypesClassName: any; //# sourceMappingURL=speedDial.d.ts.map