import { clipboard } from '@/utils/clipboard'; import { cn } from '@/utils/cn'; import { CopyIcon } from 'lucide-react'; import { Label } from '../ui/label'; type Props = { label: React.ReactNode; value: string; className?: string; }; const CopyInput = ({ label, value, className }: Props) => { return ( ); }; export default CopyInput;