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.

22 lines (21 loc) 691 B
import { SvelteComponentTyped } from "svelte"; import type { ComponentProps } from 'svelte'; import Switch from './Switch.svelte'; declare const __propDef: { props: { [x: string]: any; classes?: ({ icon?: string; } & ComponentProps<Switch>["classes"]) | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ThemeSwitchProps = typeof __propDef.props; export type ThemeSwitchEvents = typeof __propDef.events; export type ThemeSwitchSlots = typeof __propDef.slots; export default class ThemeSwitch extends SvelteComponentTyped<ThemeSwitchProps, ThemeSwitchEvents, ThemeSwitchSlots> { } export {};