mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
17 lines
302 B
TypeScript
17 lines
302 B
TypeScript
import { IoIosMusicalNote } from 'react-icons/io/index';
|
|
|
|
import { Item } from '../item';
|
|
|
|
interface LofiProps {
|
|
open: () => void;
|
|
}
|
|
|
|
export function Lofi({ open }: LofiProps) {
|
|
return (
|
|
<Item
|
|
icon={<IoIosMusicalNote />}
|
|
label="Lofi Music Player"
|
|
onClick={open}
|
|
/>
|
|
);
|
|
}
|