@carbon/react
Version:
React components for the Carbon Design System
30 lines (29 loc) • 892 B
TypeScript
/**
* Copyright IBM Corp. 2016, 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
export interface TableToolbarProps extends React.HTMLAttributes<HTMLDivElement> {
/**
* Specify a label to be read by screen readers on the container node
* 'aria-label' of the TableToolbar component.
*/
['aria-label']?: string;
/**
* @deprecated please use `aria-label` instead.
* 'aria-label' of the TableToolbar component.
*/
ariaLabel?: string;
/**
* 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;