import { ReactNode } from 'react' import { cn } from '@/lib/utils' interface CodeProps { children: ReactNode inline?: boolean className?: string } export function Code({ children, inline = true, className }: CodeProps) { if (inline) { return ( {children} ) } return (
      {children}
    
) }