UNPKG

irradiant-svelte

Version:

Easily build sleek, minimalistic web apps with this easy to use and powerful svelte component library.

25 lines (20 loc) 432 B
/// <reference types="svelte" /> export interface TabsProps { /** * User defined classes * @default "" */ className?: string; /** * Disables all styling, allowing you to further customize this component * @default false */ styled?: boolean; } export default class Tabs { $$prop_def: TabsProps; $$slot_def: { default: {}; }; $on(eventname: string, cb: (event: Event) => void): () => void; }