mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
feat: change lofi icon
This commit is contained in:
parent
1e5bda707c
commit
066af9e2f3
1 changed files with 8 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { FaHeadphonesAlt } from 'react-icons/fa/index';
|
||||
import { IoIosMusicalNote } from 'react-icons/io/index';
|
||||
|
||||
import { Item } from '../item';
|
||||
|
||||
|
|
@ -7,5 +7,11 @@ interface LofiProps {
|
|||
}
|
||||
|
||||
export function Lofi({ open }: LofiProps) {
|
||||
return <Item icon={<FaHeadphonesAlt />} label="Lofi Music" onClick={open} />;
|
||||
return (
|
||||
<Item
|
||||
icon={<IoIosMusicalNote />}
|
||||
label="Lofi Music Player"
|
||||
onClick={open}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue