{"version":3,"file":"ReferralURL-DZ2wU_Oi.js","sources":["../../../app/javascript/icons/duotone/copy.svg","../../../app/javascript/components/account/ReferralURL.tsx"],"sourcesContent":["import * as React from \"react\";\nconst SvgCopy = (props) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", viewBox: \"0 0 448 512\", ...props }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M160 48c0-26.5 21.5-48 48-48h124.1A48 48 0 0 1 366 14.1L433.9 82a48 48 0 0 1 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48z\", className: \"fa-primary\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M128 128H48c-26.5 0-48 21.5-48 48v288c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48v-48h-64v32H64V192h64z\", style: {\n opacity: 0.4\n} }));\nexport default SvgCopy;\n","import { toast } from \"sonner\";\nimport Button from \"hardcover-ui/components/Button\";\nimport Icon from \"hardcover-ui/components/Icon\";\nimport faCopy from \"icons/duotone/copy.svg\";\n\nexport default function ReferralURL({ referralUrl }: { referralUrl: string }) {\n const copyToClipboard = (e) => {\n e.preventDefault();\n navigator.clipboard.writeText(referralUrl);\n toast.success(\"Copied!\");\n };\n\n return (\n