UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 320 B
import type { HtmlIngredientProps } from '../types.js'; export interface SwitchControlProps extends HtmlIngredientProps<'div', HTMLDivElement> { } declare const SwitchControl: import("svelte").Component<SwitchControlProps, {}, "ref">; type SwitchControl = ReturnType<typeof SwitchControl>; export default SwitchControl;