mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 09:24: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';
|
import { Item } from '../item';
|
||||||
|
|
||||||
|
|
@ -8,6 +8,6 @@ interface BinauralProps {
|
||||||
|
|
||||||
export function Binaural({ open }: BinauralProps) {
|
export function Binaural({ open }: BinauralProps) {
|
||||||
return (
|
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';
|
import { Item } from '../item';
|
||||||
|
|
||||||
|
|
@ -7,7 +7,5 @@ interface IsochronicProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Isochronic({ open }: IsochronicProps) {
|
export function Isochronic({ open }: IsochronicProps) {
|
||||||
return (
|
return <Item icon={<TbWaveSine />} label="Isochronic Tones" onClick={open} />;
|
||||||
<Item icon={<RiPlayListFill />} label="Isochronic Tones" onClick={open} />
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -122,8 +122,6 @@ export function Menu() {
|
||||||
<ShareItem open={() => open('shareLink')} />
|
<ShareItem open={() => open('shareLink')} />
|
||||||
<ShuffleItem />
|
<ShuffleItem />
|
||||||
<SleepTimerItem open={() => open('sleepTimer')} />
|
<SleepTimerItem open={() => open('sleepTimer')} />
|
||||||
<BinauralItem open={() => open('binaural')} />
|
|
||||||
<IsochronicItem open={() => open('isochronic')} />
|
|
||||||
|
|
||||||
<Divider />
|
<Divider />
|
||||||
<CountdownItem open={() => open('countdown')} />
|
<CountdownItem open={() => open('countdown')} />
|
||||||
|
|
@ -132,6 +130,10 @@ export function Menu() {
|
||||||
<TodoItem open={() => open('todo')} />
|
<TodoItem open={() => open('todo')} />
|
||||||
<BreathingExerciseItem open={() => open('breathing')} />
|
<BreathingExerciseItem open={() => open('breathing')} />
|
||||||
|
|
||||||
|
<Divider />
|
||||||
|
<BinauralItem open={() => open('binaural')} />
|
||||||
|
<IsochronicItem open={() => open('isochronic')} />
|
||||||
|
|
||||||
<Divider />
|
<Divider />
|
||||||
<ShortcutsItem open={() => open('shortcuts')} />
|
<ShortcutsItem open={() => open('shortcuts')} />
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue