UNPKG

@material-tailwind/react

Version:

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

17 lines 556 B
import React from "react"; import type { contextValue, children } from "../../types/components/menu"; export interface MenuContextProviderProps { value: contextValue; children: children; } export declare const MenuContext: React.Context<contextValue>; export declare function useMenu(): contextValue; export declare const MenuContextProvider: { ({ value, children }: MenuContextProviderProps): JSX.Element; prototypes: { value: any; children: any; }; displayName: string; }; //# sourceMappingURL=MenuContext.d.ts.map