UNPKG

ds-smart-ui

Version:

Smart UI is a React component library that helps you build accessible and responsive web applications.

20 lines (19 loc) 452 B
interface TabItem { label: string; description?: string; selectedTab: string; count?: number; disabled?: boolean; permissions?: boolean; icon?: React.ReactNode; } interface CardTabsProps { tabs: TabItem[]; selectedTab: string; onTabChange: (selectedTab: string) => void; className?: string; outlined?: boolean; id?: string; } declare const CardTabs: React.FC<CardTabsProps>; export default CardTabs;