import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import { link } from './Link.css' export interface LinkProps extends BoxProps {} export let Link = forwardRef(function Link(props, ref) { return })