diff --git a/public/sounds/things/boiling-water.mp3 b/public/sounds/things/boiling-water.mp3 new file mode 100644 index 0000000..c68accc Binary files /dev/null and b/public/sounds/things/boiling-water.mp3 differ diff --git a/public/sounds/things/bubbles.mp3 b/public/sounds/things/bubbles.mp3 new file mode 100644 index 0000000..8238bbd Binary files /dev/null and b/public/sounds/things/bubbles.mp3 differ diff --git a/src/data/sounds/things.tsx b/src/data/sounds/things.tsx index 08365bd..e898206 100644 --- a/src/data/sounds/things.tsx +++ b/src/data/sounds/things.tsx @@ -1,9 +1,9 @@ import { GiWindchimes, GiFilmProjector } from 'react-icons/gi/index'; import { BsFillKeyboardFill } from 'react-icons/bs/index'; import { FaKeyboard, FaClock, FaFan } from 'react-icons/fa/index'; -import { MdSmartToy } from 'react-icons/md/index'; +import { MdSmartToy, MdWaterDrop } from 'react-icons/md/index'; import { TbBowlFilled } from 'react-icons/tb/index'; -import { RiFilePaper2Fill } from 'react-icons/ri/index'; +import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index'; import { BiSolidDryer } from 'react-icons/bi/index'; import type { Category } from '../types'; @@ -66,6 +66,18 @@ export const things: Category = { label: 'Slide Projector', src: '/sounds/things/slide-projector.mp3', }, + { + icon: , + id: 'boiling-water', + label: 'Boiling Water', + src: '/sounds/things/boiling-water.mp3', + }, + { + icon: , + id: 'bubbles', + label: 'Bubbles', + src: '/sounds/things/bubbles.mp3', + }, ], title: 'Things', };