react-components-design-system
Version:
React UI component for design system FIS ES PB5
17 lines (16 loc) • 584 B
TypeScript
import type { TableProps } from "antd/lib/table";
import "./StandardTable.scss";
export interface StandardTableCustomProps extends TableProps<any> {
/**Option pass id of table */
idContainer?: string;
/**Table is draggable */
isDragable?: boolean;
/**Used to change style table */
className?: string;
/**Show sorter tooltip */
showSorterTooltip?: boolean;
/**Use to resize column*/
colResizable?: boolean;
}
declare function StandardTable(props: StandardTableCustomProps): import("react/jsx-runtime").JSX.Element;
export default StandardTable;