import * as React from 'react';

import s from './TableRow.module.scss';
import classNames from 'classnames/bind';

const cn = classNames.bind(s);

interface ITableRowProps {
  children: React.ReactNode;
}

const TableRow = ({ children, ...trProps }: ITableRowProps) => {
  return (
    <tr className={s.tableRow} {...trProps}>
      {children}
    </tr>
  );
};

export default TableRow;
