mirror of
https://github.com/remvze/moodist.git
synced 2025-12-09 06:35:16 -05:00
feat: add more sounds
This commit is contained in:
parent
63ed396a5a
commit
0888aaa0f0
BIN
public/sounds/things/clock.mp3
Normal file
BIN
public/sounds/things/clock.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/keyboard.mp3
Normal file
BIN
public/sounds/things/keyboard.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/paper.mp3
Normal file
BIN
public/sounds/things/paper.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/typewriter.mp3
Normal file
BIN
public/sounds/things/typewriter.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/wind-chimes.mp3
Normal file
BIN
public/sounds/things/wind-chimes.mp3
Normal file
Binary file not shown.
@ -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',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user