mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
23 lines
454 B
TypeScript
23 lines
454 B
TypeScript
import React from 'react';
|
|
import styles from './TableRow.css';
|
|
|
|
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
className?: string;
|
|
children?: React.ReactNode;
|
|
overlayContent?: boolean;
|
|
}
|
|
|
|
function TableRow({
|
|
className = styles.row,
|
|
children,
|
|
overlayContent,
|
|
...otherProps
|
|
}: TableRowProps) {
|
|
return (
|
|
<tr className={className} {...otherProps}>
|
|
{children}
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
export default TableRow;
|