UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

17 lines (16 loc) 433 B
/** * MSKCC DSM 2021, 2023 */ import React from 'react'; export interface TableToolbarProps extends React.HTMLAttributes<HTMLDivElement> { /** * Pass in the children that will be rendered inside the TableToolbar */ children: React.ReactNode; /** * `lg` Change the row height of table */ size?: 'sm' | 'lg'; } declare const TableToolbar: React.FC<TableToolbarProps>; export default TableToolbar;