mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 01:14:17 +00:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import { FaHeadphonesAlt } from 'react-icons/fa/index';
|
|
|
|
import { Item } from '../item';
|
|
|
|
interface BinauralProps {
|
|
open: () => void;
|
|
}
|
|
|
|
export function Binaural({ open }: BinauralProps) {
|
|
return (
|
|
<Item icon={<FaHeadphonesAlt />} label="Binaural Beats" onClick={open} />
|
|
);
|
|
}
|