UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 476 B
import { ColumnProps } from '@zag-js/time-picker'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface TimePickerColumnBaseProps extends ColumnProps, PolymorphicProps { } export interface TimePickerColumnProps extends HTMLProps<'div'>, TimePickerColumnBaseProps { } export declare const TimePickerColumn: ForwardRefExoticComponent<TimePickerColumnProps & RefAttributes<HTMLDivElement>>;