Update UI for shareable link

feat/share-solutions
Kamran Ahmed 3 months ago
parent af8c3b11d6
commit 3f1b8d9562
  1. 8
      src/components/Projects/SubmitSuccessModal.tsx

@ -1,4 +1,4 @@
import { CheckCircle2, Clipboard } from 'lucide-react'; import { CheckCircle, CheckCircle2, Clipboard, Copy } from 'lucide-react';
import { getUser } from '../../lib/jwt.ts'; import { getUser } from '../../lib/jwt.ts';
import { Modal } from '../Modal'; import { Modal } from '../Modal';
import { CheckIcon as ReactCheckIcon } from '../ReactIcons/CheckIcon.tsx'; import { CheckIcon as ReactCheckIcon } from '../ReactIcons/CheckIcon.tsx';
@ -52,12 +52,12 @@ export function SubmitSuccessModal(props: SubmitSuccessModalProps) {
> >
{isCopied ? ( {isCopied ? (
<> <>
<CheckCircle2 className="size-4 stroke-[2.5px]" /> <CheckCircle className="size-4 stroke-[2.5px]" />
Copied URL Copied
</> </>
) : ( ) : (
<> <>
<Clipboard className="size-4 stroke-[2.5px]" /> <Copy className="size-4 stroke-[2.5px]" />
Copy Shareable Link Copy Shareable Link
</> </>
)} )}

Loading…
Cancel
Save