1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00
Files
Radarr/frontend/src/Components/Table/Cells/TableRowCell.tsx
Mark McDowall 5efefd804b Upgrade @typescript-eslint packages to 8.181.1
(cherry picked from commit ed10b63fa0c161cac7e0a2084e53785ab1798208)
2024-12-17 13:15:06 +02:00

12 lines
321 B
TypeScript

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