We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94bfbd7 commit bb6c651Copy full SHA for bb6c651
2 files changed
packages/react-table/src/components/Table/Table.tsx
@@ -96,6 +96,7 @@ const TableBase: React.FunctionComponent<TableProps> = ({
96
variant,
97
borders = true,
98
isStickyHeader = false,
99
+ isPlain = false,
100
gridBreakPoint = TableGridBreakpoint.gridMd,
101
'aria-label': ariaLabel,
102
role = 'grid',
packages/react-table/src/components/Table/examples/TablePlain.tsx
@@ -25,7 +25,7 @@ export const TablePlain: React.FunctionComponent = () => {
25
};
26
27
return (
28
- <Table aria-label="Plain table" isPlain>
+ <Table aria-label="Plain table" isPlain={true}>
29
<Caption>Simple table with plain styling using composable components</Caption>
30
<Thead>
31
<Tr>
0 commit comments