// Tiny line-icon set, single 1.5 stroke, currentColor. // Usage: const ICON_PATHS = { search: <>, bell: <>, chevron: <>, chevronUpDown: <>, plus: <>, more: <>, filter: <>, sliders: <>, columns: <>, folder: <>, box: <>, cpu: <>, book: <>, settings: <>, close: <>, refresh: <>, play: <>, pause: <>, check: <>, x: <>, rotate: <>, arrowRight: <>, download: <>, spark: <>, layers: <>, log: <>, diff: <>, steps: <>, open: <>, flag: <>, alert: <>, database: <>, branch: <>, zap: <>, shield: <>, clock: <>, users: <>, key: <>, link: <>, trash: <>, copy: <>, globe: <>, }; function Icon({ name, size = 16, stroke = 1.5, ...rest }) { const path = ICON_PATHS[name]; if (!path) return null; return ( {path} ); } window.Icon = Icon;