@project44-manifest/react
Version:
Manifest Design System react components
19 lines (16 loc) • 431 B
text/typescript
import type { CSS } from '@project44-manifest/react-styles';
export type TableRowElement = 'tr';
export interface TableRowProps {
/**
* Theme aware style object
*/
css?: CSS;
/**
* Handler called on mouse enter.
*/
onMouseEnter?: (event: React.MouseEvent<HTMLTableRowElement>) => void;
/**
* Handler called on mouse leave.
*/
onMouseLeave?: (event: React.MouseEvent<HTMLTableRowElement>) => void;
}