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

{label}

{description}

); };