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, GiWaterfall,
GiWolfHead, GiWolfHead,
GiOwl, GiOwl,
GiWindchimes,
} from 'react-icons/gi/index'; } from 'react-icons/gi/index';
import { import {
BsFire, BsFire,
@ -12,6 +13,7 @@ import {
BsFillCloudRainFill, BsFillCloudRainFill,
BsFillCloudRainHeavyFill, BsFillCloudRainHeavyFill,
BsUmbrellaFill, BsUmbrellaFill,
BsFillKeyboardFill,
} from 'react-icons/bs/index'; } from 'react-icons/bs/index';
import { import {
BiSolidTree, BiSolidTree,
@ -28,14 +30,17 @@ import {
FaFrog, FaFrog,
FaCity, FaCity,
FaRoad, FaRoad,
FaKeyboard,
FaClock,
} from 'react-icons/fa/index'; } from 'react-icons/fa/index';
import { import {
PiBirdFill, PiBirdFill,
PiTentFill, PiTentFill,
PiRoadHorizonFill, PiRoadHorizonFill,
} from 'react-icons/pi/index'; } 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 { TbScubaMask } from 'react-icons/tb/index';
import { RiFilePaper2Fill } from 'react-icons/ri/index';
// const defaultIcon = <BsSoundwave />; // const defaultIcon = <BsSoundwave />;
@ -229,5 +234,42 @@ export const sounds: {
], ],
title: 'Urban', 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',
},
], ],
}; };