import clsx from 'clsx' import React from 'react' export const Row = React.forwardRef(function Row( props: JSX.IntrinsicElements['div'], ref: React.Ref ) { const { children, className, ...rest } = props return (
{children}
) })