mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import React from 'react';
|
|
import styles from './VirtualTableRowCell.css';
|
|
|
|
export interface VirtualTableRowCellProps {
|
|
className?: string;
|
|
children?: string | React.ReactNode;
|
|
}
|
|
|
|
function VirtualTableRowCell({
|
|
className = styles.cell,
|
|
children,
|
|
}: VirtualTableRowCellProps) {
|
|
return <div className={className}>{children}</div>;
|
|
}
|
|
|
|
export default VirtualTableRowCell;
|