feat: add more sounds

This commit is contained in:
MAZE 2024-09-03 18:27:30 +03:30
parent be38b92647
commit 554309ebd8
4 changed files with 14 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -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',
}; };

View file

@ -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',