UNPKG

@shopistry/macaw-ui

Version:

Saleor's UI component library

19 lines (16 loc) 371 B
import React from "react"; export interface SidebarMenuItem { ariaLabel: string; children?: SidebarMenuItem[]; iconSrc?: string; label: string; id: string; url?: string; external?: boolean; } export interface BaseSidebarProps { className?: string; menuItems: SidebarMenuItem[]; toolbar?: React.ReactNode; onMenuItemClick: (url: string) => void; }