// icons.jsx — minimal inline SVG icon set (lucide-derived paths) // Usage: const ICON_PATHS = { // Navigation dashboard: <>, chart: <>, users: <>, tags: <>, card: <>, image: <>, chat: <>, receipt: <>, settings: <>, search: <>, play: <>, square: <>, trending: <>, up: <>, down: <>, circle: <>, dot: <>, bell: <>, sortDesc: <>, refresh: <>, plus: <>, trash: <>, pencil: <>, save: <>, chevDown: <>, chevRight: <>, check: <>, x: <>, copy: <>, filter: <>, download: <>, upload: <>, eye: <>, clock: <>, alert: <>, more: <>, sparkles: <>, wallet: <>, bank: <>, bitcoin: <>, star: <>, key: <>, database: <>, zap: <>, sun: <>, moon: <>, film: <>, camera: <>, video: <>, hash: <>, lock: <>, arrowRight:<>, drag: <>, command: <>, link: <>, external: <>, file: <>, }; function Icon({ name, className = "w-4 h-4", strokeWidth = 1.8, fill = "none" }) { return ( ); } Object.assign(window, { Icon });