diff --git a/src/Components/AppShell/NavBar.tsx b/src/Components/AppShell/NavBar.tsx index b319eec3..7f099b93 100644 --- a/src/Components/AppShell/NavBar.tsx +++ b/src/Components/AppShell/NavBar.tsx @@ -70,7 +70,7 @@ export default function NavBar({ appName }: { appName: string }) { aria-controls='#sidenav' aria-haspopup='true' > - +
    {layers.map( diff --git a/src/Components/Map/Subcomponents/Controls/FilterControl.tsx b/src/Components/Map/Subcomponents/Controls/FilterControl.tsx index 46c011e0..2d54c280 100644 --- a/src/Components/Map/Subcomponents/Controls/FilterControl.tsx +++ b/src/Components/Map/Subcomponents/Controls/FilterControl.tsx @@ -72,7 +72,7 @@ export function FilterControl() { setOpen(true) }} > - +
)} diff --git a/src/Components/Map/Subcomponents/Controls/GratitudeControl.tsx b/src/Components/Map/Subcomponents/Controls/GratitudeControl.tsx index 72373f7c..83c9e72b 100644 --- a/src/Components/Map/Subcomponents/Controls/GratitudeControl.tsx +++ b/src/Components/Map/Subcomponents/Controls/GratitudeControl.tsx @@ -17,7 +17,7 @@ export const GratitudeControl = () => { navigate('/select-user') }} > - + } diff --git a/src/Components/Map/Subcomponents/Controls/LayerControl.tsx b/src/Components/Map/Subcomponents/Controls/LayerControl.tsx index 45e8e200..0150409a 100644 --- a/src/Components/Map/Subcomponents/Controls/LayerControl.tsx +++ b/src/Components/Map/Subcomponents/Controls/LayerControl.tsx @@ -56,7 +56,7 @@ export function LayerControl() { setOpen(true) }} > - Layers + Layers )} diff --git a/src/Components/Map/Subcomponents/Controls/QuestControl.tsx b/src/Components/Map/Subcomponents/Controls/QuestControl.tsx index eaa84229..cbc2e859 100644 --- a/src/Components/Map/Subcomponents/Controls/QuestControl.tsx +++ b/src/Components/Map/Subcomponents/Controls/QuestControl.tsx @@ -1,5 +1,4 @@ -import HandRaisedIcon from '@heroicons/react/24/outline/HandRaisedIcon' - +import FistSVG from '#assets/fist.svg' import { useQuestsOpen, useSetQuestOpen } from '#components/Gaming/hooks/useQuests' export function QuestControl() { @@ -19,7 +18,7 @@ export function QuestControl() { className='tw-card-body hover:tw-bg-slate-300 tw-rounded-2xl tw-p-2 tw-h-10 tw-w-10 tw-transition-all tw-duration-300 hover:tw-cursor-pointer' onClick={() => setQuestsOpen(true)} > - + Quests )} diff --git a/src/Components/Map/Subcomponents/Controls/SidebarControl.tsx b/src/Components/Map/Subcomponents/Controls/SidebarControl.tsx index e1d420d6..6172a78c 100644 --- a/src/Components/Map/Subcomponents/Controls/SidebarControl.tsx +++ b/src/Components/Map/Subcomponents/Controls/SidebarControl.tsx @@ -1,4 +1,4 @@ -import Bars3Icon from '@heroicons/react/24/outline/Bars3Icon' +import Bars3Icon from '@heroicons/react/16/solid/Bars3Icon' // Converts leaflet.locatecontrol to a React Component export const SidebarControl = () => { @@ -13,7 +13,7 @@ export const SidebarControl = () => { aria-controls='#sidenav' aria-haspopup='true' > - + diff --git a/src/Components/Map/Subcomponents/ItemPopupComponents/HeaderView.tsx b/src/Components/Map/Subcomponents/ItemPopupComponents/HeaderView.tsx index 330b8612..835da429 100644 --- a/src/Components/Map/Subcomponents/ItemPopupComponents/HeaderView.tsx +++ b/src/Components/Map/Subcomponents/ItemPopupComponents/HeaderView.tsx @@ -9,9 +9,9 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-non-null-assertion */ /* eslint-disable @typescript-eslint/no-unsafe-assignment */ -import EllipsisVerticalIcon from '@heroicons/react/24/outline/EllipsisVerticalIcon' -import PencilIcon from '@heroicons/react/24/outline/PencilIcon' -import TrashIcon from '@heroicons/react/24/outline/TrashIcon' +import EllipsisVerticalIcon from '@heroicons/react/16/solid/EllipsisVerticalIcon' +import PencilIcon from '@heroicons/react/24/solid/PencilIcon' +import TrashIcon from '@heroicons/react/24/solid/TrashIcon' import { useState, useEffect } from 'react' import { useNavigate } from 'react-router-dom' diff --git a/src/Components/Map/Subcomponents/ItemPopupComponents/StartEndView.tsx b/src/Components/Map/Subcomponents/ItemPopupComponents/StartEndView.tsx index ef3295a1..23c3c385 100644 --- a/src/Components/Map/Subcomponents/ItemPopupComponents/StartEndView.tsx +++ b/src/Components/Map/Subcomponents/ItemPopupComponents/StartEndView.tsx @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/prefer-optional-chain */ -import CalendarIcon from '@heroicons/react/24/outline/CalendarIcon' +import CalendarIcon from '@heroicons/react/24/solid/CalendarDaysIcon' import type { Item } from '#types/Item' diff --git a/src/Components/Profile/Subcomponents/ActionsButton.tsx b/src/Components/Profile/Subcomponents/ActionsButton.tsx index 6aa6bebf..fc18bf63 100644 --- a/src/Components/Profile/Subcomponents/ActionsButton.tsx +++ b/src/Components/Profile/Subcomponents/ActionsButton.tsx @@ -67,7 +67,7 @@ export function ActionButton({ color: '#fff', }} > - + )} {triggerAddButton && ( @@ -82,7 +82,7 @@ export function ActionButton({ color: '#fff', }} > - + )} diff --git a/src/Components/Profile/Subcomponents/AvatarWidget.tsx b/src/Components/Profile/Subcomponents/AvatarWidget.tsx index 857f69c0..94d1e1f4 100644 --- a/src/Components/Profile/Subcomponents/AvatarWidget.tsx +++ b/src/Components/Profile/Subcomponents/AvatarWidget.tsx @@ -3,10 +3,10 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/prefer-optional-chain */ import ArrowUpTrayIcon from '@heroicons/react/24/outline/ArrowUpTrayIcon' -import UserIcon from '@heroicons/react/24/outline/UserIcon' import { useState, useCallback, useRef } from 'react' import { ReactCrop, centerCrop, makeAspectCrop } from 'react-image-crop' +import UserSVG from '#assets/user.svg' import { useAppState } from '#components/AppShell/hooks/useAppState' import 'react-image-crop/dist/ReactCrop.css' import DialogModal from '#components/Templates/DialogModal' @@ -182,10 +182,7 @@ export const AvatarWidget: React.FC = ({ avatar, setAvatar }) ) : (
- +
)} diff --git a/src/Components/Profile/Subcomponents/LinkedItemsHeaderView.tsx b/src/Components/Profile/Subcomponents/LinkedItemsHeaderView.tsx index 9779a3d7..cc298dc6 100644 --- a/src/Components/Profile/Subcomponents/LinkedItemsHeaderView.tsx +++ b/src/Components/Profile/Subcomponents/LinkedItemsHeaderView.tsx @@ -5,7 +5,7 @@ /* eslint-disable @typescript-eslint/restrict-plus-operands */ /* eslint-disable @typescript-eslint/no-unnecessary-condition */ -import EllipsisVerticalIcon from '@heroicons/react/24/outline/EllipsisVerticalIcon' +import EllipsisVerticalIcon from '@heroicons/react/16/solid/EllipsisVerticalIcon' import LinkSlashIcon from '@heroicons/react/24/outline/LinkSlashIcon' import { useEffect } from 'react' @@ -74,7 +74,7 @@ export function LinkedItemsHeaderView({ {loading ? ( ) : ( - + )} diff --git a/src/Components/Profile/Subcomponents/MarkdownHint.tsx b/src/Components/Profile/Subcomponents/MarkdownHint.tsx index 50336e48..bf8c8b37 100644 --- a/src/Components/Profile/Subcomponents/MarkdownHint.tsx +++ b/src/Components/Profile/Subcomponents/MarkdownHint.tsx @@ -10,7 +10,7 @@ export const MarkdownHint = () => { title='Markdown is supported' className='flex tw-flex-row tw-text-gray-400 tw-cursor-pointer tw-items-center' > - Markdown + Markdown {expended && ( - + )} diff --git a/src/Components/Profile/Subcomponents/SocialShareBar.tsx b/src/Components/Profile/Subcomponents/SocialShareBar.tsx index 533390bc..4c23fe88 100644 --- a/src/Components/Profile/Subcomponents/SocialShareBar.tsx +++ b/src/Components/Profile/Subcomponents/SocialShareBar.tsx @@ -1,7 +1,7 @@ -import ClipboardDocumentIcon from '@heroicons/react/24/outline/ClipboardDocumentIcon' import { toast } from 'react-toastify' import ChevronSVG from '#assets/chevron.svg' +import ClipboardSVG from '#assets/share/clipboard.svg' import SocialShareButton from './SocialShareButton' @@ -58,7 +58,7 @@ const SocialShareBar = ({ onClick={() => copyLink()} title='copy Link' > - + )} diff --git a/src/assets/fist.svg b/src/assets/fist.svg new file mode 100644 index 00000000..f079abbe --- /dev/null +++ b/src/assets/fist.svg @@ -0,0 +1,8 @@ + + + \ No newline at end of file diff --git a/src/assets/layer.svg b/src/assets/layer.svg index 50e3088c..a8f5494c 100644 --- a/src/assets/layer.svg +++ b/src/assets/layer.svg @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/src/assets/plus.svg b/src/assets/plus.svg new file mode 100644 index 00000000..ae77e510 --- /dev/null +++ b/src/assets/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/share/clipboard.svg b/src/assets/share/clipboard.svg new file mode 100644 index 00000000..75551887 --- /dev/null +++ b/src/assets/share/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/share/whatsapp.svg b/src/assets/share/whatsapp.svg index d14752bf..0579784e 100644 --- a/src/assets/share/whatsapp.svg +++ b/src/assets/share/whatsapp.svg @@ -1,6 +1,6 @@ \ No newline at end of file