Files
AFFiNE-Mirror/packages/component/src/ui/table/table-row.tsx
2023-05-08 17:37:07 -05:00

12 lines
316 B
TypeScript

import type { HTMLAttributes, PropsWithChildren } from 'react';
import { StyledTableRow } from './styles';
export const TableRow = ({
children,
...props
}: PropsWithChildren<HTMLAttributes<HTMLTableRowElement>>) => {
return <StyledTableRow {...props}>{children}</StyledTableRow>;
};
export default TableRow;