mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
12 lines
321 B
TypeScript
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} />;
|
|
}
|