1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/frontend/src/Components/Table/Cells/TableRowCell.tsx
T
2024-09-02 13:27:00 -07:00

12 lines
334 B
TypeScript

import React, { ComponentPropsWithoutRef } from 'react';
import styles from './TableRowCell.css';
export interface TableRowCellProps extends ComponentPropsWithoutRef<'td'> {}
export default function TableRowCell({
className = styles.cell,
...tdProps
}: TableRowCellProps) {
return <td className={className} {...tdProps} />;
}