import React from 'react'; import { Base, SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { common, CommonSystemProps, forwardSystemProps } from './system-props'; const defaultElement = 'code'; export type InlineCodeProps = SxProp & CommonSystemProps; type InlineCodeComponent = ForwardRefComponent< typeof defaultElement, InlineCodeProps >; export const InlineCode = React.forwardRef( ({ as = defaultElement, ...props }, ref) => { return ( ); } ) as InlineCodeComponent;