mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 17:34:17 +00:00
feat: add more sounds
This commit is contained in:
parent
be38b92647
commit
554309ebd8
4 changed files with 14 additions and 1 deletions
BIN
public/sounds/animals/sheep.mp3
Normal file
BIN
public/sounds/animals/sheep.mp3
Normal file
Binary file not shown.
BIN
public/sounds/nature/walk-on-gravel.mp3
Normal file
BIN
public/sounds/nature/walk-on-gravel.mp3
Normal file
Binary file not shown.
|
|
@ -8,6 +8,7 @@ import {
|
||||||
GiEgyptianBird,
|
GiEgyptianBird,
|
||||||
GiChicken,
|
GiChicken,
|
||||||
GiCow,
|
GiCow,
|
||||||
|
GiSheep,
|
||||||
} from 'react-icons/gi/index';
|
} from 'react-icons/gi/index';
|
||||||
import {
|
import {
|
||||||
FaDog,
|
FaDog,
|
||||||
|
|
@ -114,6 +115,12 @@ export const animals: Category = {
|
||||||
label: 'Cows',
|
label: 'Cows',
|
||||||
src: '/sounds/animals/cows.mp3',
|
src: '/sounds/animals/cows.mp3',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: <GiSheep />,
|
||||||
|
id: 'sheep',
|
||||||
|
label: 'Sheep',
|
||||||
|
src: '/sounds/animals/sheep.mp3',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
title: 'Animals',
|
title: 'Animals',
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { GiWaterfall } from 'react-icons/gi/index';
|
import { GiWaterfall, GiStonePile } from 'react-icons/gi/index';
|
||||||
import { BsFire, BsFillDropletFill } from 'react-icons/bs/index';
|
import { BsFire, BsFillDropletFill } from 'react-icons/bs/index';
|
||||||
import { BiSolidTree, BiWater } from 'react-icons/bi/index';
|
import { BiSolidTree, BiWater } from 'react-icons/bi/index';
|
||||||
import {
|
import {
|
||||||
|
|
@ -69,6 +69,12 @@ export const nature: Category = {
|
||||||
label: 'Walk on Leaves',
|
label: 'Walk on Leaves',
|
||||||
src: '/sounds/nature/walk-on-leaves.mp3',
|
src: '/sounds/nature/walk-on-leaves.mp3',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: <GiStonePile />,
|
||||||
|
id: 'walk-on-gravel',
|
||||||
|
label: 'Walk on Gravel',
|
||||||
|
src: '/sounds/nature/walk-on-gravel.mp3',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: <BsFillDropletFill />,
|
icon: <BsFillDropletFill />,
|
||||||
id: 'droplets',
|
id: 'droplets',
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue