@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
28 lines (27 loc) • 638 B
TypeScript
import { TableProps as MaterialTableProps } from '@material-ui/core/Table/Table';
export interface ITableProps extends MaterialTableProps {
/**
* Set dividers for `Table`.
*
* If `true`, `Table` will be rendered with dividers.
*
* @optional
*/
dividers?: boolean;
/**
* Set rounded borders for `Table`.
*
* If `true`, `Table` will be rendered with rounded borders.
*
* @optional
*/
rounded?: boolean;
/**
* Set stripes for `Table`.
*
* If `true`, `Table` will be rendered with stripes.
*
* @optional
*/
striped?: boolean;
}