forked from pu428f3pz/InternshipProject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
447 B
17 lines
447 B
import * as React from 'react';
|
|
export declare type Unit = {
|
|
label: React.ReactText;
|
|
value: number;
|
|
disabled: boolean;
|
|
};
|
|
export declare type TimeUnitColumnProps = {
|
|
prefixCls?: string;
|
|
units?: Unit[];
|
|
value?: number;
|
|
active?: boolean;
|
|
hideDisabledOptions?: boolean;
|
|
onSelect?: (value: number) => void;
|
|
};
|
|
declare function TimeUnitColumn(props: TimeUnitColumnProps): JSX.Element;
|
|
export default TimeUnitColumn;
|