├── .gitattributes ├── Json └── icons.json ├── README.md ├── animated ├── alert.gif ├── analytics.gif ├── arrow.gif ├── celebration.gif ├── check.gif ├── clock.gif ├── cross.gif ├── dots.gif ├── folder.gif ├── graphs.gif ├── refresh.gif ├── refreshing.gif ├── search.gif ├── settings.gif └── spinning.gif ├── assets ├── script_preview.png └── site_preview.png ├── cli ├── package.json ├── src │ ├── bin │ │ └── icons.ts │ ├── commands │ │ ├── help.ts │ │ ├── list.ts │ │ └── search.ts │ ├── index.ts │ ├── types.ts │ └── utils │ │ ├── fileScanner.ts │ │ └── paths.ts └── tsconfig.json ├── package.json ├── public ├── index.html └── script.js ├── scripts └── generate-json.sh ├── server.js └── static ├── Action ├── Action - Add.png ├── Action - Check.png ├── Action - Info.png ├── Action - Question.png ├── Action - Remove.png ├── Action - Warning.png └── Action - X.png ├── Apps ├── Apps - Chrome.png ├── Apps - Discord.png ├── Apps - Figma.png ├── Apps - Github.png ├── Apps - Instagram.png ├── Apps - Pinterest.png ├── Apps - Spotify.png ├── Apps - Twitch.png ├── Apps - Vscode.png ├── Apps - X.png └── Apps - Youtube.png ├── Arrow ├── Arrow - Down.png ├── Arrow - DownLeft.png ├── Arrow - DownRight.png ├── Arrow - Left.png ├── Arrow - Right.png ├── Arrow - Up.png ├── Arrow - UpLeft.png └── Arrow - UpRight.png ├── Battery ├── Battery - Add.png ├── Battery - Check.png ├── Battery - Empty.png ├── Battery - High.png ├── Battery - Low.png ├── Battery - Medium.png ├── Battery - Remove.png └── Battery - X.png ├── Bell ├── Bell - Add.png ├── Bell - Check.png ├── Bell - Off.png ├── Bell - Remove.png ├── Bell - X.png └── Bell.png ├── Book ├── Book - Add.png ├── Book - Check.png ├── Book - Remove.png ├── Book - X.png └── Book.png ├── Calendar ├── Calendar - Add.png ├── Calendar - Check.png ├── Calendar - Remove.png ├── Calendar - X.png └── Calendar.png ├── Clipboard ├── Clipboard - Add.png ├── Clipboard - Check.png ├── Clipboard - Clipboards.png ├── Clipboard - Remove.png ├── Clipboard - X.png └── Clipboard.png ├── Clock ├── Clock - Add.png ├── Clock - Check.png ├── Clock - Remove.png ├── Clock - X.png └── Clock.png ├── Cloud ├── Cloud - Add.png ├── Cloud - Check.png ├── Cloud - Remove.png ├── Cloud - X.png └── Cloud.png ├── Database ├── Database - Add.png ├── Database - Check.png ├── Database - Remove.png ├── Database - X.png └── Database.png ├── Dev ├── Dev - Bun.png ├── Dev - Javascript.png ├── Dev - Nodejs.png ├── Dev - Pnpm.png ├── Dev - Typescript.png └── Dev - Yarn.png ├── Device ├── Device - Desktop.png ├── Device - Mobile.png └── Device - Tablet.png ├── File ├── File - Add.png ├── File - Check.png ├── File - Files.png ├── File - Remove.png ├── File - X.png └── File.png ├── Folder ├── Folder - Add.png ├── Folder - Open.png ├── Folder - Remove.png └── Folder.png ├── Location ├── Location - Add.png ├── Location - Check.png ├── Location - Off.png ├── Location - Remove.png ├── Location - X.png └── Location.png ├── Lock ├── Lock - Add.png ├── Lock - Check.png ├── Lock - Remove.png ├── Lock - X.png └── Lock.png ├── Mail ├── Mail - Add.png ├── Mail - Check.png ├── Mail - Mails.png ├── Mail - Remove.png ├── Mail - X.png └── Mail.png ├── Number ├── Number - Eight.png ├── Number - Five.png ├── Number - Four.png ├── Number - Nine.png ├── Number - One.png ├── Number - Seven.png ├── Number - Six.png ├── Number - Three.png ├── Number - Two.png └── Number - Zero.png ├── Other ├── Other - AcademyCap.png ├── Other - Bank.png ├── Other - Bot.png ├── Other - Brain.png ├── Other - Bug.png ├── Other - Card.png ├── Other - Dollar.png ├── Other - Home.png ├── Other - Key.png ├── Other - Megaphone.png ├── Other - Save.png ├── Other - Terminal.png ├── Other - Ticket.png └── Other - Wallet.png ├── Search ├── Search - Add.png ├── Search - Check.png ├── Search - Remove.png ├── Search - X.png └── Search.png ├── Shield ├── Shield - Add.png ├── Shield - Check.png ├── Shield - Remove.png ├── Shield - X.png └── Shield.png ├── Unlock ├── Unlock - Add.png ├── Unlock - Check.png ├── Unlock - Remove.png ├── Unlock - X.png └── Unlock.png └── User ├── User - Add.png ├── User - Check.png ├── User - Remove.png ├── User - Users.png ├── User - X.png └── User.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/.gitattributes -------------------------------------------------------------------------------- /Json/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/Json/icons.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/README.md -------------------------------------------------------------------------------- /animated/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/alert.gif -------------------------------------------------------------------------------- /animated/analytics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/analytics.gif -------------------------------------------------------------------------------- /animated/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/arrow.gif -------------------------------------------------------------------------------- /animated/celebration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/celebration.gif -------------------------------------------------------------------------------- /animated/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/check.gif -------------------------------------------------------------------------------- /animated/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/clock.gif -------------------------------------------------------------------------------- /animated/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/cross.gif -------------------------------------------------------------------------------- /animated/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/dots.gif -------------------------------------------------------------------------------- /animated/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/folder.gif -------------------------------------------------------------------------------- /animated/graphs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/graphs.gif -------------------------------------------------------------------------------- /animated/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/refresh.gif -------------------------------------------------------------------------------- /animated/refreshing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/refreshing.gif -------------------------------------------------------------------------------- /animated/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/search.gif -------------------------------------------------------------------------------- /animated/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/settings.gif -------------------------------------------------------------------------------- /animated/spinning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/animated/spinning.gif -------------------------------------------------------------------------------- /assets/script_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/assets/script_preview.png -------------------------------------------------------------------------------- /assets/site_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/assets/site_preview.png -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/src/bin/icons.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../index.js"); 3 | -------------------------------------------------------------------------------- /cli/src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/commands/help.ts -------------------------------------------------------------------------------- /cli/src/commands/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/commands/list.ts -------------------------------------------------------------------------------- /cli/src/commands/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/commands/search.ts -------------------------------------------------------------------------------- /cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/index.ts -------------------------------------------------------------------------------- /cli/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/types.ts -------------------------------------------------------------------------------- /cli/src/utils/fileScanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/utils/fileScanner.ts -------------------------------------------------------------------------------- /cli/src/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/src/utils/paths.ts -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/public/index.html -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/public/script.js -------------------------------------------------------------------------------- /scripts/generate-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/scripts/generate-json.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/server.js -------------------------------------------------------------------------------- /static/Action/Action - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Add.png -------------------------------------------------------------------------------- /static/Action/Action - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Check.png -------------------------------------------------------------------------------- /static/Action/Action - Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Info.png -------------------------------------------------------------------------------- /static/Action/Action - Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Question.png -------------------------------------------------------------------------------- /static/Action/Action - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Remove.png -------------------------------------------------------------------------------- /static/Action/Action - Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - Warning.png -------------------------------------------------------------------------------- /static/Action/Action - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Action/Action - X.png -------------------------------------------------------------------------------- /static/Apps/Apps - Chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Chrome.png -------------------------------------------------------------------------------- /static/Apps/Apps - Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Discord.png -------------------------------------------------------------------------------- /static/Apps/Apps - Figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Figma.png -------------------------------------------------------------------------------- /static/Apps/Apps - Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Github.png -------------------------------------------------------------------------------- /static/Apps/Apps - Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Instagram.png -------------------------------------------------------------------------------- /static/Apps/Apps - Pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Pinterest.png -------------------------------------------------------------------------------- /static/Apps/Apps - Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Spotify.png -------------------------------------------------------------------------------- /static/Apps/Apps - Twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Twitch.png -------------------------------------------------------------------------------- /static/Apps/Apps - Vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Vscode.png -------------------------------------------------------------------------------- /static/Apps/Apps - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - X.png -------------------------------------------------------------------------------- /static/Apps/Apps - Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Apps/Apps - Youtube.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - Down.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - DownLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - DownLeft.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - DownRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - DownRight.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - Left.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - Right.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - Up.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - UpLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - UpLeft.png -------------------------------------------------------------------------------- /static/Arrow/Arrow - UpRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Arrow/Arrow - UpRight.png -------------------------------------------------------------------------------- /static/Battery/Battery - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Add.png -------------------------------------------------------------------------------- /static/Battery/Battery - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Check.png -------------------------------------------------------------------------------- /static/Battery/Battery - Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Empty.png -------------------------------------------------------------------------------- /static/Battery/Battery - High.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - High.png -------------------------------------------------------------------------------- /static/Battery/Battery - Low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Low.png -------------------------------------------------------------------------------- /static/Battery/Battery - Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Medium.png -------------------------------------------------------------------------------- /static/Battery/Battery - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - Remove.png -------------------------------------------------------------------------------- /static/Battery/Battery - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Battery/Battery - X.png -------------------------------------------------------------------------------- /static/Bell/Bell - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell - Add.png -------------------------------------------------------------------------------- /static/Bell/Bell - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell - Check.png -------------------------------------------------------------------------------- /static/Bell/Bell - Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell - Off.png -------------------------------------------------------------------------------- /static/Bell/Bell - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell - Remove.png -------------------------------------------------------------------------------- /static/Bell/Bell - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell - X.png -------------------------------------------------------------------------------- /static/Bell/Bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Bell/Bell.png -------------------------------------------------------------------------------- /static/Book/Book - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Book/Book - Add.png -------------------------------------------------------------------------------- /static/Book/Book - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Book/Book - Check.png -------------------------------------------------------------------------------- /static/Book/Book - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Book/Book - Remove.png -------------------------------------------------------------------------------- /static/Book/Book - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Book/Book - X.png -------------------------------------------------------------------------------- /static/Book/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Book/Book.png -------------------------------------------------------------------------------- /static/Calendar/Calendar - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Calendar/Calendar - Add.png -------------------------------------------------------------------------------- /static/Calendar/Calendar - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Calendar/Calendar - Check.png -------------------------------------------------------------------------------- /static/Calendar/Calendar - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Calendar/Calendar - Remove.png -------------------------------------------------------------------------------- /static/Calendar/Calendar - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Calendar/Calendar - X.png -------------------------------------------------------------------------------- /static/Calendar/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Calendar/Calendar.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard - Add.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard - Check.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard - Clipboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard - Clipboards.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard - Remove.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard - X.png -------------------------------------------------------------------------------- /static/Clipboard/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clipboard/Clipboard.png -------------------------------------------------------------------------------- /static/Clock/Clock - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clock/Clock - Add.png -------------------------------------------------------------------------------- /static/Clock/Clock - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clock/Clock - Check.png -------------------------------------------------------------------------------- /static/Clock/Clock - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clock/Clock - Remove.png -------------------------------------------------------------------------------- /static/Clock/Clock - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clock/Clock - X.png -------------------------------------------------------------------------------- /static/Clock/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Clock/Clock.png -------------------------------------------------------------------------------- /static/Cloud/Cloud - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Cloud/Cloud - Add.png -------------------------------------------------------------------------------- /static/Cloud/Cloud - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Cloud/Cloud - Check.png -------------------------------------------------------------------------------- /static/Cloud/Cloud - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Cloud/Cloud - Remove.png -------------------------------------------------------------------------------- /static/Cloud/Cloud - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Cloud/Cloud - X.png -------------------------------------------------------------------------------- /static/Cloud/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Cloud/Cloud.png -------------------------------------------------------------------------------- /static/Database/Database - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Database/Database - Add.png -------------------------------------------------------------------------------- /static/Database/Database - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Database/Database - Check.png -------------------------------------------------------------------------------- /static/Database/Database - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Database/Database - Remove.png -------------------------------------------------------------------------------- /static/Database/Database - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Database/Database - X.png -------------------------------------------------------------------------------- /static/Database/Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Database/Database.png -------------------------------------------------------------------------------- /static/Dev/Dev - Bun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Bun.png -------------------------------------------------------------------------------- /static/Dev/Dev - Javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Javascript.png -------------------------------------------------------------------------------- /static/Dev/Dev - Nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Nodejs.png -------------------------------------------------------------------------------- /static/Dev/Dev - Pnpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Pnpm.png -------------------------------------------------------------------------------- /static/Dev/Dev - Typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Typescript.png -------------------------------------------------------------------------------- /static/Dev/Dev - Yarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Dev/Dev - Yarn.png -------------------------------------------------------------------------------- /static/Device/Device - Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Device/Device - Desktop.png -------------------------------------------------------------------------------- /static/Device/Device - Mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Device/Device - Mobile.png -------------------------------------------------------------------------------- /static/Device/Device - Tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Device/Device - Tablet.png -------------------------------------------------------------------------------- /static/File/File - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File - Add.png -------------------------------------------------------------------------------- /static/File/File - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File - Check.png -------------------------------------------------------------------------------- /static/File/File - Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File - Files.png -------------------------------------------------------------------------------- /static/File/File - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File - Remove.png -------------------------------------------------------------------------------- /static/File/File - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File - X.png -------------------------------------------------------------------------------- /static/File/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/File/File.png -------------------------------------------------------------------------------- /static/Folder/Folder - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Folder/Folder - Add.png -------------------------------------------------------------------------------- /static/Folder/Folder - Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Folder/Folder - Open.png -------------------------------------------------------------------------------- /static/Folder/Folder - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Folder/Folder - Remove.png -------------------------------------------------------------------------------- /static/Folder/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Folder/Folder.png -------------------------------------------------------------------------------- /static/Location/Location - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location - Add.png -------------------------------------------------------------------------------- /static/Location/Location - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location - Check.png -------------------------------------------------------------------------------- /static/Location/Location - Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location - Off.png -------------------------------------------------------------------------------- /static/Location/Location - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location - Remove.png -------------------------------------------------------------------------------- /static/Location/Location - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location - X.png -------------------------------------------------------------------------------- /static/Location/Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Location/Location.png -------------------------------------------------------------------------------- /static/Lock/Lock - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Lock/Lock - Add.png -------------------------------------------------------------------------------- /static/Lock/Lock - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Lock/Lock - Check.png -------------------------------------------------------------------------------- /static/Lock/Lock - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Lock/Lock - Remove.png -------------------------------------------------------------------------------- /static/Lock/Lock - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Lock/Lock - X.png -------------------------------------------------------------------------------- /static/Lock/Lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Lock/Lock.png -------------------------------------------------------------------------------- /static/Mail/Mail - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail - Add.png -------------------------------------------------------------------------------- /static/Mail/Mail - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail - Check.png -------------------------------------------------------------------------------- /static/Mail/Mail - Mails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail - Mails.png -------------------------------------------------------------------------------- /static/Mail/Mail - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail - Remove.png -------------------------------------------------------------------------------- /static/Mail/Mail - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail - X.png -------------------------------------------------------------------------------- /static/Mail/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Mail/Mail.png -------------------------------------------------------------------------------- /static/Number/Number - Eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Eight.png -------------------------------------------------------------------------------- /static/Number/Number - Five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Five.png -------------------------------------------------------------------------------- /static/Number/Number - Four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Four.png -------------------------------------------------------------------------------- /static/Number/Number - Nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Nine.png -------------------------------------------------------------------------------- /static/Number/Number - One.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - One.png -------------------------------------------------------------------------------- /static/Number/Number - Seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Seven.png -------------------------------------------------------------------------------- /static/Number/Number - Six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Six.png -------------------------------------------------------------------------------- /static/Number/Number - Three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Three.png -------------------------------------------------------------------------------- /static/Number/Number - Two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Two.png -------------------------------------------------------------------------------- /static/Number/Number - Zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Number/Number - Zero.png -------------------------------------------------------------------------------- /static/Other/Other - AcademyCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - AcademyCap.png -------------------------------------------------------------------------------- /static/Other/Other - Bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Bank.png -------------------------------------------------------------------------------- /static/Other/Other - Bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Bot.png -------------------------------------------------------------------------------- /static/Other/Other - Brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Brain.png -------------------------------------------------------------------------------- /static/Other/Other - Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Bug.png -------------------------------------------------------------------------------- /static/Other/Other - Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Card.png -------------------------------------------------------------------------------- /static/Other/Other - Dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Dollar.png -------------------------------------------------------------------------------- /static/Other/Other - Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Home.png -------------------------------------------------------------------------------- /static/Other/Other - Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Key.png -------------------------------------------------------------------------------- /static/Other/Other - Megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Megaphone.png -------------------------------------------------------------------------------- /static/Other/Other - Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Save.png -------------------------------------------------------------------------------- /static/Other/Other - Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Terminal.png -------------------------------------------------------------------------------- /static/Other/Other - Ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Ticket.png -------------------------------------------------------------------------------- /static/Other/Other - Wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Other/Other - Wallet.png -------------------------------------------------------------------------------- /static/Search/Search - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Search/Search - Add.png -------------------------------------------------------------------------------- /static/Search/Search - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Search/Search - Check.png -------------------------------------------------------------------------------- /static/Search/Search - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Search/Search - Remove.png -------------------------------------------------------------------------------- /static/Search/Search - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Search/Search - X.png -------------------------------------------------------------------------------- /static/Search/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Search/Search.png -------------------------------------------------------------------------------- /static/Shield/Shield - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Shield/Shield - Add.png -------------------------------------------------------------------------------- /static/Shield/Shield - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Shield/Shield - Check.png -------------------------------------------------------------------------------- /static/Shield/Shield - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Shield/Shield - Remove.png -------------------------------------------------------------------------------- /static/Shield/Shield - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Shield/Shield - X.png -------------------------------------------------------------------------------- /static/Shield/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Shield/Shield.png -------------------------------------------------------------------------------- /static/Unlock/Unlock - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Unlock/Unlock - Add.png -------------------------------------------------------------------------------- /static/Unlock/Unlock - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Unlock/Unlock - Check.png -------------------------------------------------------------------------------- /static/Unlock/Unlock - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Unlock/Unlock - Remove.png -------------------------------------------------------------------------------- /static/Unlock/Unlock - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Unlock/Unlock - X.png -------------------------------------------------------------------------------- /static/Unlock/Unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/Unlock/Unlock.png -------------------------------------------------------------------------------- /static/User/User - Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User - Add.png -------------------------------------------------------------------------------- /static/User/User - Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User - Check.png -------------------------------------------------------------------------------- /static/User/User - Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User - Remove.png -------------------------------------------------------------------------------- /static/User/User - Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User - Users.png -------------------------------------------------------------------------------- /static/User/User - X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User - X.png -------------------------------------------------------------------------------- /static/User/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i1lo/Icons/HEAD/static/User/User.png --------------------------------------------------------------------------------