@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
13 lines (12 loc) • 343 B
TypeScript
declare type CellProps = {
alignment: "inherit" | "left" | "center" | "right" | "justify" | undefined;
Cell: any;
cellData: any;
dataKey: string;
handleClick: (data: object) => void;
height?: number;
rowData: any;
rowIndex: number;
};
declare const Cell: (props: CellProps) => JSX.Element;
export default Cell;