chore: add more sounds

This commit is contained in:
MAZE 2024-01-30 15:29:55 +03:30
parent 937bf29d09
commit 38f6f7dbe6
3 changed files with 14 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -1,10 +1,11 @@
import { GiWindchimes, GiFilmProjector } from 'react-icons/gi/index'; import { GiWindchimes, GiFilmProjector } 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 } from 'react-icons/fa/index';
import { MdSmartToy, MdWaterDrop } from 'react-icons/md/index'; import { MdSmartToy, MdWaterDrop, MdRadio } from 'react-icons/md/index';
import { TbBowlFilled } from 'react-icons/tb/index'; import { TbBowlFilled } from 'react-icons/tb/index';
import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index'; import { RiFilePaper2Fill, RiBubbleChartFill } from 'react-icons/ri/index';
import { BiSolidDryer } from 'react-icons/bi/index'; import { BiSolidDryer } from 'react-icons/bi/index';
import { IoIosRadio } from 'react-icons/io/index';
import type { Category } from '../types'; import type { Category } from '../types';
@ -78,6 +79,18 @@ export const things: Category = {
label: 'Bubbles', label: 'Bubbles',
src: '/sounds/things/bubbles.mp3', src: '/sounds/things/bubbles.mp3',
}, },
{
icon: <MdRadio />,
id: 'tuning-radio',
label: 'Tuning Radio',
src: '/sounds/things/tuning-radio.mp3',
},
{
icon: <IoIosRadio />,
id: 'morse-code',
label: 'Morse Code',
src: '/sounds/things/morse-code.mp3',
},
], ],
title: 'Things', title: 'Things',
}; };