mochi-ui
Version:
Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.
19 lines (18 loc) • 415 B
TypeScript
import React from 'react';
type Props = {
value: number;
show: boolean;
toggleDrawer: () => void;
keys: any[];
domValues: string[];
domName: string;
onChange: (item: number | string) => void;
toggleValue?: () => void;
background: boolean;
disabled: boolean;
};
declare const Picker: {
(props: Props): React.JSX.Element;
defaultProps: Props;
};
export default Picker;