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
435 B
17 lines
435 B
import * as React from 'react';
|
|
export interface Unit {
|
|
label: React.ReactText;
|
|
value: number;
|
|
disabled: boolean;
|
|
}
|
|
export interface 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;
|