import { cn, copyToClipboard } from "@/lib/utils"; import React from "react"; import Button from "./button"; import { Copy } from "lucide-react"; type Props = Omit, "children"> & { children?: string; }; const Code = ({ className, children, ...props }: Props) => { return ( {children}