@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
24 lines (23 loc) • 740 B
TypeScript
/**
* MSKCC DSM 2021, 2023
*/
import PropTypes from 'prop-types';
import { ReactAttr } from '../../types/common';
export interface TableBodyProps extends ReactAttr<HTMLTableSectionElement> {
/**
* `polite` Adjust the notification behavior of screen readers
*/
'aria-live'?: 'polite' | 'assertive' | 'off';
}
declare const TableBody: {
({ children, className, ...rest }: TableBodyProps): JSX.Element;
propTypes: {
/**
* `polite` Adjust the notification behavior of screen readers
*/
'aria-live': PropTypes.Requireable<string>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
className: PropTypes.Requireable<string>;
};
};
export default TableBody;