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