├── .gitignore
├── .npmrc
├── README.md
├── icons-generator.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── src
├── app.d.ts
├── app.html
├── lib
│ ├── akar-icons.json
│ ├── feather-icons.json
│ ├── feather-tags.json
│ ├── hero-tags.json
│ ├── iconoir-icons.json
│ ├── iconoir-tags.json
│ ├── icons-mini.json
│ ├── icons-outline.json
│ ├── icons-solid.json
│ ├── icons.ts
│ ├── index.js
│ ├── selection-store.ts
│ ├── streamlin-icons.json
│ └── svgToPath.ts
└── routes
│ ├── +layout.ts
│ ├── +page.svelte
│ ├── CopyIcon.svelte
│ ├── CreditsInfo.svelte
│ ├── DownloadIcon.svelte
│ ├── GithubIcon.svelte
│ ├── LoaderSpin.svelte
│ ├── SelectButton.svelte
│ ├── TwitterIcon.svelte
│ └── styles.css
├── static
├── cover.png
└── favicon.png
├── svelte.config.js
├── tailwind.config.cjs
├── tsconfig.json
└── vite.config.ts
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /build
4 | /dist
5 | /.svelte-kit
6 | /package
7 | .env
8 | .env.*
9 | !.env.example
10 | vite.config.js.timestamp-*
11 | vite.config.ts.timestamp-*
12 | deploy.sh
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | Svelte Icons Kit
4 |
5 |
6 |
7 | Svelte Icons Kit is a collection of collection of icons for Svelte apps or for any other SVG needs. You can copy to clipboard entire component in Svelte format along with Typescript support or SVG format. You can also pick and create your own package and download the zip.
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | ## Introduction
19 |
20 | Svelte Icons Kit is a collection of collection of icons for Svelte apps or for any other SVG needs. You can copy to clipboard entire component in Svelte format along with Typescript support or SVG format. You can also pick and create your own package and download the zip.
21 |
22 | ## Credits
23 |
24 | - [Hero Icons](https://heroicons.com/)
25 | - [Feather Icons](https://feathericons.com/)
26 | - [Iconoir Icons](https://iconoir.com/)
27 | - [Streamline Icons](https://www.streamlinehq.com/)
28 | - [Akar Icons](https://akaricons.com/)
29 |
30 | ## Author
31 |
32 | - Ankur Singhal ([@ankurpsinghal](https://twitter.com/ankurpsinghal))
--------------------------------------------------------------------------------
/icons-generator.js:
--------------------------------------------------------------------------------
1 | import fs from 'fs';
2 |
3 | const filePath = './src/lib/icons-outline.json';
4 | const icons = JSON.parse(fs.readFileSync(filePath).toString());
5 |
6 | try {
7 | fs.mkdirSync('./src/lib/outline');
8 | } catch(e) {
9 | console.log(e.message);
10 | }
11 |
12 | function snakeCaseToCamelCase(label) {
13 | return label.split('-').map(str => str[0].toUpperCase() + str.slice(1)).join('');
14 | }
15 |
16 | icons.forEach(icon => {
17 | fs.writeFileSync('./src/lib/outline/' + snakeCaseToCamelCase(icon.label) + '.svelte', icon.svg);
18 | })
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "svelte-icons-kit",
3 | "version": "0.0.1",
4 | "scripts": {
5 | "dev": "vite dev",
6 | "build": "vite build && npm run package",
7 | "preview": "vite preview",
8 | "package": "svelte-kit sync && svelte-package && publint",
9 | "deploy": "npm run build && ./deploy.sh"
10 | },
11 | "exports": {
12 | ".": {
13 | "types": "./dist/index.d.ts",
14 | "svelte": "./dist/index.js"
15 | }
16 | },
17 | "files": [
18 | "dist"
19 | ],
20 | "peerDependencies": {
21 | "svelte": "^3.54.0"
22 | },
23 | "devDependencies": {
24 | "@sveltejs/adapter-auto": "^2.0.0",
25 | "@sveltejs/kit": "^1.5.0",
26 | "@sveltejs/package": "^2.0.0",
27 | "@types/file-saver": "^2.0.5",
28 | "autoprefixer": "^10.4.14",
29 | "postcss": "^8.4.21",
30 | "publint": "^0.1.9",
31 | "svelte": "^3.54.0",
32 | "svelte-check": "^3.0.1",
33 | "tailwindcss": "^3.3.0",
34 | "tslib": "^2.4.1",
35 | "typescript": "^5.0.0",
36 | "vite": "^4.2.0"
37 | },
38 | "svelte": "./dist/index.js",
39 | "types": "./dist/index.d.ts",
40 | "type": "module",
41 | "dependencies": {
42 | "@sveltejs/adapter-static": "^2.0.1",
43 | "file-saver": "^2.0.5",
44 | "jszip": "^3.10.1",
45 | "match-sorter": "^6.3.1",
46 | "svelte-legos": "^0.1.5"
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/src/app.d.ts:
--------------------------------------------------------------------------------
1 | // See https://kit.svelte.dev/docs/types#app
2 | // for information about these interfaces
3 | declare global {
4 | namespace App {
5 | // interface Error {}
6 | // interface Locals {}
7 | // interface PageData {}
8 | // interface Platform {}
9 | }
10 | }
11 |
12 | export {};
13 |
--------------------------------------------------------------------------------
/src/app.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Svelte Icons Kit | Svelte collection of collection of icons
10 |
11 |
12 |
13 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
35 | %sveltekit.head%
36 |
37 |
38 | %sveltekit.body%
39 |
40 |
41 |
--------------------------------------------------------------------------------
/src/lib/feather-icons.json:
--------------------------------------------------------------------------------
1 | [{"label":"activity","svg":" "},{"label":"airplay","svg":" "},{"label":"alert-circle","svg":" "},{"label":"alert-octagon","svg":" "},{"label":"alert-triangle","svg":" "},{"label":"align-center","svg":" "},{"label":"align-justify","svg":" "},{"label":"align-left","svg":" "},{"label":"align-right","svg":" "},{"label":"anchor","svg":" "},{"label":"aperture","svg":" "},{"label":"archive","svg":" "},{"label":"arrow-down-circle","svg":" "},{"label":"arrow-down-left","svg":" "},{"label":"arrow-down-right","svg":" "},{"label":"arrow-down","svg":" "},{"label":"arrow-left-circle","svg":" "},{"label":"arrow-left","svg":" "},{"label":"arrow-right-circle","svg":" "},{"label":"arrow-right","svg":" "},{"label":"arrow-up-circle","svg":" "},{"label":"arrow-up-left","svg":" "},{"label":"arrow-up-right","svg":" "},{"label":"arrow-up","svg":" "},{"label":"at-sign","svg":" "},{"label":"award","svg":" "},{"label":"bar-chart-2","svg":" "},{"label":"bar-chart","svg":" "},{"label":"battery-charging","svg":" "},{"label":"battery","svg":" "},{"label":"bell-off","svg":" "},{"label":"bell","svg":" "},{"label":"bluetooth","svg":" "},{"label":"bold","svg":" "},{"label":"book-open","svg":" "},{"label":"book","svg":" "},{"label":"bookmark","svg":" "},{"label":"box","svg":" "},{"label":"briefcase","svg":" "},{"label":"calendar","svg":" "},{"label":"camera-off","svg":" "},{"label":"camera","svg":" "},{"label":"cast","svg":" "},{"label":"check-circle","svg":" "},{"label":"check-square","svg":" "},{"label":"check","svg":" "},{"label":"chevron-down","svg":" "},{"label":"chevron-left","svg":" "},{"label":"chevron-right","svg":" "},{"label":"chevron-up","svg":" "},{"label":"chevrons-down","svg":" "},{"label":"chevrons-left","svg":" "},{"label":"chevrons-right","svg":" "},{"label":"chevrons-up","svg":" "},{"label":"chrome","svg":" "},{"label":"circle","svg":" "},{"label":"clipboard","svg":" "},{"label":"clock","svg":" "},{"label":"cloud-drizzle","svg":" "},{"label":"cloud-lightning","svg":" "},{"label":"cloud-off","svg":" "},{"label":"cloud-rain","svg":" "},{"label":"cloud-snow","svg":" "},{"label":"cloud","svg":" "},{"label":"code","svg":" "},{"label":"codepen","svg":" "},{"label":"codesandbox","svg":" "},{"label":"coffee","svg":" "},{"label":"columns","svg":" "},{"label":"command","svg":" "},{"label":"compass","svg":" "},{"label":"copy","svg":" "},{"label":"corner-down-left","svg":" "},{"label":"corner-down-right","svg":" "},{"label":"corner-left-down","svg":" "},{"label":"corner-left-up","svg":" "},{"label":"corner-right-down","svg":" "},{"label":"corner-right-up","svg":" "},{"label":"corner-up-left","svg":" "},{"label":"corner-up-right","svg":" "},{"label":"cpu","svg":" "},{"label":"credit-card","svg":" "},{"label":"crop","svg":" "},{"label":"crosshair","svg":" "},{"label":"database","svg":" "},{"label":"delete","svg":" "},{"label":"disc","svg":" "},{"label":"divide-circle","svg":" "},{"label":"divide-square","svg":" "},{"label":"divide","svg":" "},{"label":"dollar-sign","svg":" "},{"label":"download-cloud","svg":" "},{"label":"download","svg":" "},{"label":"dribbble","svg":" "},{"label":"droplet","svg":" "},{"label":"edit-2","svg":" "},{"label":"edit-3","svg":" "},{"label":"edit","svg":" "},{"label":"external-link","svg":" "},{"label":"eye-off","svg":" "},{"label":"eye","svg":" "},{"label":"facebook","svg":" "},{"label":"fast-forward","svg":" "},{"label":"feather","svg":" "},{"label":"figma","svg":" "},{"label":"file-minus","svg":" "},{"label":"file-plus","svg":" "},{"label":"file-text","svg":" "},{"label":"file","svg":" "},{"label":"film","svg":" "},{"label":"filter","svg":" "},{"label":"flag","svg":" "},{"label":"folder-minus","svg":" "},{"label":"folder-plus","svg":" "},{"label":"folder","svg":" "},{"label":"framer","svg":" "},{"label":"frown","svg":" "},{"label":"gift","svg":" "},{"label":"git-branch","svg":" "},{"label":"git-commit","svg":" "},{"label":"git-merge","svg":" "},{"label":"git-pull-request","svg":" "},{"label":"github","svg":" "},{"label":"gitlab","svg":" "},{"label":"globe","svg":" "},{"label":"grid","svg":" "},{"label":"hard-drive","svg":" "},{"label":"hash","svg":" "},{"label":"headphones","svg":" "},{"label":"heart","svg":" "},{"label":"help-circle","svg":" "},{"label":"hexagon","svg":" "},{"label":"home","svg":" "},{"label":"image","svg":" "},{"label":"inbox","svg":" "},{"label":"info","svg":" "},{"label":"instagram","svg":" "},{"label":"italic","svg":" "},{"label":"key","svg":" "},{"label":"layers","svg":" "},{"label":"layout","svg":" "},{"label":"life-buoy","svg":" "},{"label":"link-2","svg":" "},{"label":"link","svg":" "},{"label":"linkedin","svg":" "},{"label":"list","svg":" "},{"label":"loader","svg":" "},{"label":"lock","svg":" "},{"label":"log-in","svg":" "},{"label":"log-out","svg":" "},{"label":"mail","svg":" "},{"label":"map-pin","svg":" "},{"label":"map","svg":" "},{"label":"maximize-2","svg":" "},{"label":"maximize","svg":" "},{"label":"meh","svg":" "},{"label":"menu","svg":" "},{"label":"message-circle","svg":" "},{"label":"message-square","svg":" "},{"label":"mic-off","svg":" "},{"label":"mic","svg":" "},{"label":"minimize-2","svg":" "},{"label":"minimize","svg":" "},{"label":"minus-circle","svg":" "},{"label":"minus-square","svg":" "},{"label":"minus","svg":" "},{"label":"monitor","svg":" "},{"label":"moon","svg":" "},{"label":"more-horizontal","svg":" "},{"label":"more-vertical","svg":" "},{"label":"mouse-pointer","svg":" "},{"label":"move","svg":" "},{"label":"music","svg":" "},{"label":"navigation-2","svg":" "},{"label":"navigation","svg":" "},{"label":"octagon","svg":" "},{"label":"package","svg":" "},{"label":"paperclip","svg":" "},{"label":"pause-circle","svg":" "},{"label":"pause","svg":" "},{"label":"pen-tool","svg":" "},{"label":"percent","svg":" "},{"label":"phone-call","svg":" "},{"label":"phone-forwarded","svg":" "},{"label":"phone-incoming","svg":" "},{"label":"phone-missed","svg":" "},{"label":"phone-off","svg":" "},{"label":"phone-outgoing","svg":" "},{"label":"phone","svg":" "},{"label":"pie-chart","svg":" "},{"label":"play-circle","svg":" "},{"label":"play","svg":" "},{"label":"plus-circle","svg":" "},{"label":"plus-square","svg":" "},{"label":"plus","svg":" "},{"label":"pocket","svg":" "},{"label":"power","svg":" "},{"label":"printer","svg":" "},{"label":"radio","svg":" "},{"label":"refresh-ccw","svg":" "},{"label":"refresh-cw","svg":" "},{"label":"repeat","svg":" "},{"label":"rewind","svg":" "},{"label":"rotate-ccw","svg":" "},{"label":"rotate-cw","svg":" "},{"label":"rss","svg":" "},{"label":"save","svg":" "},{"label":"scissors","svg":" "},{"label":"search","svg":" "},{"label":"send","svg":" "},{"label":"server","svg":" "},{"label":"settings","svg":" "},{"label":"share-2","svg":" "},{"label":"share","svg":" "},{"label":"shield-off","svg":" "},{"label":"shield","svg":" "},{"label":"shopping-bag","svg":" "},{"label":"shopping-cart","svg":" "},{"label":"shuffle","svg":" "},{"label":"sidebar","svg":" "},{"label":"skip-back","svg":" "},{"label":"skip-forward","svg":" "},{"label":"slack","svg":" "},{"label":"slash","svg":" "},{"label":"sliders","svg":" "},{"label":"smartphone","svg":" "},{"label":"smile","svg":" "},{"label":"speaker","svg":" "},{"label":"square","svg":" "},{"label":"star","svg":" "},{"label":"stop-circle","svg":" "},{"label":"sun","svg":" "},{"label":"sunrise","svg":" "},{"label":"sunset","svg":" "},{"label":"table","svg":" "},{"label":"tablet","svg":" "},{"label":"tag","svg":" "},{"label":"target","svg":" "},{"label":"terminal","svg":" "},{"label":"thermometer","svg":" "},{"label":"thumbs-down","svg":" "},{"label":"thumbs-up","svg":" "},{"label":"toggle-left","svg":" "},{"label":"toggle-right","svg":" "},{"label":"tool","svg":" "},{"label":"trash-2","svg":" "},{"label":"trash","svg":" "},{"label":"trello","svg":" "},{"label":"trending-down","svg":" "},{"label":"trending-up","svg":" "},{"label":"triangle","svg":" "},{"label":"truck","svg":" "},{"label":"tv","svg":" "},{"label":"twitch","svg":" "},{"label":"twitter","svg":" "},{"label":"type","svg":" "},{"label":"umbrella","svg":" "},{"label":"underline","svg":" "},{"label":"unlock","svg":" "},{"label":"upload-cloud","svg":" "},{"label":"upload","svg":" "},{"label":"user-check","svg":" "},{"label":"user-minus","svg":" "},{"label":"user-plus","svg":" "},{"label":"user-x","svg":" "},{"label":"user","svg":" "},{"label":"users","svg":" "},{"label":"video-off","svg":" "},{"label":"video","svg":" "},{"label":"voicemail","svg":" "},{"label":"volume-1","svg":" "},{"label":"volume-2","svg":" "},{"label":"volume-x","svg":" "},{"label":"volume","svg":" "},{"label":"watch","svg":" "},{"label":"wifi-off","svg":" "},{"label":"wifi","svg":" "},{"label":"wind","svg":" "},{"label":"x-circle","svg":" "},{"label":"x-octagon","svg":" "},{"label":"x-square","svg":" "},{"label":"x","svg":" "},{"label":"youtube","svg":" "},{"label":"zap-off","svg":" "},{"label":"zap","svg":" "},{"label":"zoom-in","svg":" "},{"label":"zoom-out","svg":" "}]
--------------------------------------------------------------------------------
/src/lib/feather-tags.json:
--------------------------------------------------------------------------------
1 | {
2 | "activity": ["pulse", "health", "action", "motion"],
3 | "airplay": ["stream", "cast", "mirroring"],
4 | "alert-circle": ["warning", "alert", "danger"],
5 | "alert-octagon": ["warning", "alert", "danger"],
6 | "alert-triangle": ["warning", "alert", "danger"],
7 | "align-center": ["text alignment", "center"],
8 | "align-justify": ["text alignment", "justified"],
9 | "align-left": ["text alignment", "left"],
10 | "align-right": ["text alignment", "right"],
11 | "anchor": [],
12 | "archive": ["index", "box"],
13 | "at-sign": ["mention", "at", "email", "message"],
14 | "award": ["achievement", "badge"],
15 | "aperture": ["camera", "photo"],
16 | "bar-chart": ["statistics", "diagram", "graph"],
17 | "bar-chart-2": ["statistics", "diagram", "graph"],
18 | "battery": ["power", "electricity"],
19 | "battery-charging": ["power", "electricity"],
20 | "bell": ["alarm", "notification", "sound"],
21 | "bell-off": ["alarm", "notification", "silent"],
22 | "bluetooth": ["wireless"],
23 | "book-open": ["read", "library"],
24 | "book": ["read", "dictionary", "booklet", "magazine", "library"],
25 | "bookmark": ["read", "clip", "marker", "tag"],
26 | "box": ["cube"],
27 | "briefcase": ["work", "bag", "baggage", "folder"],
28 | "calendar": ["date"],
29 | "camera": ["photo"],
30 | "cast": ["chromecast", "airplay"],
31 | "chevron-down": ["expand"],
32 | "chevron-up": ["collapse"],
33 | "circle": ["off", "zero", "record"],
34 | "clipboard": ["copy"],
35 | "clock": ["time", "watch", "alarm"],
36 | "cloud-drizzle": ["weather", "shower"],
37 | "cloud-lightning": ["weather", "bolt"],
38 | "cloud-rain": ["weather"],
39 | "cloud-snow": ["weather", "blizzard"],
40 | "cloud": ["weather"],
41 | "codepen": ["logo"],
42 | "codesandbox": ["logo"],
43 | "code": ["source", "programming"],
44 | "coffee": ["drink", "cup", "mug", "tea", "cafe", "hot", "beverage"],
45 | "columns": ["layout"],
46 | "command": ["keyboard", "cmd", "terminal", "prompt"],
47 | "compass": ["navigation", "safari", "travel", "direction"],
48 | "copy": ["clone", "duplicate"],
49 | "corner-down-left": ["arrow", "return"],
50 | "corner-down-right": ["arrow"],
51 | "corner-left-down": ["arrow"],
52 | "corner-left-up": ["arrow"],
53 | "corner-right-down": ["arrow"],
54 | "corner-right-up": ["arrow"],
55 | "corner-up-left": ["arrow"],
56 | "corner-up-right": ["arrow"],
57 | "cpu": ["processor", "technology"],
58 | "credit-card": ["purchase", "payment", "cc"],
59 | "crop": ["photo", "image"],
60 | "crosshair": ["aim", "target"],
61 | "database": ["storage", "memory"],
62 | "delete": ["remove"],
63 | "disc": ["album", "cd", "dvd", "music"],
64 | "dollar-sign": ["currency", "money", "payment"],
65 | "droplet": ["water"],
66 | "edit": ["pencil", "change"],
67 | "edit-2": ["pencil", "change"],
68 | "edit-3": ["pencil", "change"],
69 | "eye": ["view", "watch"],
70 | "eye-off": ["view", "watch", "hide", "hidden"],
71 | "external-link": ["outbound"],
72 | "facebook": ["logo", "social"],
73 | "fast-forward": ["music"],
74 | "figma": ["logo", "design", "tool"],
75 | "file-minus": ["delete", "remove", "erase"],
76 | "file-plus": ["add", "create", "new"],
77 | "file-text": ["data", "txt", "pdf"],
78 | "film": ["movie", "video"],
79 | "filter": ["funnel", "hopper"],
80 | "flag": ["report"],
81 | "folder-minus": ["directory"],
82 | "folder-plus": ["directory"],
83 | "folder": ["directory"],
84 | "framer": ["logo", "design", "tool"],
85 | "frown": ["emoji", "face", "bad", "sad", "emotion"],
86 | "gift": ["present", "box", "birthday", "party"],
87 | "git-branch": ["code", "version control"],
88 | "git-commit": ["code", "version control"],
89 | "git-merge": ["code", "version control"],
90 | "git-pull-request": ["code", "version control"],
91 | "github": ["logo", "version control"],
92 | "gitlab": ["logo", "version control"],
93 | "globe": ["world", "browser", "language", "translate"],
94 | "hard-drive": ["computer", "server", "memory", "data"],
95 | "hash": ["hashtag", "number", "pound"],
96 | "headphones": ["music", "audio", "sound"],
97 | "heart": ["like", "love", "emotion"],
98 | "help-circle": ["question mark"],
99 | "hexagon": ["shape", "node.js", "logo"],
100 | "home": ["house", "living"],
101 | "image": ["picture"],
102 | "inbox": ["email"],
103 | "instagram": ["logo", "camera"],
104 | "key": ["password", "login", "authentication", "secure"],
105 | "layers": ["stack"],
106 | "layout": ["window", "webpage"],
107 | "life-bouy": ["help", "life ring", "support"],
108 | "link": ["chain", "url"],
109 | "link-2": ["chain", "url"],
110 | "linkedin": ["logo", "social media"],
111 | "list": ["options"],
112 | "lock": ["security", "password", "secure"],
113 | "log-in": ["sign in", "arrow", "enter"],
114 | "log-out": ["sign out", "arrow", "exit"],
115 | "mail": ["email", "message"],
116 | "map-pin": ["location", "navigation", "travel", "marker"],
117 | "map": ["location", "navigation", "travel"],
118 | "maximize": ["fullscreen"],
119 | "maximize-2": ["fullscreen", "arrows", "expand"],
120 | "meh": ["emoji", "face", "neutral", "emotion"],
121 | "menu": ["bars", "navigation", "hamburger"],
122 | "message-circle": ["comment", "chat"],
123 | "message-square": ["comment", "chat"],
124 | "mic-off": ["record", "sound", "mute"],
125 | "mic": ["record", "sound", "listen"],
126 | "minimize": ["exit fullscreen", "close"],
127 | "minimize-2": ["exit fullscreen", "arrows", "close"],
128 | "minus": ["subtract"],
129 | "monitor": ["tv", "screen", "display"],
130 | "moon": ["dark", "night"],
131 | "more-horizontal": ["ellipsis"],
132 | "more-vertical": ["ellipsis"],
133 | "mouse-pointer": ["arrow", "cursor"],
134 | "move": ["arrows"],
135 | "music": ["note"],
136 | "navigation": ["location", "travel"],
137 | "navigation-2": ["location", "travel"],
138 | "octagon": ["stop"],
139 | "package": ["box", "container"],
140 | "paperclip": ["attachment"],
141 | "pause": ["music", "stop"],
142 | "pause-circle": ["music", "audio", "stop"],
143 | "pen-tool": ["vector", "drawing"],
144 | "percent": ["discount"],
145 | "phone-call": ["ring"],
146 | "phone-forwarded": ["call"],
147 | "phone-incoming": ["call"],
148 | "phone-missed": ["call"],
149 | "phone-off": ["call", "mute"],
150 | "phone-outgoing": ["call"],
151 | "phone": ["call"],
152 | "play": ["music", "start"],
153 | "pie-chart": ["statistics", "diagram"],
154 | "play-circle": ["music", "start"],
155 | "plus": ["add", "new"],
156 | "plus-circle": ["add", "new"],
157 | "plus-square": ["add", "new"],
158 | "pocket": ["logo", "save"],
159 | "power": ["on", "off"],
160 | "printer": ["fax", "office", "device"],
161 | "radio": ["signal"],
162 | "refresh-cw": ["synchronise", "arrows"],
163 | "refresh-ccw": ["arrows"],
164 | "repeat": ["loop", "arrows"],
165 | "rewind": ["music"],
166 | "rotate-ccw": ["arrow"],
167 | "rotate-cw": ["arrow"],
168 | "rss": ["feed", "subscribe"],
169 | "save": ["floppy disk"],
170 | "scissors": ["cut"],
171 | "search": ["find", "magnifier", "magnifying glass"],
172 | "send": ["message", "mail", "email", "paper airplane", "paper aeroplane"],
173 | "settings": ["cog", "edit", "gear", "preferences"],
174 | "share-2": ["network", "connections"],
175 | "shield": ["security", "secure"],
176 | "shield-off": ["security", "insecure"],
177 | "shopping-bag": ["ecommerce", "cart", "purchase", "store"],
178 | "shopping-cart": ["ecommerce", "cart", "purchase", "store"],
179 | "shuffle": ["music"],
180 | "skip-back": ["music"],
181 | "skip-forward": ["music"],
182 | "slack": ["logo"],
183 | "slash": ["ban", "no"],
184 | "sliders": ["settings", "controls"],
185 | "smartphone": ["cellphone", "device"],
186 | "smile": ["emoji", "face", "happy", "good", "emotion"],
187 | "speaker": ["audio", "music"],
188 | "star": ["bookmark", "favorite", "like"],
189 | "stop-circle": ["media", "music"],
190 | "sun": ["brightness", "weather", "light"],
191 | "sunrise": ["weather", "time", "morning", "day"],
192 | "sunset": ["weather", "time", "evening", "night"],
193 | "tablet": ["device"],
194 | "tag": ["label"],
195 | "target": ["logo", "bullseye"],
196 | "terminal": ["code", "command line", "prompt"],
197 | "thermometer": ["temperature", "celsius", "fahrenheit", "weather"],
198 | "thumbs-down": ["dislike", "bad", "emotion"],
199 | "thumbs-up": ["like", "good", "emotion"],
200 | "toggle-left": ["on", "off", "switch"],
201 | "toggle-right": ["on", "off", "switch"],
202 | "tool": ["settings", "spanner"],
203 | "trash": ["garbage", "delete", "remove", "bin"],
204 | "trash-2": ["garbage", "delete", "remove", "bin"],
205 | "triangle": ["delta"],
206 | "truck": ["delivery", "van", "shipping", "transport", "lorry"],
207 | "tv": ["television", "stream"],
208 | "twitch": ["logo"],
209 | "twitter": ["logo", "social"],
210 | "type": ["text"],
211 | "umbrella": ["rain", "weather"],
212 | "unlock": ["security"],
213 | "user-check": ["followed", "subscribed"],
214 | "user-minus": ["delete", "remove", "unfollow", "unsubscribe"],
215 | "user-plus": ["new", "add", "create", "follow", "subscribe"],
216 | "user-x": ["delete", "remove", "unfollow", "unsubscribe", "unavailable"],
217 | "user": ["person", "account"],
218 | "users": ["group"],
219 | "video-off": ["camera", "movie", "film"],
220 | "video": ["camera", "movie", "film"],
221 | "voicemail": ["phone"],
222 | "volume": ["music", "sound", "mute"],
223 | "volume-1": ["music", "sound"],
224 | "volume-2": ["music", "sound"],
225 | "volume-x": ["music", "sound", "mute"],
226 | "watch": ["clock", "time"],
227 | "wifi-off": ["disabled"],
228 | "wifi": ["connection", "signal", "wireless"],
229 | "wind": ["weather", "air"],
230 | "x-circle": ["cancel", "close", "delete", "remove", "times", "clear"],
231 | "x-octagon": ["delete", "stop", "alert", "warning", "times", "clear"],
232 | "x-square": ["cancel", "close", "delete", "remove", "times", "clear"],
233 | "x": ["cancel", "close", "delete", "remove", "times", "clear"],
234 | "youtube": ["logo", "video", "play"],
235 | "zap-off": ["flash", "camera", "lightning"],
236 | "zap": ["flash", "camera", "lightning"],
237 | "zoom-in": ["magnifying glass"],
238 | "zoom-out": ["magnifying glass"]
239 | }
--------------------------------------------------------------------------------
/src/lib/hero-tags.json:
--------------------------------------------------------------------------------
1 | {"academic-cap":["degree","diploma","graduation","hat","school","university"],"adjustments-horizontal":["filter","settings","sliders"],"adjustments-vertical":["filter","settings","sliders"],"archive-box":["box","store"],"archive-box-arrow-down":["box","download","store"],"archive-box-x-mark":["box","cancel","delete","remove","store"],"arrow-down-on-square":["download"],"arrow-down-on-square-stack":["download"],"arrow-down-tray":["download"],"arrow-left-on-rectangle":["logout","sign-out"],"arrow-path":["refresh","reload","restart","update"],"arrow-right-on-rectangle":["login","sign-in"],"arrow-top-right-on-square":["external"],"arrow-trending-down":["analytics","decrease"],"arrow-trending-up":["analytics","increase"],"arrow-up-on-square":["upload"],"arrow-up-on-square-stack":["upload"],"arrow-up-tray":["upload"],"arrow-uturn-left":["back","previous"],"arrow-uturn-right":["forward","next"],"arrows-pointing-in":["collapse"],"arrows-pointing-out":["expand"],"arrows-right-left":["switch"],"arrows-up-down":["switch"],"at-symbol":["@","email"],"backspace":["delete","remove"],"backward":["previous","rewind"],"banknotes":["bill","cash","money","payment","price"],"bars-2":["hamburger","menu"],"bars-3":["hamburger","menu"],"bars-4":["hamburger","menu"],"beaker":["chemical","chemistry","formula","potion","science"],"bell":["alert","notification"],"bell-alert":["notification"],"bell-slash":["notification","silence"],"bell-snooze":["notification","silence"],"bolt":["electric","electricity","flash","lightning","power","zap"],"bolt-slash":["electric","electricity","flash","lightning","power","zap"],"bookmark":["favorite","save"],"bookmark-slash":["delete","favorite","remove","save"],"bookmark-square":["favorite","save"],"briefcase":["business","job","office","work"],"building-library":["administration","institution"],"building-office":["apartment","flat","skyscraper","work"],"building-office-2":["apartment","flat","skyscraper","work"],"building-storefront":["shop"],"cake":["birthday","celebrate","party"],"calculator":["mathematics","maths","numbers"],"calendar":["date","day","event","month","year"],"calendar-days":["date","event","month","year"],"camera":["photo","picture"],"chart-bar":["analytics","graph","statistics","stats"],"chart-bar-square":["analytics","graph","statistics","stats"],"chart-pie":["analytics","graph","statistics","stats"],"chat-bubble-bottom-center":["bubble","comment","discussion","message","response","speech"],"chat-bubble-bottom-center-text":["bubble","comment","discussion","message","response","speech"],"chat-bubble-left":["bubble","comment","discussion","message","response","speech"],"chat-bubble-left-ellipsis":["bubble","comment","discussion","message","response","speech"],"chat-bubble-left-right":["bubble","comment","discussion","message","response","speech"],"chat-bubble-oval-left":["bubble","comment","discussion","message","response","speech"],"chat-bubble-oval-left-ellipsis":["bubble","comment","discussion","message","response","speech"],"check":["confirm","correct","ok","tick","valid","verified"],"check-badge":["confirm","correct","tick","verified"],"check-circle":["confirm","correct","tick","verified"],"chevron-double-down":["arrow-double-down"],"chevron-double-left":["arrow-double-left"],"chevron-double-right":["arrow-double-right"],"chevron-double-up":["arrow-double-up"],"chevron-down":["arrow-down","caret-down"],"chevron-left":["arrow-left","caret-left"],"chevron-right":["arrow-right","caret-right"],"chevron-up":["arrow-up","caret-up"],"chevron-up-down":["select","option"],"circle-stack":["collection","database","storage"],"clipboard":["copy","cut","paste"],"clipboard-document":["copy","cut","paste"],"clipboard-document-check":["clipboard-tick"],"clipboard-document-list":["copy","cut","paste"],"clock":["time","watch"],"cog":["gear","settings"],"cog-6-tooth":["gear","settings"],"cog-8-tooth":["gear","settings"],"command-line":["cli","code","console","terminal"],"computer-desktop":["mac","monitor","pc","windows"],"cpu-chip":["computer","electronics","pc"],"credit-card":["debit","money","payment","price"],"cube":["3d"],"currency-dollar":["money","payment","price","usd"],"currency-euro":["eur","euro","money","payment","price"],"currency-pound":["gbp","money","payment","price"],"currency-rupee":["inr","money","payment","price"],"currency-yen":["money","payment","price"],"cursor-arrow-rays":["cursor-pointer","mouse-click"],"cursor-arrow-ripple":["cursor-pointer","mouse-click"],"device-phone-mobile":["android","iphone","phone","smartphone"],"device-tablet":["ipad","kindle"],"document":["pdf","sim"],"document-duplicate":["clone","copy"],"document-magnifying-glass":["search"],"document-minus":["document-delete"],"ellipsis-horizontal":["meatballs","more"],"ellipsis-horizontal-circle":["more","options"],"ellipsis-vertical":["kebab","more"],"envelope":["letter","mail","message"],"envelope-open":["letter","mail","message"],"exclamation-circle":["caution","error","warning"],"exclamation-triangle":["caution","error","warning"],"eye":["public","seen","visible"],"eye-slash":["hidden","invisible","private","unseen"],"face-frown":["emoji","sad"],"face-smile":["emoji","happy"],"film":["cinema","movie"],"finger-print":["touch-id"],"fire":["burn","flame","hot","lit"],"flag":["report"],"folder-arrow-down":["folder-download"],"folder-minus":["folder-delete","folder-remove"],"folder-plus":["folder-add","folder-new"],"forward":["fast-forward","next","skip"],"funnel":["adjustments","filter"],"gif":["animation","image"],"gift":["present","reward"],"gift-top":["present","reward"],"globe-alt":["earth","planet","website","world","www"],"globe-americas":["earth","planet","website","world","www"],"globe-asia-australia":["earth","planet","website","world","www"],"globe-europe-africa":["earth","planet","website","world","www"],"hand-raised":["grab"],"hand-thumb-down":["dislike"],"hand-thumb-up":["like"],"hashtag":["octothorp","pound-sign"],"heart":["love","relationship"],"home":["building","house"],"home-modern":["building","house"],"inbox":["email","message"],"inbox-arrow-down":["email","message"],"inbox-stack":["email","message"],"information-circle":["help"],"language":["i18n","international","intl","l10n","translate"],"lifebuoy":["help","life-ring","overboard"],"light-bulb":["insight"],"link":["attachment","connect","url"],"lock-closed":["secure","security"],"lock-open":["security","unlock"],"magnifying-glass":["search"],"magnifying-glass-circle":["search"],"magnifying-glass-minus":["zoom-out"],"magnifying-glass-plus":["zoom-in"],"map-pin":["location","marker"],"microphone":["audio","podcast","record"],"minus":["delete","remove","subtract"],"minus-circle":["delete","remove","subtract"],"moon":["dark","night"],"musical-note":["song"],"no-symbol":["bad","block","end","halt","not-allowed","stop","unauthorized"],"paper-airplane":["send"],"paper-clip":["attachment","document","link"],"pencil":["edit","note","write"],"pencil-square":["edit","note","write"],"photo":["gallery","image","picture"],"plus":["add","create","new"],"plus-circle":["add","create"],"puzzle-piece":["add-on","addon","game","jigsaw"],"question-mark-circle":["help"],"scale":["balance","weigh"],"scissors":["cut"],"shield-check":["secure","shield-tick"],"shield-exclamation":["shield-error","shield-warning"],"shopping-bag":["cart"],"sparkles":["glitter","stars"],"speaker-wave":["audio","loud","sound","unmute","volume"],"speaker-x-mark":["audio","mute","quiet","sound","volume"],"star":["achievement","favorite","rating","score"],"sun":["brightness","day","light"],"swatch":["colors","palette"],"table-cells":["data","grid","spreadsheet"],"tag":["category","group","label"],"trash":["bin","delete","garbage","remove","rubbish"],"truck":["lorry","vehicle"],"user":["account","person","profile"],"user-circle":["account","person","profile"],"user-plus":["account","person","profile","user-add"],"user-minus":["account","person","profile","user-delete","user-remove"],"video-camera":["movie","record"],"video-camera-slash":["movie","record","stop"],"wifi":["connection","online","signal","wireless"],"wrench":["options","settings","tool"],"wrench-screwdriver":["options","settings","tool"],"x-circle":["cancel","close","delete","remove","stop"],"x-mark":["cancel","close","delete","remove","stop"]}
--------------------------------------------------------------------------------
/src/lib/iconoir-tags.json:
--------------------------------------------------------------------------------
1 | {"1st-medal":["prize","place","first","winner","champion",""],"2x2-cell":[""],"360-view":[""],"3d-add-hole":["modeling","blender","4d",""],"3d-arc-center-pt":["modeling","blender","4d",""],"3d-arc":["modeling","blender","4d",""],"3d-bridge":["modeling","blender","4d",""],"3d-center-box":["modeling","blender","4d",""],"3d-ellipse-three-pts":["modeling","blender","4d",""],"3d-ellipse":["modeling","blender","4d",""],"3d-pt-box":["modeling","blender","4d",""],"3d-rect-corner-to-corner":["modeling","blender","4d",""],"3d-rect-from-center":["modeling","blender","4d",""],"3d-rect-three-pts":["modeling","blender","4d",""],"3d-select-edge":["modeling","blender","4d",""],"3d-select-face":["modeling","blender","4d",""],"3d-select-point":["modeling","blender","4d",""],"3d-select-solid":["modeling","blender","4d",""],"3d-three-pts-box":["modeling","blender","4d",""],"4k-display":[""],"Fishing":[""],"accessibility-sign":["assistance","assistant","impaired",""],"accessibility-tech":["assistance","assistant","impaired",""],"accessibility":["assistance","assistant","impaired",""],"activity":[""],"add-circle":[""],"add-database-script":[""],"add-folder":[""],"add-frame":[""],"add-hexagon":[""],"add-keyframe-alt":[""],"add-keyframe":[""],"add-keyframes":[""],"add-lens":[""],"add-media-image":[""],"add-media-video":[""],"add-page":[""],"add-pin-alt":[""],"add-selection":[""],"add-square":[""],"add-to-cart":[""],"add-user":[""],"african-tree":[""],"air-conditioner":[""],"airplane-helix-45deg":["fly","jet",""],"airplane-helix":["fly","jet",""],"airplane-off":["fly","jet",""],"airplane-rotation":["fly","jet",""],"airplane":["fly","jet",""],"airplay":[""],"alarm":[""],"album-carousel":[""],"album-list":[""],"album-open":[""],"album":[""],"align-bottom-box":[""],"align-center":[""],"align-justify":[""],"align-left-box":[""],"align-left":[""],"align-right-box":[""],"align-right":[""],"align-top-box":[""],"antenna-off":[""],"antenna-signal-tag":[""],"antenna-signal":[""],"antenna":[""],"app-notification":[""],"app-window":[""],"apple-half-alt":[""],"apple-half":[""],"apple-imac-2021-side":[""],"apple-imac-2021":[""],"apple-mac":[""],"apple-swift":[""],"apple-wallet":[""],"apple":[""],"ar-symbol":[""],"arcade":[""],"archery-match":["sport","activity","arrows",""],"archery":["sport","activity","arrows",""],"archive":[""],"area-search":[""],"arrow-archery":["sport","activity","arrows",""],"arrow-down-circle":[""],"arrow-down":[""],"arrow-left-circle":[""],"arrow-left":[""],"arrow-right-circle":[""],"arrow-right":[""],"arrow-separate-vertical":[""],"arrow-separate":[""],"arrow-union-vertical":[""],"arrow-union":[""],"arrow-up-circle":[""],"arrow-up":[""],"asana":[""],"atom":[""],"attachment":[""],"augmented-reality":["ar","tech",""],"auto-flash":[""],"axes":[""],"backward-15-seconds":[""],"bag":[""],"bank":[""],"barcode":[""],"basketball-alt":[""],"basketball-field":[""],"basketball":[""],"battery-25":["energy","source","charge",""],"battery-50":["energy","source","charge",""],"battery-75":["energy","source","charge",""],"battery-charging":["energy","source","charge",""],"battery-empty":["energy","source","charge",""],"battery-full":["energy","source","charge",""],"battery-indicator":["energy","source","charge",""],"battery-warning":["energy","source","charge",""],"bbq":[""],"beach-bag-big":[""],"beach-bag":[""],"bed-ready":["sleep"," home"," sleeping",""],"bed":["sleep"," home"," sleeping",""],"behance-tag":[""],"behance":[""],"bell-notification":[""],"bell-off":[""],"bell":[""],"bicycle":["cycle","bike","transport","sport","life","activity",""],"bin-add":["trash",""],"bin-full":["trash",""],"bin-half":["trash",""],"bin-minus":["trash","remove","delete",""],"bin":["trash",""],"bishop":["game","chess",""],"bitbucket":["git"," repository"," github",""],"bluetooth-tag":[""],"bluetooth":[""],"bold-square":[""],"bold":[""],"bonfire":[""],"book-stack":[""],"book":[""],"bookmark-book":[""],"bookmark-circle":[""],"bookmark-empty":[""],"border-bl":[""],"border-bottom":[""],"border-br":[""],"border-inner":[""],"border-left":[""],"border-out":[""],"border-right":[""],"border-tl":[""],"border-top":[""],"border-tr":[""],"bounce-left":[""],"bounce-right":[""],"bowling-ball":[""],"box-iso":[""],"box":[""],"boxing-glove":[""],"brightness-window":["browser","os","setting","light","contrast",""],"brightness":["setting","light","contrast",""],"bubble-download":[""],"bubble-error":[""],"bubble-income":[""],"bubble-outcome":[""],"bubble-search":[""],"bubble-star":[""],"bubble-upload":[""],"bubble-warning":[""],"building":[""],"bus":["transport","station","track","public","shuttle",""],"bus-stop":["transport","station","track","public","shuttle",""],"cable-tag":[""],"calculator":["math","operation",""],"calendar":["organization","organisation","plan","planning","date","day","month","year",""],"camera":[""],"cancel":[""],"car":["vehicle","auto","drive","driving",""],"carbon":[""],"card-wallet":[""],"cart-alt":[""],"cart":[""],"cash":[""],"center-align":[""],"chat-add":[""],"chat-bubble-check":[""],"chat-bubble-empty":[""],"chat-bubble-error":[""],"chat-bubble-question":[""],"chat-bubble-translate":[""],"chat-bubble-warning":[""],"chat-bubble":[""],"chat-lines":[""],"chat-remove":[""],"check-circle":[""],"check-window":["browser","os",""],"check":[""],"chocolate":[""],"chromecast-active":[""],"chromecast":[""],"church-alt":[""],"church":[""],"cinema-old":[""],"circle":[""],"city":[""],"clean-water":["check"," safe",""],"clipboard-check":[""],"clock":[""],"closet":[""],"cloud-book-alt":[""],"cloud-check":[""],"cloud-desync":[""],"cloud-download":[""],"cloud-error":[""],"cloud-sunny":["weather","clouds",""],"cloud-sync":[""],"cloud-upload":[""],"cloud":[""],"code-brackets-square":[""],"code-brackets":[""],"code":[""],"codepen":[""],"coin":[""],"collage-frame":[""],"collapse":[""],"color-filter":[""],"color-picker-empty":[""],"color-picker":[""],"combine":[""],"compact-disc":[""],"compass":[""],"compress-lines":[""],"compress":[""],"computer":[""],"consumable":[""],"control-slider":["controller","ui","element","dashboard","panel",""],"cookie":["biscuit","food","privacy","data",""],"copy":[""],"copyright":[""],"corner-bottom-left":[""],"corner-bottom-right":[""],"corner-top-left":[""],"corner-top-right":[""],"cpu-warning":["processor","alert","caution","danger","computer","pc","tech",""],"cpu":["processor","computer","pc","tech",""],"cracked-egg":[""],"creative-commons":[""],"credit-card":[""],"crib":[""],"crop-rotate-bl":["cut"," edit"," image",""],"crop-rotate-br":["cut"," edit"," image",""],"crop-rotate-tl":["cut"," edit"," image",""],"crop-rotate-tr":["cut"," edit"," image",""],"crop":[""],"css3":[""],"cursor-pointer":["desktop","mouse",""],"cut-alt":[""],"cut":[""],"cycling":[""],"cylinder":["shape","geometry",""],"dash-flag":[""],"dashboard-dots":["accelerate","acceleration","panel","speed",""],"dashboard-speed":["accelerate","acceleration","panel",""],"dashboard":["accelerate","acceleration","panel","speed",""],"data-transfer-both":["connection"," computer"," network"," information",""],"data-transfer-check":["connection"," computer"," network"," information",""],"data-transfer-down":["connection"," computer"," network"," information",""],"data-transfer-up":["connection"," computer"," network"," information",""],"data-transfer-warning":["connection"," computer"," network"," information",""],"database-backup":["db"," storage"," repo",""],"database-export":["db"," storage"," repo",""],"database-monitor":["db"," storage"," repo",""],"database-restore":["db"," storage"," repo",""],"database-tag":["db"," storage"," repo",""],"database-script":["db"," storage"," repo",""],"database-settings":["db"," storage"," repo",""],"database-star":["db"," storage"," repo",""],"database-stats":["db"," storage"," repo",""],"db-check":["db"," storage"," repo",""],"db-error":["db"," storage"," repo",""],"db-search":["db"," storage"," repo",""],"db-warning":["db"," storage"," repo",""],"db":["db"," storage"," repo",""],"de-compress":[""],"delete-circle":[""],"delivery-truck":["ship","semitruck","shipment","amazon",""],"delivery":["ship","shipment","amazon",""],"depth":[""],"design-pencil":[""],"desk":[""],"dialpad":[""],"dice-five":[""],"dice-four":[""],"dice-one":[""],"dice-six":[""],"dice-three":[""],"dice-two":[""],"dimmer-switch":["light"," intensity"," setting"," house"," device"," remote"," controller",""],"director-chair":["movie"," cinema"," hollywood"," film"," filming",""],"discord":[""],"dishwasher":[""],"divide-selection-1":[""],"divide-selection-2":[""],"doc-search-alt":[""],"doc-search":[""],"doc-star-alt":[""],"doc-star":[""],"dollar":[""],"domotic-issue":[""],"donate":[""],"double-check":[""],"down-round-arrow":[""],"download-circle":[""],"download-data-window":["browser","os",""],"download-square":[""],"download":[""],"drag-hand-gesture":[""],"drawer":[""],"dribbble":["social","design","designers",""],"drone-charge-full":["air"," device"," fly",""],"drone-charge-half":["air"," device"," fly",""],"drone-charge-low":["air"," device"," fly",""],"drone-check":["air"," device"," fly",""],"drone-error":["air"," device"," fly",""],"drone-landing":["air"," device"," fly",""],"drone-refresh":["air"," device"," fly",""],"drone-take-off":["air"," device"," fly",""],"drone":["air"," device"," fly",""],"droplet-half":[""],"droplet":[""],"ease-curve-control-points":[""],"ease-in-control-point":[""],"ease-in-out":[""],"ease-in":[""],"ease-out-control-point":[""],"ease-out":[""],"ecology-book":["clean"," environment"," nature",""],"edit-pencil":[""],"edit":[""],"egg":[""],"eject":["disk","compact","player","vhs","cassette","tape","remove",""],"electronics-chip":[""],"electronics-transistor":[""],"emoji-ball":[""],"emoji-blink-left":[""],"emoji-blink-right":[""],"emoji-look-down":[""],"emoji-look-left":[""],"emoji-look-right":[""],"emoji-look-up":[""],"emoji-puzzled":[""],"emoji-quite":[""],"emoji-really":[""],"emoji-sad":[""],"emoji-satisfied":[""],"emoji-sing-left-note":[""],"emoji-sing-left":[""],"emoji-sing-right-note":[""],"emoji-sing-right":[""],"emoji-surprise-alt":[""],"emoji-surprise":[""],"emoji-talking-angry":[""],"emoji-talking-happy":[""],"emoji-think-left":[""],"emoji-think-right":[""],"emoji":[""],"empty-page":[""],"energy-usage-window":["browser","os","consuption","economy",""],"enlarge-round-arrow":[""],"enlarge":[""],"erase":[""],"error-window":["browser","os",""],"euro-square":[""],"euro":[""],"ev-charge-alt":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-charge":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-plug-charging":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-plug-error":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-plug":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-tag":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"ev-station":["port"," charge"," recharge"," electricity"," vehicle"," car",""],"exclude":[""],"expand-lines":[""],"expand":[""],"eye-alt":[""],"eye-close":[""],"eye-empty":[""],"eye-off":[""],"face-id":[""],"facebook-tag":[""],"facebook":[""],"facetime":[""],"farm":[""],"fast-arrow-down-box":[""],"fast-arrow-down":[""],"fast-arrow-left-box":[""],"fast-arrow-left":[""],"fast-arrow-right-box":[""],"fast-arrow-right":[""],"fast-arrow-up":[""],"fast-arrow-up-box":[""],"fast-down-circle":[""],"fast-left-circle":[""],"fast-right-circle":[""],"fast-up-circle":[""],"favourite-book":[""],"favourite-window":["browser","os",""],"female":[""],"figma":[""],"file-not-found":[""],"filter-alt":[""],"filter":[""],"finder":["mac","apple","folder","file","os","operative","system",""],"fingerprint-window":["browser","os",""],"fingerprint-error-circle":[""],"fingerprint-lock-circle":[""],"fingerprint-check-circle":[""],"fingerprint-circle":[""],"fingerprint-phone":[""],"fingerprint-scan":[""],"fingerprint-square":[""],"fingerprint":[""],"fire-flame":[""],"flare":[""],"flash-off":[""],"flash":[""],"flask":[""],"flip-reverse":[""],"flip":[""],"flower":[""],"fluorine":[""],"fog":[""],"folder-alert":[""],"folder-settings":[""],"folder":[""],"font-size":[""],"football-ball":[""],"football":[""],"forward-15-seconds":[""],"forward":[""],"frame-alt-empty":[""],"frame-alt":[""],"frame-select":[""],"frame-simple":[""],"frame-tool":[""],"frame":[""],"fridge":[""],"fx-tag":[""],"fx":[""],"gamepad":[""],"garage":[""],"gas-tank-drop":["fuel",""],"gas-tank":["fuel",""],"gas":[""],"gift":[""],"git-branch":["git"," github",""],"git-command":["git"," github",""],"git-commit":["git"," github",""],"git-compare":["git"," github",""],"git-fork":["git"," github",""],"git-merge":["git"," github",""],"git-pull-request":["git"," github",""],"github-circle":["git"," github",""],"github":["git"," github",""],"gitlab-full":["git"," github",""],"glass-empty":[""],"glass-half-alt":[""],"glass-half":[""],"glasses":[""],"globe":[""],"golf":[""],"google-circle":["alphabet","search",""],"google-docs":["alphabet","search","cloud","editor",""],"google-drive-check":["alphabet","search","cloud",""],"google-drive-sync":["alphabet","search","cloud",""],"google-drive-warning":["alphabet","search",""],"google-drive":["alphabet","search",""],"google-home":["alphabet","search",""],"google-one":["alphabet","search","cloud",""],"google":["alphabet","search",""],"gps":[""],"graph-down":[""],"graph-up":[""],"green-bus":["clean"," environment"," nature"," energy",""],"green-truck":[""],"green-vehicle":[""],"grid-add":[""],"grid-minus":[""],"grid-remove":[""],"group":["people","society","person",""],"gym":[""],"half-cookie":["biscuit","food","privacy","data",""],"half-moon":[""],"hand-brake":["car","drive","driving","auto","vehicle",""],"handbag":[""],"hard-drive":[""],"hat":[""],"hd-display":[""],"hd":[""],"hdr":[""],"headset-charge":[""],"headset-help":[""],"headset-issue":[""],"headset":[""],"health-shield":[""],"healthcare":[""],"heart":[""],"heavy-rain":["weather","storm",""],"heptagon":[""],"her-slips":[""],"warning-hexagon":[""],"hexagon-alt":[""],"hexagon-dice":[""],"hexagon":[""],"high-priority":[""],"historic-shield-alt":[""],"historic-shield":[""],"home-alt-slim-horiz":[""],"home-alt-slim":[""],"home-alt":[""],"home-hospital":[""],"home-sale":[""],"home-secure":[""],"home-shield":[""],"home-simple-door":[""],"home-simple":[""],"home-table":[""],"home-user":[""],"home":[""],"horiz-distribution-left":[""],"horiz-distribution-right":[""],"hospital-sign":[""],"hospital":[""],"hot-air-balloon":["fly"," airship",""],"hourglass":[""],"html5":[""],"hydrogen":[""],"iconoir":[""],"import":[""],"industry":[""],"infinite":["limitless"," endless"," boundless"," unbounded"," unlimited",""],"info-empty":[""],"input-field":["element","ui","textbox",""],"input-output":[""],"input-search":[""],"instagram":["social","share","story","video","photos","fb","meta",""],"internet":[""],"intersect-alt":[""],"intersect":[""],"ios-settings":["apple","iphone","ios",""],"ip-address":[""],"iris-scan":[""],"italic-square":[""],"italic":[""],"journal-page":[""],"journal":[""],"kanban-board":[""],"key-alt-back":[""],"key-alt-minus":[""],"key-alt-plus":[""],"key-alt-remove":[""],"key-alt":[""],"keyframe-align-center":[""],"keyframe-align-horizontal":[""],"keyframe-align-vertical":[""],"keyframe-position":[""],"keyframe":[""],"keyframes-couple":[""],"keyframes":[""],"label":[""],"lamp":["light"," home"," house",""],"language":[""],"laptop-charging":[""],"laptop-fix":[""],"laptop-issue":[""],"laptop":[""],"large-suitcase":[""],"layout-left":["layout","tiled","windows","tiling","window",""],"layout-right":["layout","tiled","windows","tiling","window",""],"leaderboard-star":[""],"leaderboard":[""],"leaf":[""],"left-round-arrow":[""],"lens":[""],"lifebelt":[""],"light-bulb-off":[""],"light-bulb-on":[""],"light-bulb":[""],"line-space":[""],"linear":[""],"link":[""],"linkedin":["social","work","connection",""],"linux":["os","operative","system",""],"list":[""],"load-action-floppy":[""],"lock-key":["locked","access","security","block","restricted"],"lock":[""],"locked-book":[""],"locked-window":["browser","os",""],"log-denied":["sign","access","error",""],"log-in":["sign","access",""],"log-out":["sign","access",""],"long-arrow-down-left":[""],"long-arrow-down-right":[""],"long-arrow-left-down":[""],"long-arrow-left-up":[""],"long-arrow-right-down":[""],"long-arrow-right-up":[""],"long-arrow-up-left":[""],"long-arrow-up-right":[""],"lot-of-cash":[""],"mac-control-key":["input","keyboard","mac","apple","os","operative","system",""],"mac-dock":["mac","apple","os","operative","system",""],"mac-option-key":["input","keyboard","mac","apple","os","operative","system",""],"mac-os-window":["mac","apple","os","operative","system",""],"magnet-energy":[""],"magnet":[""],"mail-opened":[""],"mail":[""],"male":[""],"map-issue":[""],"map":[""],"maps-arrow-diagonal":[""],"maps-arrow-issue":[""],"maps-arrow":[""],"maps-go-straight":[""],"maps-turn-back":[""],"maps-turn-left":[""],"maps-turn-right":[""],"mask-square":[""],"math-book":[""],"maximize":[""],"medal":[""],"media-image-folder":[""],"media-image-list":[""],"media-image":[""],"media-video-folder":[""],"media-video-list":[""],"media-video":[""],"medium":["write","writing","blog","news",""],"megaphone":[""],"menu-scale":[""],"menu":[""],"message-alert":[""],"message-text":[""],"message":[""],"metro":["transport","train","station","track","public",""],"mic-add":[""],"mic-check":[""],"mic-mute":[""],"mic-remove":[""],"mic-speaking":[""],"mic-warning":[""],"mic":[""],"minus-hexagon":[""],"minus-pin-alt":[""],"minus-square":[""],"minus":[""],"mirror":[""],"missing-font":[""],"modern-tv-4k":[""],"modern-tv":[""],"money-square":[""],"moon-sat":[""],"more-horiz-circle":[""],"more-horiz":[""],"more-vert-circle":[""],"more-vert":[""],"motorcycle":[""],"mouse-button-left":["controller","device","input",""],"mouse-button-right":["controller","device","input",""],"mouse-scroll-wheel":["controller","device","input",""],"move-down":[""],"move-left":[""],"move-right":[""],"move-ruler":[""],"move-up":[""],"movie":[""],"multi-bubble":[""],"multi-mac-os-window":["mac","apple","os","operative","system",""],"multi-window":["mac","apple","os","operative","system","windows","microsoft",""],"multiple-pages-add":[""],"multiple-pages-delete":[""],"multiple-pages-empty":[""],"multiple-pages-remove":[""],"multiple-pages":[""],"music-double-note-add":[""],"music-double-note":[""],"music-note-add":[""],"music-note":[""],"nav-arrow-down":[""],"nav-arrow-left":[""],"nav-arrow-right":[""],"nav-arrow-up":[""],"navigator-alt":[""],"navigator":[""],"network-alt":["connection"," computer"," network"," information",""],"network-left":["connection"," computer"," network"," information",""],"network-right":["connection"," computer"," network"," information",""],"network":["connection"," computer"," network"," information",""],"new-tab":[""],"nintendo-switch":["game","console","portable",""],"nitrogen":[""],"no-access-window":["browser","os",""],"no-battery":[""],"no-coin":[""],"no-credit-card":[""],"no-link":[""],"no-lock":[""],"no-smoking-circle":[""],"no-smoking":[""],"notes":[""],"numbered-list-left":[""],"numbered-list-right":[""],"octagon":[""],"off-tag":["switch","toggle","enable",""],"oil-industry":[""],"on-tag":["switch","toggle","enable",""],"one-finger-select-hand-gesture":[""],"one-point-circle":[""],"open-book":[""],"open-in-browser":[""],"open-in-window":[""],"open-new-window":[""],"open-select-hand-gesture":[""],"open-vpn":[""],"orange-half":[""],"orange-slice-alt":[""],"orange-slice":[""],"organic-food-square":[""],"organic-food":[""],"orthogonal-view":[""],"oxygen":[""],"package-lock":["ship","shipment","amazon","secure","box",""],"package":["ship","shipment","amazon","box",""],"packages":["ship","shipment","amazon","stockage","deposit","boxes","box",""],"pacman":[""],"page-edit":[""],"page-flip":[""],"page-search":[""],"page-star":[""],"page":[""],"palette":[""],"panorama-enlarge":[""],"panorama-reduce":[""],"pants-alt":[""],"pants":[""],"parking":["drive","car","spot","place","auto","vehicle",""],"password-cursor":[""],"password-error":[""],"password-pass":[""],"paste-clipboard":[""],"pause":[""],"pause-window":["browser","os","hold","wait","freeze",""],"pc-check":[""],"pc-firewall":[""],"pc-mouse":["controller","device","input",""],"pc-no-entry":[""],"pc-warning":[""],"peace-hand":[""],"pen-connect-bluetooth":[""],"pen-connect-wifi":[""],"pen-tablet-connect-usb":[""],"pen-tablet-connect-wifi":[""],"pen-tablet":[""],"pentagon":[""],"people-tag":["people","society","person",""],"percentage-circle":[""],"percentage-square":[""],"percentage":[""],"perspective-view":[""],"pharmacy-cross-circle":[""],"pharmacy-cross-square":[""],"phone-add":[""],"phone-delete":[""],"phone-disabled":[""],"phone-income":[""],"phone-outcome":[""],"phone-paused":[""],"phone-remove":[""],"phone":[""],"piggy-bank":[""],"pillow":[""],"pin-alt":[""],"pin":[""],"pine-tree":[""],"pinterest":[""],"pizza-slice":[""],"planet-alt":[""],"planet-sat":[""],"planet":[""],"play":[""],"playlist-add":[""],"playlist-play":[""],"playlist":[""],"playstation-gamepad":[""],"plug-type-a":["port"," access"," connection"," cable",""],"plug-type-c":["port"," access"," connection"," cable",""],"plug-type-g":["port"," access"," connection"," cable",""],"plug-type-l":["port"," access"," connection"," cable",""],"plus":[""],"pocket":["save","tool","app",""],"podcast":[""],"pokeball":["pokemon",""],"position-align":[""],"position":[""],"potion":["power","superpower","energy",""],"pound":[""],"precision-tool":[""],"printer-alt":[""],"printer":[""],"printing-page":[""],"priority-down":[""],"priority-up":[""],"private-wifi":[""],"profile-circle":["user","round","person",""],"prohibition":[""],"puzzle":[""],"qr-code":[""],"help-circle":[""],"question-mark":[""],"help-square":[""],"quote-message":[""],"quote":[""],"rain":["weather",""],"receive-dollars":[""],"receive-euros":[""],"receive-pounds":[""],"receive-yens":[""],"redo-action":[""],"redo-circle":[""],"redo":[""],"reduce-round-arrow":[""],"reduce":[""],"refresh-circular":[""],"refresh-double":[""],"refresh":[""],"reload-window":["refresh","browser","os",""],"reminder-hand-gesture":[""],"remove-database-script":[""],"minus-circle":[""],"remove-folder":[""],"remove-frame":[""],"remove-from-cart":[""],"remove-keyframe-alt":[""],"remove-keyframe":[""],"remove-keyframes":[""],"remove-link":[""],"remove-media-image":[""],"remove-media-video":[""],"remove-page":[""],"remove-pin-alt":[""],"remove-pin":[""],"remove-selection":[""],"remove-square":[""],"remove-user":["delete","cancel","profile","person",""],"repeat-once":[""],"repeat":[""],"report-columns":[""],"reports":[""],"repository":["git"," github",""],"restart":[""],"rewind":[""],"rhombus":[""],"right-round-arrow":[""],"rings":[""],"rocket":["space"," nasa"," esa"," spacex"," missile",""],"rook":[""],"rotate-camera-left":[""],"rotate-camera-right":[""],"round-flask":[""],"rounded-mirror":[""],"rss-feed-tag":["news",""],"rss-feed":["news",""],"ruler-add":[""],"ruler-combine":[""],"ruler-remove":[""],"ruler":[""],"running":[""],"safari":["browser","web","internet","apple",""],"sandals":[""],"save-action-floppy":[""],"save-floppy-disk":[""],"scale-frame-enlarge":[""],"scale-frame-reduce":[""],"scan-barcode":[""],"scan-qr-code":[""],"scanning":[""],"scarf":[""],"scissor-alt":[""],"scissor":[""],"sea-and-sun":[""],"sea-waves":[""],"search-engine":["google","duckduckgo","bing",""],"search-font":[""],"search-window":["find",""],"search":[""],"secure-window":["find",""],"security-pass":[""],"select-window":["find",""],"selection":[""],"selective-tool":[""],"send-dollars":[""],"send-euros":[""],"send-pounds":[""],"send-yens":[""],"server-connection":["connection"," computer"," network",""],"server":["connection"," computer"," network",""],"settings-cloud":[""],"settings-profiles":[""],"settings":[""],"share-android":[""],"share-ios":[""],"shield-add":["security","protection","firewall",""],"shield-alert":["security","protection","firewall",""],"shield-alt":["security","protection","firewall",""],"shield-broken":["security","protection","firewall",""],"shield-check":["security","protection","firewall",""],"shield-cross":["security","protection","firewall",""],"shield-download":["security","protection","firewall",""],"shield-eye":["security","protection","firewall",""],"shield-loading":["security","protection","firewall",""],"shield-minus":["security","protection","firewall",""],"shield-question":["security","protection","firewall",""],"shield-search":["security","protection","firewall",""],"shield-upload":["security","protection","firewall",""],"shield":["security","protection","firewall",""],"shop-alt":[""],"shop":[""],"shopping-bag-add":[""],"shopping-bag-alt":[""],"shopping-bag-arrow-down":[""],"shopping-bag-arrow-up":[""],"shopping-bag-check":[""],"shopping-bag-issue":[""],"shopping-bag-remove":[""],"shopping-bag":[""],"shopping-code-check":[""],"shopping-code-error":[""],"shopping-code":[""],"short-pants-alt":[""],"short-pants":[""],"shuffle":[""],"sidebar-collapse":[""],"sidebar-expand":[""],"sigma-function":["greek","math","symbol",""],"simple-cart":[""],"single-tap-gesture":[""],"skateboard":[""],"skateboarding":[""],"skip-next":[""],"skip-prev":[""],"sleeper-chair":[""],"small-lamp-alt":["light"," home"," house",""],"small-lamp":["light"," home"," house",""],"small-shop-alt":[""],"small-shop":[""],"smartphone-device":[""],"smoking":[""],"snapchat":["message","messaging","chat","share","ghost",""],"snow-flake":["weather","storm","ac","air","conditioner","freeze","freezer",""],"snow":[""],"soap":[""],"soccer-ball":[""],"sofa":[""],"soil-alt":["terrain"," ground"," nature"," vegetation",""],"soil":["terrain"," ground"," nature"," vegetation",""],"sort-down":[""],"sort-up":[""],"sort":[""],"sound-high":[""],"sound-low":[""],"sound-min":[""],"sound-off":[""],"spades":["poker","game","cards","gambling","vegas",""],"sphere":["modeling","blender","4d","geometry",""],"spiral":["modeling","blender","4d","geometry",""],"spock-hand-gesture":[""],"square":[""],"stackoverflow":[""],"star-dashed":[""],"star-half-dashed":[""],"star":[""],"stat-down":[""],"stat-up":[""],"stats-report":[""],"stats-down-square":[""],"stats-up-square":[""],"stretching":[""],"stroller":[""],"style-border":[""],"substract":[""],"suggestion":[""],"sun-light":[""],"swimming":[""],"swipe-down-gesture":[""],"swipe-left-gesture":[""],"swipe-right-gesture":[""],"swipe-two-fingers-down-gesture":[""],"swipe-two-fingers-left-gesture":[""],"swipe-two-fingers-right-gesture":[""],"swipe-two-fingers-up-gesture":[""],"swipe-up-gesture":[""],"switch-off":["toggle",""],"switch-on":["toggle",""],"system-restart":["restart","start","login","logout","sign",""],"system-shut":["restart","start","login","logout","sign",""],"table-2-columns":[""],"table-rows":[""],"table":[""],"task-list":[""],"telegram-circle":["message","messaging","chat","private","secure","security","encrypt",""],"telegram":["message","messaging","chat","private","secure","security","encrypt",""],"tennis-ball-alt":[""],"tennis-ball":[""],"terminal-tag":[""],"terminal":[""],"test-tube":[""],"text-alt":[""],"text-size":[""],"text":[""],"three-points-circle":[""],"three-stars":[""],"thumbs-down":["disapprove","dislike","facebook","fb","meta","no",""],"thumbs-up":["approve","like","facebook","fb","meta","yes",""],"thunderstorm":[""],"tiktok":["social","video","shorts","story","share",""],"timer-off":[""],"timer":[""],"tournament":[""],"tower-check":[""],"tower-no-access":[""],"tower-warning":[""],"tower":[""],"trademark":[""],"train":["transport","train","station","track","public",""],"tram":["transport","train","station","track","public",""],"transition-down":[""],"transition-left":[""],"transition-right":[""],"transition-up":[""],"translate":[""],"trash":[""],"treadmill":[""],"tree":[""],"trekking":[""],"trello":[""],"triangle-flag-circle":[""],"triangle-flag-two-stripes":[""],"triangle-flag":[""],"triangle":[""],"trophy":[""],"truck-length":["size","transport","semitruck","rule","condition",""],"truck":["ship","semitruck","shipment","amazon",""],"tunnel":[""],"tv-fix":[""],"tv-issue":[""],"tv":[""],"twitter-verified-badge":["social","twitter","instagram","share",""],"twitter":["bird","social","share",""],"two-points-circle":[""],"two-seater-sofa":[""],"type":[""],"umbrella-full":[""],"underline-square":[""],"underline":[""],"undo-action":[""],"undo-circle":[""],"undo":[""],"union-alt":[""],"union-horiz-alt":[""],"union":[""],"unity-5":[""],"unity":[""],"up-round-arrow":[""],"upload-data-window":["os","browser",""],"upload-square":[""],"upload":["upload","arrow","data","cloud","save",""],"usb":["port"," access"," connection"," cable",""],"user-bag":[""],"user-cart":[""],"user-circle":[""],"user-scan":[""],"user-square":["person","people","ux",""],"user":["person","people","ux",""],"vegan-circle":[""],"vegan-square":[""],"vegan":[""],"verified-badge":["social","twitter","instagram","share",""],"verified-user":["profile","person",""],"video-camera-off":[""],"video-camera":[""],"view-columns-2":["layout","tiled","windows","tiling","window",""],"view-columns-3":["layout","tiled","windows","tiling","window",""],"view-grid":[""],"view-structure-down":[""],"view-structure-up":[""],"voice-lock-circle":[""],"voice-circle":[""],"voice-error":[""],"voice-ok":[""],"voice-phone":[""],"voice-scan":[""],"voice-square":[""],"voice":[""],"vr-symbol":[""],"waist":[""],"walking":[""],"wallet":[""],"warning-circle":[""],"warning-square":[""],"warning-triangle":[""],"warning-window":["alert","danger",""],"wash":[""],"washing-machine":[""],"watering-soil":["gardening"," garden"," terrain"," ground"," plants",""],"web-window-close":[""],"web-window-energy-consumption":[""],"web-window":[""],"weight-alt":[""],"weight":[""],"white-flag":[""],"wifi-error":["signal"," connection"," network",""],"wifi-issue":["signal"," connection"," network",""],"wifi-off":["signal"," connection"," network",""],"wifi-tag":["signal"," connection"," network",""],"wifi-signal-none":["signal"," connection"," network",""],"wifi":["signal"," connection"," network",""],"wind":["weather","air","fresh",""],"windows":[""],"wrap-text":[""],"wristwatch":[""],"www":[""],"xbox-a":[""],"xbox-b":[""],"xbox-x":[""],"xbox-y":[""],"xray-view":[""],"yen-square":[""],"yen":[""],"yoga":[""],"youtube":["google","video","social","share",""],"zoom-in":[""],"zoom-out":[""],"add-page-alt":[""],"angle-tool":[""],"avi-format":[""],"bread-slice":[""],"closed-captions":[""],"clutery":[""],"coffee-cup":[""],"design-nib":[""],"forward-message":[""],"arrow-email-forward":[""],"gif-format":[""],"hammer":[""],"jpeg-format":[""],"jpg-format":[""],"list-select":[""],"mail-in":[""],"mail-out":[""],"mpeg-format":[""],"npm-square":[""],"npm":[""],"png-format":[""],"raw-format":[""],"remove-page-alt":[""],"reply-to-message":[""],"reply":[""],"screenshot":[""],"send-diagonal":[""],"send-mail":[""],"send":[""],"submit-document":[""],"svg-format":[""],"text-box":[""],"tif-format":[""],"tiff-format":[""],"tools":[""],"webp-format":[""],"wrench":[""],"arrow-bl-circle":[""],"arrow-bl-square":[""],"arrow-br-circle":[""],"arrow-br-square":[""],"arrow-tl-circle":[""],"arrow-tl-square":[""],"arrow-tr-circle":[""],"arrow-tr-square":[""],"divide-three":[""],"divide":[""],"drag":[""],"horizontal-merge":[""],"horizontal-split":[""],"page-down":[""],"page-left":[""],"page-right":[""],"page-up":[""],"path-arrow":[""],"shortcut":[""],"vertical-merge":[""],"vertical-split":[""],"at-sign-circle":[""],"at-sign":[""],"brain-electricity":[""],"brain-research":[""],"brain-warning":[""],"brain":[""],"candlestick-chart":[""],"card-issue":[""],"card-locked":[""],"card-security":[""],"cooling":[""],"credit-cards":[""],"diameter":[""],"dna":[""],"graduation-cap":[""],"heating":[""],"inclination":[""],"mastercard-card":[""],"microscope":[""],"paypal":[""],"radiation":[""],"radius":[""],"rubik-cube":[""],"vials":[""],"x-coordinate":[""],"y-coordinate":[""],"z-coordinate":[""],"agile":[""],"bright-crown":[""],"bright-star":[""],"calendar-minus":[""],"calendar-plus":[""],"community":[""],"crown-circle":[""],"crown":[""],"git-cherry-pick-commit":[""],"git-pull-request-closed":[""],"key-command":[""],"learning":[""],"medium-priority":[""],"okrs":[""],"presentation":[""],"sine-wave":[""],"square-wave":[""],"strategy":[""],"t-shirt":[""],"user-crown":[""],"user-love":[""],"user-star":[""],"video-projector":[""],"women-t-shirt":[""],"adobe-after-effects":[""],"adobe-illustrator":[""],"adobe-indesign":[""],"adobe-lightroom":[""],"adobe-photoshop":[""],"adobe-xd":[""],"arrow-bl":[""],"arrow-br":[""],"arrow-tl":[""],"arrow-tr":[""],"balcony":[""],"bathroom":[""],"binocular":[""],"birthday-cake":[""],"cellar":[""],"color-wheel":[""],"dev-mode-laptop":[""],"dev-mode-phone":[""],"developer":[""],"dew-point":[""],"elevator":[""],"fill-color":[""],"filter-list-circle":[""],"filter-list":[""],"fish":[""],"home-temperature-in":[""],"home-temperature-out":[""],"house-rooms":[""],"jellyfish":[""],"lullaby":[""],"magic-wand":[""],"neighbourhood":[""],"non-binary":[""],"planimetry":[""],"privacy policy":[""],"slash":[""],"spotify":[""],"strikethrough":[""],"temperature-down":[""],"temperature-high":[""],"temperature-low":[""],"temperature-up":[""],"time-zone":[""],"vue-js":[""],"wolf":[""],"yelp":[""],"cut-solid-with-curve":[""],"extrude":[""],"fillet-3d":[""],"loft-3d":[""],"patch-holes-3d":[""],"pipe-3d":[""],"project-curve-3d":[""],"sweep-3d":[""],"unjoin-3d":[""],"bitcoin-circle":[""],"bitcoin-rotate-out":[""],"card-reader":[""],"coins-swap":["conversion"," currency"," exchange",""],"coins":[""],"commodity":["gold"," ingot"," bar",""],"contactless":["pay"," payment",""],"dogecoin-circle":[""],"dogecoin-rotate-out":[""],"ethereum-circle":[""],"ethereum-rotate-out":[""],"hand-card":["pay"," payment",""],"hand-cash":["pay"," payment",""],"hand-contactless":["pay"," payment",""],"litecoin-circle":[""],"litecoin-rotate-out":[""],"percent-rotate-out":[""],"safe-arrow-left":[""],"safe-arrow-right":[""],"safe-open":[""],"safe":[""]}
--------------------------------------------------------------------------------
/src/lib/icons.ts:
--------------------------------------------------------------------------------
1 | import HeroIcons from './icons-outline.json';
2 | import FeatherIcons from './feather-icons.json';
3 | import IconoirIcons from './iconoir-icons.json';
4 | import StreamlineIcons from './streamlin-icons.json';
5 | import AkarIcons from './akar-icons.json';
6 | import HeroIconsTags from './hero-tags.json';
7 | import FeatherIconsTags from './feather-tags.json';
8 | import IconoirIconsTags from './iconoir-tags.json';
9 |
10 | export interface Icon {
11 | id: string;
12 | label: string;
13 | svg: string;
14 | tags: string[];
15 | collection: string;
16 | }
17 |
18 | function createMap(arr: T[], key: keyof T) {
19 | return arr.reduce((acc, item) => {
20 | acc.set(item[key], item);
21 | return acc;
22 | }, new Map());
23 | }
24 |
25 | export const heroIcons: Icon[] = HeroIcons.map(icon => ({ ...icon, tags: HeroIconsTags[icon.label] ?? [], id: 'hero_' + icon.label, collection: 'hero' }));
26 | export const featherIcons: Icon[] = FeatherIcons.map(icon => ({ ...icon, tags: FeatherIconsTags[icon.label] ?? [], id: 'feather_' + icon.label, collection: 'feather' }));
27 | export const iconoirIcons: Icon[] = IconoirIcons.map(icon => ({ ...icon, tags: IconoirIconsTags[icon.label] ?? [], id: 'iconoir_' + icon.label, collection: 'iconoir' }));
28 | export const streamLineIcons: Icon[] = StreamlineIcons.map(icon => ({ ...icon, tags: IconoirIconsTags[icon.label] ?? [], id: 'streamline_' + icon.label, collection: 'streamline' }));
29 | export const akarIcons: Icon[] = AkarIcons.map(icon => ({ ...icon, tags: IconoirIconsTags[icon.label] ?? [], id: 'akar_' + icon.label, collection: 'akar' }));
30 |
31 | export const heroIconsMap = createMap(heroIcons, 'label');
32 | export const featherIconsMap = createMap(featherIcons, 'label');
33 | export const iconoirIconsMap = createMap(iconoirIcons, 'label');
--------------------------------------------------------------------------------
/src/lib/index.js:
--------------------------------------------------------------------------------
1 | // Reexport your entry components here
2 |
--------------------------------------------------------------------------------
/src/lib/selection-store.ts:
--------------------------------------------------------------------------------
1 | import { writable } from "svelte/store";
2 | import type { Icon } from "./icons";
3 |
4 | export const store = writable({});
--------------------------------------------------------------------------------
/src/lib/svgToPath.ts:
--------------------------------------------------------------------------------
1 | export function getComponent(svg: string) {
2 | const parser = new DOMParser();
3 | const dom = parser.parseFromString(svg, "image/svg+xml");
4 | const path = dom.querySelector('svg')?.innerHTML;
5 | return `
21 |
22 | ${path}
32 | `;
33 | }
34 |
35 | export function getTSComponent(svg: string) {
36 | const parser = new DOMParser();
37 | const dom = parser.parseFromString(svg, "image/svg+xml");
38 | const path = dom.querySelector('svg')?.innerHTML;
39 | return `
56 |
57 | ${path}
67 | `;
68 | }
--------------------------------------------------------------------------------
/src/routes/+layout.ts:
--------------------------------------------------------------------------------
1 | export const prerender = true
--------------------------------------------------------------------------------
/src/routes/+page.svelte:
--------------------------------------------------------------------------------
1 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
145 |
146 |
147 |
148 | {#each tabs as tab}
149 |
150 | (currentTab = tab)} class="{currentTab === tab ? 'text-black' : 'text-gray-300'}">{tab.title} ({tab.icons.length})
151 |
152 | {/each}
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
165 |
169 | {#each paginatedIcons as icon}
170 |
171 |
172 |
173 | {@html icon.svg}
174 |
175 |
176 |
177 | copyComponent(icon.svg)}
180 | onCopyDone={handleCopyDone}
181 | label=".svelte"
182 | type="component"
183 | />
184 |
185 | copyTSComponent(icon.svg)}
188 | onCopyDone={handleCopyDone}
189 | label=".svelte (ts)"
190 | type="tscomponent"
191 | />
192 |
193 | icon.svg}
196 | onCopyDone={handleCopyDone}
197 | label=".svg"
198 | type="svg"
199 | />
200 |
201 |
202 |
203 | {icon.label}
204 |
205 |
206 | {/each}
207 |
208 |
209 |
210 | {#if isDownloadButtonVisible}
211 |
212 |
213 | {#if isDownloading}
214 |
215 | {:else}
216 |
217 | {/if}
218 |
219 |
220 | {/if}
221 |
--------------------------------------------------------------------------------
/src/routes/CopyIcon.svelte:
--------------------------------------------------------------------------------
1 |
17 |
18 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/routes/CreditsInfo.svelte:
--------------------------------------------------------------------------------
1 |
2 | Credits:
3 |
--------------------------------------------------------------------------------
/src/routes/DownloadIcon.svelte:
--------------------------------------------------------------------------------
1 |
17 |
18 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/src/routes/GithubIcon.svelte:
--------------------------------------------------------------------------------
1 |
18 |
19 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/routes/LoaderSpin.svelte:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
166 |
--------------------------------------------------------------------------------
/src/routes/SelectButton.svelte:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 |
15 | {label}
16 | {}}
19 | style:margin-left="auto"
20 | type="checkbox"
21 | />
22 |
--------------------------------------------------------------------------------
/src/routes/TwitterIcon.svelte:
--------------------------------------------------------------------------------
1 |
18 |
19 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/routes/styles.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
--------------------------------------------------------------------------------
/static/cover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ankurrsinghal/svelte-icons-kit/3a30bab9c7800cbc3822fa8e483402c76eb70248/static/cover.png
--------------------------------------------------------------------------------
/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ankurrsinghal/svelte-icons-kit/3a30bab9c7800cbc3822fa8e483402c76eb70248/static/favicon.png
--------------------------------------------------------------------------------
/svelte.config.js:
--------------------------------------------------------------------------------
1 | import adapter from '@sveltejs/adapter-static';
2 | import { vitePreprocess } from '@sveltejs/kit/vite';
3 |
4 | /** @type {import('@sveltejs/kit').Config} */
5 | const config = {
6 | // Consult https://kit.svelte.dev/docs/integrations#preprocessors
7 | // for more information about preprocessors
8 | preprocess: vitePreprocess(),
9 |
10 | kit: {
11 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
12 | // If your environment is not supported or you settled on a specific environment, switch out the adapter.
13 | // See https://kit.svelte.dev/docs/adapters for more information about adapters.
14 | adapter: adapter()
15 | }
16 | };
17 |
18 | export default config;
19 |
--------------------------------------------------------------------------------
/tailwind.config.cjs:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | export default {
3 | content: ['./src/**/*.{html,js,svelte,ts}'],
4 | theme: {
5 | extend: {
6 | colors: {
7 | prime: 'rgb(255 62,0)'
8 | },
9 | fontFamily: {
10 | inter: 'Inter',
11 | overpass: 'Overpass',
12 | aleo: 'Aleo',
13 | lexend: 'Lexend',
14 | }
15 | },
16 | },
17 | plugins: [],
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./.svelte-kit/tsconfig.json",
3 | "compilerOptions": {
4 | "allowJs": true,
5 | "checkJs": true,
6 | "esModuleInterop": true,
7 | "forceConsistentCasingInFileNames": true,
8 | "resolveJsonModule": true,
9 | "skipLibCheck": true,
10 | "sourceMap": true,
11 | "strict": true
12 | }
13 | // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
14 | //
15 | // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
16 | // from the referenced tsconfig.json - TypeScript does not merge them in
17 | }
18 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { sveltekit } from '@sveltejs/kit/vite';
2 | import { defineConfig } from 'vite';
3 |
4 | export default defineConfig({
5 | plugins: [sveltekit()]
6 | });
7 |
--------------------------------------------------------------------------------