import clsx from 'clsx' import {ComponentPropsWithoutRef, forwardRef} from 'react' export const Row = forwardRef(function Row( props: ComponentPropsWithoutRef<'div'>, ref: React.Ref, ) { const {children, className, ...rest} = props return (
{children}
) })