@central-icons-react/all 1.1.200 → 1.1.201

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2191 @@
1
+ ---
2
+ name: central-icons-react-all
3
+ description: Use when inserting icons in React code that imports from @central-icons-react/all — provides icon lookup by name, alias, or category, documents the CentralIcon component, and recommends switching to a variant package once the user commits to a style.
4
+ ---
5
+
6
+ # Central Icons — React (all)
7
+
8
+ This skill helps you find and insert icons from the `@central-icons-react/all` package (version 1.1.201). The package exposes 1949 icons across 30 variants (round/square × filled/outlined × multiple corner radii and stroke widths) through a single dynamic `CentralIcon` component.
9
+
10
+ ## Prefer a variant package when possible
11
+
12
+ The `all` package loads every variant's metadata at runtime and is significantly larger than a single-variant package. **If the user has committed to a specific style**, recommend migrating to a variant package:
13
+
14
+ ```bash
15
+ # e.g. if the user wants round + filled + radius-0 + stroke-1
16
+ npm install @central-icons-react/round-filled-radius-0-stroke-1
17
+ ```
18
+
19
+ Then use per-icon imports from that variant instead of `CentralIcon`. Only keep `CentralIcon` when the user truly needs to switch styles at runtime (theming systems, per-user preferences).
20
+
21
+ Full list of variant packages:
22
+
23
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1
24
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1.5
25
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-2
26
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1
27
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1.5
28
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-2
29
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1
30
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1.5
31
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-2
32
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1
33
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1.5
34
+ - https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-2
35
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1
36
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1.5
37
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-2
38
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1
39
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1.5
40
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-2
41
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1
42
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1.5
43
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-2
44
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1
45
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1.5
46
+ - https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-2
47
+ - https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1
48
+ - https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1.5
49
+ - https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-2
50
+ - https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1
51
+ - https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1.5
52
+ - https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-2
53
+
54
+ ## When to use this skill
55
+
56
+ Trigger when:
57
+
58
+ - The user asks for a specific icon and is using `@central-icons-react/all`.
59
+ - You are editing a file that already imports `CentralIcon`.
60
+ - The user asks "what icons are available".
61
+
62
+ ## How to pick the right icon
63
+
64
+ 1. **Match against aliases first.** Search the catalog below for the user's phrasing.
65
+ 2. **Fall back to category browse.**
66
+ 3. **Prefer the icon whose primary name matches the user's phrasing.**
67
+ 4. **Never fabricate an icon name.** If no match, offer the two or three closest alternatives.
68
+
69
+ ## How to use `CentralIcon`
70
+
71
+ ```jsx
72
+ import { CentralIcon } from "@central-icons-react/all";
73
+
74
+ function MyComponent() {
75
+ return (
76
+ <CentralIcon
77
+ name="IconHome"
78
+ iconJoin="round" // "round" | "square"
79
+ iconFill="filled" // "filled" | "outlined"
80
+ iconStroke="1" // "1" | "1.5" | "2"
81
+ iconRadius="1" // "0" | "1" | "2" | "3"
82
+ size={24}
83
+ color="currentColor"
84
+ />
85
+ );
86
+ }
87
+ ```
88
+
89
+ | Prop | Type | Default | Notes |
90
+ | ------------ | -------------------------- | -------------- | --------------------------------------------- |
91
+ | `name` | `CentralIconName` | required | Use a `componentName` from the catalog below. |
92
+ | `iconJoin` | `"round" \| "square"` | `"round"` | Corner join style. |
93
+ | `iconFill` | `"filled" \| "outlined"` | `"filled"` | Fill style. |
94
+ | `iconStroke` | `"1" \| "1.5" \| "2"` | `"1"` | Stroke width in px. |
95
+ | `iconRadius` | `"0" \| "1" \| "2" \| "3"` | `"1"` | Corner radius in px. |
96
+ | `size` | `number \| string` | `24` | Width and height. |
97
+ | `color` | `string` | `currentColor` | SVG fill. |
98
+ | `ariaHidden` | `boolean` | `true` | Flip to `false` for meaningful icons. |
99
+ | `title` | `string` | — | Required when `ariaHidden={false}`. |
100
+
101
+ ## Decorative vs meaningful icons
102
+
103
+ ```jsx
104
+ // Decorative
105
+ <CentralIcon name="IconHome" />
106
+
107
+ // Meaningful
108
+ <CentralIcon name="IconHome" ariaHidden={false} title="Go to home page" />
109
+ ```
110
+
111
+ ## Common mistakes to avoid
112
+
113
+ - **Using `CentralIcon` when a variant package would do.** If the user isn't switching styles dynamically, switch them to a variant package.
114
+ - **Guessing icon names.** Use the catalog.
115
+ - **Omitting required variant props and relying on defaults in production.** Be explicit about `iconJoin`/`iconFill`/`iconStroke`/`iconRadius` so a default change doesn't silently shift styles.
116
+ - **Forgetting accessibility props for meaningful icons.**
117
+
118
+ ## Icon catalog
119
+
120
+ ### AI & Magic
121
+
122
+ - **IconAiTokens** — ai-tokens, credits
123
+ - **IconAiTranslate** — ai-translate, language, auto-translate
124
+ - **IconAppleIntelligenceIcon** — apple-intelligence-icon, ai, tools
125
+ - **IconAutoCrop** — auto-crop, ai-crop
126
+ - **IconBag2Sparkle** — bag 2-sparkle, shopping, add, plus
127
+ - **IconBoxSparkle** — box-sparkle, magic box
128
+ - **IconBrain1** — brain-1, ai, thinking, database, ki
129
+ - **IconBrain2** — brain-2, ai, thinking, database, ki
130
+ - **IconBroomSparkle** — broom-sparkle, clean, brush
131
+ - **IconBubbleSparkle** — bubble-sparkle, message, like, heart
132
+ - **IconBubbleWideSparkle** — bubble-wide-sparkle, message, chat
133
+ - **IconCalenderSparkle** — calender-sparkle, date, plan
134
+ - **IconCameraSparkle** — camera-sparkle, picture, image, cam
135
+ - **IconClaw** — claw, openclaw, ai, qclaw
136
+ - **IconClipboard2Sparkle** — clipboard 2-sparkle, copy, list, auto-fill, form-fill
137
+ - **IconCloudySparkle** — cloudy-sparkle, clouds
138
+ - **IconConsoleSparkle** — console-sparkle, Terminal
139
+ - **IconCursorAi** — cursor-ai, agent, magic
140
+ - **IconCuteRobot** — cute-robot
141
+ - **IconEmail1Sparkle** — email-1-sparkle, envelope
142
+ - **IconEyeSparkle** — eye-sparkle, magic eyes
143
+ - **IconFileSparkle** — file-sparkle, document, locked, password
144
+ - **IconFolderSparkle** — Folder-sparkle, plus
145
+ - **IconFortuneTellerBall** — fortune-teller-ball, future
146
+ - **IconHatBunny** — hat-bunny, surprise, magic hat
147
+ - **IconHatSparkle** — hat-sparkle, magic hat
148
+ - **IconImageAvatarSparkle** — image-avatar-sparkle, generated avatar, profile ai, magic avatar
149
+ - **IconImageSparkle** — image-sparkle, midjourney, ai generated, star
150
+ - **IconImagesSparkle** — images-sparkle, photos, pictures, shot, generate
151
+ - **IconImagine** — imagine, head, thinking
152
+ - **IconImagineAi** — imagine-ai, cube, room, 3d, opject, vector
153
+ - **IconImagineHead** — imagine-head, thinking, ai
154
+ - **IconLightbulbSparkle** — lightbulb-sparkle, idea, reasoning, think
155
+ - **IconListSparkle** — list-sparkle, ai text, text generation
156
+ - **IconLiveVoiceTranslate** — live-voice-translate
157
+ - **IconLocationSparkle** — location-sparkle, map, route
158
+ - **IconMagicBook** — magic-book, magician, sparkles
159
+ - **IconMagicEdit** — magic-edit, magic-writing
160
+ - **IconMagicWand** — magic-wand, magic stick, star
161
+ - **IconMagicWand2** — magic-wand-2, magic stick, star
162
+ - **IconMagicWand3** — magic-wand-3, magic stick, star
163
+ - **IconMicrophoneSparkle** — microphone-sparkle, mic, sound, podcast
164
+ - **IconPencilSparkle** — pencil-sparkle, magic pencil, magic brush
165
+ - **IconPrompt** — prompt, scan-text
166
+ - **IconPrompt** — prompt, vibe-designing, box-sparkle
167
+ - **IconPromptSuggestion** — prompt-suggestion, auto-prompt
168
+ - **IconPromptTextToImage** — prompt-text-to-image
169
+ - **IconPromptTextToVideo** — prompt-text-to-video
170
+ - **IconReceiptionBellSparkle** — receiption-bell-sparkle, ai-concierge, ai-assistant
171
+ - **IconRobot** — robot
172
+ - **IconScanTextSparkle** — scan-text-sparkle, scan, arrows-all-sides, focus, list
173
+ - **IconScriptAi** — script-ai, paper, page, contract, file, document, skills
174
+ - **IconSearchIntelligence** — search-intelligence, search-ai
175
+ - **IconSearchlinesSparkle** — search lines-sparkle, magnifier, document, list, page, file
176
+ - **IconSeparateVideoVoice** — separate-video-voice, video-audio
177
+ - **IconSparkle** — sparkle, star, ai
178
+ - **IconSparkle2** — sparkle-2, star, magic, ai
179
+ - **IconSparkle3** — sparkle-3, ai, star, magic
180
+ - **IconSparkleCentral** — sparkle-central, star, magic, ai
181
+ - **IconSparkleHightlight** — sparkle-hightlight, special, ai, magic
182
+ - **IconSparkles2Bold** — sparkles-2-bold, ai, magic
183
+ - **IconSparkles3Bold** — sparkles-3-bold, ai, magic
184
+ - **IconSparklesSoft** — sparkles-soft
185
+ - **IconSparklesThree** — sparkles-three, ai 3 stars, sparkles, ✨
186
+ - **IconSparklesTwo** — sparkles-two, ai 2 stars, sparkles, ✨
187
+ - **IconSparklesTwo2** — sparkles-two-2, ai 2 stars, sparkles, ✨
188
+ - **IconSpeachToText** — speach-to-text, voice-to-text
189
+ - **IconStarWand** — star-wand, magic
190
+ - **IconSwitchVoice** — switch-voice, change-voice
191
+ - **IconTextToImage** — text-to-image
192
+ - **IconTextToSpeach** — text-to-speach
193
+ - **IconVisualIntelligence** — visual-intelligence
194
+ - **IconVoice2** — voice-2, siri, wave
195
+ - **IconVoiceCircle** — voice-circle, waves
196
+ - **IconVoiceSparkle** — voice-sparkle, ai, sound
197
+ - **IconWindowSparkle** — window-sparkle, whisper, api, app, software
198
+ - **IconWizardHat** — wizard-hat, magician, fantasy
199
+
200
+ ### Accessibility
201
+
202
+ - **IconCircleHalfFill** — circle-half-fill, contrast
203
+ - **IconCirclePerson** — circle-person, accessibility, a11y
204
+ - **IconEar** — ear, hearing, loud
205
+ - **IconEyeClosed** — eye-closed, see, hidden
206
+ - **IconEyeOpen** — eye-open, show, see, reveal, look, visible
207
+ - **IconEyeSlash** — eye-slash, hide, eye off, see, look, not visible
208
+ - **IconEyeSlash2** — eye-slash-2, accessibility eye, a11y
209
+ - **IconImageAltText** — image-alt-text
210
+ - **IconSquareLinesBottom** — square-lines-bottom, transcription
211
+
212
+ ### Arrows
213
+
214
+ - **IconArrow** — arrow, refresh, renew
215
+ - **IconArrowBottomTop** — arrow-bottom-top, sort 2, switch vertical
216
+ - **IconArrowCornerDownLeft** — arrow-corner-down-left
217
+ - **IconArrowCornerDownRight** — arrow-corner-down-right
218
+ - **IconArrowCornerLeftDown** — arrow-corner-left-down
219
+ - **IconArrowCornerLeftUp** — arrow-corner-left-up
220
+ - **IconArrowCornerRightDown** — arrow-corner-right-down
221
+ - **IconArrowCornerRightUp** — arrow-corner-right-up
222
+ - **IconArrowCornerUpLeft** — arrow-corner-up-left
223
+ - **IconArrowCornerUpRight** — arrow-corner-up-right
224
+ - **IconArrowDown** — arrow-down
225
+ - **IconArrowDownCircle** — arrow-down-circle, arrow-bottom
226
+ - **IconArrowDownLeft** — arrow-down-left
227
+ - **IconArrowDownRight** — arrow-down-right
228
+ - **IconArrowDownSquare** — arrow-down-square, bottom
229
+ - **IconArrowDownWall** — arrow-down-wall
230
+ - **IconArrowExpandHor** — arrow-expand-hor
231
+ - **IconArrowExpandVer** — arrow-expand-ver
232
+ - **IconArrowLeft** — arrow-left
233
+ - **IconArrowLeftCircle** — arrow-left-circle
234
+ - **IconArrowLeftDownCircle** — arrow-left-down-circle
235
+ - **IconArrowLeftRight** — arrow-left-right, sort 2, switch horizonatl
236
+ - **IconArrowLeftSquare** — arrow-left-square
237
+ - **IconArrowLeftUpCircle** — arrow-left-up-circle
238
+ - **IconArrowLoopDownLeft** — arrow-loop-down-left, restore, reset
239
+ - **IconArrowPathDown** — arrow-path-down
240
+ - **IconArrowPathLeft** — arrow-path-left
241
+ - **IconArrowPathRight** — arrow-path-right
242
+ - **IconArrowPathUp** — arrow-path-up
243
+ - **IconArrowRedoDown** — arrow-redo-down, forward
244
+ - **IconArrowRight** — arrow-right
245
+ - **IconArrowRightCircle** — arrow-right-circle
246
+ - **IconArrowRightDownCircle** — arrow-right-down-circle
247
+ - **IconArrowRightLeft** — arrow-right-left, sort 1, switch horizontal
248
+ - **IconArrowRightSquare** — arrow-right-square
249
+ - **IconArrowRightUpCircle** — arrow-right-up-circle
250
+ - **IconArrowRotateClockwise** — arrow-rotate-clockwise, rotate-right
251
+ - **IconArrowRotateCounterClockwise** — arrow-rotate-counter-clockwise, rotate-left
252
+ - **IconArrowRotateLeftRight** — arrow-rotate-left-right, repeat, refresh
253
+ - **IconArrowRotateRightLeft** — arrow-rotate-right-left, repeat, refresh, routines
254
+ - **IconArrowShareLeft** — arrow-share-left, back, last, reply
255
+ - **IconArrowShareRight** — arrow-share-right, next, forward
256
+ - **IconArrowSplitDown** — arrow-split-down, branch
257
+ - **IconArrowSplitDown** — arrow-split-down, rules, direction, split
258
+ - **IconArrowSplitLeft** — arrow-split-left, rules, direction, split
259
+ - **IconArrowSplitRight** — arrow-split-right, rules, direction, split
260
+ - **IconArrowSplitUp** — arrow-split-up, rules, direction, split
261
+ - **IconArrowTopBottom** — arrow-top-bottom, sort 1, switch vertical
262
+ - **IconArrowTriangleBottom** — arrow-triangle-bottom
263
+ - **IconArrowTriangleLeft** — arrow-triangle-left
264
+ - **IconArrowTriangleRight** — arrow-triangle-right
265
+ - **IconArrowTriangleTop** — arrow-triangle-top
266
+ - **IconArrowUndoUp** — arrow-undo-up, back, top
267
+ - **IconArrowUp** — arrow-up, arrow-top
268
+ - **IconArrowUpCircle** — arrow-up-circle, arrow-top
269
+ - **IconArrowUpDownLeftRight** — arrow-up-down-left-right, move
270
+ - **IconArrowUpLeft** — arrow-up-left
271
+ - **IconArrowUpRight** — arrow-up-right
272
+ - **IconArrowUpSquare** — arrow-up-square, top
273
+ - **IconArrowUpWall** — arrow-up-wall
274
+ - **IconArrowWall2Down** — arrow-wall-2-down, align bottom
275
+ - **IconArrowWall2Left** — arrow-wall-2-left, align left
276
+ - **IconArrowWall2Right** — arrow-wall-2-right, align right
277
+ - **IconArrowWall2Up** — arrow-wall-2-up, align top
278
+ - **IconArrowWallDown** — arrow-wall-down, align bottom
279
+ - **IconArrowWallLeft** — arrow-wall-left, align left
280
+ - **IconArrowWallRight** — arrow-wall-right, align right
281
+ - **IconArrowWallUp** — arrow-wall-up, align top
282
+ - **IconArrowsHide** — arrows-hide, collapse, minimize
283
+ - **IconArrowsRepeat** — arrows-repeat, repost
284
+ - **IconArrowsRepeatCircle** — arrows-repeat-circle, repost
285
+ - **IconArrowsRepeatRightLeft** — arrows-repeat-right-left, repost
286
+ - **IconArrowsRepeatRightLeftOff** — arrows-repeat-right-left-off, repost-off
287
+ - **IconArrowsShow** — arrows-show, expand, maximize
288
+ - **IconArrowsZoom** — arrows-zoom, scale, motion, move, directions
289
+ - **IconChevronBottom** — chevron-bottom
290
+ - **IconChevronDoubleLeft** — chevron-double-left
291
+ - **IconChevronDoubleRight** — chevron-double-right
292
+ - **IconChevronDownMedium** — chevron-down-medium
293
+ - **IconChevronDownSmall** — chevron-down-small
294
+ - **IconChevronGrabberHorizontal** — chevron-grabber-horizontal
295
+ - **IconChevronGrabberVertical** — chevron-grabber-vertical
296
+ - **IconChevronLargeDown** — chevron-large-down, chev down, down
297
+ - **IconChevronLargeLeft** — chevron-large-left, chev left, last
298
+ - **IconChevronLargeRight** — chevron-large-right, chev right, next
299
+ - **IconChevronLargeTop** — chevron-large-top, chev top, up
300
+ - **IconChevronLeft** — chevron-left
301
+ - **IconChevronLeftMedium** — chevron-left-medium
302
+ - **IconChevronLeftSmall** — chevron-left-small
303
+ - **IconChevronRight** — chevron-right
304
+ - **IconChevronRightMedium** — chevron-right-medium
305
+ - **IconChevronRightSmall** — chevron-right-small
306
+ - **IconChevronTop** — chevron-top
307
+ - **IconChevronTopMedium** — chevron-top-medium
308
+ - **IconChevronTopSmall** — chevron-top-small
309
+ - **IconChevronTriangleDownSmall** — chevron-triangle-down-small, dropdown
310
+ - **IconChevronTriangleUpSmall** — chevron-triangle-up-small, dropdown
311
+ - **IconCollaborationPointerLeft** — collaboration-pointer-left, cursor, agents
312
+ - **IconCollaborationPointerRight** — collaboration-pointer-right, cursor, agents
313
+ - **IconComputerUse** — computer-use, cursor
314
+ - **IconCursor1** — cursor-1, arrow
315
+ - **IconCursor3** — cursor-3, arrow
316
+ - **IconCursorClick** — cursor-click, arrow, clickbait
317
+ - **IconCursorList** — cursor-list, cursor, list
318
+ - **IconExpand315** — expand-315, enlarge
319
+ - **IconExpand45** — expand-45, enlarge
320
+ - **IconExpandSimple** — expand-simple
321
+ - **IconExpandSimple2** — expand-simple-2
322
+ - **IconIncrease** — increase, scale, show-more, change-position
323
+ - **IconJump** — jump, skip
324
+ - **IconMinimize315** — minimize-315, arrow, shrink
325
+ - **IconMinimize45** — minimize-45, arrow, shrink
326
+ - **IconMouseDown** — mouse-down, press, depth, deep-dive
327
+ - **IconMouseUp** — mouse-up, hover, turn-up
328
+ - **IconOngoing** — ongoing, moving
329
+ - **IconRandom** — random, productivity, smart
330
+ - **IconRedirectArrow** — redirect-arrow
331
+ - **IconRemix** — remix, new-try, repeat
332
+ - **IconRemixCircle** — remix-circle, mix, new-try
333
+ - **IconRotate360Left** — rotate-360-left
334
+ - **IconRotate360Right** — rotate-360-right
335
+ - **IconShareArrowDown** — share-arrow-down, save
336
+ - **IconSquareArrowBottomLeftCorner** — square-arrow-bottom-left-corner
337
+ - **IconSquareArrowBottomRight** — square-arrow-bottom-right, resize small, box, arrow
338
+ - **IconSquareArrowBottomRightCorner** — square-arrow-bottom-right-corner
339
+ - **IconSquareArrowCenter** — square-arrow-center, resize big, box, arrow
340
+ - **IconSquareArrowInTopLeft** — square-arrow-in-top-left, dock, box, arrow
341
+ - **IconSquareArrowOutTopLeft** — square-arrow-out-top-left, undock, box, arrow
342
+ - **IconSquareArrowTopLeftCorner** — square-arrow-top-left-corner
343
+ - **IconSquareArrowTopRight** — square-arrow-top-right, open, new, link, open link, box, arrow
344
+ - **IconSquareArrowTopRight2** — square-arrow-top-right-2, open, new, link, open link, box, arrow
345
+ - **IconSquareArrowTopRightCorner** — square-arrow-top-right-corner
346
+ - **IconSquareCursor** — square-cursor, cursor box, arrow
347
+ - **IconSquized** — squized, centered, aligned
348
+ - **IconStepBack** — step-back, undo
349
+ - **IconStepForwards** — step-forwards, continue
350
+
351
+ ### Augmented Reality
352
+
353
+ - **Icon3dBoxBottom** — 3d-box-bottom, shaders, model, room
354
+ - **Icon3dBoxTop** — 3d-box-top, shaders, model, cube, ar
355
+ - **Icon3dSphere** — 3d-sphere
356
+ - **IconAr** — ar, augmented-reality, card-box, 3d, virtual reality, VR
357
+ - **IconArCube3** — ar-cube-3
358
+ - **IconArScanCube1** — ar-scan-cube-1
359
+ - **IconArScanCube2** — ar-scan-cube-2
360
+ - **IconAround** — around, spatial
361
+ - **IconOculus** — oculus
362
+ - **IconPanoramaView** — panorama-view
363
+ - **IconQm3** — qm3, room, transform, xyz, 3d
364
+ - **IconRotate** — rotate, rotation, x-axis
365
+ - **IconSpatialCapture** — spatial-capture
366
+ - **IconVisionPro** — vision-pro, goggles
367
+ - **IconVisionProApp** — vision-pro-app, window
368
+
369
+ ### Building
370
+
371
+ - **IconBank** — bank
372
+ - **IconBank2** — bank-2, library, gov
373
+ - **IconBlock** — block, workspace
374
+ - **IconBuildings** — buildings, company, workspace
375
+ - **IconCourt** — court
376
+ - **IconDoor** — door, login, logout
377
+ - **IconGarage** — garage
378
+ - **IconGoldenGateBridge** — golden-gate-bridge, silicon-valley, sf
379
+ - **IconGovernment** — government, bank, building
380
+ - **IconHome** — home, house
381
+ - **IconHomeCircle** — home-circle
382
+ - **IconHomeDoor** — home-door, house
383
+ - **IconHomeLine** — home-line
384
+ - **IconHomeOpen** — home-open, house
385
+ - **IconHomePersonalFeed** — home-personal-feed, for-you
386
+ - **IconHomeRoof** — home-roof, house
387
+ - **IconHomeRoundDoor** — home-round-door
388
+ - **IconMall** — mall, store, shop, business
389
+ - **IconSchool** — school, building
390
+ - **IconStore1** — store-1
391
+ - **IconStore2** — store-2
392
+ - **IconStore3** — store-3
393
+ - **IconStore4** — store-4, shop, business
394
+ - **IconStores** — stores, shops, mall
395
+ - **IconTower** — tower, terminal
396
+
397
+ ### Clouds
398
+
399
+ - **IconCloud** — cloud
400
+ - **IconCloudApi** — cloud-api, cloud-network
401
+ - **IconCloudCheck** — cloud-check, save
402
+ - **IconCloudDownload** — cloud-download
403
+ - **IconCloudOff** — cloud-off, offline
404
+ - **IconCloudOff2** — cloud-off-2, offline
405
+ - **IconCloudSimple** — cloud-simple
406
+ - **IconCloudSimpleDisconnected** — cloud-simple-disconnected
407
+ - **IconCloudSimpleDownload** — cloud-simple-download
408
+ - **IconCloudSimpleUpload** — cloud-simple-upload
409
+ - **IconCloudSync** — cloud-sync
410
+ - **IconCloudUpload** — cloud-upload
411
+
412
+ ### Code
413
+
414
+ - **IconAgent** — agent, flow, diagram, org
415
+ - **IconAgenticCoding** — agentic-coding, ai-code, vibe-code
416
+ - **IconAnchor** — anchor, webhooks
417
+ - **IconAnimatePath** — animate-path, animation, jump
418
+ - **IconAnimation** — animation
419
+ - **IconAnimationAuto** — animation-auto
420
+ - **IconAnimationEase** — animation-ease
421
+ - **IconAnimationEaseIn** — animation-ease-in
422
+ - **IconAnimationEaseOut** — animation-ease-out
423
+ - **IconAnimationElastic** — animation-elastic, bezier-curves
424
+ - **IconAnimationLinear** — animation-linear
425
+ - **IconAnimationNone** — animation-none
426
+ - **IconAnimationOvershoot** — animation-overshoot
427
+ - **IconAnimationUndershoot** — animation-undershoot
428
+ - **IconApiAggregate** — api-aggregate
429
+ - **IconApiConnection** — api-connection
430
+ - **IconBezierCurves** — bezier-curves, animation, motion, spring
431
+ - **IconBrackets1** — brackets-1
432
+ - **IconBrackets2** — brackets-2
433
+ - **IconBranch** — branch
434
+ - **IconBranchSimple** — branch-simple
435
+ - **IconBridge** — bridge, connection
436
+ - **IconBug** — bug, issue
437
+ - **IconBugFace** — bug-face, issue
438
+ - **IconChanges** — changes, plus-minus, compare
439
+ - **IconCode** — code
440
+ - **IconCodeAnalyze** — code-analyze, vibe-coding
441
+ - **IconCodeAssistant** — code-assistant, vibe-coding
442
+ - **IconCodeBrackets** — code-brackets
443
+ - **IconCodeInsert** — code-insert
444
+ - **IconCodeLarge** — code-large, syntax, brackets
445
+ - **IconCodeLines** — code-lines
446
+ - **IconCodeMedium** — code-medium, syntax, brackets, dev
447
+ - **IconCodeTree** — code-tree, file-tree
448
+ - **IconCommits** — commits
449
+ - **IconConsole** — console, terminal
450
+ - **IconConsoleSimple** — console-simple
451
+ - **IconConsoleSimple** — console-simple, terminal
452
+ - **IconDebugger** — debugger, debug
453
+ - **IconDifferenceIgnored** — difference-ignored
454
+ - **IconDifferenceModified** — difference-modified
455
+ - **IconDraft** — draft
456
+ - **IconDraftSimple** — draft-simple
457
+ - **IconForkCode** — fork-code
458
+ - **IconForkSimple** — fork-simple, agents
459
+ - **IconHammer** — hammer, craft, build
460
+ - **IconHammer2** — hammer-2, crafting, building
461
+ - **IconHook** — hook, phishing
462
+ - **IconLadybug** — ladybug, issue
463
+ - **IconMergeConflict** — merge-conflict
464
+ - **IconMergeConflictSimple** — merge-conflict-simple
465
+ - **IconMerged** — merged
466
+ - **IconMergedSimple** — merged-simple
467
+ - **IconPullRequest** — pull-request, pr-create
468
+ - **IconPullRequestClosedSimple** — pull-request-closed-simple
469
+ - **IconPullRequestSimple** — pull-request-simple
470
+ - **IconPush** — push, launch, rocket
471
+ - **IconRequestClosed** — request-closed
472
+ - **IconSandbox** — sandbox, playground
473
+ - **IconShip** — ship, changelog
474
+ - **IconSpeedDots** — speed-dots, motion, animation
475
+ - **IconTestflight** — testflight, beta
476
+ - **IconVibeCoding** — vibe-coding, ai, ide, syntax
477
+ - **IconVibeCoding2** — vibe-coding-2, ai, ide, syntax
478
+ - **IconWebsite** — website, webbuilder, coding
479
+
480
+ ### Communication
481
+
482
+ - **IconBook** — book, guide, info, faq
483
+ - **IconBookSimple** — book-simple, guide, info, faq
484
+ - **IconBubble2** — bubble-2, message, chat
485
+ - **IconBubble3** — bubble-3, message, chat
486
+ - **IconBubble4** — bubble-4, message, chat
487
+ - **IconBubble5** — bubble-5, message, chat
488
+ - **IconBubble6** — bubble-6, message, chat
489
+ - **IconBubbleAlert** — bubble-alert, comment, feedback
490
+ - **IconBubbleAnnotation2** — bubble-annotation-2, message, chat
491
+ - **IconBubbleAnnotation3** — bubble-annotation-3, message, chat
492
+ - **IconBubbleAnnotation4** — bubble-annotation-4, message, chat
493
+ - **IconBubbleAnnotation5** — bubble-annotation-5, message, chat
494
+ - **IconBubbleAnnotation6** — bubble-annotation-6, message, chat
495
+ - **IconBubbleCheck** — bubble-check, comment, feedback
496
+ - **IconBubbleCrossed** — bubble-crossed, comment, feedback
497
+ - **IconBubbleDots** — bubble-dots, comment, feedback
498
+ - **IconBubbleHeart** — bubble-heart, comment, feedback
499
+ - **IconBubbleInfo** — bubble-info, comment, feedback
500
+ - **IconBubblePlus** — bubble-plus, comment, feedback
501
+ - **IconBubbleQuestion** — bubble-question, comment, feedback
502
+ - **IconBubbleQuotes** — bubble-quotes
503
+ - **IconBubbleSparkle** — bubble-sparkle, comment, feedback
504
+ - **IconBubbleText** — bubble-text, comment, feedback
505
+ - **IconBubbleText6** — bubble-text-6, message, chat
506
+ - **IconBubbleWide** — bubble-wide, message, chat
507
+ - **IconBubbleWideAnnotation** — bubble-wide-annotation, message, chat
508
+ - **IconBubbleWideNotification** — bubble-wide-notification, badge, message, chat
509
+ - **IconBubbles** — bubbles, messages, chat, communicate
510
+ - **IconCall** — call, phone
511
+ - **IconCallCancel** — call-cancel, phone
512
+ - **IconCallIncoming** — call-incoming, phone
513
+ - **IconCallOutgoing** — call-outgoing, phone
514
+ - **IconChatBubble7** — chat-bubble-7
515
+ - **IconChatBubbles** — chat-bubbles
516
+ - **IconEmail1** — email-1, envelope
517
+ - **IconEmail2** — email-2, envelope
518
+ - **IconEmail3** — email-3, envelope
519
+ - **IconEmailNotification** — email-notification, badge, envelope
520
+ - **IconEmailPlus** — email-plus, envelope, add, plus
521
+ - **IconEmailSettings** — email-settings, envelope, gear
522
+ - **IconInvite** — invite, briefing
523
+ - **IconNewspaper** — newspaper, News, paper
524
+ - **IconNewspaper1** — newspaper-1, guide, info, faq, book
525
+ - **IconNewspaper2** — newspaper-2, guide, info, faq, book
526
+ - **IconNewspaper3** — newspaper-3
527
+ - **IconPaperPlane** — paper-plane, send
528
+ - **IconPaperPlaneTopRight** — paper-plane-top-right, send
529
+ - **IconPostcard1** — postcard-1, address
530
+ - **IconPostcard2** — postcard-2, address
531
+ - **IconReference** — reference, books, study, library, knowledge
532
+ - **IconTelephone** — telephone, phone, contact
533
+ - **IconVoiceAndVideo** — voice-and-video, media
534
+
535
+ ### Crypto
536
+
537
+ - **IconAirdrop2** — airdrop-2, free, drop, parachute
538
+ - **IconBitcoin** — bitcoin
539
+ - **IconCoin1** — coin-1, credits, money
540
+ - **IconCoin2** — coin-2, credits
541
+ - **IconCoinStack** — coin-stack, tokens, data, money
542
+ - **IconCoins** — coins, money, transfer
543
+ - **IconCoinsAdd** — coins-add, money
544
+ - **IconCrypto** — crypto
545
+ - **IconCryptoCoin** — crypto-coin
546
+ - **IconCryptoWallet** — crypto-wallet
547
+ - **IconCryptopunk** — cryptopunk, nft, pfp, profile, avatar
548
+ - **IconEthereum** — ethereum
549
+ - **IconGas** — gas
550
+ - **IconSecretPhrase** — secret-phrase, code, private-phrase
551
+ - **IconTradingViewCandles** — trading-view-candles
552
+ - **IconTradingViewLine** — trading-view-line
553
+ - **IconTradingViewSteps** — trading-view-steps
554
+ - **IconWeb3** — web3, crypto-space, nft
555
+
556
+ ### Devices & Signals
557
+
558
+ - **IconAgentNetwork** — agent-network, connections, atoms
559
+ - **IconAirdrop** — airdrop, file-sharing, radar
560
+ - **IconAirplay** — airplay
561
+ - **IconAirplayAudio** — airplay-audio, audio-stream
562
+ - **IconAirpodCase** — airpod-case, airpods
563
+ - **IconBatteryEmpty** — battery-empty, power
564
+ - **IconBatteryError** — battery-error, power
565
+ - **IconBatteryFull** — battery-full, power
566
+ - **IconBatteryLoading** — battery-loading, power
567
+ - **IconBatteryLow** — battery-low, power
568
+ - **IconBatteryMedium** — battery-medium, power
569
+ - **IconBluetooth** — bluetooth
570
+ - **IconCalculator** — calculator
571
+ - **IconChip** — chip, esim
572
+ - **IconChipSimple** — chip-simple, processor
573
+ - **IconChromecast** — chromecast, cast
574
+ - **IconCircleRecord** — circle-record, voicemail, band, tape
575
+ - **IconConnectors1** — connectors-1, connection, apps
576
+ - **IconConnectors2** — connectors-2, connection, apps
577
+ - **IconDevices** — devices, macbook, iphone, phone, connected
578
+ - **IconDevices2** — devices-2, laptop-phone
579
+ - **IconFullscreen1** — fullscreen-1
580
+ - **IconFullscreen2** — fullscreen-2
581
+ - **IconGyroscopeSensor** — gyroscope-sensor
582
+ - **IconHaptic** — haptic, waves
583
+ - **IconHapticFeedback** — haptic-feedback, vibration
584
+ - **IconImac** — imac, computer
585
+ - **IconKeyboardCable** — keyboard-cable
586
+ - **IconKeyboardDown** — keyboard-down
587
+ - **IconKeyboardUp** — keyboard-up
588
+ - **IconLiveFull** — live-full, signal, podcast
589
+ - **IconLiveNoSignal** — live-no-signal, signal
590
+ - **IconLiveWeak** — live-weak, signal
591
+ - **IconMacMini** — mac-mini
592
+ - **IconMacbook** — macbook, laptop, computer
593
+ - **IconMacbookAir** — macbook-air
594
+ - **IconMacintosh** — macintosh, mac
595
+ - **IconMagicMouse** — magic-mouse
596
+ - **IconMouse** — mouse
597
+ - **IconMouseClassic** — mouse-classic, click
598
+ - **IconMouseClassic2** — mouse-classic-2, click
599
+ - **IconMouseScrollDown** — mouse-scroll-down
600
+ - **IconMouseScrollUp** — mouse-scroll-up
601
+ - **IconNfc1** — nfc-1
602
+ - **IconNfc2** — nfc-2
603
+ - **IconOffline** — offline, disconnect, energy
604
+ - **IconOldPhone** — old-phone
605
+ - **IconPhone** — phone, iphone, mobile
606
+ - **IconPhoneDynamicIsland** — phone-dynamic-island
607
+ - **IconPhoneHaptic** — phone-haptic, vibration
608
+ - **IconPhoneTopDynamicIsland** — phone-top-dynamic-island
609
+ - **IconPhoneTopPunchHoleCenter** — phone-top-punch-hole-center
610
+ - **IconPrinter** — printer, print
611
+ - **IconProcessor** — processor, chip
612
+ - **IconRadar** — radar, control, check
613
+ - **IconRadio** — radio, antenna, signal, broadcast, speaker
614
+ - **IconSatellite1** — satellite-1, radar, feed
615
+ - **IconSatellite2** — satellite-2, radar, feed
616
+ - **IconServer1** — server-1, storage, data, coins, money
617
+ - **IconServer2** — server-2, storage, data, coins, money
618
+ - **IconSignalTower** — signal-tower, live, podcast
619
+ - **IconSmartwatch1** — smartwatch-1, clock, time
620
+ - **IconSmartwatch2** — smartwatch-2, clock, time
621
+ - **IconSpeaker** — speaker, music, sound
622
+ - **IconStorage** — storage, hdd, ssd
623
+ - **IconStudioDisplay** — studio-display, thunderbolt
624
+ - **IconStudioDisplay** — studio-display, xdr, imac
625
+ - **IconTablet** — tablet, ipad, mobile
626
+ - **IconTape** — tape
627
+ - **IconTape2** — tape-2, cassette, record, music
628
+ - **IconTelevision** — television, tv, monitor, video, screen, display
629
+ - **IconTelevisionOld** — television-old, tv, monitor, video, screen, display
630
+ - **IconUsb** — usb, connection, connect, save, data
631
+ - **IconUsbC** — usb-c, type-c
632
+ - **IconWebcam** — webcam, camera, view
633
+ - **IconWifiFull** — wifi-full, spot, signal, hot spot
634
+ - **IconWifiNoSignal** — wifi-no-signal, spot, signal, hot spot
635
+ - **IconWifiSquare** — wifi-square, spot, signal, hot spot
636
+ - **IconWifiWeak** — wifi-weak, spot, signal, hot spot
637
+
638
+ ### Edit
639
+
640
+ - **Icon3d** — 3d, shaders
641
+ - **IconAddKeyframe** — add-keyframe, rhombus
642
+ - **IconBezier** — bezier, vector, nodes
643
+ - **IconBezierAdd** — bezier-add, vector, nodes
644
+ - **IconBezierCircle** — bezier-circle, vector, nodes
645
+ - **IconBezierCurve** — bezier-curve, bezier, vector, svg
646
+ - **IconBezierCurves** — bezier-curves, path
647
+ - **IconBezierEdit** — bezier--edit
648
+ - **IconBezierPointer** — bezier-pointer
649
+ - **IconBezierRemove** — bezier-remove, vector, nodes
650
+ - **IconBooleanGroupExclude** — boolean-group-exclude
651
+ - **IconBooleanGroupIntersect** — boolean-group-intersect
652
+ - **IconBooleanGroupIntersect2** — boolean-group-intersect-2
653
+ - **IconBooleanGroupIntersect3** — boolean-group-intersect-3
654
+ - **IconBooleanGroupSubstract** — boolean-group-substract
655
+ - **IconBooleanGroupSubstract2** — boolean-group-substract-2
656
+ - **IconBooleanGroupUnion** — boolean-group-union
657
+ - **IconBooleanGroupUnion2** — boolean-group-union-2
658
+ - **IconBrush** — brush, color
659
+ - **IconCircle** — circle, line, paint
660
+ - **IconColorPalette** — color-palette, colours
661
+ - **IconColorPalette2** — color-palette-2, design, coloring
662
+ - **IconColorPicker** — color-picker, color
663
+ - **IconColorRoll** — color-roll, paint-roller
664
+ - **IconColorSwatch** — color-swatch, palette, colours
665
+ - **IconColors** — colors, rgb, adjustments
666
+ - **IconComponents** — components, figma
667
+ - **IconCornerRadius** — corner-radius, border-radius
668
+ - **IconDispersion** — dispersion, refraction
669
+ - **IconDistortion** — distortion, liquid, material
670
+ - **IconDraw** — draw, sketch, scratch
671
+ - **IconEditBig** — edit-big, box, pencil, pen, write, draw
672
+ - **IconEditSmall1** — edit-small-1, box, pencil, pen, write, draw
673
+ - **IconEditSmall2** — edit-small-2
674
+ - **IconEraser** — eraser, rubber, clean-up
675
+ - **IconEraserSimple** — eraser-simple, rubber, clean-up
676
+ - **IconFeather** — feather, writing
677
+ - **IconFeather2** — feather-2, writing
678
+ - **IconGlass** — glass, material, shader, liquid-glass
679
+ - **IconGooey** — gooey, morph, liquid-glass
680
+ - **IconHdr** — hdr, lighting, brightness
681
+ - **IconHighlight** — highlight, mark, freehand, drawing, paint
682
+ - **IconInputForm** — input-form, text-area, prompt, rename
683
+ - **IconIntegrations** — integrations, frames, keyframes, interactions
684
+ - **IconKeyframe** — keyframe, rhombus
685
+ - **IconLineThickness** — line-thickness, lines, border
686
+ - **IconMagnet** — magnet, snap-pixel, snap
687
+ - **IconMarkdown** — markdown
688
+ - **IconMarker** — marker, highlight
689
+ - **IconMarker2** — marker-2, highlight
690
+ - **IconMarkerCircle** — marker-circle, highlight
691
+ - **IconMarkup** — markup, marker, highlight
692
+ - **IconPaintBrush** — paint-brush, design, color, appearance
693
+ - **IconPaintBucket** — paint-bucket, design, color, appearance
694
+ - **IconPaintBucketDrop** — paint-bucket-drop
695
+ - **IconPencil** — pencil, edit, write
696
+ - **IconPencil2** — pencil-2, edit, write, prompt
697
+ - **IconPencil3** — pencil-3, edit, write, prompt
698
+ - **IconPencilAi** — pencil-ai, edit, write, auto-write, prompt-suggestion, auto-prompt
699
+ - **IconPencilLine** — pencil-line, signature, write
700
+ - **IconPencilWave** — pencil-wave, signature, write
701
+ - **IconRecKeyframe** — rec-keyframe, rhombus
702
+ - **IconRecKeyframe2** — rec-keyframe-2, rhombus
703
+ - **IconRemoveKeyframe** — remove-keyframe, rhombus
704
+ - **IconRepaint** — repaint, recreate, redo
705
+ - **IconRewrite** — rewrite, re-edit, redo
706
+ - **IconRewrite1** — rewrite-1, resummarize, text-edit
707
+ - **IconRewrite2** — rewrite-2, write-again, text-edit
708
+ - **IconRuler** — ruler
709
+ - **IconSelectLasso** — select-lasso, circle-to-search, encircle, mark
710
+ - **IconSelectLassoDashed** — select-lasso-dashed, circle-to-search-dashed, encircle, mark
711
+ - **IconShaderEffect** — shader-effect, material
712
+ - **IconShaders** — shaders, material, effect
713
+ - **IconShimmer** — shimmer, waves, shader, effect
714
+ - **IconSignature** — signature, sign
715
+ - **IconSlice** — slice, knife
716
+ - **IconSummary** — summary, summarize
717
+ - **IconTextEdit** — text-edit, prompts, comment, draft
718
+ - **IconToolbox** — toolbox
719
+ - **IconVariables** — variables, figma
720
+ - **IconVectorAnchorPointAsymmetric** — vector-anchor-point-asymmetric
721
+ - **IconVectorAnchorPointDisconnected** — vector-anchor-point-disconnected
722
+ - **IconVectorAnchorPointMirrored** — vector-anchor-point-mirrored, mirror-angle
723
+ - **IconVectorAnchorPointStraight** — vector-anchor-point-straight, no-smoothing
724
+ - **IconVectorLogo** — vector-logo, svg
725
+ - **IconWhiteboard** — whiteboard, sketch, forms
726
+ - **IconWrite1** — write-1, fountain-pen
727
+ - **IconWrite2** — write-2, fountain-pen
728
+ - **IconWrite3** — write-3, fountain-pen, vector, ink
729
+ - **IconWriting** — writing, sketching, drawing
730
+
731
+ ### Emoji
732
+
733
+ - **IconAlien** — alien
734
+ - **IconEmojiAddReaction** — emoji-add-reaction, emoji-plus
735
+ - **IconEmojiAngry** — emoji-angry
736
+ - **IconEmojiGrinning** — emoji-grinning
737
+ - **IconEmojiLol** — emoji-lol, laugh, comedy, joke
738
+ - **IconEmojiMouthless** — emoji-mouthless
739
+ - **IconEmojiNeutral** — emoji-neutral
740
+ - **IconEmojiProfile** — emoji-profile
741
+ - **IconEmojiSad** — emoji-sad, unhappy
742
+ - **IconEmojiSadTear** — emoji-sad-tear
743
+ - **IconEmojiSleep** — emoji-sleep, snooze
744
+ - **IconEmojiSmile** — emoji-smile
745
+ - **IconEmojiSmiley** — emoji-smiley, face, smile
746
+ - **IconEmojiSmilingFace** — emoji-smiling-face, heart-eyes
747
+ - **IconEmojiSmirking** — emoji-smirking
748
+ - **IconEmojiStarStruck** — emoji-star-struck, star-eyes
749
+ - **IconEmojiWink** — emoji-wink
750
+ - **IconMask** — mask, theatre
751
+ - **IconPoop** — poop, spam
752
+
753
+ ### Filter & Settings
754
+
755
+ - **IconBlockSortAscending** — block-sort-ascending
756
+ - **IconBlockSortDescending** — block-sort-descending
757
+ - **IconFilter1** — filter-1, sort
758
+ - **IconFilter2** — filter-2, sort
759
+ - **IconFilterAsc** — filter-asc
760
+ - **IconFilterAscending** — filter-ascending, sort, az
761
+ - **IconFilterCircle** — filter-circle, sort
762
+ - **IconFilterDesc** — filter-desc
763
+ - **IconFilterDescending** — filter-descending, sort, za
764
+ - **IconFilterTimeline** — filter-timeline, sort
765
+ - **IconLiquidGlass** — liquid-glass, glass-effect
766
+ - **IconMaintenance** — maintenance, settings, service
767
+ - **IconReorder** — reorder
768
+ - **IconSettingsGear1** — settings-gear-1, preferences
769
+ - **IconSettingsGear2** — settings-gear-2, preferences
770
+ - **IconSettingsGear3** — settings-gear-3, preferences
771
+ - **IconSettingsKnob** — settings-knob
772
+ - **IconSettingsSliderHor** — settings-slider-hor
773
+ - **IconSettingsSliderThree** — settings-slider-three
774
+ - **IconSettingsSliderVer** — settings-slider-ver
775
+ - **IconSettingsToggle1** — settings-toggle-1
776
+ - **IconSettingsToggle2** — settings-toggle-2
777
+ - **IconSortArrowUpDown** — sort-arrow-up-down
778
+ - **IconToggle** — toggle, settings, control
779
+
780
+ ### Folders & Files
781
+
782
+ - **IconArchive** — archive, folder, box
783
+ - **IconBlankPageLandscape** — blank-page-landscape
784
+ - **IconBlankPagePortrait** — blank-page-portrait
785
+ - **IconDossier** — dossier
786
+ - **IconFaceIdFace** — face-id-face
787
+ - **IconFileArrowLeftIn** — file-arrow-left-in, document-arrow-left-in, incoming
788
+ - **IconFileArrowLeftOut** — file-arrow-left-out, document-arrow-left-out, outgoing
789
+ - **IconFileArrowRightIn** — file-arrow-right-in, document-arrow-right-in, incoming
790
+ - **IconFileArrowRightOut** — file-arrow-right-out, document-arrow-right-out, outgoing
791
+ - **IconFileBend** — file-bend, document
792
+ - **IconFileChart** — file-chart, document
793
+ - **IconFileCloud** — file-cloud, document
794
+ - **IconFileDownload** — file-download, document
795
+ - **IconFileEdit** — file-edit, document, cloud, sync
796
+ - **IconFileJpg** — file-jpg, image, jpeg
797
+ - **IconFileLink** — file-link, hyperlink
798
+ - **IconFileLock** — file-lock, document
799
+ - **IconFilePdf** — file-pdf, document
800
+ - **IconFilePng** — file-png, document
801
+ - **IconFileText** — file-text, document
802
+ - **IconFileZip** — file-zip
803
+ - **IconFiles** — files, documents
804
+ - **IconFinder** — finder, files, os
805
+ - **IconFinderFace** — finder-face
806
+ - **IconFloppyDisk1** — floppy-disk-1, save
807
+ - **IconFloppyDisk2** — floppy-disk-2, save
808
+ - **IconFolder1** — folder-1
809
+ - **IconFolder2** — folder-2
810
+ - **IconFolderAddLeft** — folder-add-left
811
+ - **IconFolderAddRight** — folder-add-right
812
+ - **IconFolderBookmarks** — folder-bookmarks
813
+ - **IconFolderCloud** — folder-cloud
814
+ - **IconFolderDelete** — folder-delete
815
+ - **IconFolderDownload** — folder-download
816
+ - **IconFolderLink** — folder-link, link, attachment
817
+ - **IconFolderLink2** — folder-link-2, link, attachment
818
+ - **IconFolderOpen** — folder-open
819
+ - **IconFolderOpenFront** — folder-open-front
820
+ - **IconFolderPaper** — folder-paper
821
+ - **IconFolderRestricted** — folder-restricted
822
+ - **IconFolderShared** — folder-shared
823
+ - **IconFolderShield** — folder-shield, folder-security
824
+ - **IconFolderUpload** — folder-upload
825
+ - **IconFolders** — folders
826
+ - **IconFolders2** — folders-2, collection, stuff
827
+ - **IconLibrary** — library, stuff, vinyl-records
828
+ - **IconListBulletsSquare** — list-bullets-square
829
+ - **IconMoveFolder** — move-folder
830
+ - **IconNote1** — note-1
831
+ - **IconNote2** — note-2
832
+ - **IconNoteText** — note-text
833
+ - **IconNotebook** — notebook, cover
834
+ - **IconNotepad** — notepad, notes
835
+ - **IconNotes** — notes
836
+ - **IconPageAdd** — page-add
837
+ - **IconPageAttachment** — page-attachment
838
+ - **IconPageCheck** — page-check, signed, document
839
+ - **IconPageCloud** — page-cloud
840
+ - **IconPageCross** — page-cross, close, x, document, list, file
841
+ - **IconPageCrossText** — page-cross-text, close, x, document, list, file
842
+ - **IconPageEdit** — page-edit, document
843
+ - **IconPageEditText** — page-edit-text, document, file
844
+ - **IconPageEmpty** — page-empty
845
+ - **IconPageLink** — page-link
846
+ - **IconPageLock** — page-lock
847
+ - **IconPagePieChart** — page-pie-chart
848
+ - **IconPageSearch** — page-search
849
+ - **IconPageSearchLines** — page-search-lines
850
+ - **IconPageText** — page-text
851
+ - **IconPageTextAdd** — page-text-add
852
+ - **IconPageTextCloud** — page-text-cloud
853
+ - **IconPageTextLink** — page-text-link
854
+ - **IconPageTextLock** — page-text-lock
855
+ - **IconPageTextPieChart** — page-text-pie-chart
856
+ - **IconPageTextSearch** — page-text-search
857
+ - **IconScript** — script, paper, page, contract, file, document, skills
858
+ - **IconScript2** — script-2, paper, page, contract, file, document, skills
859
+ - **IconSdCard** — sd-card, memory-stick
860
+ - **IconServer** — server, data, storage
861
+ - **IconSimCard1** — sim-card-1
862
+ - **IconSimCard2** — sim-card-2
863
+ - **IconSketchbook** — sketchbook
864
+ - **IconTable** — table, spreedsheet, chart
865
+ - **IconZip** — zip, rar, compressed, archive
866
+
867
+ ### Food
868
+
869
+ - **IconAppleNewton** — apple-newton, low-hanging-fruits, fall
870
+ - **IconApples** — apples, fruit
871
+ - **IconAvocado** — avocado
872
+ - **IconBaking** — baking, cooking
873
+ - **IconBanana** — banana, fruit
874
+ - **IconBananas** — bananas, fruits
875
+ - **IconBeer** — beer, cheers
876
+ - **IconBirthdayCake** — birthday-cake
877
+ - **IconBottle** — bottle, wine, campaign
878
+ - **IconBreakfast** — breakfast, fried-egg
879
+ - **IconBurger** — burger, hamburger, sandwich
880
+ - **IconCandy** — candy, sweet
881
+ - **IconCereals** — cereals, wheat, gluten, corn, grain
882
+ - **IconCheeseburger** — cheeseburger, hamburger, sandwich
883
+ - **IconCherry** — cherry
884
+ - **IconCherryOnTop** — cherry-on-top, cake, birthday
885
+ - **IconCocktail** — cocktail, drink
886
+ - **IconCookies** — cookies
887
+ - **IconCooking** — cooking, stirring
888
+ - **IconCup** — cup, tea, coffee, mug
889
+ - **IconCupHot** — cup-hot, coffee, tea, milk, mug
890
+ - **IconDonut** — donut
891
+ - **IconDonutGlaze** — donut-glaze
892
+ - **IconDrink** — drink, cup, straw, mug
893
+ - **IconFoodBell** — food-bell, serving-bell, glosche, serve
894
+ - **IconFoodExperiences** — food-experiences, plate
895
+ - **IconFork** — fork, caple, food, restaurant
896
+ - **IconForkKnife** — fork-knife, cable, restaurant, cutlery
897
+ - **IconForkSpoon** — fork-spoon, cable, restaurant, cutlery
898
+ - **IconGarlic** — garlic
899
+ - **IconGlassWater** — glass-water, drink
900
+ - **IconHotDrinkCup** — hot-drink-cup, coffee-mug, dup, mug
901
+ - **IconIcebowl** — icebowl, cooling, vibe
902
+ - **IconOrange** — orange
903
+ - **IconPan** — pan, cooking, skills
904
+ - **IconPancakes** — pancakes, maple-syrup, breakfast
905
+ - **IconPizza** — pizza
906
+ - **IconPopcorn** — popcorn, movies, series
907
+ - **IconPopsicle1** — popsicle-1, ice-cream, sweets
908
+ - **IconPopsicle2** — popsicle-2, ice-cream, sweets
909
+ - **IconSteak** — steak, t-bone, raw
910
+ - **IconSteakSteamLines** — steak-steam-lines, t-bone
911
+ - **IconStrawberry** — strawberry, ai, dessert
912
+ - **IconSushi** — sushi, nigiri, sashime, maki
913
+ - **IconTapas** — tapas, canabes
914
+ - **IconTea** — tea, cafe, coffee, vibe
915
+ - **IconToast** — toast, breakfest
916
+ - **IconToque** — toque, chefs-cap, cook
917
+
918
+ ### Forms & Shapes
919
+
920
+ - **IconFlowerShape** — flower-shape
921
+ - **IconFormCapsule** — form-capsule, button
922
+ - **IconFormCircle** — form-circle
923
+ - **IconFormDiamond** — form-diamond, square-45-degrees
924
+ - **IconFormFlower** — form-flower
925
+ - **IconFormHexagon** — form-hexagon
926
+ - **IconFormOctagon** — form-octagon
927
+ - **IconFormOctagonRotate** — form-octagon-rotate
928
+ - **IconFormOval** — form-oval
929
+ - **IconFormPentagon** — form-pentagon
930
+ - **IconFormRectangle** — form-rectangle
931
+ - **IconFormRhombus** — form-rhombus
932
+ - **IconFormSeal** — form-seal, badge
933
+ - **IconFormSquare** — form-square
934
+ - **IconFormsCircleSquare** — forms-circle-square, shapes, designs, templates
935
+
936
+ ### Furniture & Household
937
+
938
+ - **IconArmchair** — armchair, seat, chill
939
+ - **IconBed** — bed
940
+ - **IconCabinet** — cabinet
941
+ - **IconChair** — chair, seat
942
+ - **IconChairModern** — chair-modern, seat
943
+ - **IconDeskOffice** — desk-office
944
+ - **IconDeskOffice2** — desk-office-2
945
+ - **IconDishwasher** — dishwasher, clean
946
+ - **IconDrawer1** — drawer-1
947
+ - **IconDrawer2** — drawer-2
948
+ - **IconDrawer3** — drawer-3
949
+ - **IconDrawer4** — drawer-4
950
+ - **IconDresser** — dresser, drawer
951
+ - **IconFridge** — fridge
952
+ - **IconSofa** — sofa, couch, chill
953
+ - **IconWardrobe** — wardrobe
954
+ - **IconWashingMachine** — washing-machine, laundry, clean
955
+
956
+ ### Gaming
957
+
958
+ - **IconDice1** — dice-1, roll
959
+ - **IconDice2** — dice-2, roll
960
+ - **IconDice3** — dice-3, roll
961
+ - **IconDice4** — dice-4, roll
962
+ - **IconDice5** — dice-5, roll
963
+ - **IconDice6** — dice-6, roll
964
+ - **IconDices** — dices, random, roll
965
+ - **IconGamecontroller** — gamecontroller, joystick, play
966
+ - **IconGamepad** — gamepad, gaming, joystick
967
+ - **IconGamepadControls** — gamepad-controls, joystick
968
+ - **IconGamepadControlsDown** — gamepad-controls-down, joystick
969
+ - **IconGamepadControlsLeft** — gamepad-controls-left, joystick
970
+ - **IconGamepadControlsRight** — gamepad-controls-right, joystick
971
+ - **IconGamepadControlsRound** — gamepad-controls-round, joystick
972
+ - **IconGamepadControlsRoundDown** — gamepad-controls-round-down
973
+ - **IconGamepadControlsRoundLeft** — gamepad-controls-round-left
974
+ - **IconGamepadControlsRoundRight** — gamepad-controls-round-right
975
+ - **IconGamepadControlsRoundUp** — gamepad-controls-round-up
976
+ - **IconGamepadControlsUp** — gamepad-controls-up, joystick
977
+ - **IconOldJoystick** — old-joystick, gamepad, gaming, control
978
+ - **IconRoulette1** — roulette-1, coincidence, gambling
979
+ - **IconRoulette2** — roulette-2, coincidence, gambling
980
+ - **IconScratchCard** — scratch-card
981
+ - **IconSlots** — slots, slot-mashine, gambling
982
+ - **IconSword** — sword, action, gaming
983
+
984
+ ### Hands
985
+
986
+ - **IconBecepsLeftArm** — beceps-left-arm, strong, flex, power
987
+ - **IconBecepsRightArm** — beceps-right-arm, strong, flex, power
988
+ - **IconBlip** — blip, flick, snip, snap, easy, thanos
989
+ - **IconFistbump** — fistbump, boom, hands, friends
990
+ - **IconHand4Finger** — hand-4-finger, select
991
+ - **IconHand5Finger** — hand-5-finger, select
992
+ - **IconHandshake** — handshake, heart
993
+ - **IconHumanMashine** — human-mashine, high-five, ai, hands
994
+ - **IconMagicHands** — magic-hands, rainbow-hands
995
+ - **IconMoneyHand** — money-hand, coins, pay
996
+ - **IconPinch** — pinch
997
+ - **IconPointer** — pointer, hand
998
+ - **IconRaisingHand4Finger** — raising-hand-4-finger, hey, hello
999
+ - **IconRaisingHand5Finger** — raising-hand-5-finger, hey, hello, high-five
1000
+ - **IconShaka1** — shaka-1, call me, hang-ten
1001
+ - **IconShaka2** — shaka-2, call me, hang-ten
1002
+ - **IconThumbDownCurved** — thumb-down-curved
1003
+ - **IconThumbUpCurved** — thumb-up-curved
1004
+ - **IconThumbsDown** — thumbs-down, thumb, hand, no, contra
1005
+ - **IconThumbsUp** — thumbs-up, thumb, hand, yes, pro
1006
+ - **IconTouch** — touch, tab, click
1007
+ - **IconTouchGrass** — touch-grass, nature, logout
1008
+
1009
+ ### Interface General
1010
+
1011
+ - **IconAnchor1** — anchor-1, link
1012
+ - **IconAnchor2** — anchor-2, link
1013
+ - **IconAppearanceDarkMode** — appearance-dark-mode, switch
1014
+ - **IconAppearanceLightMode** — appearance-light-mode, switch
1015
+ - **IconArchive1** — archive-1, inbox, file
1016
+ - **IconArchiveJunk** — archive-junk
1017
+ - **IconArrowBoxLeft** — arrow-box-left, logout, leave, door
1018
+ - **IconArrowBoxRight** — arrow-box-right, login, enter, door
1019
+ - **IconArrowInbox** — arrow-inbox, download, file, down, save
1020
+ - **IconArrowLeftX** — arrow-left-x, delete, remove, backspace
1021
+ - **IconArrowOutOfBox** — arrow-out-of-box, upload, share
1022
+ - **IconArrowRounded** — arrow-rounded, share, arrow, login
1023
+ - **IconArrowsAllSides** — arrows-all-sides, move, focus
1024
+ - **IconArrowsAllSides2** — arrows-all-sides-2, scan, move, focus
1025
+ - **IconArrowsAllSides2** — arrows-all-sides-2, scan-text, text, focus, list
1026
+ - **IconBarcode** — barcode, qr code, scan
1027
+ - **IconBarsThree** — bars-three, menu, list, hamburger
1028
+ - **IconBarsThree2** — bars-three-2, menu, list, hamburger
1029
+ - **IconBarsThree3** — bars-three-3, menu, list, hamburger
1030
+ - **IconBarsTwo** — bars-two, menu simple, nav simple
1031
+ - **IconBarsTwo2** — bars-two-2, menu, nav
1032
+ - **IconBell** — bell, notification, activity, alert
1033
+ - **IconBell2** — bell-2, notification, activity, alert
1034
+ - **IconBell2Snooze** — bell-2-snooze, notification, activity, alert
1035
+ - **IconBellCheck** — bell-check, notification alarm, activity, alert
1036
+ - **IconBellOff** — bell-off, notification off, activity, alert
1037
+ - **IconBookmark** — bookmark, banner, flag, tag
1038
+ - **IconBookmarkCheck** — bookmark-check, add, check
1039
+ - **IconBookmarkDelete** — bookmark-delete, remove, banner, flag, tag, x
1040
+ - **IconBookmarkPlus** — bookmark-plus, banner, flag, tag
1041
+ - **IconBookmarkRemove** — bookmark-remove, off
1042
+ - **IconBox2** — box-2, inbox, archive, tray, shelf
1043
+ - **IconBox2AltFill** — box-2-alt-fill, inbox, archive, tray, shelf
1044
+ - **IconBrokenChainLink1** — broken-chain-link-1, unlink
1045
+ - **IconBrokenChainLink2** — broken-chain-link-2, unlink
1046
+ - **IconBrokenChainLink3** — broken-chain-link-3, unlink
1047
+ - **IconBrokenHeart** — broken-heart, delete-account
1048
+ - **IconBrowserTabs** — browser-tabs, tab-groups
1049
+ - **IconBucket** — bucket, trash, can
1050
+ - **IconChainLink1** — chain-link-1, url
1051
+ - **IconChainLink2** — chain-link-2, url
1052
+ - **IconChainLink3** — chain-link-3, url
1053
+ - **IconChainLink4** — chain-link-4
1054
+ - **IconCheckCircle2** — check-circle-2, done, confirm, save, success
1055
+ - **IconCheckCircle2Dashed** — check-circle-2-dashed, progress
1056
+ - **IconCheckCircleDashed** — check-circle-dashed, done, confirm, save, success
1057
+ - **IconChecklist** — checklist, list
1058
+ - **IconCheckmark1** — checkmark-1
1059
+ - **IconCheckmark1Medium** — checkmark-1-medium
1060
+ - **IconCheckmark1Small** — checkmark-1-small
1061
+ - **IconCheckmark2** — checkmark-2
1062
+ - **IconCheckmark2Medium** — checkmark-2-medium
1063
+ - **IconCheckmark2Small** — checkmark-2-small
1064
+ - **IconCircleArrowDown** — circle-arrow-down, download square, save
1065
+ - **IconCircleBanSign** — circle-ban-sign, circle, block, ads
1066
+ - **IconCircleCheck** — circle-check, check radio, circle, checkbox, check, checkmark, confirm
1067
+ - **IconCircleDashed** — circle-dashed
1068
+ - **IconCircleDotsCenter1** — circle-dots-center-1, menu 1, grid, circle
1069
+ - **IconCircleDotsCenter2** — circle-dots-center-2, menu 1, grid, circle
1070
+ - **IconCircleDotted** — circle-dotted
1071
+ - **IconCircleInfo** — circle-info, info circle, tooltip, information
1072
+ - **IconCircleMinus** — circle-minus, remove
1073
+ - **IconCirclePlaceholderOff** — circle-placeholder-off
1074
+ - **IconCirclePlaceholderOn** — circle-placeholder-on
1075
+ - **IconCirclePlus** — circle-plus, add
1076
+ - **IconCircleQuestionmark** — circle-questionmark, faq, help, questionaire
1077
+ - **IconCircleX** — circle-x, close, checkbox, remove, failed, cancel
1078
+ - **IconClipboard** — clipboard, copy, list
1079
+ - **IconClipboard2** — clipboard-2, copy, list
1080
+ - **IconCloseCircleDashed** — close-circle-dashed, close, checkbox, remove
1081
+ - **IconCompassRound** — compass-round, browser, safari, web, internet, navigation
1082
+ - **IconCompassSquare** — compass-square, browser, safari, web, internet, navigation
1083
+ - **IconCrossLarge** — cross-large, crossed large, close
1084
+ - **IconCrossMedium** — cross-medium, crossed medium, close
1085
+ - **IconCrossSmall** — cross-small, crossed small, delete, remove
1086
+ - **IconDeepSearch** — deep-search, deep-research, focus-search
1087
+ - **IconDotGrid1x3Horizontal** — dot-grid-1x3-horizontal, menu, drag, grab
1088
+ - **IconDotGrid1x3HorizontalTight** — dot-grid-1x3-horizontal-tight, menu, drag, grab
1089
+ - **IconDotGrid1x3Vertical** — dot-grid-1x3-vertical, menu, drag, grab
1090
+ - **IconDotGrid1x3VerticalTight** — dot-grid-1x3-vertical-tight, menu, drag, grab
1091
+ - **IconDotGrid2x3** — dot-grid-2x3, menu, drag, grab
1092
+ - **IconDotGrid3x3** — dot-grid-3x3, menu, drag, grab
1093
+ - **IconDoupleCheck** — douple-check
1094
+ - **IconDoupleCheckmark1** — douple-checkmark-1
1095
+ - **IconDoupleCheckmark1Small** — douple-checkmark-1-small
1096
+ - **IconDoupleCheckmark2Small** — douple-checkmark-2-small
1097
+ - **IconElectrocardiogram** — electrocardiogram, activity, notification, pulse, heartbeat, beat
1098
+ - **IconExclamationCircle** — exclamation-circle, info, warning
1099
+ - **IconExclamationCircleBold** — exclamation-circle-bold, info, warning
1100
+ - **IconExclamationTriangle** — exclamation-triangle, error, warning, alert
1101
+ - **IconFeature** — feature, shine
1102
+ - **IconGauge** — gauge, tachometer, performance, speed, scale
1103
+ - **IconHandBell** — hand-bell
1104
+ - **IconHeart** — heart, like, health, life, favorite
1105
+ - **IconHeart2** — heart-2, like, health, life, fav
1106
+ - **IconHeartBeat** — heart-beat, heart rate, pulse
1107
+ - **IconHeartDonation** — heart-donation, dollar
1108
+ - **IconImport** — import, download, save
1109
+ - **IconImport2** — import-2, download, save
1110
+ - **IconInboxChecked** — inbox-checked, saved
1111
+ - **IconInboxEmpty** — inbox-empty
1112
+ - **IconInfoSimple** — info-simple, tooltip, information
1113
+ - **IconLightBulb** — light-bulb, idea, light
1114
+ - **IconLightBulbSimple** — light-bulb-simple, idea
1115
+ - **IconLightbulbGlow** — lightbulb-glow, idea, reasoning, think
1116
+ - **IconListAdd** — list-add, list-plus, new-list
1117
+ - **IconListBullets** — list-bullets
1118
+ - **IconLoader** — loader
1119
+ - **IconLoadingCircle** — loading-circle, quarter, spinner
1120
+ - **IconMagnifyingGlass** — magnifying-glass, search
1121
+ - **IconMagnifyingGlass2** — magnifying-glass-2, search
1122
+ - **IconMathBasic** — math-basic, calc
1123
+ - **IconMathEquals** — math-equals, =
1124
+ - **IconMathEqualsCircle** — math-equals-circle
1125
+ - **IconMathGreaterThan** — math-greater-than, >
1126
+ - **IconMathGreaterThanCircle** — math-greater-than-circle, >
1127
+ - **IconMathLessThan** — math-less-than, <
1128
+ - **IconMathLessThanCircle** — math-less-than-circle, <
1129
+ - **IconMathMultiplication** — math-multiplication
1130
+ - **IconMathNotes** — math-notes, function
1131
+ - **IconMathScientific** — math-scientific, function
1132
+ - **IconMinusLarge** — minus-large, remove, delete
1133
+ - **IconMinusMedium** — minus-medium, remove, delete
1134
+ - **IconMinusSmall** — minus-small, remove, delete
1135
+ - **IconMorningBrief** — morning-brief, daily-todo
1136
+ - **IconPaperclip1** — paperclip-1, attachment
1137
+ - **IconPaperclip2** — paperclip-2, attachment
1138
+ - **IconPaperclip3** — paperclip-3, attachment
1139
+ - **IconPin** — pin
1140
+ - **IconPin2** — pin-2
1141
+ - **IconPlanning** — planning, list, checklist
1142
+ - **IconPlusLarge** — plus-large, add large
1143
+ - **IconPlusMedium** — plus-medium, add medium
1144
+ - **IconPlusSmall** — plus-small, add small
1145
+ - **IconPreview** — preview, details
1146
+ - **IconProgress100** — progress-100, ideas, open, status, task
1147
+ - **IconProgress25** — progress-25, ideas, open, status, task
1148
+ - **IconProgress50** — progress-50, ideas, open, status, tas
1149
+ - **IconProgress75** — progress-75, ideas, open, status, tas
1150
+ - **IconProgressArc** — progress-arc, progress-dynamic, ideas, open, status, task
1151
+ - **IconQrCode** — qr-code, barcode, scan
1152
+ - **IconQuickSearch** — quick-search, quick-menu, command-k
1153
+ - **IconReview** — review, star-square
1154
+ - **IconScanCode** — scan-code, barcode
1155
+ - **IconSearchMenu** — search-menu, list-search
1156
+ - **IconSearchOptions** — search-options, settings
1157
+ - **IconShapesPlusXSquareCircle** — shapes-plus-x-square-circle, icon, icons, shapes, games
1158
+ - **IconShareAndroid** — share-android
1159
+ - **IconShareOs** — share-os
1160
+ - **IconShredder** — shredder, permanently
1161
+ - **IconSidebar** — sidebar, menu, list, window
1162
+ - **IconSquareArrowDown** — square-arrow-down, download square, save
1163
+ - **IconSquareBehindSquare1** — square-behind-square-1, copy 1, layers, pages
1164
+ - **IconSquareBehindSquare2** — square-behind-square-2, copy 2, layers, pages
1165
+ - **IconSquareBehindSquare3** — square-behind-square-3, copy 3, layers, pages
1166
+ - **IconSquareBehindSquare4** — square-behind-square-4, copy 4, layers, pages
1167
+ - **IconSquareBehindSquare6** — square-behind-square-6, layers, copy 6, pages
1168
+ - **IconSquareCheck** — square-check, checkbox, check, checkmark, confirm
1169
+ - **IconSquareChecklist** — square-checklist, checklist box, check, list
1170
+ - **IconSquareChecklistBell** — square-checklist-bell, checklist box, check, list, search
1171
+ - **IconSquareChecklistMagnifyingGlass** — square-checklist-magnifying-glass, checklist box, check, list, search
1172
+ - **IconSquareCircleTopRight** — square-circle-top-right, notifications, badge
1173
+ - **IconSquareDotedBehindSquare** — square-doted-behind-square, copy, layers, pages
1174
+ - **IconSquareGridCircle** — square-grid-circle, layout, grid, list, category, categories
1175
+ - **IconSquareGridMagnifyingGlass** — square-grid-magnifying-glass, layout, grid, list, search, find, magifier
1176
+ - **IconSquareInfo** — square-info, information, tooltip
1177
+ - **IconSquareLines** — square-lines, note, card, text
1178
+ - **IconSquareMinus** — square-minus, remove, delete
1179
+ - **IconSquarePlaceholder** — square-placeholder
1180
+ - **IconSquarePlaceholderDashed** — square-placeholder-dashed
1181
+ - **IconSquarePlus** — square-plus, add
1182
+ - **IconSquareX** — square-x, close, x, checkbox, remove
1183
+ - **IconStar** — star, favorite, award
1184
+ - **IconStarLines** — star-lines, features, favorite, award, to the moon, rising
1185
+ - **IconTarget** — target, focus, do-not-disdurb
1186
+ - **IconTarget1** — target-1, zoom, crosshair
1187
+ - **IconTarget2** — target-2, zoom, crosshair
1188
+ - **IconTargetArrow** — target-arrow, goal, aim, focus, do-not-disdurb
1189
+ - **IconTasks** — tasks, lists, todos
1190
+ - **IconTextareaDrag** — textarea-drag
1191
+ - **IconThumbtack** — thumbtack, pin, location, bookmark
1192
+ - **IconTodos** — todos, check, things, task
1193
+ - **IconTrashCan** — trash-can, delete, remove, garbage, waste
1194
+ - **IconTrashCanSimple** — trash-can-simple, delete, remove, garbage, waste
1195
+ - **IconTrashPaper** — trash-paper
1196
+ - **IconTrashPermanently** — trash-permanently, remove
1197
+ - **IconTrashRounded** — trash-rounded, delete, remove
1198
+ - **IconTrial** — trial, try, money-back, test-phase
1199
+ - **IconUnarchiv** — unarchiv, unbox
1200
+ - **IconUnpin** — unpin
1201
+ - **IconUnpin2** — unpin-2
1202
+ - **IconUntrash** — untrash
1203
+ - **IconWindow** — window, timeline, feed, posts
1204
+ - **IconWindow2** — window-2, browser, app, desktop
1205
+ - **IconWindowApp** — window-app, browser, app, desktop
1206
+ - **IconWindowCursor** — window-cursor, visit page, open app
1207
+ - **IconZoomIn** — zoom-in, search-plus
1208
+ - **IconZoomOut** — zoom-out, search-minus
1209
+
1210
+ ### Keyboard
1211
+
1212
+ - **IconAt** — at, handle, @
1213
+ - **IconBackward** — backward, delete, remove, key
1214
+ - **IconCmd** — cmd, command, apple, key
1215
+ - **IconCmdBox** — cmd-box, command, apple, key
1216
+ - **IconControlKeyLeft** — control-key-left
1217
+ - **IconControlKeyRight** — control-key-right
1218
+ - **IconEsc** — esc, power
1219
+ - **IconHashtag** — hashtag, #
1220
+ - **IconOpt** — opt, option, key
1221
+ - **IconOptAlt** — opt-alt, option alt, key
1222
+ - **IconOptionKey** — option-key
1223
+ - **IconRunShortcut** — run-shortcut, slash, skills
1224
+ - **IconShift** — shift
1225
+ - **IconShortcut** — shortcut, hotkey, powerkey, skill
1226
+ - **IconSpacebar** — spacebar
1227
+
1228
+ ### Layout
1229
+
1230
+ - **IconAlignHorizontalCenter** — align-horizontal-center, alignment
1231
+ - **IconAlignVerticalCenter** — align-vertical-center, alignment
1232
+ - **IconBento** — bento, layout, grid, flex
1233
+ - **IconBoard** — board, moodboard, layout, template
1234
+ - **IconCanvasGrid** — canvas-grid, design, app-icon, blueprint
1235
+ - **IconCarussel** — carussel, slides
1236
+ - **IconColumnWide** — column-wide, colums
1237
+ - **IconColumnWideAdd** — column-wide-add
1238
+ - **IconColumnWideHalf** — column-wide-half
1239
+ - **IconColumnWideHalfAdd** — column-wide-half-add
1240
+ - **IconColumnWideHalfRemove** — column-wide-half-remove
1241
+ - **IconColumnWideRemove** — column-wide-remove
1242
+ - **IconColumns3** — columns-3, layout, third
1243
+ - **IconColumns3Wide** — columns-3-wide, layout, third
1244
+ - **IconKanbanView** — kanban-view, columns
1245
+ - **IconLayersBehind** — layers-behind, slides, pages
1246
+ - **IconLayersThree** — layers-three, stack
1247
+ - **IconLayersTwo** — layers-two, stack
1248
+ - **IconLayoutAlignBottom** — layout-align-bottom
1249
+ - **IconLayoutAlignLeft** — layout-align-left
1250
+ - **IconLayoutAlignRight** — layout-align-right
1251
+ - **IconLayoutAlignTop** — layout-align-top
1252
+ - **IconLayoutBottom** — layout-bottom, grid, window
1253
+ - **IconLayoutColumn** — layout-column, grid, column
1254
+ - **IconLayoutDashboard** — layout-dashboard, grid, window
1255
+ - **IconLayoutGrid1** — layout-grid-1, grid, window
1256
+ - **IconLayoutGrid2** — layout-grid-2, grid
1257
+ - **IconLayoutHalf** — layout-half
1258
+ - **IconLayoutLeft** — layout-left, grid, window
1259
+ - **IconLayoutRight** — layout-right, grid, window
1260
+ - **IconLayoutSidebar** — layout-sidebar, grid, window
1261
+ - **IconLayoutThird** — layout-third
1262
+ - **IconLayoutTop** — layout-top, grid, window
1263
+ - **IconLayoutTopbar** — layout-topbar, grid, window
1264
+ - **IconLayoutWindow** — layout-window, grid, window
1265
+ - **IconPlaceholder** — placeholder, generate
1266
+ - **IconProjects** — projects, stack, templates, timeline
1267
+ - **IconSidebarFloating** — sidebar-floating, floating-window
1268
+ - **IconSidebarHiddenLeftWide** — sidebar-hidden-left-wide
1269
+ - **IconSidebarHiddenRightWide** — sidebar-hidden-right-wide
1270
+ - **IconSidebarLeftArrow** — sidebar-left-arrow
1271
+ - **IconSidebarSimpleLeftSquare** — sidebar-simple-left-square
1272
+ - **IconSidebarSimpleLeftWide** — sidebar-simple-left-wide
1273
+ - **IconSidebarSimpleRightSquare** — sidebar-simple-right-square
1274
+ - **IconSidebarSimpleRightWide** — sidebar-simple-right-wide
1275
+ - **IconSidebarWideLeftArrow** — sidebar-wide-left-arrow
1276
+ - **IconSlideAdd** — slide-add
1277
+ - **IconSlideTallAdd** — slide-tall-add
1278
+ - **IconSlideWideAdd** — slide-wide-add
1279
+ - **IconSlidesTall** — slides-tall
1280
+ - **IconSlidesTallAdd** — slides-tall-add
1281
+ - **IconSlidesWide** — slides-wide
1282
+ - **IconSlidesWideAdd** — slides-wide-add
1283
+
1284
+ ### Location
1285
+
1286
+ - **IconDirection1** — direction-1, route
1287
+ - **IconDirection2** — direction-2, route
1288
+ - **IconEarth** — earth, globe, world
1289
+ - **IconGlobe** — globe, network, translate
1290
+ - **IconGlobe2** — globe-2, network, translate
1291
+ - **IconInitiatives** — initiatives, nav, rooting
1292
+ - **IconLocation** — location, explore, compass
1293
+ - **IconMap** — map, paper
1294
+ - **IconMapPin** — map-pin, location
1295
+ - **IconMapPin2** — map-pin-2, location
1296
+ - **IconMapPinFlat** — map-pin-flat, route
1297
+ - **IconPinCircle** — pin-circle, location
1298
+ - **IconPinFlag** — pin-flag, location
1299
+ - **IconPinLocation** — pin-location
1300
+ - **IconRadar** — radar, location, search
1301
+ - **IconSend** — send, email, paper-plane, arrow
1302
+ - **IconStandingGlobe** — standing-globe, travel, language
1303
+ - **IconWorld** — world, globus, internet, web, globe
1304
+
1305
+ ### Nature & Energy
1306
+
1307
+ - **IconAtom** — atom
1308
+ - **IconBlossom** — blossom, flower, growing
1309
+ - **IconChargingStation** — charging-station, electric-current, power, e-charge
1310
+ - **IconDrillingRig** — drilling-rig, oil, gas
1311
+ - **IconExposure2** — exposure-2, macro, flower
1312
+ - **IconGrass** — grass, logout, signout
1313
+ - **IconGreenPower** — green-power, green-energy
1314
+ - **IconGrowth** — growth, grow, leafs
1315
+ - **IconHomeEnergy** — home-energy, electric current, power
1316
+ - **IconHomeEnergy2** — home-energy-2, electric-current, power
1317
+ - **IconNuclearPowerPlant** — nuclear-power-plant, radiation
1318
+ - **IconPark** — park, tree, nature
1319
+ - **IconPowerPlant** — power-plant, coal, gas, factory
1320
+ - **IconPumpjack** — pumpjack, oil
1321
+ - **IconRainbow** — rainbow
1322
+ - **IconRose** — rose, flower, romance, love
1323
+ - **IconSolar** — solar
1324
+ - **IconSolarPanel** — solar-panel, Photovoltaics, energy, electricity
1325
+ - **IconTree** — tree
1326
+ - **IconWindPower** — wind-power, electric-current, power, green-energy
1327
+
1328
+ ### People
1329
+
1330
+ - **IconAura** — aura, enlighten
1331
+ - **IconBathMan1** — bath-man-1, man, male
1332
+ - **IconBathWoman1** — bath-woman-1, women, female
1333
+ - **IconBrain** — brain, thinking, human, clever
1334
+ - **IconBrainSideview** — brain-sideview, thinking
1335
+ - **IconContacts** — contacts, address-book
1336
+ - **IconEinstein** — einstein, thinking, physics
1337
+ - **IconFocusMode** — focus-mode, hearing, headphones, music, do-not-disdurb
1338
+ - **IconGenderFemale** — gender-female
1339
+ - **IconGenderMale** — gender-male
1340
+ - **IconGroup1** — group-1, users
1341
+ - **IconGroup2** — group-2, users
1342
+ - **IconGroup3** — group-3
1343
+ - **IconHead** — head, avatar
1344
+ - **IconPeople** — people, user, person, avatar
1345
+ - **IconPeople2** — people-2, user, person, member
1346
+ - **IconPeopleAdd** — people-add, user-add
1347
+ - **IconPeopleAdd2** — people-add-2, user-add, user, person
1348
+ - **IconPeopleAdded** — people-added, user-added
1349
+ - **IconPeopleCircle** — people-circle, user-circle, avatar, profile
1350
+ - **IconPeopleCopy** — people-copy, members
1351
+ - **IconPeopleEdit** — people-edit, edit-user, edit-rights, user-rights
1352
+ - **IconPeopleGear** — people-gear, user-settings, preferences, person
1353
+ - **IconPeopleGroup2** — people-group-2, user, friend
1354
+ - **IconPeopleIdCard** — people-id-card, profile, user-account, badge, person
1355
+ - **IconPeopleLike** — people-like, inner circle
1356
+ - **IconPeopleNoise** — people-noise, audio-quality, user-noise
1357
+ - **IconPeopleRemove** — people-remove, user-remove
1358
+ - **IconPeopleRemove2** — people-remove-2
1359
+ - **IconPeopleSparkles** — people-sparkles, star, aura
1360
+ - **IconPeopleVersus** — people-versus, vs, match, 1v1
1361
+ - **IconPeopleVoice** — people-voice, user, person
1362
+ - **IconPersona** — persona, thanos-effect, remove-user, remove-account, blip
1363
+ - **IconSteveJobs** — steve-jobs, professor, innovation
1364
+ - **IconStreaming** — streaming, live, stream
1365
+ - **IconSurfing** — surfing, wave, vibe
1366
+ - **IconTeacher** — teacher
1367
+ - **IconTeacherWhiteboard** — teacher-whiteboard
1368
+ - **IconTeam** — team, group, people, community, users
1369
+ - **IconUser** — user, people, person, member
1370
+ - **IconUserAdd** — user-add, people, person, member
1371
+ - **IconUserAddRight** — user-add-right, people, person, member
1372
+ - **IconUserAdded** — user-added, people, person, member, checked
1373
+ - **IconUserBlock** — user-block, people, person, member, blocked
1374
+ - **IconUserDuo** — user-duo, team, members, persons
1375
+ - **IconUserEdit** — user-edit, people, person, member
1376
+ - **IconUserGroup** — user-group, team, club, member, friends, community
1377
+ - **IconUserHeart** — user-heart, people, person, member, favorite
1378
+ - **IconUserKey** — user-key, people, person, member, passkeys, access
1379
+ - **IconUserRemove** — user-remove, people, person, member
1380
+ - **IconUserRemoveRight** — user-remove-right, people, person, member
1381
+ - **IconUserSettings** — user-settings, people, person, member, cog
1382
+ - **IconVibeCodingBird** — vibe-coding-bird, laptop, work
1383
+ - **IconVibeCodingStar** — vibe-coding-star, working, home-office
1384
+ - **IconWheelchair** — wheelchair, bathroom accessible, toilet, wc
1385
+
1386
+ ### Photography & Video
1387
+
1388
+ - **Icon4k** — 4k
1389
+ - **IconAddImage** — add-image, upload-image
1390
+ - **IconAdjustPhoto** — adjust-photo, tuning, settings
1391
+ - **IconAlt** — alt
1392
+ - **IconAspectRatio11** — aspect-ratio-1-1, square
1393
+ - **IconAspectRatio169** — aspect-ratio-16-9, landscape
1394
+ - **IconAspectRatio219** — aspect-ratio-21-9, wide, landscape
1395
+ - **IconAspectRatio34** — aspect-ratio-3-4, portrait
1396
+ - **IconAspectRatio43** — aspect-ratio-4-3, landscape
1397
+ - **IconAutoFlash** — auto-flash
1398
+ - **IconAutoSize** — auto-size, automatic-size, page
1399
+ - **IconBlackpoint** — blackpoint, target
1400
+ - **IconBlur** — blur
1401
+ - **IconBrightness** — brightness
1402
+ - **IconBrilliance** — brilliance, yin yang, ballance
1403
+ - **IconCamera1** — camera-1, picture, image, cam
1404
+ - **IconCamera2** — camera-2, picture, image, cam
1405
+ - **IconCamera3** — camera-3, picture, image, cam
1406
+ - **IconCamera4** — camera-4
1407
+ - **IconCamera5** — camera-5, action cam, GoPro
1408
+ - **IconCameraAuto** — camera-auto
1409
+ - **IconCameraOff** — camera-off
1410
+ - **IconCameraOff1** — camera-off-1, cam-off
1411
+ - **IconCapture** — capture, screen
1412
+ - **IconCat** — cat, image, animal, cute
1413
+ - **IconClapboard** — clapboard, movie, film
1414
+ - **IconClapboardWide** — clapboard-wide, movie, film
1415
+ - **IconClosedCaptioning** — closed-captioning, cc
1416
+ - **IconContrast** — contrast
1417
+ - **IconCrop** — crop
1418
+ - **IconDownsize** — downsize, exit-full-screen, scale-down
1419
+ - **IconDownsize2** — downsize-2, exit-full-screen, scale-down
1420
+ - **IconExpand** — expand, window, layout
1421
+ - **IconExposure1** — exposure-1, plus-minus
1422
+ - **IconFocusAuto** — focus-auto
1423
+ - **IconFocusExposure** — focus-exposure
1424
+ - **IconFocusFlash** — focus-flash
1425
+ - **IconFocusLock** — focus-lock
1426
+ - **IconFocusMacro** — focus-macro
1427
+ - **IconFocusMagic** — focus-magic
1428
+ - **IconFocusRemove** — focus-remove
1429
+ - **IconFocusRenew** — focus-renew
1430
+ - **IconFocusSquare** — focus-square
1431
+ - **IconFocusZoomIn** — focus-zoom-in
1432
+ - **IconFocusZoomOut** — focus-zoom-out
1433
+ - **IconFullScreen** — full-screen, focus
1434
+ - **IconGif** — gif
1435
+ - **IconGifSquare** — gif-square
1436
+ - **IconHd** — hd
1437
+ - **IconHighlights** — highlights
1438
+ - **IconIllustration** — illustration, painting, art
1439
+ - **IconImages1** — images-1, photos, pictures, shot
1440
+ - **IconImages1Alt** — images-1-alt, photos, pictures, shot
1441
+ - **IconImages2** — images-2, photos, pictures, shot
1442
+ - **IconImages3** — images-3, photos, pictures, shot
1443
+ - **IconImages4** — images-4, photos, macro, shot, picture
1444
+ - **IconImages4** — images-4, photos, pictures, shot
1445
+ - **IconImages5** — images-5, photos, pictures, shot
1446
+ - **IconImagesCircle** — images-circle
1447
+ - **IconLens** — lens, camera, focal-length, aperture, f-stop, iso, focus, depth
1448
+ - **IconMinimize** — minimize, window, layout
1449
+ - **IconMultiMedia** — multi-media, media, image-video
1450
+ - **IconNoFlash** — no-flash
1451
+ - **IconNoiseReduction** — noise-reduction
1452
+ - **IconPictureInPicture** — picture-in-picture
1453
+ - **IconRear** — rear, front-back, change-cam, lens
1454
+ - **IconRemoveBackground** — remove-background
1455
+ - **IconRemoveBackground2** — remove-background-2
1456
+ - **IconRetouch** — retouch, face, hair
1457
+ - **IconScreenCapture** — screen-capture, recording
1458
+ - **IconShadows** — shadows
1459
+ - **IconShareScreen** — share-screen, screen-sharing
1460
+ - **IconSplit** — split
1461
+ - **IconUnblur** — unblur
1462
+ - **IconVideo** — video, camera, movie, play
1463
+ - **IconVideoClip** — video-clip, film, movie
1464
+ - **IconVideoOff** — video-off, cam-off
1465
+ - **IconVideoOn** — video-on, cam-on
1466
+ - **IconVideoRoll** — video-roll, movie
1467
+ - **IconVideoTimeline** — video-timeline, edit-video
1468
+ - **IconVideoTrim** — video-trim
1469
+ - **IconVideos** — videos, video-playlist
1470
+ - **IconVignette** — vignette
1471
+ - **IconWallpaper** — wallpaper, os
1472
+ - **IconZap** — zap, lightning, flash, thunder
1473
+
1474
+ ### Security
1475
+
1476
+ - **IconAnonymous** — anonymous, anonym, hidden
1477
+ - **IconAsterisk** — asterisk, placeholder
1478
+ - **IconFaceId** — face-id
1479
+ - **IconFingerPrint1** — finger-print-1, touch-id
1480
+ - **IconFingerPrint2** — finger-print-2, touch-id
1481
+ - **IconFirewall** — firewall, wall
1482
+ - **IconGhost** — ghost, hidden, unknown, horror
1483
+ - **IconGhost2** — ghost-2, privacy, hidden, unknown
1484
+ - **IconKey1** — key-1, password
1485
+ - **IconKey2** — key-2, password
1486
+ - **IconKeyhole** — keyhole
1487
+ - **IconLaw** — law, legal, terms, imprint, balance
1488
+ - **IconLock** — lock, private
1489
+ - **IconPasskeys** — passkeys, passkey, passwordless
1490
+ - **IconPassport** — passport, visa
1491
+ - **IconPassword** — password, lock, protection
1492
+ - **IconPasswordStars** — password-stars
1493
+ - **IconSafeSimple** — safe-simple, save
1494
+ - **IconShield** — shield, security, protection
1495
+ - **IconShield2** — shield-2, safety, privacy
1496
+ - **IconShieldBreak** — shield-break, not-secure
1497
+ - **IconShieldCheck** — shield-check, security, protection
1498
+ - **IconShieldCheck2** — shield-check-2, protect, security, check
1499
+ - **IconShieldCheck3** — shield-check-3, check
1500
+ - **IconShieldCode** — shield-code, sandbox
1501
+ - **IconShieldCrossed** — shield-crossed, security, protection
1502
+ - **IconShieldKeyhole** — shield-keyhole
1503
+ - **IconSiren** — siren, alarm
1504
+ - **IconUmbrellaSecurity** — umbrella-security
1505
+ - **IconUnlocked** — unlocked, unlock, private
1506
+ - **IconVault** — vault, safe
1507
+
1508
+ ### Shopping & Payment
1509
+
1510
+ - **Icon3dPackage** — 3d-package, box
1511
+ - **Icon3dPackage2** — 3d-package-2, box, delivery
1512
+ - **IconAddToBasket** — add-to-basket
1513
+ - **IconAddToBasket2** — add-to-basket-2
1514
+ - **IconBanknote1** — banknote-1, money, bill
1515
+ - **IconBanknote2** — banknote-2, money, bill
1516
+ - **IconBasket1** — basket-1, cart, shopping
1517
+ - **IconBasket2** — basket-2, shopping-bag
1518
+ - **IconCoinLira** — coin-lira, currency, money
1519
+ - **IconCoinPesos** — coin-pesos, currency, money
1520
+ - **IconCoinRand** — coin-rand, currency, money
1521
+ - **IconCoinRupees** — coin-rupees, currency, money
1522
+ - **IconCoinWon** — coin-won, currency, money
1523
+ - **IconCreditCard1** — credit-card-1, card, payment
1524
+ - **IconCreditCard2** — credit-card-2, card, payment
1525
+ - **IconCreditCardAdd** — credit-card-add, card, payment
1526
+ - **IconCurrencyDollar** — currency-dollar, money
1527
+ - **IconCurrencyEuro** — currency-euro, money
1528
+ - **IconCurrencyLira** — currency-lira, money
1529
+ - **IconCurrencyPesos** — currency-pesos, money
1530
+ - **IconCurrencyPounds** — currency-pounds, money
1531
+ - **IconCurrencyRupees** — currency-rupees, money
1532
+ - **IconCurrencyYen** — currency-yen, money
1533
+ - **IconDollar** — dollar, currency, money, coin, USD
1534
+ - **IconEuro** — euro, currency, money, coin, EURO
1535
+ - **IconFastDelivery** — fast-delivery, quick-commerce
1536
+ - **IconGift1** — gift-1, present
1537
+ - **IconGift2** — gift-2, present
1538
+ - **IconGiftBox** — gift-box, present
1539
+ - **IconGiftcard** — giftcard, present
1540
+ - **IconGiroCard** — giro-card
1541
+ - **IconGiroCards** — giro-cards
1542
+ - **IconMoneybag** — moneybag, purse, savings
1543
+ - **IconPackage** — package, delivery
1544
+ - **IconPackageAdd** — package-add, delivery
1545
+ - **IconPackageBlock** — package-block, delivery
1546
+ - **IconPackageCkeck** — package-ckeck, delivery
1547
+ - **IconPackageDelivery** — package-delivery
1548
+ - **IconPackageDelivery1** — package-delivery-1, address
1549
+ - **IconPackageDelivery2** — package-delivery-2, address
1550
+ - **IconPackageEdit** — package-edit, delivery
1551
+ - **IconPackageIn** — package-in, delivery
1552
+ - **IconPackageOut** — package-out, return, delivery
1553
+ - **IconPackageRemove** — package-remove, delivery
1554
+ - **IconPackageSearch** — package-search, delivery
1555
+ - **IconPackageSecurity** — package-security, delivery
1556
+ - **IconPayment** — payment, flow, connection
1557
+ - **IconPercent** — percent, sales
1558
+ - **IconPound** — pound, currency, money, coin, GBP
1559
+ - **IconReceiptBill** — receipt-bill, purchase, invoice
1560
+ - **IconReceiptCheck** — receipt-check, ticket
1561
+ - **IconReceiptStorno** — receipt-storno, close, remove
1562
+ - **IconReceiptTax** — receipt-tax, discount
1563
+ - **IconRemoveFromBasket** — remove-from-basket
1564
+ - **IconRemoveFromBasket2** — remove-from-basket-2
1565
+ - **IconShoppingBag1** — shopping-bag-1
1566
+ - **IconShoppingBag2** — shopping-bag-2
1567
+ - **IconShoppingBag3** — shopping-bag-3
1568
+ - **IconShoppingBag4** — shopping-bag-4
1569
+ - **IconShoppingBagAdd2** — shopping-bag-add-2
1570
+ - **IconShoppingBagBlock2** — shopping-bag-block-2
1571
+ - **IconShoppingBagBookmark2** — shopping-bag-bookmark-2
1572
+ - **IconShoppingBagEdit2** — shopping-bag-edit-2
1573
+ - **IconShoppingBagLike1** — shopping-bag-like-1
1574
+ - **IconShoppingBagLike2** — shopping-bag-like-2
1575
+ - **IconWallet1** — wallet-1
1576
+ - **IconWallet2** — wallet-2
1577
+ - **IconWallet3** — wallet-3
1578
+ - **IconWallet4** — wallet-4
1579
+ - **IconWallet5** — wallet-5
1580
+ - **IconYen** — yen, currency, money, coin
1581
+
1582
+ ### Social Media & Brands
1583
+
1584
+ - **IconAdobeAcrobat** — adobe-acrobat
1585
+ - **IconAffinity** — affinity
1586
+ - **IconAmp** — amp
1587
+ - **IconAngularjs** — angularjs
1588
+ - **IconAnthropic** — anthropic
1589
+ - **IconAntigravity** — antigravity
1590
+ - **IconApple** — apple
1591
+ - **IconAppleIntelligence** — apple-intelligence
1592
+ - **IconAppleMusic** — apple-music
1593
+ - **IconAppleSpring** — apple-spring
1594
+ - **IconAppstore** — appstore
1595
+ - **IconArc** — arc
1596
+ - **IconArena** — arena
1597
+ - **IconArtifactNews** — artifact-news
1598
+ - **IconBehance** — behance
1599
+ - **IconBitcoinLogo** — bitcoin-logo
1600
+ - **IconBluesky** — bluesky
1601
+ - **IconBolt** — bolt
1602
+ - **IconBun** — bun
1603
+ - **IconCash** — cash
1604
+ - **IconCentralIconSystem** — central-icon-system
1605
+ - **IconChrome** — chrome
1606
+ - **IconClaudeai** — claudeai
1607
+ - **IconClawd** — clawd
1608
+ - **IconCodepen** — codepen
1609
+ - **IconCopilot** — copilot
1610
+ - **IconCosmos** — cosmos
1611
+ - **IconCpp** — c++
1612
+ - **IconCursor** — cursor
1613
+ - **IconDeepseek** — deepseek
1614
+ - **IconDevin** — devin
1615
+ - **IconDia** — dia
1616
+ - **IconDiscord** — discord
1617
+ - **IconDribbble** — dribbble
1618
+ - **IconDuolingo** — duolingo
1619
+ - **IconEuropeanUnion** — european-union, eu-stars
1620
+ - **IconFacebook** — facebook
1621
+ - **IconFacebookMessenger** — facebook-messenger
1622
+ - **IconFactory** — factory
1623
+ - **IconFigma** — figma
1624
+ - **IconFigmaSimple** — figma-simple
1625
+ - **IconFirefox** — firefox
1626
+ - **IconFormula1** — formula1
1627
+ - **IconFramer** — framer
1628
+ - **IconGemini** — gemini
1629
+ - **IconGit** — git
1630
+ - **IconGithub** — github
1631
+ - **IconGoogle** — google
1632
+ - **IconGoogleAistudio** — google-aistudio
1633
+ - **IconGoogleDeepmind** — google-deepmind
1634
+ - **IconGooglePlayStore** — google-play-store
1635
+ - **IconGoose** — goose
1636
+ - **IconGranola** — granola
1637
+ - **IconGrok** — grok
1638
+ - **IconGumroad** — gumroad
1639
+ - **IconIconists** — iconists
1640
+ - **IconImessage** — imessage
1641
+ - **IconInstagram** — instagram
1642
+ - **IconIsoOrg** — iso-org
1643
+ - **IconJava** — java
1644
+ - **IconJavaCoffeeBean** — java-coffee-bean
1645
+ - **IconJavascript** — javascript
1646
+ - **IconJson** — json
1647
+ - **IconLemonsqueezy** — lemonsqueezy
1648
+ - **IconLinear** — linear
1649
+ - **IconLinkedin** — linkedin
1650
+ - **IconLinktree** — linktree
1651
+ - **IconLottielab** — lottielab
1652
+ - **IconLovable** — lovable
1653
+ - **IconManusAi** — manus-ai
1654
+ - **IconMastadon** — mastadon
1655
+ - **IconMedium** — medium
1656
+ - **IconMetaAi** — meta-ai
1657
+ - **IconMicrosoftCopilot** — microsoft-copilot
1658
+ - **IconMidjourney** — midjourney
1659
+ - **IconMistral** — mistral
1660
+ - **IconModelcontextprotocol** — modelcontextprotocol, mcp
1661
+ - **IconNetify** — netify
1662
+ - **IconNintendoSwitch** — nintendo-switch
1663
+ - **IconNotebooklm** — notebooklm
1664
+ - **IconNotion** — notion
1665
+ - **IconNotionAi** — notion-ai
1666
+ - **IconNpm** — npm
1667
+ - **IconNvidia** — nvidia
1668
+ - **IconOllama** — ollama
1669
+ - **IconOpenai** — openai, chatgpt
1670
+ - **IconOpenaiAtlas** — openai-atlas
1671
+ - **IconOpenaiCodex** — openai-codex
1672
+ - **IconOpenaiPrism** — openai-prism
1673
+ - **IconOpenaiSora** — openai-sora
1674
+ - **IconOpenclaw** — openclaw
1675
+ - **IconOpencode** — opencode
1676
+ - **IconOpera** — opera
1677
+ - **IconPatreon** — patreon
1678
+ - **IconPerplexity** — perplexity
1679
+ - **IconPhp** — php
1680
+ - **IconPhpElephant** — php-elephant
1681
+ - **IconPhyton** — phyton
1682
+ - **IconPinterest** — pinterest
1683
+ - **IconPinterestSimple** — pinterest-simple
1684
+ - **IconPlaystation** — playstation
1685
+ - **IconProducthunt** — producthunt
1686
+ - **IconQuora** — quora
1687
+ - **IconReact** — react
1688
+ - **IconRecraft** — recraft
1689
+ - **IconRedDotAward** — red-dot-award
1690
+ - **IconReddit** — reddit
1691
+ - **IconReplit** — replit
1692
+ - **IconRiotGames** — riot-games
1693
+ - **IconRive** — rive
1694
+ - **IconRobinhood** — robinhood
1695
+ - **IconRssFeed** — rss-feed
1696
+ - **IconRust** — rust
1697
+ - **IconSafari** — safari
1698
+ - **IconSiri** — siri
1699
+ - **IconSketch** — sketch
1700
+ - **IconSlack** — slack
1701
+ - **IconSnapchat** — snapchat
1702
+ - **IconSolidjs** — solidjs
1703
+ - **IconSpotify** — spotify
1704
+ - **IconStackOverflow** — stack-overflow
1705
+ - **IconSteam** — steam
1706
+ - **IconSubstack** — substack
1707
+ - **IconSupabase** — supabase
1708
+ - **IconSvelte** — svelte
1709
+ - **IconTelegram** — telegram
1710
+ - **IconThings** — things
1711
+ - **IconThreads** — threads
1712
+ - **IconTiktok** — tiktok
1713
+ - **IconTumblr** — tumblr
1714
+ - **IconTwitch** — twitch
1715
+ - **IconTwitter** — twitter, larry
1716
+ - **IconTypescript** — typescript
1717
+ - **IconV0** — v0
1718
+ - **IconVenmo** — venmo
1719
+ - **IconVercel** — vercel
1720
+ - **IconVkontakte** — vkontakte
1721
+ - **IconVue** — vue
1722
+ - **IconWarp** — warp
1723
+ - **IconWebflow** — webflow
1724
+ - **IconWechat** — wechat
1725
+ - **IconWhatsapp** — whatsapp
1726
+ - **IconWindsurf** — windsurf
1727
+ - **IconX** — x
1728
+ - **IconXbox** — xbox
1729
+ - **IconYoutube** — youtube
1730
+
1731
+ ### Sound & Music
1732
+
1733
+ - **IconAirpodLeft** — airpod-left
1734
+ - **IconAirpodRight** — airpod-right
1735
+ - **IconAirpods** — airpods, headphones, vibe
1736
+ - **IconAlbums** — albums, cover
1737
+ - **IconAudio** — audio, music, playlist, musical-note
1738
+ - **IconBack** — back
1739
+ - **IconBack10s** — back-10s
1740
+ - **IconCd** — cd, disc, vinyl, dvd, dj, spin, music, album
1741
+ - **IconConductor** — conductor, ochestrator, vibe
1742
+ - **IconFastForward** — fast-forward
1743
+ - **IconFastForward10s** — fast-forward-10s
1744
+ - **IconFastForward15s** — fast-forward-15s
1745
+ - **IconFastForward30s** — fast-forward-30s
1746
+ - **IconFastForward5s** — fast-forward-5s
1747
+ - **IconForwards10s** — forwards-10s
1748
+ - **IconHeadphones** — headphones, support
1749
+ - **IconKeyboard** — keyboard, midi, keys, piano
1750
+ - **IconMegaphone** — megaphone, loud, speak, promote, feedback
1751
+ - **IconMegaphone2** — megaphone-2, loud, speak, promote, feedback
1752
+ - **IconMicrophone** — microphone, mic, sound, podcast
1753
+ - **IconMicrophoneOff** — microphone-off
1754
+ - **IconMute** — mute, sound-off
1755
+ - **IconPause** — pause
1756
+ - **IconPlay** — play, go
1757
+ - **IconPlayCircle** — play-circle
1758
+ - **IconPlaylist** — playlist
1759
+ - **IconPodcast1** — podcast-1, broadcast, mic
1760
+ - **IconPodcast2** — podcast-2, broadcast, mic
1761
+ - **IconRecord** — record
1762
+ - **IconRepeat** — repeat
1763
+ - **IconReplay** — replay, play-again
1764
+ - **IconRewind** — rewind
1765
+ - **IconRewind10s** — rewind-10s
1766
+ - **IconRewind15s** — rewind-15s
1767
+ - **IconRewind30s** — rewind-30s
1768
+ - **IconRewind5s** — rewind-5s
1769
+ - **IconScanVoice** — scan-voice
1770
+ - **IconShuffle** — shuffle, random
1771
+ - **IconSkip** — skip, next
1772
+ - **IconSoundFx** — sound-fx, sound-effects
1773
+ - **IconStableVoice** — stable-voice, stable-volume, voice-circle, voice-control
1774
+ - **IconStop** — stop
1775
+ - **IconStopCircle** — stop-circle
1776
+ - **IconVocalMicrophone** — vocal-microphone, singing, karaoke
1777
+ - **IconVoice3** — voice-3, wave
1778
+ - **IconVoiceHigh** — voice-high, wave
1779
+ - **IconVoiceLow** — voice-low, wave
1780
+ - **IconVoiceMemo** — voice-memo, voice-control
1781
+ - **IconVoiceMid** — voice-mid, wave
1782
+ - **IconVoiceMode** — voice-mode, voice-settings
1783
+ - **IconVoiceRecord** — voice-record
1784
+ - **IconVoiceSettings** — voice-settings, edit-voice
1785
+ - **IconVoiceShare** — voice-share
1786
+ - **IconVolumeDown** — volume-down
1787
+ - **IconVolumeFull** — volume-full, speaker, loud, sound
1788
+ - **IconVolumeHalf** — volume-half, speaker, loud, sound
1789
+ - **IconVolumeMinimum** — volume-minimum, speaker, loud, sound
1790
+ - **IconVolumeOff** — volume-off, sound-off
1791
+ - **IconVolumeUp** — volume-up
1792
+
1793
+ ### Sports
1794
+
1795
+ - **IconAmericanFootball** — american-football, nfl
1796
+ - **IconBaseball** — baseball
1797
+ - **IconBasketball** — basketball, nba
1798
+ - **IconBowling** — bowling
1799
+ - **IconFrisbee** — frisbee
1800
+ - **IconFrisbeeGolf** — frisbee-golf
1801
+ - **IconGolfBall** — golf-ball
1802
+ - **IconIceHockey** — ice-hockey
1803
+ - **IconKickball** — kickball
1804
+ - **IconPickelball** — pickelball
1805
+ - **IconSoccer** — soccer, football, mls
1806
+ - **IconTennis** — tennis
1807
+ - **IconVersusCircle** — versus-circle, vs
1808
+ - **IconVolleyball** — volleyball
1809
+
1810
+ ### Statistics & Charts
1811
+
1812
+ - **IconAnalytics** — analytics, analysis
1813
+ - **IconChart1** — chart-1, statistics, flipchart, presentation, graph 2
1814
+ - **IconChart2** — chart-2, statistics, flipchart, presentation, graph
1815
+ - **IconChart3** — chart-3, statistics, graph, signal
1816
+ - **IconChart4** — chart-4, statistics, graph
1817
+ - **IconChart5** — chart-5, statistics, graph
1818
+ - **IconChart6** — chart-6, statistics, graph
1819
+ - **IconChart7** — chart-7, statistics, graph
1820
+ - **IconChartCompare** — chart-compare
1821
+ - **IconChartCompareHorizontal** — chart-compare-horizontal
1822
+ - **IconChartWaterfall** — chart-waterfall
1823
+ - **IconChartWaterfallAxis** — chart-waterfall-axis
1824
+ - **IconComboChartAxis** — combo-chart-axis
1825
+ - **IconInsights** — insights, analyze
1826
+ - **IconLeaderboard** — leaderboard, winner, stats, graph
1827
+ - **IconLineChart1** — line-chart-1, statistics, graph
1828
+ - **IconLineChart2** — line-chart-2, statistics, graph
1829
+ - **IconLineChart3** — line-chart-3, statistics, graph
1830
+ - **IconLineChart4** — line-chart-4, statistics, graph
1831
+ - **IconPieChart1** — pie-chart-1, graph, chart, statistics
1832
+ - **IconPieChart2** — pie-chart-2, graph, chart, statistics
1833
+ - **IconPieChart3** — pie-chart-3, graph, statistics
1834
+ - **IconPointChart** — point-chart, dots
1835
+ - **IconSankeyAxis** — sankey-axis
1836
+ - **IconSankeyChart** — sankey-chart
1837
+ - **IconStackedBarChart** — stacked-bar-chart
1838
+ - **IconStackedBarChart100** — stacked-bar-chart-100
1839
+ - **IconStackedBarChart100Axis** — stacked-bar-chart-100-axis
1840
+ - **IconStackedBarChart2** — stacked-bar-chart-2, revenue
1841
+ - **IconStackedBarChartAxis2** — stacked-bar-chart-axis-2
1842
+ - **IconStackedBarChartHorizontal100Axis** — stacked-bar-chart-horizontal-100-axis
1843
+ - **IconSunburstChart** — sunburst-chart
1844
+ - **IconSunburstChart2** — sunburst-chart-2
1845
+ - **IconTrending1** — trending-1, trends
1846
+ - **IconTrending2** — trending-2, trends
1847
+ - **IconTrending3** — trending-3, trends, upward
1848
+ - **IconTrending4** — trending-4, chart
1849
+ - **IconTrending5** — trending-5, chart, analytics
1850
+ - **IconTrending6** — trending-6, trends, downward
1851
+ - **IconTrendingCircle** — trending-circle
1852
+ - **IconWhiteboard1** — whiteboard-1, artboard
1853
+ - **IconWhiteboard2** — whiteboard-2
1854
+
1855
+ ### Things
1856
+
1857
+ - **IconAnvil** — anvil, crafting, hard, strong
1858
+ - **IconApps** — apps, skills, circles
1859
+ - **IconBackpack** — backpack, travel
1860
+ - **IconBag** — bag, luggage, buggage
1861
+ - **IconBag2** — bag-2, luggage, buggage
1862
+ - **IconBag3** — bag-3, luggage, suitcase, work
1863
+ - **IconBalloon** — balloon, birthday
1864
+ - **IconBaymax** — baymax, bot, help
1865
+ - **IconBean** — bean, java
1866
+ - **IconBee** — bee, fly
1867
+ - **IconBlackHole** — black-hole, galaxy, delete-forever, hide
1868
+ - **IconBlocks** — blocks, integration, apps
1869
+ - **IconBomb** — bomb, boom
1870
+ - **IconBooks** — books, library
1871
+ - **IconBronceMedal** — bronce-medal, third-place
1872
+ - **IconBroom** — broom, brush, clear, clean
1873
+ - **IconBuildingBlocks** — building-blocks, skills, stack
1874
+ - **IconBurst** — burst, pop, boom
1875
+ - **IconCap** — cap, fan
1876
+ - **IconCelebrate** — celebrate, party, confetti
1877
+ - **IconCirclesThree** — circles-three, bubbles
1878
+ - **IconConstructionHelmet** — construction-helmet, work, wip
1879
+ - **IconCopyright** — copyright
1880
+ - **IconCrown** — crown, vip
1881
+ - **IconCurtain** — curtain, showtime, theater
1882
+ - **IconDashboardFast** — dashboard-fast
1883
+ - **IconDashboardLow** — dashboard-low
1884
+ - **IconDashboardMiddle** — dashboard-middle
1885
+ - **IconDeepDive** — deep-dive, dive-in, fin
1886
+ - **IconDeskLamp** — desk-lamp, light, study
1887
+ - **IconDiamond** — diamond, pro, premium
1888
+ - **IconDiamondShine** — diamond-shine, pop, polish
1889
+ - **IconDino** — dino, age, old
1890
+ - **IconDirectorChair** — director-chair, chair
1891
+ - **IconDiscoBall** — disco-ball, music, dance, party
1892
+ - **IconDoorHanger** — door-hanger, sign, do-not-disdurb
1893
+ - **IconDumbell** — dumbell, fitness, training
1894
+ - **IconElements** — elements, materials, products, tools, teams, skills, circles
1895
+ - **IconEmojiAstonished** — emoji-astonished
1896
+ - **IconExplosion** — explosion, boom, bang, pop
1897
+ - **IconFashion** — fashion, wear, clothes, t-shirt
1898
+ - **IconFire1** — fire-1, flame, hot, heat
1899
+ - **IconFire2** — fire-2, flame, hot, heat
1900
+ - **IconFire3** — fire-3, flame, hot, heat
1901
+ - **IconFireExtinguisher** — fire-extinguisher, urgent
1902
+ - **IconFlag1** — flag-1, priority
1903
+ - **IconFlag2** — flag-2, priority
1904
+ - **IconFlashcards** — flashcards, cards, pages
1905
+ - **IconFootsteps** — footsteps
1906
+ - **IconForYou** — for-you, for-me, event, address, post
1907
+ - **IconFormPyramide** — form-pyramide, prism
1908
+ - **IconGalaxy** — galaxy, dark-hole
1909
+ - **IconGoatHead** — goat-head, goated
1910
+ - **IconGold** — gold, goldbars
1911
+ - **IconGoldMedal** — gold-medal, first-place, win
1912
+ - **IconGraduateCap** — graduate-cap, study, education, academic, student
1913
+ - **IconGraduateCap2** — graduate-cap-2, study, education, academic, student
1914
+ - **IconInfinity** — infinity, loop, boomerang
1915
+ - **IconInjection** — injection
1916
+ - **IconJudgeGavel** — judge-gavel, legal, terms, law
1917
+ - **IconLab** — lab
1918
+ - **IconLifeVest** — life-vest, vest
1919
+ - **IconLimit** — limit
1920
+ - **IconLiveActivity** — live-activity, fitness
1921
+ - **IconMagicLamp** — magic-lamp, wish, agents, genie
1922
+ - **IconMakeItPop** — make-it-pop, design
1923
+ - **IconMedal** — medal, trophy, badge, winner, win
1924
+ - **IconMedicinePill** — medicine-pill
1925
+ - **IconMedicinePill2** — medicine-pill-2, tablett
1926
+ - **IconMedicineTablett** — medicine-tablett, pill
1927
+ - **IconMouth** — mouth, kiss
1928
+ - **IconNailedIt** — nailed-it
1929
+ - **IconOrganisation** — organisation, organimgram
1930
+ - **IconParachute** — parachute, airdrop
1931
+ - **IconParasol** — parasol, umbrella, vacation
1932
+ - **IconPeace** — peace
1933
+ - **IconPets** — pets, paw, animal
1934
+ - **IconPiggyBank** — piggy-bank, save-money
1935
+ - **IconPillow** — pillow, sleep, snooze
1936
+ - **IconPillowZz** — pillow-zz, sleep, snooze
1937
+ - **IconPilone** — pilone, maintenance
1938
+ - **IconPlan** — plan, process, connect, path
1939
+ - **IconPlayground** — playground, forms, shapes, geo
1940
+ - **IconPlugin1** — plugin-1, power, adapter
1941
+ - **IconPlugin2** — plugin-2, build
1942
+ - **IconPokeball** — pokeball, catch
1943
+ - **IconPolitics** — politics, speaker, press-conference, speech
1944
+ - **IconPropeller** — propeller, flight, test, wind
1945
+ - **IconPushTheButton** — push-the-button, hot, alarm
1946
+ - **IconPuzzle** — puzzle, plugin
1947
+ - **IconRacingFlag** — racing-flag, target
1948
+ - **IconReadingList** — reading-list, glasses, steve-jobs
1949
+ - **IconReceiptionBell** — receiption-bell, concierge, assistant
1950
+ - **IconReceiptionBell2** — receiption-bell-2, concierge, assistant
1951
+ - **IconRescueRing** — rescue-ring, swim-boyle, help, support
1952
+ - **IconRockingHorse** — rocking-horse, child, kids, toy
1953
+ - **IconScissors1** — scissors-1, cut
1954
+ - **IconScissors2** — scissors-2, cut
1955
+ - **IconShovel** — shovel, spade, pick
1956
+ - **IconSilverMedal** — silver-medal, second-place, runner-up
1957
+ - **IconSocial** — social, connection
1958
+ - **IconSpace** — space, star
1959
+ - **IconSpeedHigh** — speed-high, limit, speedometer, level
1960
+ - **IconSpeedLow** — speed-low, limit, speedometer, level
1961
+ - **IconSpeedMiddle** — speed-middle, limit, speedometer, level
1962
+ - **IconStage** — stage, show
1963
+ - **IconStamps** — stamps, collection
1964
+ - **IconSteeringWheel** — steering-wheel, control, navigate, boot
1965
+ - **IconSticker** — sticker, badge
1966
+ - **IconStocks** — stocks
1967
+ - **IconSubscriptionStar** — subscription-star, verify
1968
+ - **IconSubscriptionTick1** — subscription-tick-1, verify
1969
+ - **IconSubscriptionTick2** — subscription-tick-2, verify
1970
+ - **IconSuitcase** — suitcase, luggage, case
1971
+ - **IconSuitcaseSticker** — suitcase-sticker, vacation, travel
1972
+ - **IconSuitcaseWork** — suitcase-work, workspace
1973
+ - **IconSupport** — support
1974
+ - **IconTactics1** — tactics-1, game-plan, prototype, play
1975
+ - **IconTactics2** — tactics-2, game-plan, prototype, play
1976
+ - **IconTag** — tag, sale
1977
+ - **IconTeddyBear** — teddy-bear, play
1978
+ - **IconTelescope** — telescope, deep-search, research
1979
+ - **IconTestTube** — test-tube
1980
+ - **IconTestTube2** — test-tube 2, test, lab, filter
1981
+ - **IconThinkingBubble** — thinking-bubble
1982
+ - **IconThinkingBubble1** — thinking-bubble-1, thoughts
1983
+ - **IconThread** — thread
1984
+ - **IconTicket** — ticket, admit, vip
1985
+ - **IconToiletPaper** — toilet-paper, wipe
1986
+ - **IconTreasure** — treasure, chest
1987
+ - **IconTrophy** — trophy, win, champion
1988
+ - **IconUnicorn** — unicorn, startup, success
1989
+ - **IconWarningSign** — warning-sign, attention, coution
1990
+ - **IconWaste** — waste, trash-can
1991
+ - **IconWeight** — weight, scale
1992
+ - **IconWip** — wip, work, barrier
1993
+ - **IconWreath** — wreath, crown, laurel-leafs
1994
+ - **IconWreathSimple** — wreath-simple, laurel-leafs, winner
1995
+
1996
+ ### Time & Date
1997
+
1998
+ - **IconCalendar1** — calendar-1, date
1999
+ - **IconCalendar2** — calendar-2, date
2000
+ - **IconCalendar3** — calendar-3, date
2001
+ - **IconCalendar4** — calendar-4, date
2002
+ - **IconCalendarAdd4** — calendar-add-4
2003
+ - **IconCalendarCheck** — calendar-check, date-check
2004
+ - **IconCalendarCheck4** — calendar-check-4
2005
+ - **IconCalendarClock** — calendar-clock, date-time
2006
+ - **IconCalendarClock4** — calendar-clock-4
2007
+ - **IconCalendarDays** — calendar-days
2008
+ - **IconCalendarEdit** — calendar-edit, date-edit
2009
+ - **IconCalendarRemove4** — calendar-remove-4
2010
+ - **IconCalendarRepeat** — calendar-repeat, date-repeat
2011
+ - **IconCalendarSearch** — calendar-search, date-search
2012
+ - **IconCalendarSearch4** — calendar-search-4
2013
+ - **IconCalendarTearOff** — calendar-tear-off, date
2014
+ - **IconCalender5** — calender-5, date
2015
+ - **IconCalenderAdd** — calender-add, date-add
2016
+ - **IconCalenderNextWeek** — calender-next-week
2017
+ - **IconCalenderRemove** — calender-remove, date-remove
2018
+ - **IconCalenderToday** — calender-today
2019
+ - **IconCalenderTomorrow** — calender-tomorrow
2020
+ - **IconClock** — clock, time, timer
2021
+ - **IconClock3OClock** — clock-3-o-clock, time, 3-00
2022
+ - **IconClock9OClock** — clock-9-o-clock, time, 9-00
2023
+ - **IconClockAlert** — clock-alert, timer
2024
+ - **IconClockSnooze** — clock-snooze, timer, snooze, zz
2025
+ - **IconClockSquare** — clock-square, time, timer
2026
+ - **IconDateCustom** — date-custom
2027
+ - **IconDateDaily** — date-daily
2028
+ - **IconDateMonthly** — date-monthly
2029
+ - **IconDateWeekdays** — date-weekdays
2030
+ - **IconDateWeekly** — date-weekly
2031
+ - **IconDateYearly** — date-yearly, fireworks, new-year
2032
+ - **IconHistory** — history, back, timeline
2033
+ - **IconHourglass** — hourglass
2034
+ - **IconHourglass2** — hourglass-2, time
2035
+ - **IconSendLater** — send-later, timeslot, clock
2036
+ - **IconSleep** — sleep, snooze, zzz
2037
+ - **IconStopwatch** — stopwatch, track
2038
+ - **IconTimeFlies** — time-flies, speed
2039
+ - **IconTimeslot** — timeslot, time, clock
2040
+
2041
+ ### Typography
2042
+
2043
+ - **IconAlignmentCenter** — alignment-center
2044
+ - **IconAlignmentJustify** — alignment-justify
2045
+ - **IconAlignmentLeft** — alignment-left
2046
+ - **IconAlignmentLeftBar** — alignment-left-bar
2047
+ - **IconAlignmentRight** — alignment-right
2048
+ - **IconAlpha** — alpha
2049
+ - **IconAutoCorrect** — auto-correct, autocheck, text-correction
2050
+ - **IconBeta** — beta
2051
+ - **IconBold** — bold
2052
+ - **IconBulletList** — bullet-list
2053
+ - **IconCloseQuote1** — close-quote-1, blockquote
2054
+ - **IconCloseQuote2** — close-quote-2, blockquote
2055
+ - **IconConcise** — concise, text-shorten, squeeze
2056
+ - **IconDecimalNumberComma** — decimal-number-comma
2057
+ - **IconDecimalNumberDot** — decimal-number-dot
2058
+ - **IconDivider** — divider, add-line
2059
+ - **IconFontStyle** — font-style, fonts, serif
2060
+ - **IconH1** — h1, heading, headline
2061
+ - **IconH2** — h2, heading, headline
2062
+ - **IconH3** — h3, heading, headline
2063
+ - **IconHeadline** — headline, heading
2064
+ - **IconHorizontalAlignmentBottom** — horizontal-alignment-bottom
2065
+ - **IconHorizontalAlignmentCenter** — horizontal-alignment-center
2066
+ - **IconHorizontalAlignmentTop** — horizontal-alignment-top
2067
+ - **IconItalic** — italic
2068
+ - **IconLetterACircle** — letter-a-circle
2069
+ - **IconLetterASquare** — letter-a-square, key
2070
+ - **IconLetterZCircle** — letter-z-circle
2071
+ - **IconLetterZSquare** — letter-z-square, key
2072
+ - **IconLineHeight** — line-height, spacing, eleborate
2073
+ - **IconLinebreak** — linebreak, next-line
2074
+ - **IconNumber0Circle** — number-0-circle
2075
+ - **IconNumber0Square** — number-0-square, key
2076
+ - **IconNumber1Circle** — number-1-circle
2077
+ - **IconNumber1Square** — number-1-square, key
2078
+ - **IconNumber2Circle** — number-2-circle
2079
+ - **IconNumber2Square** — number-2-square, key
2080
+ - **IconNumber3Circle** — number-3-circle
2081
+ - **IconNumber3Square** — number-3-square, key
2082
+ - **IconNumber4Circle** — number-4-circle
2083
+ - **IconNumber4Square** — number-4-square, key
2084
+ - **IconNumber5Circle** — number-5-circle
2085
+ - **IconNumber5Square** — number-5-square, key
2086
+ - **IconNumber6Circle** — number-6-circle
2087
+ - **IconNumber6Square** — number-6-square, key
2088
+ - **IconNumber7Circle** — number-7-circle
2089
+ - **IconNumber7Square** — number-7-square, key
2090
+ - **IconNumber8Circle** — number-8-circle
2091
+ - **IconNumber8Square** — number-8-square, key
2092
+ - **IconNumber9Circle** — number-9-circle
2093
+ - **IconNumber9Square** — number-9-square, key
2094
+ - **IconNumberedList** — numbered-list
2095
+ - **IconNumbers01** — numbers-01
2096
+ - **IconNumbers123** — numbers-123
2097
+ - **IconOmega** — omega, special-character
2098
+ - **IconOpenQuote1** — open-quote-1, blockquote
2099
+ - **IconOpenQuote2** — open-quote-2, blockquote
2100
+ - **IconParagraph** — paragraph
2101
+ - **IconRemoveTextstyle** — remove-textstyle
2102
+ - **IconSpacer** — spacer, seperator
2103
+ - **IconStrikeThrough** — strike-through
2104
+ - **IconSubscript** — subscript
2105
+ - **IconSuperscript** — superscript
2106
+ - **IconText1** — text-1
2107
+ - **IconText2** — text-2
2108
+ - **IconTextBlock** — text-block
2109
+ - **IconTextColor** — text-color
2110
+ - **IconTextIndentLeft** — text-indent-left
2111
+ - **IconTextIndentRight** — text-indent-right
2112
+ - **IconTextIndicator** — text-indicator
2113
+ - **IconTextMotion** — text-motion, text-animation
2114
+ - **IconTextSelect** — text-select, lollipops
2115
+ - **IconTextSelectDashed** — text-select-dashed, lollipops
2116
+ - **IconTextSize** — text-size
2117
+ - **IconTitleCase** — title-case
2118
+ - **IconTranslate** — translate, language
2119
+ - **IconUnderline** — underline
2120
+ - **IconVerticalAlignmentCenter** — vertical-alignment-center
2121
+ - **IconVerticalAlignmentLeft** — vertical-alignment-left
2122
+ - **IconVerticalAlignmentRight** — vertical-alignment-right
2123
+ - **IconWrite** — write, edit-list, list
2124
+
2125
+ ### Vehicles
2126
+
2127
+ - **IconBoat** — boat, ship, sailing
2128
+ - **IconSteeringWheel** — steering-wheel, autopilot, drive
2129
+
2130
+ ### Vehicles & Aircrafts
2131
+
2132
+ - **IconAirplane** — airplane, flight
2133
+ - **IconAirplaneDown** — airplane-down, landing
2134
+ - **IconAirplaneUp** — airplane-up, takeoff
2135
+ - **IconBike** — bike
2136
+ - **IconBus** — bus, school-bus
2137
+ - **IconCar1** — car-1
2138
+ - **IconCar10** — car-10, truck
2139
+ - **IconCar10Ev** — car-10-ev, truck
2140
+ - **IconCar1Ev** — car-1-ev
2141
+ - **IconCar2** — car-2
2142
+ - **IconCar2Ev** — car-2-ev
2143
+ - **IconCar3** — car-3
2144
+ - **IconCar3Ev** — car-3-ev
2145
+ - **IconCar4** — car-4
2146
+ - **IconCar4Ev** — car-4-ev
2147
+ - **IconCar5** — car-5
2148
+ - **IconCar5Ev** — car-5-ev
2149
+ - **IconCar6** — car-6
2150
+ - **IconCar6Ev** — car-6-ev
2151
+ - **IconCar7** — car-7, pickup
2152
+ - **IconCar7Ev** — car-7-ev, pickup
2153
+ - **IconCar8** — car-8, mini-van
2154
+ - **IconCar8Ev** — car-8-ev, mini-van
2155
+ - **IconCar9** — car-9, van
2156
+ - **IconCar9Ev** — car-9-ev, van
2157
+ - **IconCarFrontView** — car-front-view
2158
+ - **IconDeliveryBike** — delivery-bike
2159
+ - **IconFastShipping** — fast-shipping, truck, delivery
2160
+ - **IconMountainBike** — mountain-bike
2161
+ - **IconRocket** — rocket, startup, launch
2162
+ - **IconRoller** — roller, scooter
2163
+ - **IconShipping** — shipping, truck, delivery
2164
+ - **IconTrainFrontView** — train-front-view, tram
2165
+ - **IconTruck** — truck, delivery
2166
+ - **IconUfo** — ufo, beam
2167
+
2168
+ ### Weather
2169
+
2170
+ - **IconCloudSnow** — cloud-snow
2171
+ - **IconCloudWeather** — cloud-weather, clouds
2172
+ - **IconCloudy** — cloudy, clouds
2173
+ - **IconCloudySun** — cloudy-sun, clouds
2174
+ - **IconDrop** — drop, water, precipitation, liquid
2175
+ - **IconFullMoon** — full-moon, dark-mode, nasa
2176
+ - **IconLightning** — lightning, zap, flash, thunder
2177
+ - **IconMoon** — moon, dark-mode, night
2178
+ - **IconMoonStar** — moon-star, night
2179
+ - **IconRainy** — rainy, rain
2180
+ - **IconRainyLight** — rainy-light
2181
+ - **IconSnowFlakes** — snow-flakes, freeze, frozen
2182
+ - **IconSun** — sun, light-mode, day, today
2183
+ - **IconSunHigh** — sun-high, light-mode, day, today
2184
+ - **IconSunLow** — sun-low, light-mode, day, today
2185
+ - **IconSunrise** — sunrise
2186
+ - **IconSunriseArrowUp** — sunrise-arrow-up
2187
+ - **IconSunset** — sunset
2188
+ - **IconSunsetArrowDown** — sunset-arrow-down
2189
+ - **IconThermostat** — thermostat, temprature
2190
+ - **IconThunder** — thunder, zap, flash
2191
+ - **IconWind** — wind, windy