"use client"; import React from "react"; // ui import { Copy } from "lucide-react"; import { Button } from "@plane/propel/button"; import { TOAST_TYPE, setToast } from "@plane/propel/toast"; type Props = { label: string; url: string; description: string | React.ReactNode; }; export type TCopyField = { key: string; label: string; url: string; description: string | React.ReactNode; }; export const CopyField: React.FC = (props) => { const { label, url, description } = props; return (

{label}

{description}
); };