UNPKG

svelte-ux

Version:

A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.

36 lines (35 loc) 971 B
import { SvelteComponentTyped } from "svelte"; import type { ComponentProps } from 'svelte'; import Tab from './Tab.svelte'; declare const __propDef: { props: { [x: string]: any; value?: any; placement?: "top" | "bottom" | "left" | "right" | undefined; options?: { label: string; value: any; }[] | undefined; classes?: { root?: string; tabs?: string; tab?: ComponentProps<Tab>["classes"]; content?: string; } | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; content: { value: any; }; }; }; export type TabsProps = typeof __propDef.props; export type TabsEvents = typeof __propDef.events; export type TabsSlots = typeof __propDef.slots; export default class Tabs extends SvelteComponentTyped<TabsProps, TabsEvents, TabsSlots> { } export {};