UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

8 lines (7 loc) 277 B
import type { TabContentBaseProps } from '@ark-ui/svelte/tabs'; interface Props extends TabContentBaseProps { class?: string; } declare const TabContent: import("svelte").Component<Props, {}, "">; type TabContent = ReturnType<typeof TabContent>; export default TabContent;