We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb73e4 commit 7b8c32eCopy full SHA for 7b8c32e
1 file changed
apps/playground/src/components/Header/ShareButton/ShareButton.tsx
@@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
2
3
import { Button, Heading, Input, Popover } from '@douglasneuroinformatics/libui/components';
4
import { CopyButton } from '@opendatacapture/react-core';
5
-import { ShareIcon } from 'lucide-react';
+import { Share2Icon } from 'lucide-react';
6
7
import { useFilesRef } from '@/hooks/useFilesRef';
8
import { useAppStore } from '@/store';
@@ -26,7 +26,7 @@ export const ShareButton = () => {
26
<Popover open={isPopoverOpen} onOpenChange={setIsPopoverOpen}>
27
<Popover.Trigger asChild>
28
<Button className="h-9 w-9" size="icon" variant="outline">
29
- <ShareIcon />
+ <Share2Icon />
30
</Button>
31
</Popover.Trigger>
32
<Popover.Content align="end" className="w-[520px] p-4">
0 commit comments