Skip to content

Commit 7b8c32e

Browse files
committed
fix: adjust share icon for playground
1 parent 2eb73e4 commit 7b8c32e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/playground/src/components/Header/ShareButton/ShareButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useState } from 'react';
22

33
import { Button, Heading, Input, Popover } from '@douglasneuroinformatics/libui/components';
44
import { CopyButton } from '@opendatacapture/react-core';
5-
import { ShareIcon } from 'lucide-react';
5+
import { Share2Icon } from 'lucide-react';
66

77
import { useFilesRef } from '@/hooks/useFilesRef';
88
import { useAppStore } from '@/store';
@@ -26,7 +26,7 @@ export const ShareButton = () => {
2626
<Popover open={isPopoverOpen} onOpenChange={setIsPopoverOpen}>
2727
<Popover.Trigger asChild>
2828
<Button className="h-9 w-9" size="icon" variant="outline">
29-
<ShareIcon />
29+
<Share2Icon />
3030
</Button>
3131
</Popover.Trigger>
3232
<Popover.Content align="end" className="w-[520px] p-4">

0 commit comments

Comments
 (0)