@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 490 B
TypeScript
import { TableProps } from '@zag-js/date-picker';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface DatePickerTableBaseProps extends Pick<TableProps, 'columns'>, PolymorphicProps {
}
export interface DatePickerTableProps extends HTMLProps<'table'>, DatePickerTableBaseProps {
}
export declare const DatePickerTable: ForwardRefExoticComponent<DatePickerTableProps & RefAttributes<HTMLTableElement>>;