UNPKG

claritykit-svelte

Version:

A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility

22 lines 770 B
type $$ComponentProps = { value: string; disabled?: boolean; class?: string; children?: import('svelte').Snippet; }; /** * TabsTrigger * * Tab trigger (button) component for use within TabsList. * This is an alias component that wraps TabButton to maintain compatibility with BMS components. * * @prop {string} value - Unique identifier for this tab (equivalent to tabId) * @prop {boolean} [disabled=false] - Whether this tab is disabled * @prop {string} [className] - Additional CSS classes * * @slot default - Tab trigger content */ declare const TabsTrigger: import("svelte").Component<$$ComponentProps, {}, "">; type TabsTrigger = ReturnType<typeof TabsTrigger>; export default TabsTrigger; //# sourceMappingURL=TabsTrigger.svelte.d.ts.map