import * as React from 'react' import { theme } from '@latitude-data/client' interface Props extends React.HTMLAttributes {} const Row = React.forwardRef( ({ className, ...props }, ref) => (
), ) Row.displayName = 'Row' export default Row