import type { FC, ReactNode } from 'react'; import styles from './TableRowButton.module.css'; export interface TableRowButtonProps { onClick: () => void, children: ReactNode, thin?: boolean, } export const TableRowButton: FC = ({ onClick, children, thin }) => { return ( ); };