mochi-ui
Version:
Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.
15 lines (14 loc) • 388 B
TypeScript
import React from 'react';
type Props = {
keys: any[];
show: boolean;
close: () => void;
domValues: string[];
select: (value: number | string) => void;
selected: number;
parentRef: HTMLDivElement | null;
unSelectable?: boolean;
leftAlign?: boolean;
};
declare const SelectionDrawer: (props: Props) => React.JSX.Element;
export default SelectionDrawer;