UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 443 B
import type { CellProps } from '@zag-js/time-picker'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface TimePickerSecondCellProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement>, CellProps> { } declare const TimePickerSecondCell: import("svelte").Component<TimePickerSecondCellProps, {}, "ref">; type TimePickerSecondCell = ReturnType<typeof TimePickerSecondCell>; export default TimePickerSecondCell;