UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 404 B
import type { HtmlIngredientProps } from '../types.js'; export interface TimePickerContentProps extends HtmlIngredientProps<'div', HTMLDivElement, never, Action> { } import type { Action } from 'svelte/action'; declare const TimePickerContent: import("svelte").Component<TimePickerContentProps, {}, "ref">; type TimePickerContent = ReturnType<typeof TimePickerContent>; export default TimePickerContent;