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