chore: add more sounds

This commit is contained in:
MAZE 2023-12-28 00:02:50 +03:30
parent 55e7f05892
commit e3864bede1
4 changed files with 14 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View file

@ -1,5 +1,5 @@
import { GiWaterfall } from 'react-icons/gi/index'; import { GiWaterfall } from 'react-icons/gi/index';
import { BsFire } from 'react-icons/bs/index'; import { BsFire, BsFillDropletFill } from 'react-icons/bs/index';
import { BiSolidTree, BiWater } from 'react-icons/bi/index'; import { BiSolidTree, BiWater } from 'react-icons/bi/index';
import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index'; import { FaWater, FaWind, FaLeaf, FaRegSnowflake } from 'react-icons/fa/index';
import { TbScubaMask, TbSailboat } from 'react-icons/tb/index'; import { TbScubaMask, TbSailboat } from 'react-icons/tb/index';
@ -76,6 +76,12 @@ export const nature: Category = {
label: 'Rowing Boat', label: 'Rowing Boat',
src: '/sounds/nature/rowing-boat.mp3', src: '/sounds/nature/rowing-boat.mp3',
}, },
{
icon: <BsFillDropletFill />,
id: 'droplets',
label: 'Droplets',
src: '/sounds/nature/droplets.mp3',
},
], ],
title: 'Nature', title: 'Nature',
}; };

View file

@ -1,6 +1,6 @@
import { GiWindchimes } from 'react-icons/gi/index'; import { GiWindchimes } from 'react-icons/gi/index';
import { BsFillKeyboardFill } from 'react-icons/bs/index'; import { BsFillKeyboardFill } from 'react-icons/bs/index';
import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index'; import { FaKeyboard, FaClock, FaFan, FaHeartbeat } from 'react-icons/fa/index';
import { MdSmartToy } from 'react-icons/md/index'; import { MdSmartToy } from 'react-icons/md/index';
import { TbBowlFilled } from 'react-icons/tb/index'; import { TbBowlFilled } from 'react-icons/tb/index';
import { RiFilePaper2Fill } from 'react-icons/ri/index'; import { RiFilePaper2Fill } from 'react-icons/ri/index';
@ -53,6 +53,12 @@ export const things: Category = {
label: 'Ceiling Fan', label: 'Ceiling Fan',
src: '/sounds/things/ceiling-fan.mp3', src: '/sounds/things/ceiling-fan.mp3',
}, },
{
icon: <FaHeartbeat />,
id: 'heartbeat',
label: 'Heartbeat',
src: '/sounds/things/heartbeat.mp3',
},
], ],
title: 'Things', title: 'Things',
}; };