UNPKG

@ark-ui/react

Version:

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

14 lines (13 loc) 598 B
import { TimePeriod } from '@zag-js/time-picker'; import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface CombinedCellProps { value: number | TimePeriod; } export interface TimePickerCellBaseProps extends CombinedCellProps, PolymorphicProps { } export interface TimePickerCellProps extends Assign<HTMLProps<'button'>, TimePickerCellBaseProps> { } export declare const TimePickerCell: ForwardRefExoticComponent<TimePickerCellProps & RefAttributes<HTMLButtonElement>>; export {};