import classNames from 'classnames'; import { type CSSProperties, type FocusEventHandler, type FunctionComponent, type MouseEventHandler, type ReactNode, } from 'react'; import styles from './Table.module.scss'; interface Props { 'aria-label': string; children: ReactNode; className?: string; 'data-testid'?: string; highlighted: boolean; inactive: boolean; style?: CSSProperties; onBlur?: FocusEventHandler; onClick?: MouseEventHandler; onFocus?: FocusEventHandler; onMouseEnter?: MouseEventHandler; } export const Row: FunctionComponent = ({ 'aria-label': ariaLabel, children, className, 'data-testid': dataTestId, highlighted, inactive, style, onBlur, onClick, onFocus, onMouseEnter, }) => { return ( ); };