We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9cb0d commit fc37ce6Copy full SHA for fc37ce6
packages/blade/src/components/Table/docs/BasicTable.stories.tsx
@@ -127,6 +127,16 @@ const TableTemplate: StoryFn<typeof TableComponent> = ({ ...args }) => {
127
onSelectionChange={console.log}
128
selectionType="multiple"
129
height="100%"
130
+ toolbar={
131
+ <TableToolbar title="Showing 1-10 [Items]" selectedTitle="Showing 1-10 [Items]">
132
+ <TableToolbarActions>
133
+ <Button variant="secondary" marginRight="spacing.2">
134
+ Export
135
+ </Button>
136
+ <Button>Refund</Button>
137
+ </TableToolbarActions>
138
+ </TableToolbar>
139
+ }
140
>
141
{(tableData) => (
142
<TableVirtulized
0 commit comments