feat: add more sounds

This commit is contained in:
MAZE 2024-09-03 18:12:33 +03:30
parent b497d16fd8
commit be38b92647
5 changed files with 21 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -6,6 +6,8 @@ import {
GiWhaleTail, GiWhaleTail,
GiTreeBeehive, GiTreeBeehive,
GiEgyptianBird, GiEgyptianBird,
GiChicken,
GiCow,
} from 'react-icons/gi/index'; } from 'react-icons/gi/index';
import { import {
FaDog, FaDog,
@ -100,6 +102,18 @@ export const animals: Category = {
label: 'Woodpecker', label: 'Woodpecker',
src: '/sounds/animals/woodpecker.mp3', src: '/sounds/animals/woodpecker.mp3',
}, },
{
icon: <GiChicken />,
id: 'chickens',
label: 'Chickens',
src: '/sounds/animals/chickens.mp3',
},
{
icon: <GiCow />,
id: 'cows',
label: 'Cows',
src: '/sounds/animals/cows.mp3',
},
], ],
title: 'Animals', title: 'Animals',
}; };

View file

@ -10,6 +10,7 @@ import { TbBowlFilled } from 'react-icons/tb/index';
import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index'; import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index';
import { BiSolidDryer } from 'react-icons/bi/index'; import { BiSolidDryer } from 'react-icons/bi/index';
import { IoIosRadio } from 'react-icons/io/index'; import { IoIosRadio } from 'react-icons/io/index';
import { PiVinylRecord } from 'react-icons/pi/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -101,6 +102,12 @@ export const things: Category = {
label: 'Washing Machine', label: 'Washing Machine',
src: '/sounds/things/washing-machine.mp3', src: '/sounds/things/washing-machine.mp3',
}, },
{
icon: <PiVinylRecord />,
id: 'vinyl-effect',
label: 'Vinyl Effect',
src: '/sounds/things/vinyl-effect.mp3',
},
], ],
title: 'Things', title: 'Things',
}; };