UNPKG

@aliretail/react-materials-components

Version:
15 lines (14 loc) 343 B
import * as React from 'react'; import { NumberPickerProps } from '@alifd/next/types/number-picker'; declare type TProps = NumberPickerProps & { /** * 前置文案 */ beforeLabel: string; /** * 单位文案 */ unitLabel: string; }; declare const NumberPicker: React.FC<TProps>; export default NumberPicker;