geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
17 lines (16 loc) • 543 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import { TabsVariants } from './tabs.styles';
import { LucideIcon } from 'lucide-react';
export interface TabsProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof TabsVariants> {
defaultValue?: string;
value?: string;
tabList: {
label: string;
value: string;
icon?: string | LucideIcon;
}[];
onTabChange: (value: string) => void;
id?: string;
disabled?: boolean;
}
//# sourceMappingURL=tabs.types.d.ts.map