UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 336 B
import type { HtmlIngredientProps } from '../types.js'; export interface TimePickerLabelProps extends HtmlIngredientProps<'label', HTMLLabelElement> { } declare const TimePickerLabel: import("svelte").Component<TimePickerLabelProps, {}, "ref">; type TimePickerLabel = ReturnType<typeof TimePickerLabel>; export default TimePickerLabel;