import { Sounds } from '@/components/sounds'; import styles from './category.module.css'; import type { Category } from '@/data/types'; interface CategoryProps extends Category { functional?: boolean; } export function Category({ functional = true, icon, id, sounds, title, }: CategoryProps) { return (
{icon}

{title}

); }