@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
10 lines (9 loc) • 346 B
TypeScript
declare type DropdownMatrixProps = {
disabled: boolean;
matrix: any;
onOptionsUpdate?: Function;
onSelectionUpdate: Function;
selections: any[];
};
declare const DropdownMatrix: ({ matrix, selections, onSelectionUpdate, onOptionsUpdate, disabled, ...rest }: DropdownMatrixProps) => JSX.Element;
export default DropdownMatrix;