UNPKG

razor-shared-library

Version:
9 lines (8 loc) 211 B
import { ReactNode } from 'react'; export interface DrawerListItems { icon: ReactNode; clickHandler: () => void; subMenu?: DrawerListItems[]; isOpen?: boolean; isSubItemSelected?: boolean; }