import { type ComponentPropsWithoutRef, forwardRef } from "react" import { cn } from "../../libs/utils" export type InlineCodeProps = ComponentPropsWithoutRef<"code"> export const InlineCode = forwardRef( ({ className, ...props }, ref) => { return ( ) }, ) InlineCode.displayName = "InlineCode"