Files
moodist/src/components/menu/items/presets.tsx
2024-02-28 19:59:39 +03:30

12 lines
270 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" onClick={open} />;
}