mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
12 lines
316 B
TypeScript
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;
|