UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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