@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
30 lines (29 loc) • 771 B
TypeScript
/**
* MSKCC DSM 2021, 2023
*/
import PropTypes from 'prop-types';
import { ReactAttr } from '../../types/common';
export interface TableRowProps extends ReactAttr<HTMLTableRowElement> {
/**
* Specify an optional className to be applied to the container node
*/
className?: string;
/**
* Specify if the row is selected
*/
isSelected?: boolean;
}
declare const TableRow: {
(props: TableRowProps): JSX.Element;
propTypes: {
/**
* Specify an optional className to be applied to the container node
*/
className: PropTypes.Requireable<string>;
/**
* Specify if the row is selected
*/
isSelected: PropTypes.Requireable<boolean>;
};
};
export default TableRow;