mfg-ui-components
Version:
React UI library with reusable components
17 lines (16 loc) • 523 B
TypeScript
import "./Table.scss";
export interface Props {
cols: Array<any>;
data: Array<any>;
bordered?: boolean;
hoverable?: boolean;
striped?: boolean;
isDark?: boolean;
searchable?: boolean;
customClass?: string;
customId?: string;
tableCaption?: string;
sortable?: boolean;
}
declare const Table: ({ cols, data, bordered, hoverable, striped, isDark, searchable, customClass, customId, tableCaption, sortable, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Table;