UNPKG

sate-lib

Version:

A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.

11 lines 719 B
import * as RadixTabs from "@radix-ui/react-tabs"; type Size = "medium" | "small"; interface TabsRootProps extends RadixTabs.TabsProps { size?: Size; } export declare function TabsRoot({ className, size, ...props }: TabsRootProps): import("react/jsx-runtime").JSX.Element; export declare function TabsList({ className, ...props }: RadixTabs.TabsListProps): import("react/jsx-runtime").JSX.Element; export declare function TabsTrigger({ className, children, ...props }: RadixTabs.TabsTriggerProps): import("react/jsx-runtime").JSX.Element; export declare function TabsContent({ className, ...props }: RadixTabs.TabsContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=tabs.d.ts.map