UNPKG

@project-jade-garden/bits-ui

Version:
25 lines (24 loc) 836 B
import { SVATraits } from 'jade-garden'; /** * **Date Field** * @description Enables users to input specific dates within a designated field. * @see [source](https://www.bits-ui.com/docs/components/date-field#api-reference) */ export declare const slots: readonly ["root", "input", "label", "segment"]; /** * **Date Field** * @description Enables users to input specific dates within a designated field. * @see [source](https://www.bits-ui.com/docs/components/date-field#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Date Field** * @description Enables users to input specific dates within a designated field. * @see [source](https://www.bits-ui.com/docs/components/date-field#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; input: {}; label: {}; segment: {}; }>;