mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
12 lines
334 B
TypeScript
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} />;
|
|
}
|