@central-icons-react/round-outlined-radius-3-stroke-2
Version:
A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.
1,055 lines (998 loc) • 107 kB
Markdown
---
name: central-icons-react
description: Use when inserting icons in React code that imports from @central-icons-react/* — provides icon lookup by name, alias, or category and variant-aware import guidance.
---
# Central Icons — React
This skill helps you find icons from the Central Icons React library (`@central-icons-react/*`, version 1.1.294) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2072 icons is consistent across variants; only the stylistic rendering (round vs square, filled vs outlined, corner radius, stroke width) differs.
## Before you pick an import path
Every variant is published as its own npm package. Variant slugs follow this pattern:
```
<join>-<filled>-radius-<radius>-stroke-<stroke>
```
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`.
**Check the consumer's `package.json` for installed variants** — dependencies matching `@central-icons-react/*` (excluding `@central-icons-react/all`).
- **One variant installed:** use it.
- **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`.
- **No variant installed:** tell the user they need to `npm install @central-icons-react/<variant>` first. If they want runtime variant switching, they can use `@central-icons-react/all` with the `CentralIcon` component instead (smaller bundles come from pinning to a specific variant).
## When to use this skill
Trigger when:
- The user asks for a specific icon ("add a home icon", "use a search icon here").
- The user references a UI element that typically uses an icon (button labels, menu entries, form fields, empty states).
- You are editing a file that already imports from `@central-icons-react/*`.
- The user asks "what icons are available for X".
## How to pick the right icon
1. **Match against aliases first.** Each icon has a primary name plus alternate names. Search the catalog below for the user's phrasing across both.
2. **Fall back to category browse.** If no direct match, scan the category that best fits the user's intent (e.g., "add a filter control" → Actions).
3. **Prefer the icon whose primary name matches the user's phrasing.** If "home" matches both `IconHome` (primary: Home) and `IconHouse` (primary: House, alias: Home), pick `IconHome`.
4. **Never fabricate an icon name.** If no icon matches, tell the user and offer the two or three closest alternatives from the catalog.
## How to import
Per-icon path import (best tree-shaking). Replace `<variant>` with the installed variant slug you identified above:
```jsx
import { IconHome } from '@central-icons-react/<variant>/IconHome';
// concrete example:
// import { IconHome } from '@central-icons-react/round-filled-radius-0-stroke-1/IconHome';
function MyComponent() {
return <IconHome />;
}
```
Aliased form — only if the consumer has set up an npm alias via `npm install central-icons@npm:@central-icons-react/<variant>`:
```jsx
import { IconHome } from 'central-icons/IconHome';
```
**Do not use the `CentralIcon` barrel component from a variant package.** It loads the full icon set and defeats the purpose of a variant package. `CentralIcon` is only intended for `@central-icons-react/all`.
## How to use
All icons accept these props:
| Prop | Type | Default | Notes |
| ------------ | -------------------- | -------------- | ------------------------------------------- |
| `size` | `number \| string` | `24` | Sets width and height. |
| `color` | `string` | `currentColor` | SVG fill. Use `currentColor` for theming. |
| `ariaHidden` | `boolean` | `true` | Flip to `false` for meaningful icons. |
| `title` | `string` | — | Required when `ariaHidden={false}`. |
Plus all standard SVG / HTML attributes.
### Decorative icon (default)
```jsx
<IconHome />
```
### Meaningful icon
```jsx
<IconHome ariaHidden={false} title="Go to home page" />
```
When `ariaHidden={false}`, the SVG gets `role="img"` and a `<title>` child, making it announced by screen readers.
### Transparent colors
Icons are built from overlapping shapes. A `color` that already carries transparency (an alpha channel) makes the overlaps paint twice and look darker. Keep the color solid and apply transparency with `opacity`, which fades the whole icon evenly:
```jsx
<IconHome color="black" opacity={0.5} />
```
## Common mistakes to avoid
- **Guessing icon names.** Use the catalog. If unsure, offer the closest matches from the catalog.
- **Importing from the package root in production code.** Always use the per-icon path import for tree-shaking.
- **Importing from a variant the consumer hasn't installed.** Mixing variants in the same file is fine (using outlined + filled side-by-side to indicate active/inactive states is a common pattern), but each variant you import from must be installed as its own `@central-icons-react/<variant>` package. If you reach for a variant that isn't in `package.json`, tell the user which package they need to install.
- **Forgetting accessibility props for meaningful icons.** Set `ariaHidden={false}` and provide a `title`.
- **Baking alpha into `color`.** A semi-transparent `color` (e.g. `rgba(0, 0, 0, 0.5)`) makes overlapping shapes render darker. Use a solid color and apply transparency with `opacity` (e.g. `opacity={0.5}`).
## Icon catalog
The catalog below is the authoritative list of icons available in this library. Each entry shows the React component name (how you import it) followed by the aliases that describe the icon's intent.
### AI & Magic
- **IconSpeachToText** — speach-to-text, voice-to-text
- **IconTextToSpeach** — text-to-speach
- **IconVoice2** — voice-2, siri, wave
- **IconSparklesThree** — sparkles-three, ai 3 stars, sparkles, ✨
- **IconSparklesTwo** — sparkles-two, ai 2 stars, sparkles, ✨
- **IconSparklesTwo2** — sparkles-two-2, ai 2 stars, sparkles, ✨
- **IconSparklesSoft** — sparkles-soft
- **IconSparkle** — sparkle, star, ai
- **IconSparkle2** — sparkle-2, star, magic, ai
- **IconVisualIntelligence** — visual-intelligence
- **IconImageSparkle** — image-sparkle, midjourney, ai generated, star
- **IconListSparkle** — list-sparkle, ai text, text generation
- **IconPrompt** — prompt, scan-text
- **IconPrompt1** — prompt, vibe-designing, box-sparkle
- **IconStarWand** — star-wand, magic
- **IconMagicWand** — magic-wand, magic stick, star
- **IconMagicWand2** — magic-wand-2, magic stick, star
- **IconMagicWand3** — magic-wand-3, magic stick, star
- **IconWindowSparkle** — window-sparkle, whisper, api, app, software
- **IconBrain1** — brain-1, ai, thinking, database, ki
- **IconBrain2** — brain-2, ai, thinking, database, ki
- **IconImageAvatarSparkle** — image-avatar-sparkle, generated avatar, profile ai, magic avatar
- **IconTextToImage** — text-to-image
- **IconMagicBook** — magic-book, magician, sparkles
- **IconPencilSparkle** — pencil-sparkle, magic pencil, magic brush
- **IconMagicEdit** — magic-edit, magic-writing
- **IconBroomSparkle** — broom-sparkle, clean, brush
- **IconBoxSparkle** — box-sparkle, magic box
- **IconHatBunny** — hat-bunny, surprise, magic hat
- **IconWizardHat** — wizard-hat, magician, fantasy
- **IconFortuneTellerBall** — fortune-teller-ball, future
- **IconCuteRobot** — cute-robot
- **IconRobot** — robot
- **IconAppleIntelligenceIcon** — apple-intelligence-icon, ai, tools
- **IconHatSparkle** — hat-sparkle, magic hat
- **IconCursorAi** — cursor-ai, agent, magic
- **IconSearchIntelligence** — search-intelligence, search-ai
- **IconPromptTextToImage** — prompt-text-to-image
- **IconPromptTextToVideo** — prompt-text-to-video
- **IconSparkle3** — sparkle-3, ai, star, magic
- **IconPromptSuggestion** — prompt-suggestion, auto-prompt
- **IconImagine** — imagine, head, thinking
- **IconImagineAi** — imagine-ai, cube, room, 3d, opject, vector
- **IconEyeSparkle** — eye-sparkle, magic eyes
- **IconSparkleCentral** — sparkle-central, star, magic, ai
- **IconLiveVoiceTranslate** — live-voice-translate
- **IconSwitchVoice** — switch-voice, change-voice
- **IconClipboard2Sparkle** — clipboard 2-sparkle, copy, list, auto-fill, form-fill
- **IconImagesSparkle** — images-sparkle, photos, pictures, shot, generate
- **IconBubbleWideSparkle** — bubble-wide-sparkle, message, chat
- **IconCloudySparkle** — cloudy-sparkle, clouds
- **IconMicrophoneSparkle** — microphone-sparkle, mic, sound, podcast
- **IconVoiceSparkle** — voice-sparkle, ai, sound
- **IconLocationSparkle** — location-sparkle, map, route
- **IconConsoleSparkle** — console-sparkle, Terminal
- **IconBag2Sparkle** — bag 2-sparkle, shopping, add, plus
- **IconEmail1Sparkle** — email-1-sparkle, envelope
- **IconSearchlinesSparkle** — search lines-sparkle, magnifier, document, list, page, file
- **IconFolderSparkle** — Folder-sparkle, plus
- **IconFileSparkle** — file-sparkle, document, locked, password
- **IconBubbleSparkle** — bubble-sparkle, message, like, heart
- **IconScanTextSparkle** — scan-text-sparkle, scan, arrows-all-sides, focus, list
- **IconCalenderSparkle** — calender-sparkle, date, plan
- **IconAiTranslate** — ai-translate, language, auto-translate
- **IconAiTokens** — ai-tokens, credits
- **IconCameraSparkle** — camera-sparkle, picture, image, cam
- **IconAutoCrop** — auto-crop, ai-crop
- **IconSeparateVideoVoice** — separate-video-voice, video-audio
- **IconSparkleHightlight** — sparkle-hightlight, special, ai, magic
- **IconVoiceCircle** — voice-circle, waves
- **IconClaw** — claw, openclaw, ai, qclaw
- **IconLightbulbSparkle** — lightbulb-sparkle, idea, reasoning, think
- **IconSparkles3Bold** — sparkles-3-bold, ai, magic
- **IconSparkles2Bold** — sparkles-2-bold, ai, magic
- **IconImagineHead** — imagine-head, thinking, ai
- **IconReceiptionBellSparkle** — receiption-bell-sparkle, ai-concierge, ai-assistant
- **IconScriptAi** — script-ai, paper, page, contract, file, document, skills
- **IconClapboardSparkle** — clapboard-sparkle, movie, film, ai
- **IconAiSlop** — ai-slop, trash
- **IconRobot2** — robot-2, agent, scout
- **IconRobot3** — robot-3, agent, scout
- **IconArrowRotateSparkle** — arrow-rotate-sparkle, repeat, refresh, generate
- **IconRobotHeadSlop** — robot-head-slop
- **IconBurnTokens** — burn-tokens, limit
- **IconQuickAi** — quick-ai, rising
- **IconGoblin2** — goblin-2, troll, agent, helper
- **IconShieldAi** — shield-ai, security, safety, privacy, cyber
- **IconGoblin** — goblin, troll, agent, helper
### Accessibility
- **IconCirclePerson** — circle-person, accessibility, a11y
- **IconEar** — ear, hearing, loud
- **IconEyeOpen** — eye-open, show, see, reveal, look, visible
- **IconEyeClosed** — eye-closed, see, hidden
- **IconEyeSlash** — eye-slash, hide, eye off, see, look, not visible
- **IconEyeSlash2** — eye-slash-2, accessibility eye, a11y
- **IconCircleHalfFill** — circle-half-fill, contrast
- **IconSquareLinesBottom** — square-lines-bottom, transcription
- **IconImageAltText** — image-alt-text
- **IconVoiceControl** — voice-control
- **IconReduceMotion** — reduce-motion
- **IconVoiceover** — voiceover, sound
- **IconVoiceover2** — voiceover-2, sound, eye, accessibility
### Arrows
- **IconArrowUpCircle** — arrow-up-circle, arrow-top
- **IconArrowRightUpCircle** — arrow-right-up-circle
- **IconArrowRightCircle** — arrow-right-circle
- **IconArrowRightDownCircle** — arrow-right-down-circle
- **IconArrowDownCircle** — arrow-down-circle, arrow-bottom
- **IconArrowLeftDownCircle** — arrow-left-down-circle
- **IconArrowLeftCircle** — arrow-left-circle
- **IconArrowLeftUpCircle** — arrow-left-up-circle
- **IconArrowUp** — arrow-up, arrow-top
- **IconArrowUpRight** — arrow-up-right
- **IconArrowRight** — arrow-right
- **IconArrowDownRight** — arrow-down-right
- **IconArrowDown** — arrow-down
- **IconArrowDownLeft** — arrow-down-left
- **IconArrowLeft** — arrow-left
- **IconArrowUpLeft** — arrow-up-left
- **IconArrowExpandHor** — arrow-expand-hor
- **IconArrowExpandVer** — arrow-expand-ver
- **IconExpand45** — expand-45, enlarge
- **IconMinimize45** — minimize-45, arrow, shrink
- **IconExpand315** — expand-315, enlarge
- **IconMinimize315** — minimize-315, arrow, shrink
- **IconChevronTop** — chevron-top
- **IconChevronRight** — chevron-right
- **IconChevronBottom** — chevron-bottom
- **IconChevronLeft** — chevron-left
- **IconChevronTopSmall** — chevron-top-small
- **IconChevronDownSmall** — chevron-down-small
- **IconChevronRightSmall** — chevron-right-small
- **IconChevronLeftSmall** — chevron-left-small
- **IconChevronDoubleRight** — chevron-double-right
- **IconChevronDoubleLeft** — chevron-double-left
- **IconExpandSimple** — expand-simple
- **IconExpandSimple2** — expand-simple-2
- **IconChevronGrabberVertical** — chevron-grabber-vertical
- **IconChevronGrabberHorizontal** — chevron-grabber-horizontal
- **IconArrowPathRight** — arrow-path-right
- **IconArrowPathLeft** — arrow-path-left
- **IconArrowPathUp** — arrow-path-up
- **IconArrowPathDown** — arrow-path-down
- **IconArrowCornerDownRight** — arrow-corner-down-right
- **IconArrowCornerRightUp** — arrow-corner-right-up
- **IconArrowCornerRightDown** — arrow-corner-right-down
- **IconArrowCornerLeftUp** — arrow-corner-left-up
- **IconArrowCornerLeftDown** — arrow-corner-left-down
- **IconArrowCornerUpRight** — arrow-corner-up-right
- **IconArrowCornerDownLeft** — arrow-corner-down-left
- **IconArrowCornerUpLeft** — arrow-corner-up-left
- **IconArrowUndoUp** — arrow-undo-up, back, top
- **IconArrowRedoDown** — arrow-redo-down, forward
- **IconStepBack** — step-back, undo
- **IconStepForwards** — step-forwards, continue
- **IconArrowTopBottom** — arrow-top-bottom, sort 1, switch vertical
- **IconArrowBottomTop** — arrow-bottom-top, sort 2, switch vertical
- **IconArrowSplitUp** — arrow-split-up, rules, direction, split
- **IconArrowRightLeft** — arrow-right-left, sort 1, switch horizontal
- **IconArrowLeftRight** — arrow-left-right, sort 2, switch horizonatl
- **IconArrowsRepeat** — arrows-repeat, repost
- **IconArrowsRepeatRightLeft** — arrows-repeat-right-left, repost
- **IconArrowsRepeatRightLeftOff** — arrows-repeat-right-left-off, repost-off
- **IconArrowsRepeatCircle** — arrows-repeat-circle, repost
- **IconArrowRotateClockwise** — arrow-rotate-clockwise, rotate-right
- **IconArrowRotateCounterClockwise** — arrow-rotate-counter-clockwise, rotate-left
- **IconArrow** — arrow, refresh, renew
- **IconArrowRotateLeftRight** — arrow-rotate-left-right, repeat, refresh
- **IconArrowRotateRightLeft** — arrow-rotate-right-left, repeat, refresh, routines
- **IconArrowUpDownLeftRight** — arrow-up-down-left-right, move
- **IconSquized** — squized, centered, aligned
- **IconOngoing** — ongoing, moving
- **IconCursor1** — cursor-1, arrow
- **IconCursor3** — cursor-3, arrow
- **IconSquareCursor** — square-cursor, cursor box, arrow
- **IconCursorClick** — cursor-click, arrow, clickbait
- **IconCursorList** — cursor-list, cursor, list
- **IconArrowShareLeft** — arrow-share-left, back, last, reply
- **IconArrowShareRight** — arrow-share-right, next, forward
- **IconChevronLargeLeft** — chevron-large-left, chev left, last
- **IconChevronLargeRight** — chevron-large-right, chev right, next
- **IconChevronLargeTop** — chevron-large-top, chev top, up
- **IconChevronLargeDown** — chevron-large-down, chev down, down
- **IconArrowWallRight** — arrow-wall-right, align right
- **IconArrowWallLeft** — arrow-wall-left, align left
- **IconArrowWallDown** — arrow-wall-down, align bottom
- **IconArrowWallUp** — arrow-wall-up, align top
- **IconArrowWall2Right** — arrow-wall-2-right, align right
- **IconArrowWall2Left** — arrow-wall-2-left, align left
- **IconArrowWall2Down** — arrow-wall-2-down, align bottom
- **IconArrowWall2Up** — arrow-wall-2-up, align top
- **IconArrowTriangleRight** — arrow-triangle-right
- **IconArrowTriangleLeft** — arrow-triangle-left
- **IconArrowTriangleBottom** — arrow-triangle-bottom
- **IconArrowTriangleTop** — arrow-triangle-top
- **IconChevronTriangleDownSmall** — chevron-triangle-down-small, dropdown, caret
- **IconChevronTriangleUpSmall** — chevron-triangle-up-small, dropdown, caret
- **IconSquareArrowTopRight** — square-arrow-top-right, open, new, link, open link, box, arrow
- **IconSquareArrowTopRight2** — square-arrow-top-right-2, open, new, link, open link, box, arrow
- **IconSquareArrowCenter** — square-arrow-center, resize big, box, arrow
- **IconSquareArrowBottomRight** — square-arrow-bottom-right, resize small, box, arrow
- **IconSquareArrowInTopLeft** — square-arrow-in-top-left, dock, box, arrow
- **IconSquareArrowOutTopLeft** — square-arrow-out-top-left, undock, box, arrow
- **IconShareArrowDown** — share-arrow-down, save
- **IconRandom** — random, productivity, smart
- **IconChevronTopMedium** — chevron-top-medium
- **IconChevronDownMedium** — chevron-down-medium
- **IconChevronRightMedium** — chevron-right-medium
- **IconChevronLeftMedium** — chevron-left-medium
- **IconJump** — jump, skip
- **IconArrowsZoom** — arrows-zoom, scale, motion, move, directions
- **IconArrowsShow** — arrows-show, expand, maximize
- **IconArrowsHide** — arrows-hide, collapse, minimize
- **IconRotate360Left** — rotate-360-left
- **IconRotate360Right** — rotate-360-right
- **IconIncrease** — increase, scale, show-more, change-position
- **IconRemix** — remix, new-try, repeat
- **IconArrowUpSquare** — arrow-up-square, top
- **IconArrowRightSquare** — arrow-right-square
- **IconArrowDownSquare** — arrow-down-square, bottom
- **IconArrowLeftSquare** — arrow-left-square
- **IconRedirectArrow** — redirect-arrow
- **IconArrowUpWall** — arrow-up-wall
- **IconArrowDownWall** — arrow-down-wall
- **IconArrowSplitDown** — arrow-split-down, branch
- **IconArrowSplitDown1** — arrow-split-down, rules, direction, split
- **IconArrowLoopDownLeft** — arrow-loop-down-left, restore, reset
- **IconArrowSplitRight** — arrow-split-right, rules, direction, split
- **IconArrowSplitLeft** — arrow-split-left, rules, direction, split
- **IconMouseDown** — mouse-down, press, depth, deep-dive
- **IconMouseUp** — mouse-up, hover, turn-up
- **IconSquareArrowTopRightCorner** — square-arrow-top-right-corner
- **IconSquareArrowBottomRightCorner** — square-arrow-bottom-right-corner
- **IconSquareArrowBottomLeftCorner** — square-arrow-bottom-left-corner
- **IconSquareArrowTopLeftCorner** — square-arrow-top-left-corner
- **IconCollaborationPointerLeft** — collaboration-pointer-left, cursor, agents
- **IconCollaborationPointerRight** — collaboration-pointer-right, cursor, agents
- **IconRemixCircle** — remix-circle, mix, new-try
- **IconComputerUse** — computer-use, cursor
- **IconChevronTriangleRightMedium** — chevron-triangle-right-medium, dropdown, caret
- **IconChevronTriangleLeftMedium** — chevron-triangle-left-medium, dropdown, caret
- **IconChevronTriangleDownMedium** — chevron-triangle-down-medium, dropdown, caret
- **IconChevronTriangleUpMedium** — chevron-triangle-up-medium, dropdown, caret
- **IconCompassPointer** — compass-pointer, arrow, route
### Augmented Reality
- **IconVisionPro** — vision-pro, goggles
- **IconOculus** — oculus
- **IconAr** — ar, augmented-reality, card-box, 3d, virtual reality, VR
- **Icon3dSphere** — 3d-sphere
- **IconArCube3** — ar-cube-3
- **IconArScanCube1** — ar-scan-cube-1
- **IconArScanCube2** — ar-scan-cube-2
- **IconSpatialCapture** — spatial-capture
- **IconAround** — around, spatial
- **IconPanoramaView** — panorama-view
- **IconVisionProApp** — vision-pro-app, window
- **IconRotate** — rotate, rotation, x-axis
- **IconQm3** — qm3, room, transform, xyz, 3d
- **Icon3dBoxTop** — 3d-box-top, shaders, model, cube, ar
- **Icon3dBoxBottom** — 3d-box-bottom, shaders, model, room
- **IconReframe** — reframe, 3D, scale
### Building
- **IconHomeRoundDoor** — home-round-door
- **IconHomePersonalFeed** — home-personal-feed, for-you
- **IconHome** — home, house
- **IconHomeLine** — home-line
- **IconHomeCircle** — home-circle
- **IconHomeRoof** — home-roof, house
- **IconHomeDoor** — home-door, house
- **IconHomeOpen** — home-open, house
- **IconCourt** — court
- **IconBank** — bank
- **IconBuildings** — buildings, company, workspace
- **IconBlock** — block, workspace
- **IconGarage** — garage
- **IconMall** — mall, store, shop, business
- **IconStore1** — store-1
- **IconStore2** — store-2
- **IconStore3** — store-3
- **IconStore4** — store-4, shop, business
- **IconStores** — stores, shops, mall
- **IconSchool** — school, building
- **IconDoor** — door, login, logout
- **IconGovernment** — government, bank, building
- **IconBank2** — bank-2, library, gov
- **IconTower** — tower, terminal
- **IconGoldenGateBridge** — golden-gate-bridge, silicon-valley, sf
- **IconHomeRoofDoor** — home-roof-door, house
- **IconHomePlus** — home-plus
### Clouds
- **IconCloud** — cloud
- **IconCloudDownload** — cloud-download, export
- **IconCloudUpload** — cloud-upload, import
- **IconCloudCheck** — cloud-check, save
- **IconCloudOff** — cloud-off, offline
- **IconCloudOff2** — cloud-off-2, offline
- **IconCloudSync** — cloud-sync
- **IconCloudSimple** — cloud-simple
- **IconCloudSimpleDownload** — cloud-simple-download
- **IconCloudSimpleUpload** — cloud-simple-upload
- **IconCloudSimpleDisconnected** — cloud-simple-disconnected
- **IconCloudApi** — cloud-api, cloud-network
- **IconCloud2** — cloud-2
- **IconCloudTransfer** — cloud-transfer, move-data, move-cloud-files
- **IconCloudSync2** — cloud-sync-2
### Code
- **IconCode** — code
- **IconConsole** — console, terminal
- **IconConsoleSimple** — console-simple
- **IconConsoleSimple1** — console-simple, terminal
- **IconCodeBrackets** — code-brackets
- **IconCodeInsert** — code-insert
- **IconForkCode** — fork-code
- **IconBranch** — branch
- **IconDraft** — draft
- **IconPullRequest** — pull-request, pr-create
- **IconRequestClosed** — request-closed
- **IconShip** — ship, changelog
- **IconSandbox** — sandbox, playground
- **IconAnimationLinear** — animation-linear
- **IconAnimationEaseOut** — animation-ease-out
- **IconAnimationEaseIn** — animation-ease-in
- **IconAnimationEase** — animation-ease
- **IconAnimationAuto** — animation-auto
- **IconAnimationElastic** — animation-elastic, bezier-curves
- **IconAnimationUndershoot** — animation-undershoot
- **IconAnimationOvershoot** — animation-overshoot
- **IconAnimationNone** — animation-none
- **IconBezierCurves** — bezier-curves, animation, motion, spring
- **IconAnimation** — animation
- **IconBrackets1** — brackets-1
- **IconBrackets2** — brackets-2
- **IconCodeLines** — code-lines
- **IconApiConnection** — api-connection
- **IconApiAggregate** — api-aggregate
- **IconBugFace** — bug-face, issue
- **IconBug** — bug, issue
- **IconDebugger** — debugger, debug
- **IconPush** — push, launch, rocket
- **IconTestflight** — testflight, beta
- **IconHammer** — hammer, craft, build
- **IconCodeMedium** — code-medium, syntax, brackets, dev
- **IconCodeAnalyze** — code-analyze, vibe-coding
- **IconCodeAssistant** — code-assistant, vibe-coding
- **IconWebsite** — website, webbuilder, coding
- **IconHook** — hook, phishing
- **IconAnchor** — anchor, webhooks
- **IconCodeLarge** — code-large, syntax, brackets
- **IconVibeCoding** — vibe-coding, ai, ide, syntax
- **IconCommits** — commits
- **IconVibeCoding2** — vibe-coding-2, ai, ide, syntax
- **IconChanges** — changes, plus-minus, compare
- **IconDifferenceIgnored** — difference-ignored
- **IconDifferenceModified** — difference-modified
- **IconAgent** — agent, flow, diagram, org
- **IconSpeedDots** — speed-dots, motion, animation
- **IconLadybug** — ladybug, issue
- **IconHammer2** — hammer-2, crafting, building
- **IconAgenticCoding** — agentic-coding, ai-code, vibe-code
- **IconMerged** — merged
- **IconMergeConflict** — merge-conflict
- **IconCodeTree** — code-tree, file-tree
- **IconForkSimple** — fork-simple, agents
- **IconBranchSimple** — branch-simple
- **IconDraftSimple** — draft-simple
- **IconPullRequestSimple** — pull-request-simple
- **IconPullRequestClosedSimple** — pull-request-closed-simple
- **IconMergedSimple** — merged-simple
- **IconMergeConflictSimple** — merge-conflict-simple
- **IconBridge** — bridge, connection
- **IconAnimatePath** — animate-path, animation, jump
- **IconAgents** — agents, connections, flow, roadmap
- **IconWebhooks** — webhooks
### Communication
- **IconBubbleSparkle1** — bubble-sparkle, comment, feedback
- **IconEmail1** — email-1, envelope
- **IconEmailSettings** — email-settings, envelope, gear
- **IconEmailPlus** — email-plus, envelope, add, plus
- **IconEmail2** — email-2, envelope
- **IconEmail3** — email-3, envelope
- **IconEmailNotification** — email-notification, badge, envelope
- **IconPostcard1** — postcard-1, address
- **IconPostcard2** — postcard-2, address
- **IconInvite** — invite, briefing
- **IconBubble2** — bubble-2, message, chat
- **IconBubbleAnnotation2** — bubble-annotation-2, message, chat
- **IconBubbles** — bubbles, messages, chat, communicate
- **IconBubble3** — bubble-3, message, chat
- **IconBubbleAnnotation3** — bubble-annotation-3, message, chat
- **IconBubble4** — bubble-4, message, chat
- **IconBubbleAnnotation4** — bubble-annotation-4, message, chat
- **IconBubble5** — bubble-5, message, chat
- **IconBubbleAnnotation5** — bubble-annotation-5, message, chat
- **IconBubble6** — bubble-6, message, chat
- **IconBubbleAnnotation6** — bubble-annotation-6, message, chat
- **IconBubbleText6** — bubble-text-6, message, chat
- **IconBubbleWide** — bubble-wide, message, chat
- **IconBubbleQuotes** — bubble-quotes
- **IconBubbleWideNotification** — bubble-wide-notification, badge, message, chat
- **IconBubbleWideAnnotation** — bubble-wide-annotation, message, chat
- **IconBubbleCheck** — bubble-check, comment, feedback
- **IconBubbleText** — bubble-text, comment, feedback
- **IconBubbleHeart** — bubble-heart, comment, feedback
- **IconBubbleDots** — bubble-dots, comment, feedback
- **IconBubbleCrossed** — bubble-crossed, comment, feedback
- **IconBubblePlus** — bubble-plus, comment, feedback
- **IconBubbleQuestion** — bubble-question, comment, feedback
- **IconBubbleAlert** — bubble-alert, comment, feedback
- **IconBubbleInfo** — bubble-info, comment, feedback
- **IconPaperPlane** — paper-plane, send
- **IconPaperPlaneTopRight** — paper-plane-top-right, send
- **IconCall** — call, phone
- **IconCallCancel** — call-cancel, phone
- **IconCallOutgoing** — call-outgoing, phone
- **IconCallIncoming** — call-incoming, phone
- **IconTelephone** — telephone, phone, contact
- **IconVoiceAndVideo** — voice-and-video, media
- **IconBook** — book, guide, info, faq
- **IconNewspaper** — newspaper, News, paper
- **IconNewspaper1** — newspaper-1, guide, info, faq, book
- **IconNewspaper2** — newspaper-2, guide, info, faq, book
- **IconNewspaper3** — newspaper-3
- **IconBookSimple** — book-simple, guide, info, faq
- **IconReference** — reference, books, study, library, knowledge
- **IconChatBubble7** — chat-bubble-7
- **IconChatBubbles** — chat-bubbles
- **IconMailbox** — mailbox, inbox
- **IconEmail2Plus** — email-2-plus, add
- **IconEmail2Remove** — email-2-remove, cancel
- **IconEmail2Incoming** — email-2-incoming, request
- **IconEmail2Block** — email-2-block
- **IconEmail2Check** — email-2-check, valid
- **IconEmail2Unread** — email-2-unread
- **IconBookHeart** — book-heart, daily, diary
### Crypto
- **IconBitcoin** — bitcoin
- **IconEthereum** — ethereum
- **IconCryptoCoin** — crypto-coin
- **IconCrypto** — crypto
- **IconCryptoWallet** — crypto-wallet
- **IconWeb3** — web3, crypto-space, nft
- **IconGas** — gas
- **IconAirdrop2** — airdrop-2, free, drop, parachute
- **IconTradingViewSteps** — trading-view-steps
- **IconTradingViewLine** — trading-view-line
- **IconTradingViewCandles** — trading-view-candles
- **IconCoin1** — coin-1, credits, money
- **IconCoin2** — coin-2, credits
- **IconCoins** — coins, money, transfer
- **IconCoinsAdd** — coins-add, money
- **IconCryptopunk** — cryptopunk, nft, pfp, profile, avatar
- **IconSecretPhrase** — secret-phrase, code, private-phrase
- **IconCoinStack** — coin-stack, tokens, data, money
### Devices & Signals
- **IconPhone** — phone, iphone, mobile
- **IconPhoneDynamicIsland** — phone-dynamic-island
- **IconOldPhone** — old-phone
- **IconMacbook** — macbook, laptop, computer
- **IconMacbookAir** — macbook-air
- **IconMacintosh** — macintosh, mac
- **IconMacMini** — mac-mini
- **IconMouse** — mouse
- **IconMouseScrollDown** — mouse-scroll-down
- **IconMouseScrollUp** — mouse-scroll-up
- **IconCalculator** — calculator
- **IconImac** — imac, computer
- **IconStudioDisplay** — studio-display, thunderbolt
- **IconStudioDisplay1** — studio-display, xdr, imac
- **IconWebcam** — webcam, camera, view
- **IconUsb** — usb, connection, connect, save, data
- **IconUsbC** — usb-c, type-c
- **IconChip** — chip, esim
- **IconTelevision** — television, tv, monitor, video, screen, display
- **IconTelevisionOld** — television-old, tv, monitor, video, screen, display
- **IconDevices** — devices, macbook, iphone, phone, connected
- **IconAirpodCase** — airpod-case, airpods
- **IconProcessor** — processor, chip
- **IconServer1** — server-1, storage, data, coins, money
- **IconServer2** — server-2, storage, data, coins, money
- **IconSmartwatch1** — smartwatch-1, clock, time
- **IconSmartwatch2** — smartwatch-2, clock, time
- **IconKeyboardDown** — keyboard-down
- **IconKeyboardUp** — keyboard-up
- **IconKeyboardCable** — keyboard-cable
- **IconStorage** — storage, hdd, ssd
- **IconPrinter** — printer, print
- **IconSpeaker** — speaker, music, sound
- **IconCircleRecord** — circle-record, voicemail, band, tape
- **IconTape** — tape
- **IconChromecast** — chromecast, cast
- **IconBluetooth** — bluetooth
- **IconSatellite1** — satellite-1, radar, feed
- **IconSatellite2** — satellite-2, radar, feed
- **IconAirdrop** — airdrop, file-sharing, radar
- **IconWifiSquare** — wifi-square, spot, signal, hot spot
- **IconWifiFull** — wifi-full, spot, signal, hot spot
- **IconWifiWeak** — wifi-weak, spot, signal, hot spot
- **IconWifiNoSignal** — wifi-no-signal, spot, signal, hot spot
- **IconNfc1** — nfc-1
- **IconNfc2** — nfc-2
- **IconSignalTower** — signal-tower, live, podcast
- **IconLiveFull** — live-full, signal, podcast
- **IconLiveWeak** — live-weak, signal
- **IconLiveNoSignal** — live-no-signal, signal
- **IconHaptic** — haptic, waves
- **IconPhoneHaptic** — phone-haptic, vibration
- **IconAirplay** — airplay
- **IconFullscreen2** — fullscreen-2
- **IconBatteryFull** — battery-full, power
- **IconBatteryMedium** — battery-medium, power
- **IconBatteryLow** — battery-low, power
- **IconBatteryEmpty** — battery-empty, power
- **IconBatteryError** — battery-error, power
- **IconBatteryLoading** — battery-loading, power
- **IconAirplayAudio** — airplay-audio, audio-stream
- **IconOffline** — offline, disconnect, energy
- **IconChipSimple** — chip-simple, processor
- **IconTablet** — tablet, ipad, mobile
- **IconMouseClassic** — mouse-classic, click
- **IconMouseClassic2** — mouse-classic-2, click
- **IconRadio** — radio, antenna, signal, broadcast, speaker
- **IconTape2** — tape-2, cassette, record, music
- **IconConnectors1** — connectors-1, connection, apps
- **IconConnectors2** — connectors-2, connection, apps
- **IconFullscreen1** — fullscreen-1
- **IconRadar** — radar, control, check
- **IconPhoneTopDynamicIsland** — phone-top-dynamic-island
- **IconPhoneTopPunchHoleCenter** — phone-top-punch-hole-center
- **IconGyroscopeSensor** — gyroscope-sensor
- **IconHapticFeedback** — haptic-feedback, vibration
- **IconAgentNetwork** — agent-network, connections, atoms
- **IconMagicMouse** — magic-mouse
- **IconDevices2** — devices-2, macbook, iphone, phone, connected
- **IconTorch** — torch, flashlight, inspect
- **IconPrinter2** — printer-2, print
- **IconPhoneHaptic2** — phone-haptic-2, vibration, sound
### Edit
- **IconBezierCurves1** — bezier-curves, path
- **IconColorRoll** — color-roll, paint-roller
- **IconWrite1** — write-1, fountain-pen
- **IconWrite2** — write-2, fountain-pen
- **IconFeather** — feather, writing
- **IconEyedropper2** — eyedropper-2, color-picker, pipette, suction-tube, labor
- **IconBrush** — brush, color
- **IconPencil** — pencil, edit, write
- **IconEraser** — eraser, rubber, clean-up
- **IconEraserSimple** — eraser-simple, rubber, clean-up
- **IconMarker** — marker, highlight
- **IconMarkerCircle** — marker-circle, highlight
- **IconPencilWave** — pencil-wave, signature, write
- **IconPencilLine** — pencil-line, signature, write
- **IconTextEdit** — text-edit, prompts, comment, draft
- **IconWriting** — writing, sketching, drawing
- **IconHighlight** — highlight, mark, freehand, drawing, paint
- **IconCircle** — circle, line, paint
- **IconWhiteboard** — whiteboard, sketch, forms
- **IconRuler** — ruler
- **IconEditSmall1** — edit-small-1, box, pencil, pen, write, draw
- **IconEditSmall2** — edit-small-2
- **IconEditBig** — edit-big, box, pencil, pen, write, draw
- **IconSlice** — slice, knife
- **IconBezierCurve** — bezier-curve, bezier, vector, svg
- **IconVectorLogo** — vector-logo, svg
- **IconBezierCircle** — bezier-circle, vector, nodes
- **IconBezier** — bezier, vector, nodes
- **IconBezierAdd** — bezier-add, vector, nodes
- **IconBezierRemove** — bezier-remove, vector, nodes
- **IconBezierPointer** — bezier-pointer
- **IconBezierEdit** — bezier--edit
- **IconColorPalette** — color-palette, colours
- **IconColorSwatch** — color-swatch, palette, colours
- **IconColors** — colors, rgb, adjustments
- **IconSignature** — signature, sign
- **IconToolbox** — toolbox
- **IconMarkdown** — markdown
- **IconMagnet** — magnet, snap-pixel, snap
- **IconBooleanGroupUnion** — boolean-group-union
- **IconBooleanGroupUnion2** — boolean-group-union-2
- **IconBooleanGroupSubstract** — boolean-group-substract
- **IconBooleanGroupIntersect** — boolean-group-intersect
- **IconBooleanGroupIntersect2** — boolean-group-intersect-2
- **IconBooleanGroupIntersect3** — boolean-group-intersect-3
- **IconBooleanGroupExclude** — boolean-group-exclude
- **IconBooleanGroupSubstract2** — boolean-group-substract-2
- **IconComponents** — components, figma
- **IconKeyframe** — keyframe, rhombus
- **IconAddKeyframe** — add-keyframe, rhombus
- **IconRemoveKeyframe** — remove-keyframe, rhombus
- **IconRecKeyframe2** — rec-keyframe-2, rhombus
- **IconRecKeyframe** — rec-keyframe, rhombus
- **IconVariables** — variables, figma
- **IconSummary** — summary, summarize
- **IconRewrite1** — rewrite-1, resummarize, text-edit
- **IconRewrite2** — rewrite-2, write-again, text-edit
- **IconRewrite** — rewrite, re-edit, redo
- **IconRepaint** — repaint, recreate, redo
- **IconCornerRadius** — corner-radius, border-radius
- **IconLineThickness** — line-thickness, lines, border
- **IconShaders** — shaders, material, effect
- **IconGlass** — glass, material, shader, liquid-glass
- **Icon3d** — 3d, shaders
- **IconPaintBrush** — paint-brush, design, color, appearance
- **IconPaintBucket** — paint-bucket, design, color, appearance
- **IconPaintBucketDrop** — paint-bucket-drop
- **IconShaderEffect** — shader-effect, material
- **IconDispersion** — dispersion, refraction
- **IconMarkup** — markup, marker, highlight
- **IconDraw** — draw, sketch, scratch
- **IconGooey** — gooey, morph, liquid-glass
- **IconInputForm** — input-form, text-area, prompt, rename
- **IconDistortion** — distortion, liquid, material
- **IconVectorAnchorPointDisconnected** — vector-anchor-point-disconnected
- **IconVectorAnchorPointAsymmetric** — vector-anchor-point-asymmetric
- **IconVectorAnchorPointStraight** — vector-anchor-point-straight, no-smoothing
- **IconVectorAnchorPointMirrored** — vector-anchor-point-mirrored, mirror-angle
- **IconHdr** — hdr, lighting, brightness
- **IconIntegrations** — integrations, frames, keyframes, interactions
- **IconMarker2** — marker-2, highlight
- **IconFeather2** — feather-2, writing
- **IconPencil2** — pencil-2, edit, write, prompt
- **IconPencil3** — pencil-3, edit, write, prompt
- **IconPencilAi** — pencil-ai, edit, write, auto-write, prompt-suggestion, auto-prompt
- **IconSelectLassoDashed** — select-lasso-dashed, circle-to-search-dashed, encircle, mark
- **IconSelectLasso** — select-lasso, circle-to-search, encircle, mark
- **IconShimmer** — shimmer, waves, shader, effect
- **IconWrite3** — write-3, fountain-pen, vector, ink
- **IconColorPalette2** — color-palette-2, design, coloring
- **IconEyedropper** — eyedropper, color-picker, pipette, suction-tube, labor
- **IconExtendImage** — extend-image
### Emoji
- **IconEmojiSmilingFace** — emoji-smiling-face, heart-eyes
- **IconEmojiSmiley** — emoji-smiley, face, smile
- **IconEmojiSleep** — emoji-sleep, snooze
- **IconAlien** — alien
- **IconMask** — mask, theatre
- **IconPoop** — poop, spam
- **IconEmojiAddReaction** — emoji-add-reaction, emoji-plus
- **IconEmojiSmile** — emoji-smile
- **IconEmojiGrinning** — emoji-grinning
- **IconEmojiWink** — emoji-wink
- **IconEmojiStarStruck** — emoji-star-struck, star-eyes
- **IconEmojiNeutral** — emoji-neutral
- **IconEmojiSmirking** — emoji-smirking
- **IconEmojiSad** — emoji-sad, unhappy
- **IconEmojiMouthless** — emoji-mouthless
- **IconEmojiAngry** — emoji-angry
- **IconEmojiSadTear** — emoji-sad-tear
- **IconEmojiProfile** — emoji-profile
- **IconEmojiLol** — emoji-lol, laugh, comedy, joke
- **IconEmojiTongue** — emoji-tongue, fun
- **IconEmojiWinkTongue** — emoji-wink-tongue, fun
### Filter & Settings
- **IconSettingsToggle1** — settings-toggle-1
- **IconSettingsToggle2** — settings-toggle-2
- **IconSettingsGear1** — settings-gear-1, preferences
- **IconSettingsGear2** — settings-gear-2, preferences
- **IconSettingsGear3** — settings-gear-3, preferences
- **IconMaintenance** — maintenance, settings, service, tweak
- **IconSettingsSliderHor** — settings-slider-hor
- **IconSettingsSliderVer** — settings-slider-ver
- **IconSettingsSliderThree** — settings-slider-three
- **IconSettingsKnob** — settings-knob
- **IconFilter1** — filter-1, sort
- **IconFilter2** — filter-2, sort
- **IconFilterCircle** — filter-circle, sort
- **IconFilterAscending** — filter-ascending, sort, az
- **IconFilterDescending** — filter-descending, sort, za
- **IconFilterTimeline** — filter-timeline, sort
- **IconSortArrowUpDown** — sort-arrow-up-down
- **IconFilterDesc** — filter-desc
- **IconFilterAsc** — filter-asc
- **IconReorder** — reorder
- **IconToggle** — toggle, settings, control
- **IconLiquidGlass** — liquid-glass, glass-effect
- **IconBlockSortAscending** — block-sort-ascending
- **IconBlockSortDescending** — block-sort-descending
- **IconSettingsGear4** — settings-gear-4, preferences
### Folders & Files
- **IconFolder1** — folder-1
- **IconFolder2** — folder-2
- **IconFolders** — folders
- **IconFolderAddRight** — folder-add-right
- **IconFolderAddLeft** — folder-add-left
- **IconFolderDelete** — folder-delete
- **IconFolderBookmarks** — folder-bookmarks
- **IconFolderRestricted** — folder-restricted
- **IconFolderCloud** — folder-cloud
- **IconFolderLink** — folder-link, link, attachment
- **IconFolderLink2** — folder-link-2, link, attachment
- **IconFolderShared** — folder-shared
- **IconFolderUpload** — folder-upload
- **IconFolderDownload** — folder-download
- **IconFolderOpen** — folder-open
- **IconArchive** — archive, folder, box
- **IconFloppyDisk1** — floppy-disk-1, save
- **IconFloppyDisk2** — floppy-disk-2, save
- **IconServer** — server, data, storage
- **IconSdCard** — sd-card, memory-stick
- **IconSimCard1** — sim-card-1
- **IconSimCard2** — sim-card-2
- **IconFiles** — files, documents
- **IconFileBend** — file-bend, document
- **IconFileCloud** — file-cloud, document
- **IconFileChart** — file-chart, document
- **IconFileDownload** — file-download, document
- **IconFileText** — file-text, document
- **IconFileLock** — file-lock, document
- **IconFileLink** — file-link, hyperlink
- **IconFileEdit** — file-edit, document, cloud, sync
- **IconPageEmpty** — page-empty
- **IconPageText** — page-text
- **IconPageSearchLines** — page-search-lines
- **IconPageAttachment** — page-attachment
- **IconPageSearch** — page-search
- **IconPageTextSearch** — page-text-search
- **IconPagePieChart** — page-pie-chart
- **IconPageTextPieChart** — page-text-pie-chart
- **IconPageLock** — page-lock
- **IconPageTextLock** — page-text-lock
- **IconPageCloud** — page-cloud
- **IconPageTextCloud** — page-text-cloud
- **IconPageLink** — page-link
- **IconPageTextLink** — page-text-link
- **IconPageEdit** — page-edit, document
- **IconPageEditText** — page-edit-text, document, file
- **IconPageCheck** — page-check, signed, document
- **IconPageAdd** — page-add
- **IconPageTextAdd** — page-text-add
- **IconPageCross** — page-cross, close, x, document, list, file
- **IconPageCrossText** — page-cross-text, close, x, document, list, file
- **IconFileJpg** — file-jpg, image, jpeg
- **IconFilePng** — file-png, document
- **IconFilePdf** — file-pdf, document
- **IconNotebook** — notebook, cover
- **IconSketchbook** — sketchbook
- **IconNotes** — notes
- **IconLibrary** — library, stuff, vinyl-records
- **IconDossier** — dossier
- **IconFolderPaper** — folder-paper
- **IconFinder** — finder, files, os
- **IconFaceIdFace** — face-id-face
- **IconZip** — zip, rar, compressed, archive
- **IconFileZip** — file-zip
- **IconTable** — table, spreedsheet, chart
- **IconNoteText** — note-text
- **IconNote1** — note-1
- **IconNote2** — note-2
- **IconBlankPagePortrait** — blank-page-portrait
- **IconBlankPageLandscape** — blank-page-landscape
- **IconListBulletsSquare** — list-bullets-square
- **IconNotepad** — notepad, notes
- **IconScript** — script, paper, page, contract, file, document, skills
- **IconScript2** — script-2, paper, page, contract, file, document, skills
- **IconFinderFace** — finder-face
- **IconMoveFolder** — move-folder
- **IconFolderShield** — folder-shield, folder-security
- **IconFolders2** — folders-2, collection, stuff
- **IconFileArrowLeftIn** — file-arrow-left-in, document-arrow-left-in, incoming
- **IconFileArrowLeftOut** — file-arrow-left-out, document-arrow-left-out, outgoing
- **IconFileArrowRightIn** — file-arrow-right-in, document-arrow-right-in, incoming
- **IconFileArrowRightOut** — file-arrow-right-out, document-arrow-right-out, outgoing
- **IconFolderOpenFront** — folder-open-front
- **IconMoveFolderInside** — move-folder-inside
- **IconFolderEdit** — folder-edit, tools
### Food
- **IconStrawberry** — strawberry, ai, dessert
- **IconSushi** — sushi, nigiri, sashime, maki
- **IconPancakes** — pancakes, maple-syrup, breakfast
- **IconTapas** — tapas, canabes
- **IconSteak** — steak, t-bone, raw
- **IconSteakSteamLines** — steak-steam-lines, t-bone
- **IconCheeseburger** — cheeseburger, hamburger, sandwich
- **IconBurger** — burger, hamburger, sandwich
- **IconDrink** — drink, cup, straw, mug
- **IconCup** — cup, tea, coffee, mug
- **IconCupHot** — cup-hot, coffee, tea, milk, mug
- **IconHotDrinkCup** — hot-drink-cup, coffee-mug, dup, mug
- **IconCookies** — cookies
- **IconBirthdayCake** — birthday-cake
- **IconApples** — apples, fruit
- **IconAppleNewton** — apple-newton, low-hanging-fruits, fall
- **IconPopsicle1** — popsicle-1, ice-cream, sweets
- **IconPopsicle2** — popsicle-2, ice-cream, sweets
- **IconPizza** — pizza
- **IconDonut** — donut
- **IconDonutGlaze** — donut-glaze
- **IconAvocado** — avocado
- **IconBreakfast** — breakfast, fried-egg
- **IconOrange** — orange
- **IconCherry** — cherry
- **IconToast** — toast, breakfest
- **IconPopcorn** — popcorn, movies, series
- **IconBottle** — bottle, wine, campaign
- **IconCocktail** — cocktail, drink
- **IconFoodExperiences** — food-experiences, plate
- **IconFoodBell** — food-bell, serving-bell, glosche, serve
- **IconForkKnife** — fork-knife, cable, restaurant, cutlery
- **IconForkSpoon** — fork-spoon, cable, restaurant, cutlery
- **IconFork** — fork, caple, food, restaurant
- **IconCereals** — cereals, wheat, gluten, corn, grain
- **IconToque** — toque, chefs-cap, cook
- **IconCooking** — cooking, stirring
- **IconIcebowl** — icebowl, cooling, vibe
- **IconTea** — tea, cafe, coffee, vibe
- **IconCandy** — candy, sweet
- **IconBanana** — banana, fruit
- **IconPan** — pan, cooking, skills
- **IconCherryOnTop** — cherry-on-top, cake, birthday
- **IconBananas** — bananas, fruits
- **IconGlassWater** — glass-water, drink
- **IconBeer** — beer, cheers
- **IconGarlic** — garlic
- **IconBaking** — baking, cooking
### Forms & Shapes
- **IconFormCircle** — form-circle
- **IconFormCapsule** — form-capsule, button
- **IconFormOval** — form-oval
- **IconFormSquare** — form-square
- **IconFormRectangle** — form-rectangle
- **IconFormDiamond** — form-diamond, square-45-degrees
- **IconFormPentagon** — form-pentagon
- **IconFormHexagon** — form-hexagon
- **IconFormOctagonRotate** — form-octagon-rotate
- **IconFormsCircleSquare** — forms-circle-square, shapes, designs, templates
- **IconFormOctagon** — form-octagon
- **IconFormSeal** — form-seal, badge
- **IconFormFlower** — form-flower
- **IconFormRhombus** — form-rhombus
- **IconFlowerShape** — flower-shape
### Furniture & Household
- **IconChairModern** — chair-modern, seat
- **IconChair** — chair, seat
- **IconArmchair** — armchair, seat, chill
- **IconSofa** — sofa, couch, chill
- **IconDrawer1** — drawer-1
- **IconDrawer2** — drawer-2
- **IconDrawer3** — drawer-3
- **IconDrawer4** — drawer-4
- **IconCabinet** — cabinet
- **IconDresser** — dresser, drawer
- **IconWardrobe** — wardrobe
- **IconBed** — bed
- **IconDeskOffice** — desk-office
- **IconDeskOffice2** — desk-office-2
- **IconFridge** — fridge
- **IconDishwasher** — dishwasher, clean
- **IconWashingMachine** — washing-machine, laundry, clean
### Gaming
- **IconGamepad** — gamepad, gaming, joystick
- **IconGamepadControls** — gamepad-controls, joystick
- **IconGamepadControlsRight** — gamepad-controls-right, joystick
- **IconGamepadControlsLeft** — gamepad-controls-left, joystick
- **IconGamepadControlsUp** — gamepad-controls-up, joystick
- **IconGamepadControlsDown** — gamepad-controls-down, joystick
- **IconGamepadControlsRound** — gamepad-controls-round, joystick
- **IconGamepadControlsRoundRight** — gamepad-controls-round-right
- **IconGamepadControlsRoundLeft** — gamepad-controls-round-left
- **IconGamepadControlsRoundUp** — gamepad-controls-round-up
- **IconGamepadControlsRoundDown** — gamepad-controls-round-down
- **IconDice1** — dice-1, roll
- **IconDice2** — dice-2, roll
- **IconDice3** — dice-3, roll
- **IconDice4** — dice-4, roll
- **IconDice5** — dice-5, roll
- **IconDice6** — dice-6, roll
- **IconDices** — dices, random, roll
- **IconRoulette1** — roulette-1, coincidence, gambling
- **IconRoulette2** — roulette-2, coincidence, gambling
- **IconSlots** — slots, slot-mashine, gambling
- **IconScratchCard** — scratch-card
- **IconSword** — sword, action, gaming
- **IconGamecontroller** — gamecontroller, joystick, play
- **IconOldJoystick** — old-joystick, gamepad, gaming, control
- **IconPipe** — pipe, super mario, vpn
- **IconControllerButtonX** — controller-button-x, dismiss, close, cancel, delete, remove
- **IconControllerButtonTriangle** — controller-button-triangle, menu, options, action, more, expand
- **IconControllerButtonSquare** — controller-button-square, view, panel
- **IconControllerButtonCircle** — controller-button-circle, confirm, select, accept, continue
### Hands
- **IconThumbsUp** — thumbs-up, thumb, hand, yes, pro
- **IconThumbsDown** — thumbs-down, thumb, hand, no, contra
- **IconThumbUpCurved** — thumb-up-curved
- **IconThumbDownCurved** — thumb-down-curved
- **IconRaisingHand4Finger** — raising-hand-4-finger, hey, hello
- **IconHand4Finger** — hand-4-finger, select
- **IconBlip** — blip, flick, snip, snap, easy, thanos
- **IconRaisingHand5Finger** — raising-hand-5-finger, hey, hello, high-five
- **IconHand5Finger** — hand-5-finger, select
- **IconPointer** — pointer, hand
- **IconPinch** — pinch
- **IconShaka1** — shaka-1, call me, hang-ten
- **IconShaka2** — shaka-2, call me, hang-ten
- **IconTouch** — touch, tab, click
- **IconTouchGrass** — touch-grass, nature, logout
- **IconFistbump** — fistbump, boom, hands, friends
- **IconMagicHands** — magic-hands, rainbow-hands
- **IconMoneyHand** — money-hand, coins, pay
- **IconHumanMashine** — human-mashine, high-five, ai, hands
- **IconHandshake** — handshake, heart
- **IconBecepsLeftArm** — beceps-left-arm, strong, flex, power
- **IconBecepsRightArm** — beceps-right-arm, strong, flex, power
- **IconHandTouch** — hand-touch, input, area, target
### Health & Medical
- **IconMask1** — mask, medical-mask, covid
- **IconMedicineTablett** — medicine-tablett, pill
- **IconMedicinePill** — medicine-pill
- **IconMedicinePill2** — medicine-pill-2, tablett
- **IconInjection** — injection
- **IconMedicalCrossCircle** — medical-cross-circle, first-aid, emergency
- **IconMedicalCrossSquare** — medical-cross-square, first-aid, emergency
- **IconMedicalCross** — medical-cross, first-aid, emergency
- **IconStethoscope** — stethoscope, check, diagnostics, analyze
- **IconIcon** — icon
### Interface General
- **IconBookmark** — bookmark, banner, flag, tag
- **IconBookmarkRemove** — bookmark-remove, off
- **IconBookmarkPlus** — bookmark-plus, banner, flag, tag
- **IconBookmarkDelete** — bookmark-delete, remove, banner, flag, tag, x
- **IconBookmarkCheck** — bookmark-check, add, check
- **IconMagnifyingGlass** — magnifying-glass, search
- **IconMagnifyingGlass2** — magnifying-glass-2, search
- **IconSearchMenu** — search-menu, list-search
- **IconZoomIn** — zoom-in, search-plus
- **IconZoomOut** — z