UNPKG

claritykit-svelte

Version:

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

19 lines 570 B
type $$ComponentProps = { tabId: string; class?: string; children?: import('svelte').Snippet; }; /** * TabPanel * * Individual tab panel component for use within Tabs. * * @prop {string} tabId - Unique identifier for this panel (must match corresponding TabButton) * @prop {string} [className] - Additional CSS classes * * @slot default - Panel content */ declare const TabPanel: import("svelte").Component<$$ComponentProps, {}, "">; type TabPanel = ReturnType<typeof TabPanel>; export default TabPanel; //# sourceMappingURL=TabPanel.svelte.d.ts.map