UNPKG

@senka-ai/ui

Version:

A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns

16 lines 451 B
import type { BaseProps } from '../../type/component'; interface Tab { id: string; label: string; icon?: any; disabled?: boolean; } interface Props extends BaseProps { tabs: Tab[]; activeTab?: string; onTabChange?: (tabId: string) => void; } declare const TabBar: import("svelte").Component<Props, {}, "activeTab">; type TabBar = ReturnType<typeof TabBar>; export default TabBar; //# sourceMappingURL=TabBar.svelte.d.ts.map