feat: add more sounds

This commit is contained in:
MAZE 2023-10-29 15:25:53 +03:30
parent 63ed396a5a
commit 0888aaa0f0
6 changed files with 43 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -5,6 +5,7 @@ import {
GiWaterfall,
GiWolfHead,
GiOwl,
GiWindchimes,
} from 'react-icons/gi/index';
import {
BsFire,
@ -12,6 +13,7 @@ import {
BsFillCloudRainFill,
BsFillCloudRainHeavyFill,
BsUmbrellaFill,
BsFillKeyboardFill,
} from 'react-icons/bs/index';
import {
BiSolidTree,
@ -28,14 +30,17 @@ import {
FaFrog,
FaCity,
FaRoad,
FaKeyboard,
FaClock,
} from 'react-icons/fa/index';
import {
PiBirdFill,
PiTentFill,
PiRoadHorizonFill,
} from 'react-icons/pi/index';
import { MdOutlineThunderstorm } from 'react-icons/md/index';
import { MdOutlineThunderstorm, MdSmartToy } from 'react-icons/md/index';
import { TbScubaMask } from 'react-icons/tb/index';
import { RiFilePaper2Fill } from 'react-icons/ri/index';
// const defaultIcon = <BsSoundwave />;
@ -229,5 +234,42 @@ export const sounds: {
],
title: 'Urban',
},
{
icon: <MdSmartToy />,
id: 'things',
sounds: [
{
icon: <BsFillKeyboardFill />,
id: 'keyboard',
label: 'Keyboard',
src: '/sounds/things/keyboard.mp3',
},
{
icon: <FaKeyboard />,
id: 'typewriter',
label: 'Typewriter',
src: '/sounds/things/typewriter.mp3',
},
{
icon: <RiFilePaper2Fill />,
id: 'paper',
label: 'Paper',
src: '/sounds/things/paper.mp3',
},
{
icon: <FaClock />,
id: 'clock',
label: 'Clock',
src: '/sounds/things/clock.mp3',
},
{
icon: <GiWindchimes />,
id: 'wind-chimes',
label: 'Wind Chimes',
src: '/sounds/things/wind-chimes.mp3',
},
],
title: 'Things',
},
],
};