import { Icon } from '@/components/Icon'; import { FunctionComponent } from 'preact'; import { IconType } from '@standardnotes/snjs'; interface Props { iconType: IconType; label: string; selected: boolean; onClick: () => void; } export const MenuItem: FunctionComponent = ({ iconType, label, selected, onClick, }) => (
{ e.preventDefault(); onClick(); }} >
{label}
);