UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 348 B
import type { HtmlIngredientProps } from '../types.js'; export interface SwitchHiddenInputProps extends HtmlIngredientProps<'input', HTMLInputElement> { } declare const SwitchHiddenInput: import("svelte").Component<SwitchHiddenInputProps, {}, "ref">; type SwitchHiddenInput = ReturnType<typeof SwitchHiddenInput>; export default SwitchHiddenInput;