mirror of
https://github.com/remvze/moodist.git
synced 2025-11-02 02:27:02 -05:00
19 lines
335 B
TypeScript
19 lines
335 B
TypeScript
import { RiPlayListFill } from 'react-icons/ri/index';
|
|
|
|
import { Item } from '../item';
|
|
|
|
interface PresetsProps {
|
|
open: () => void;
|
|
}
|
|
|
|
export function Presets({ open }: PresetsProps) {
|
|
return (
|
|
<Item
|
|
icon={<RiPlayListFill />}
|
|
label="Your Presets"
|
|
shortcut="Shift + Alt + P"
|
|
onClick={open}
|
|
/>
|
|
);
|
|
}
|