import { MdNotes } from 'react-icons/md/index'; import { Item } from '../item'; import { useNoteStore } from '@/stores'; interface NotepadProps { open: () => void; } export function Notepad({ open }: NotepadProps) { const note = useNoteStore(state => state.note); return ( } label="Notepad" shortcut="Shift + N" onClick={open} /> ); }