UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 514 B
import type { TableCellProps, TableCellState } from '@zag-js/date-picker'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface DatePickerMonthTableCellProps extends Assign<HtmlIngredientProps<'td', HTMLTableCellElement, TableCellState>, TableCellProps> { } declare const DatePickerMonthTableCell: import("svelte").Component<DatePickerMonthTableCellProps, {}, "ref">; type DatePickerMonthTableCell = ReturnType<typeof DatePickerMonthTableCell>; export default DatePickerMonthTableCell;