UNPKG

@bytedance/mona-client-web

Version:

web for mona

14 lines (13 loc) 413 B
import React from 'react'; import { PickerData, ValueType } from '../Picker/type'; interface PickerCellProps { data: PickerData[]; itemHeight: number; wrapperHeight: number; selectedValue?: ValueType; onValueChange?: (value: ValueType) => any; onScrollChange?: (value: ValueType) => any; rows?: number; } declare const PickerCell: React.FC<PickerCellProps>; export default PickerCell;