import React from "react"; import { cn } from "@/lib/utils"; interface CodeProps { children: React.ReactNode; className?: string; } export function Code({ children, className }: CodeProps) { return ( {children} ); }