import * as React from 'react'; export type RowProps = Readonly< React.ComponentPropsWithoutRef<'table'> & { children: React.ReactNode; } >; export const Row = React.forwardRef( ({ children, style, ...props }, ref) => { return ( {children}
); }, ); Row.displayName = 'Row';