Skip to content

Commit

Permalink
feat(ui): change background menu icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Sep 6, 2022
1 parent d3378de commit 2d017cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/BackgroundMenu/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fragment, useEffect } from 'react'
import { Menu, Transition } from '@headlessui/react'
import { FiMonitor } from 'react-icons/fi'
import { MdOutlineWallpaper } from 'react-icons/md'

import { Background, useBackgroundStore } from '../../stores/BackgroundStore'

Expand All @@ -26,8 +26,8 @@ export const BackgroundMenu = () => {
return (
<Menu as="div" className="z-50">
<div className="flex group">
<Menu.Button className="opacity-90 group-hover:opacity-100">
<FiMonitor size={22} />
<Menu.Button className="flex opacity-90 group-hover:opacity-100">
<MdOutlineWallpaper size={22} />
</Menu.Button>
</div>
<Transition
Expand Down

0 comments on commit 2d017cc

Please sign in to comment.