UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 303 B
import * as switch_ from '@zag-js/switch'; export interface CreateSwitchProps extends Omit<switch_.Context, 'id' | 'dir' | 'getRootNode'> { id?: string; } export interface CreateSwitchReturn extends switch_.Api { } export declare function createSwitch(props: CreateSwitchProps): CreateSwitchReturn;