mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
style: change icons
This commit is contained in:
parent
d759064373
commit
2e1fce4669
3 changed files with 8 additions and 8 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { RiPlayListFill } from 'react-icons/ri/index';
|
||||
import { FaHeadphonesAlt } from 'react-icons/fa/index';
|
||||
|
||||
import { Item } from '../item';
|
||||
|
||||
|
|
@ -8,6 +8,6 @@ interface BinauralProps {
|
|||
|
||||
export function Binaural({ open }: BinauralProps) {
|
||||
return (
|
||||
<Item icon={<RiPlayListFill />} label="Binaural Beats" onClick={open} />
|
||||
<Item icon={<FaHeadphonesAlt />} label="Binaural Beats" onClick={open} />
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { RiPlayListFill } from 'react-icons/ri/index';
|
||||
import { TbWaveSine } from 'react-icons/tb/index';
|
||||
|
||||
import { Item } from '../item';
|
||||
|
||||
|
|
@ -7,7 +7,5 @@ interface IsochronicProps {
|
|||
}
|
||||
|
||||
export function Isochronic({ open }: IsochronicProps) {
|
||||
return (
|
||||
<Item icon={<RiPlayListFill />} label="Isochronic Tones" onClick={open} />
|
||||
);
|
||||
return <Item icon={<TbWaveSine />} label="Isochronic Tones" onClick={open} />;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -122,8 +122,6 @@ export function Menu() {
|
|||
<ShareItem open={() => open('shareLink')} />
|
||||
<ShuffleItem />
|
||||
<SleepTimerItem open={() => open('sleepTimer')} />
|
||||
<BinauralItem open={() => open('binaural')} />
|
||||
<IsochronicItem open={() => open('isochronic')} />
|
||||
|
||||
<Divider />
|
||||
<CountdownItem open={() => open('countdown')} />
|
||||
|
|
@ -132,6 +130,10 @@ export function Menu() {
|
|||
<TodoItem open={() => open('todo')} />
|
||||
<BreathingExerciseItem open={() => open('breathing')} />
|
||||
|
||||
<Divider />
|
||||
<BinauralItem open={() => open('binaural')} />
|
||||
<IsochronicItem open={() => open('isochronic')} />
|
||||
|
||||
<Divider />
|
||||
<ShortcutsItem open={() => open('shortcuts')} />
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue