// Schlankes Inline-SVG-Icon-Set (Feather-Stil). Bewusst keine Emojis. // Verwendung: oder const PATHS = { food: ( <> ), dashboard: ( <> ), checkin: ( <> ), checkout: ( <> ), package: ( <> ), split: ( <> ), tag: ( <> ), location: ( <> ), cart: ( <> ), users: ( <> ), clock: ( <> ), history: ( <> ), settings: ( <> ), logout: ( <> ), search: ( <> ), plus: , trash: ( <> ), edit: ( <> ), alert: ( <> ), check: , close: , chevronRight: , download: ( <> ), box: ( <> ), }; export default function Icon({ name, size = 18, className = "", strokeWidth = 2 }) { const path = PATHS[name]; if (!path) return null; return ( ); }