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