// MOMO Pro - Icons (簡單 SVG 圖示) const Icon = ({ name, size = 16, color = 'currentColor', strokeWidth = 2, style }) => { const paths = { dashboard: <>, orders: <>, products: <>, inventory: <>, members: <>, marketing: <>, analytics: <>, settings: <>, search: <>, bell: <>, plus: <>, chevronDown: <>, chevronRight: <>, chevronLeft: <>, chevronUp: <>, arrowUp: <>, arrowDown: <>, trendUp: <>, trendDown: <>, moreHorizontal: <>, moreVertical: <>, edit: <>, trash: <>, eye: <>, filter: <>, download: <>, upload: <>, calendar: <>, check: <>, checkCircle: <>, x: <>, xCircle: <>, clock: <>, truck: <>, package: <>, user: <>, dollar: <>, shoppingBag: <>, refresh: <>, copy: <>, menu: <>, helpCircle: <>, star: <>, tag: <>, creditCard: <>, mail: <>, logout: <>, grid: <>, list: <>, command: <>, sparkle: <>, }; return ( {paths[name] || null} ); }; window.Icon = Icon;