mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
feat: add more sounds
This commit is contained in:
parent
a59db41dc5
commit
d2e289e5d5
4 changed files with 14 additions and 2 deletions
BIN
public/sounds/rain/rain-on-car-roof.mp3
Normal file
BIN
public/sounds/rain/rain-on-car-roof.mp3
Normal file
Binary file not shown.
BIN
public/sounds/things/windshield-wipers.mp3
Normal file
BIN
public/sounds/things/windshield-wipers.mp3
Normal file
Binary file not shown.
|
|
@ -4,7 +4,7 @@ import {
|
|||
BsUmbrellaFill,
|
||||
} from 'react-icons/bs/index';
|
||||
import { GiWindow } from 'react-icons/gi/index';
|
||||
import { FaLeaf } from 'react-icons/fa/index';
|
||||
import { FaLeaf, FaCarSide } from 'react-icons/fa/index';
|
||||
import { PiTentFill } from 'react-icons/pi/index';
|
||||
import { MdOutlineThunderstorm } from 'react-icons/md/index';
|
||||
|
||||
|
|
@ -38,6 +38,12 @@ export const rain: Category = {
|
|||
label: 'Rain on Window',
|
||||
src: '/sounds/rain/rain-on-window.mp3',
|
||||
},
|
||||
{
|
||||
icon: <FaCarSide />,
|
||||
id: 'rain-on-car-roof',
|
||||
label: 'Rain on Car Roof',
|
||||
src: '/sounds/rain/rain-on-car-roof.mp3',
|
||||
},
|
||||
{
|
||||
icon: <BsUmbrellaFill />,
|
||||
id: 'rain-on-umbrella',
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import {
|
|||
import { BsFillKeyboardFill } from 'react-icons/bs/index';
|
||||
import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index';
|
||||
import { MdSmartToy, MdWaterDrop, MdRadio } from 'react-icons/md/index';
|
||||
import { TbBowlFilled } from 'react-icons/tb/index';
|
||||
import { TbBowlFilled, TbWiper } from 'react-icons/tb/index';
|
||||
import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index';
|
||||
import { BiSolidDryer } from 'react-icons/bi/index';
|
||||
import { IoIosRadio } from 'react-icons/io/index';
|
||||
|
|
@ -108,6 +108,12 @@ export const things: Category = {
|
|||
label: 'Vinyl Effect',
|
||||
src: '/sounds/things/vinyl-effect.mp3',
|
||||
},
|
||||
{
|
||||
icon: <TbWiper />,
|
||||
id: 'windshield-wipers',
|
||||
label: 'Windshield Wipers',
|
||||
src: '/sounds/things/windshield-wipers.mp3',
|
||||
},
|
||||
],
|
||||
title: 'Things',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue