style: change icons

This commit is contained in:
MAZE 2024-09-13 15:28:04 +03:30
parent d759064373
commit 2e1fce4669
3 changed files with 8 additions and 8 deletions

View file

@ -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} />
);
}

View file

@ -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} />;
}

View file

@ -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')} />