import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import { chip, base, primary } from './Chip.css' import cx from '../classnames' export interface ChipProps extends BoxProps { variant?: 'primary' | 'default' } export let Chip = forwardRef(function Chip( { variant = 'default', ...props }: ChipProps, ref, ) { return ( ) })