// ── Icon Library – stroke-basierte SVG Icons ────────────────────────────────── // Verwendung: // Oder direkt: const base = (path, size, color, sw = 1.75) => ( {path} ); export const HomeIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const AppsIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const CalculatorIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const ArchiveIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const AdminIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const MoreIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const UserIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const LogOutIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const SearchIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const PlusIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const XIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const CheckIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const EditIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const TrashIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const DownloadIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const UploadIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const UpdateIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const ChevronIcon = ({size=20,color='currentColor',sw,dir='right'}) => base(<> {dir==='right' && } {dir==='down' && } {dir==='left' && } {dir==='up' && } , size, color, sw); export const CameraIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const KeyIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const DatabaseIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const ZapIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const MessageIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const LinkIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const CodeIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const SkizzeIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const WrenchIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw); export const FilmIcon = ({size=20,color='currentColor',sw}) => base(<> , size, color, sw);