mirror of
https://github.com/remvze/moodist.git
synced 2026-03-11 22:54:42 +08:00
12 lines
270 B
TypeScript
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} />;
|
|
}
|