import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import { label } from './Label.css' export interface LabelProps extends BoxProps {} export let Label = forwardRef(function Label( props: LabelProps, ref, ) { return })