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.
17 lines • 487 B
TypeScript
type Size = "medium" | "small";
interface Option {
label: string;
value: string;
disabled?: boolean;
}
interface TabsProps {
className?: string;
size?: Size;
options: Option[];
defaultValue?: string;
onChange?: (value: string) => void;
ariaLabel?: string;
}
export declare function Tabs({ className, size, options, defaultValue, onChange, ariaLabel, }: TabsProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=tabs.d.ts.map