@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
15 lines (14 loc) • 411 B
TypeScript
import { Theme } from "@material-ui/core";
import { TableCellProps } from "@material-ui/core/TableCell";
interface IHeaderProps extends TableCellProps {
alignment: string;
customStyle?: Function;
dataKey: string;
Header: any;
label: string;
sortable: boolean;
sortBy: string;
theme: Theme;
}
declare const _default: (props: IHeaderProps) => JSX.Element;
export default _default;