'use client';
import { Copy } from 'lucide-react';
import { motion, useInView } from 'motion/react';
import { useRef } from 'react';
interface CopyCodeProps extends React.HTMLAttributes<HTMLDivElement> {}
export default function CopyCode({ ...props }: CopyCodeProps) {
const background = '#09090B';
const border = '#3B341F';
const ref = useRef(null);
const isInView = useInView(ref, { once: false, margin: '-100px' });
return (