UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

9 lines (8 loc) 237 B
import { default as React } from 'react'; import { Size } from './types'; type TabContextType = { size?: Size; }; export declare const TabContext: React.Context<TabContextType>; export declare function useTabSize(): Size; export {};