UNPKG

material-you-react

Version:

Material You: Material You (M3) Design system and its components for simple integration with Next.Js or other react-based frameworks

10 lines (9 loc) 290 B
import React from "react"; interface TabContextType { activeTabId: string | null; setActiveTabId: (id: string) => void; requiredWidth: string; } export declare const TabContext: React.Context<TabContextType>; export declare const useTabContext: () => TabContextType; export {};