UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 322 B
import type { HtmlIngredientProps } from '../types.js'; export interface CheckboxLabelProps extends HtmlIngredientProps<'span', HTMLSpanElement> { } declare const CheckboxLabel: import("svelte").Component<CheckboxLabelProps, {}, "ref">; type CheckboxLabel = ReturnType<typeof CheckboxLabel>; export default CheckboxLabel;