mirror of
https://github.com/remvze/moodist.git
synced 2025-12-19 01:44:15 +00:00
31 lines
753 B
TypeScript
31 lines
753 B
TypeScript
import { GiSoundWaves } from 'react-icons/gi/index';
|
|
import { BsSoundwave } from 'react-icons/bs/index';
|
|
|
|
import type { Category } from '../types';
|
|
|
|
export const noise: Category = {
|
|
icon: <BsSoundwave />,
|
|
id: 'noise',
|
|
// 修改
|
|
sounds: [
|
|
{
|
|
icon: <GiSoundWaves />,
|
|
id: 'white-noise',
|
|
labelKey: 'sounds.noise.white-noise',
|
|
src: '/sounds/noise/white-noise.wav',
|
|
},
|
|
{
|
|
icon: <GiSoundWaves />,
|
|
id: 'pink-noise',
|
|
labelKey: 'sounds.noise.pink-noise',
|
|
src: '/sounds/noise/pink-noise.wav',
|
|
},
|
|
{
|
|
icon: <GiSoundWaves />,
|
|
id: 'brown-noise',
|
|
labelKey: 'sounds.noise.brown-noise',
|
|
src: '/sounds/noise/brown-noise.wav',
|
|
},
|
|
],
|
|
titleKey: 'sounds.noise.title',
|
|
};
|