A collection of round outline React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
- Quick Start
- Installation
- Requirements
- Usage
- Icon Properties
- Accessibility
- Available Packages
- Icons List
- License
- Troubleshooting
# Set your license key first
export CENTRAL_LICENSE_KEY=your_license_key
# Install with alias 'central-icons'
npm install central-icons@npm:@central-icons-react/round-outlined-radius-0-stroke-1.5
import { IconHome } from "central-icons/IconHome";
function MyComponent() {
return <IconHome />;
}
This package is private and can be installed via your organization's private npm registry. Make sure you have the required license key set up before installation.
# Set your license key first
export CENTRAL_LICENSE_KEY=your_license_key
# Then install using your preferred package manager
npm install @central-icons-react/round-outlined-radius-0-stroke-1.5
# or
yarn add @central-icons-react/round-outlined-radius-0-stroke-1.5
# or
pnpm add @central-icons-react/round-outlined-radius-0-stroke-1.5
- React 14.0.0 or higher
- Valid license key (set as environment variable)
Icons can be imported individually to keep your bundle size minimal:
import { IconHome } from "@central-icons-react/round-outlined-radius-0-stroke-1.5/IconHome";
function MyComponent() {
return <IconHome />;
}
If you want to have a bit cleaner imports (and you are just using one icon type), you can use import aliases (Requires npm at least v6.9.0 or yarn)
npm install central-icons@npm:@central-icons-react/round-outlined-radius-0-stroke-1.5
import { IconHome } from "central-icons/IconHome";
function MyComponent() {
return <IconHome />;
}
Or you can import from the main entry point (not recommended to be used in production, loads all icons):
import { CentralIcon } from "@central-icons-react/round-outlined-radius-0-stroke-1.5";
function MyComponent() {
return <CentralIcon name="IconName" />;
}
All icons accept the following properties:
Prop | Type | Default | Description |
---|---|---|---|
size |
number | string |
24 |
Sets both width and height of the icon |
color |
string |
currentColor |
Sets the icon color |
ariaHidden |
boolean |
true |
Controls icon accessibility attributes |
iconJoin |
"round" | "square" |
"round" |
Controls the icon's corner style |
iconFill |
"filled" | "outlined" |
"filled" |
Sets the icon's fill style |
iconStroke |
"1" | "1.5" | "2" |
"1" |
Controls the stroke width |
iconRadius |
"0" | "1" | "2" | "3" |
"1" |
Sets the corner radius |
name |
string |
none | Defines which icon should be used - see Icons List |
Additionally, all standard SVG and HTML attributes are supported.
Icons are aria-hidden by default for decorative purposes. When using icons that convey meaning, you should disable aria-hidden:
// Decorative icon (default)
<IconHome /> // Will be hidden from screen readers
// Meaningful icon
<IconHome
ariaHidden={false}
title="Go to home page" // optional - title describing the icon will be added as fallback
/> // Will be announced by screen readers
When ariaHidden
is false
:
- A title element is added to the SVG
- The element gets
role="img"
attribute - Screen readers will announce the icon's title
For optimal bundle size, consider using our specific bundles instead of the full package:
https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-2 https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-2 https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-2 https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-2 https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-2 https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-2 https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-2 https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-2 https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-2 https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-2 https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1.5 https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1.5 https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1.5 https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1 https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1 https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1 https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1 https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1 https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1 https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1 https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1 https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1 https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1
Below is a complete list of available icons:
- IconCircleHalfFill
- IconCirclePerson
- IconEar
- IconEyeClosed
- IconEyeOpen
- IconEyeSlash
- IconEyeSlash2
- IconImageAltText
- IconSquareLinesBottom
- IconAppleIntelligenceIcon
- IconBoxSparkle
- IconBrain1
- IconBrain2
- IconBroomSparkle
- IconCuteRobot
- IconEyeSparkle
- IconFortuneTellerBall
- IconHatBunny
- IconHatSparkle
- IconImageAvatarSparkle
- IconImageSparkle
- IconListSparkle
- IconMagicBook
- IconMagicEdit
- IconMagicWand
- IconMagicWand2
- IconMagicWand3
- IconPencilSparkle
- IconPrompt
- IconRobot
- IconSparkle
- IconSparkle2
- IconSparklesSoft
- IconSparklesThree
- IconSparklesTwo
- IconSparklesTwo2
- IconStarWand
- IconTextToImage
- IconVisualIntelligence
- IconWindowSparkle
- IconWizardHat
- IconArrow
- IconArrowBottomTop
- IconArrowCornerDownLeft
- IconArrowCornerDownRight
- IconArrowCornerLeftDown
- IconArrowCornerLeftUp
- IconArrowCornerRightDown
- IconArrowCornerRightUp
- IconArrowCornerUpLeft
- IconArrowCornerUpRight
- IconArrowDown
- IconArrowDownCircle
- IconArrowDownLeft
- IconArrowDownRight
- IconArrowExpandHor
- IconArrowExpandVer
- IconArrowLeft
- IconArrowLeftCircle
- IconArrowLeftDownCircle
- IconArrowLeftRight
- IconArrowLeftUpCircle
- IconArrowPathDown
- IconArrowPathLeft
- IconArrowPathRight
- IconArrowPathUp
- IconArrowRedoDown
- IconArrowRedoUp
- IconArrowRight
- IconArrowRightCircle
- IconArrowRightDownCircle
- IconArrowRightLeft
- IconArrowRightUpCircle
- IconArrowRotateClockwise
- IconArrowRotateCounterClockwise
- IconArrowRotateLeftRight
- IconArrowRotateRightLeft
- IconArrowShareLeft
- IconArrowShareRight
- IconArrowSplit
- IconArrowsRepeat
- IconArrowsRepeatCircle
- IconArrowsRepeatLeftRight
- IconArrowsRepeatRightLeft
- IconArrowsRepeatRightLeftOff
- IconArrowTopBottom
- IconArrowTriangleBottom
- IconArrowTriangleLeft
- IconArrowTriangleRight
- IconArrowTriangleTop
- IconArrowUndoDown
- IconArrowUndoUp
- IconArrowUp
- IconArrowUpCircle
- IconArrowUpDownLeftRight
- IconArrowUpLeft
- IconArrowUpRight
- IconArrowWall2Down
- IconArrowWall2Left
- IconArrowWall2Right
- IconArrowWall2Up
- IconArrowWallDown
- IconArrowWallLeft
- IconArrowWallRight
- IconArrowWallUp
- IconChevronBottom
- IconChevronDoubleDown
- IconChevronDoubleLeft
- IconChevronDoubleRight
- IconChevronDoubleUp
- IconChevronDownSmall
- IconChevronGrabberHorizontal
- IconChevronGrabberVertical
- IconChevronLargeDown
- IconChevronLargeLeft
- IconChevronLargeRight
- IconChevronLargeTop
- IconChevronLeft
- IconChevronLeftSmall
- IconChevronRight
- IconChevronRightSmall
- IconChevronTop
- IconChevronTopSmall
- IconChevronTriangleDownSmall
- IconChevronTriangleUpSmall
- IconCursor1
- IconCursor2
- IconCursor3
- IconCursorClick
- IconCursorList
- IconExpand315
- IconExpand45
- IconExpandSimple
- IconExpandSimple2
- IconMinimize315
- IconMinimize45
- IconOngoing
- IconShareArrowDown
- IconSquareArrowBottomRight
- IconSquareArrowCenter
- IconSquareArrowInTopLeft
- IconSquareArrowOutTopLeft
- IconSquareArrowTopRight
- IconSquareArrowTopRight2
- IconSquareCursor
- IconSquized
- IconStepBack
- IconStepForwards
- Icon3dSphere
- IconAr
- IconArCube1
- IconArCube2
- IconArCube3
- IconAround
- IconArScanCube1
- IconArScanCube2
- IconOculus
- IconPanoramaView
- IconQm3
- IconRotate
- IconSpatialCapture
- IconVisionPro
- IconVisionProApp
- IconBank
- IconBlock
- IconBuildings
- IconCourt
- IconDoor
- IconGarage
- IconHome
- IconHomeCircle
- IconHomeDoor
- IconHomeLine
- IconHomeOpen
- IconHomePersonalFeed
- IconHomeRoof
- IconHomeRoundDoor
- IconMall
- IconSchool
- IconStore1
- IconStore2
- IconStore3
- IconStore4
- IconStores
- IconCloud
- IconCloudCheck
- IconCloudDownload
- IconCloudOff
- IconCloudOff2
- IconCloudSimple
- IconCloudSimpleDisconnected
- IconCloudSimpleDownload
- IconCloudSimpleUpload
- IconCloudSync
- IconCloudUpload
- IconAnimation
- IconAnimationAuto
- IconAnimationEase
- IconAnimationEaseIn
- IconAnimationEaseOut
- IconAnimationElastic
- IconAnimationLinear
- IconAnimationNone
- IconAnimationOvershoot
- IconAnimationUndershoot
- IconApiAggregate
- IconApiConnection
- IconBezierCurves
- IconBrackets1
- IconBrackets2
- IconBranch
- IconBug
- IconBugFace
- IconCode
- IconCodeBrackets
- IconCodeInsert
- IconCodeLines
- IconConsole
- IconConsoleSimple
- IconDebugger
- IconDraft
- IconForkCode
- IconHammer
- IconPullRequest
- IconPush
- IconRequestClosed
- IconRunShortcut
- IconSandbox
- IconShip
- IconTestflight
- IconBook
- IconBubble2
- IconBubble3
- IconBubble4
- IconBubble5
- IconBubble6
- IconBubbleAlert
- IconBubbleAnnotation2
- IconBubbleAnnotation3
- IconBubbleAnnotation4
- IconBubbleAnnotation5
- IconBubbleAnnotation6
- IconBubbleCheck
- IconBubbleCrossed
- IconBubbleDots
- IconBubbleHeart
- IconBubbleInfo
- IconBubblePlus
- IconBubbleQuestion
- IconBubbleQuotes
- IconBubbles
- IconBubbleSparkle
- IconBubbleText
- IconBubbleText6
- IconBubbleWide
- IconBubbleWideAnnotation
- IconBubbleWideNotification
- IconCall
- IconCallCancel
- IconCallIncoming
- IconCallOutgoing
- IconEmail1
- IconEmail2
- IconEmail3
- IconEmailNotification
- IconEmailPlus
- IconEmailSettings
- IconInvite
- IconNewspaper
- IconNewspaper1
- IconNewspaper2
- IconNewspaper3
- IconPaperPlane
- IconPaperPlaneTopRight
- IconPostcard1
- IconPostcard2
- IconTelephone
- IconVoiceAndVideo
- IconAirdrop2
- IconBitcoin
- IconCoin1
- IconCoin2
- IconCoins
- IconCoinsAdd
- IconCrypto
- IconCryptoCoin
- IconCryptopunk
- IconCryptoWallet
- IconEthereum
- IconGas
- IconSecretPhrase
- IconTradingViewCandles
- IconTradingViewLine
- IconTradingViewSteps
- IconWeb3
- IconAirdrop
- IconAirplay
- IconAirplayAudio
- IconAirpodCase
- IconBatteryEmpty
- IconBatteryError
- IconBatteryFull
- IconBatteryLoading
- IconBatteryLow
- IconBatteryMedium
- IconBluetooth
- IconCalculator
- IconChip
- IconChromecast
- IconCircleRecord
- IconDevices
- IconFullscreen
- IconHaptic
- IconImac
- IconKeyboardCable
- IconKeyboardDown
- IconKeyboardUp
- IconLiveFull
- IconLiveNoSignal
- IconLiveWeak
- IconMacbook
- IconMacbookAir
- IconMacintosh
- IconMacMini
- IconMouse
- IconMouseScrollDown
- IconMouseScrollUp
- IconNfc1
- IconNfc2
- IconOldPhone
- IconPhone
- IconPhoneDynamicIsland
- IconPhoneHaptic
- IconPrinter
- IconProcessor
- IconSatellite1
- IconSatellite2
- IconServer1
- IconServer2
- IconSignalTower
- IconSmartwatch1
- IconSmartwatch2
- IconSpeaker
- IconStorage
- IconStudioDisplay
- IconTape
- IconTelevision
- IconTelevisionOld
- IconUsb
- IconUsbC
- IconWebcam
- IconWifiFull
- IconWifiNoSignal
- IconWifiSquare
- IconWifiWeak
- IconAddKeyframe
- IconBezier
- IconBezierAdd
- IconBezierCircle
- IconBezierCurve
- IconBezierEdit
- IconBezierPointer
- IconBezierRemove
- IconBooleanGroupExclude
- IconBooleanGroupIntersect
- IconBooleanGroupIntersect2
- IconBooleanGroupIntersect3
- IconBooleanGroupSubstract
- IconBooleanGroupSubstract2
- IconBooleanGroupUnion
- IconBooleanGroupUnion2
- IconBrush
- IconCircle
- IconColorPalette
- IconColorPicker
- IconColorRoll
- IconColors
- IconColorSwatch
- IconComponents
- IconCornerRadius
- IconEditBig
- IconEditSmall1
- IconEditSmall2
- IconEraser
- IconEraserSimple
- IconFeather
- IconHighlight
- IconKeyframe
- IconLineThickness
- IconMagnet
- IconMarkdown
- IconMarker
- IconMarkerCircle
- IconPencil
- IconPencilLine
- IconPencilWave
- IconRecKeyframe
- IconRecKeyframe2
- IconRemoveKeyframe
- IconRepaint
- IconRewrite
- IconRewrite1
- IconRewrite2
- IconRuler
- IconSignature
- IconSlice
- IconSummary
- IconTextEdit
- IconToolbox
- IconVariables
- IconVectorLogo
- IconWhiteboard
- IconWrite1
- IconWrite2
- IconWriting
- IconFilter1
- IconFilter2
- IconFilterAsc
- IconFilterAscending
- IconFilterCircle
- IconFilterDesc
- IconFilterDescending
- IconFilterTimeline
- IconMaintenance
- IconReorder
- IconSettingsGear1
- IconSettingsGear2
- IconSettingsGear3
- IconSettingsKnob
- IconSettingsSliderHor
- IconSettingsSliderThree
- IconSettingsSliderVer
- IconSettingsToggle1
- IconSettingsToggle2
- IconSortArrowUpDown
- IconToggle
- IconArchive
- IconBlankPageLandscape
- IconBlankPagePortrait
- IconDossier
- IconFileBend
- IconFileChart
- IconFileCloud
- IconFileDownload
- IconFileEdit
- IconFileJpg
- IconFileLink
- IconFileLock
- IconFilePdf
- IconFilePng
- IconFiles
- IconFileText
- IconFileZip
- IconFinder
- IconFinderFace
- IconFloppyDisk1
- IconFloppyDisk2
- IconFolder1
- IconFolder2
- IconFolderAddLeft
- IconFolderAddRight
- IconFolderBookmarks
- IconFolderCloud
- IconFolderDelete
- IconFolderDownload
- IconFolderLink
- IconFolderLink2
- IconFolderOpen
- IconFolderPaper
- IconFolderRestricted
- IconFolders
- IconFolderShared
- IconFolderUpload
- IconLibrary
- IconListBullets
- IconNote1
- IconNote2
- IconNotebook
- IconNotepad
- IconNotes
- IconNoteText
- IconPageAdd
- IconPageAttachment
- IconPageCheck
- IconPageCloud
- IconPageCross
- IconPageCrossText
- IconPageEdit
- IconPageEditText
- IconPageEmpty
- IconPageLink
- IconPageLock
- IconPagePieChart
- IconPageSearch
- IconPageSearchLines
- IconPageText
- IconPageTextAdd
- IconPageTextCloud
- IconPageTextLink
- IconPageTextLock
- IconPageTextPieChart
- IconPageTextSearch
- IconScript
- IconScript2
- IconSdCard
- IconServer
- IconSimCard1
- IconSimCard2
- IconSketchbook
- IconTable
- IconZip
- IconAppleNewton
- IconApples
- IconAvocado
- IconBirthdayCake
- IconBottle
- IconBreakfast
- IconBurger
- IconCereals
- IconCheeseburger
- IconCherry
- IconCocktail
- IconCookies
- IconCooking
- IconCup
- IconCupHot
- IconDonut
- IconDonutGlaze
- IconDrink
- IconFoodBell
- IconFoodExperiences
- IconFork
- IconForkKnife
- IconForkSpoon
- IconHotDrinkCup
- IconIcebowl
- IconOrange
- IconPancakes
- IconPizza
- IconPopcorn
- IconPopsicle1
- IconPopsicle2
- IconSteak
- IconSteakSteamLines
- IconStrawberry
- IconSushi
- IconTapas
- IconToast
- IconToque
- IconArmchair
- IconBed
- IconCabinet
- IconChair
- IconChairModern
- IconDeskOffice
- IconDeskOffice2
- IconDishwasher
- IconDrawer1
- IconDrawer2
- IconDrawer3
- IconDrawer4
- IconDresser
- IconFridge
- IconSofa
- IconWardrobe
- IconWashingMachine
- IconDice1
- IconDice2
- IconDice3
- IconDice4
- IconDice5
- IconDice6
- IconDices
- IconGamepad
- IconGamepadControls
- IconGamepadControlsDown
- IconGamepadControlsLeft
- IconGamepadControlsRight
- IconGamepadControlsRound
- IconGamepadControlsRoundDown
- IconGamepadControlsRoundLeft
- IconGamepadControlsRoundRight
- IconGamepadControlsRoundUp
- IconGamepadControlsUp
- IconRoulette1
- IconRoulette2
- IconScratchCard
- IconSlots
- IconSword
- IconBlip
- IconFistbump
- IconHand4Finger
- IconHand5Finger
- IconHumanMashine
- IconMagicHands
- IconMoneyHand
- IconPinch
- IconPointer
- IconRaisingHand4Finger
- IconRaisingHand5Finger
- IconShaka1
- IconShaka2
- IconThumbDownCurved
- IconThumbsDown
- IconThumbsUp
- IconThumbUpCurved
- IconTouch
- IconTouchGrass
- IconAnchor1
- IconAnchor2
- IconArchive1
- IconArrowBoxLeft
- IconArrowBoxRight
- IconArrowInbox
- IconArrowLeftX
- IconArrowOutOfBox
- IconArrowRounded
- IconArrowsAllSides
- IconArrowsAllSides2
- IconBarcode
- IconBarsThree
- IconBarsThree2
- IconBarsThree3
- IconBarsTwo
- IconBarsTwo2
- IconBell
- IconBell2
- IconBell2Snooze
- IconBellCheck
- IconBellOff
- IconBookmark
- IconBookmarkCheck
- IconBookmarkDelete
- IconBookmarkPlus
- IconBookmarkRemove
- IconBox2
- IconBox2AltFill
- IconBrokenChainLink1
- IconBrokenChainLink2
- IconBrokenChainLink3
- IconBrokenHeart
- IconBucket
- IconChainLink1
- IconChainLink2
- IconChainLink3
- IconChainLink4
- IconChecklist
- IconCheckmark1
- IconCheckmark1Small
- IconCheckmark2
- IconCheckmark2Small
- IconCircleArrowDown
- IconCircleBanSign
- IconCircleCheck
- IconCircleDashed
- IconCircleDotsCenter1
- IconCircleDotsCenter2
- IconCircleDotted
- IconCircleInfo
- IconCircleMinus
- IconCirclePlaceholderOff
- IconCirclePlaceholderOn
- IconCirclePlus
- IconCircleQuestionmark
- IconCircleX
- IconClipboard
- IconClipboard2
- IconCompassRound
- IconCompassSquare
- IconCrossLarge
- IconCrossSmall
- IconDotGrid1x3Horizontal
- IconDotGrid1x3Vertical
- IconDotGrid2x3
- IconDotGrid3x3
- IconElectrocardiogram
- IconFeature
- IconGauge
- IconHandBell
- IconHeart
- IconHeart2
- IconHeartBeat
- IconImport
- IconImport2
- IconInboxChecked
- IconInboxEmpty
- IconLightBulb
- IconLightbulbGlow
- IconLightBulbSimple
- IconLoader
- IconLoadingCircle
- IconMagnifyingGlass
- IconMagnifyingGlass2
- IconMathBasic
- IconMathEquals
- IconMathEqualsCircle
- IconMathGreaterThan
- IconMathGreaterThanCircle
- IconMathLessThan
- IconMathLessThanCircle
- IconMathMultiplication
- IconMathNotes
- IconMathScientific
- IconMinusLarge
- IconMinusSmall
- IconPaperclip1
- IconPaperclip2
- IconPaperclip3
- IconPin
- IconPlanning
- IconPlusLarge
- IconPlusSmall
- IconQrCode
- IconQuickSearch
- IconReview
- IconSearchMenu
- IconShapesPlusXSquareCircle
- IconShareAndroid
- IconShareOs
- IconShredder
- IconSidebar
- IconSquareArrowDown
- IconSquareBehindSquare1
- IconSquareBehindSquare2
- IconSquareBehindSquare3
- IconSquareBehindSquare4
- IconSquareBehindSquare6
- IconSquareCheck
- IconSquareChecklist
- IconSquareChecklistBell
- IconSquareChecklistMagnifyingGlass
- IconSquareCircleTopRight
- IconSquareDotedBehindSquare
- IconSquareGridCircle
- IconSquareGridMaginfyingGlass
- IconSquareInfo
- IconSquareLines
- IconSquareMinus
- IconSquarePlaceholder
- IconSquarePlaceholderDashed
- IconSquarePlus
- IconSquareX
- IconStar
- IconStarLines
- IconTarget
- IconTarget1
- IconTarget2
- IconTargetArrow
- IconTasks
- IconThumbtack
- IconTodos
- IconTrashCan
- IconTrashCanSimple
- IconTrashPaper
- IconTriangleExclamation
- IconUnarchiv
- IconUnpin
- IconWindow
- IconWindow2
- IconWindowApp
- IconWindowCursor
- IconZoomIn
- IconZoomOut
- IconAt
- IconBackward
- IconCmd
- IconCmdBox
- IconControl
- IconEsc
- IconHashtag
- IconOpt
- IconOptAlt
- IconShift
- IconAlignHorizontalCenter
- IconAlignVerticalCenter
- IconCarussel
- IconColumnWide
- IconColumnWideAdd
- IconColumnWideHalf
- IconColumnWideHalfAdd
- IconColumnWideHalfRemove
- IconColumnWideRemove
- IconKanbanView
- IconLayersBehind
- IconLayersThree
- IconLayersTwo
- IconLayoutAlignBottom
- IconLayoutAlignLeft
- IconLayoutAlignRight
- IconLayoutAlignTop
- IconLayoutBottom
- IconLayoutColumn
- IconLayoutDashboard
- IconLayoutGrid1
- IconLayoutGrid2
- IconLayoutHalf
- IconLayoutLeft
- IconLayoutRight
- IconLayoutSidebar
- IconLayoutThird
- IconLayoutTop
- IconLayoutTopbar
- IconLayoutWindow
- IconPlaceholder
- IconSidebarLeftArrow
- IconSidebarSimpleLeftSquare
- IconSidebarSimpleLeftWide
- IconSidebarSimpleRightSquare
- IconSidebarSimpleRightWide
- IconSidebarWideLeftArrow
- IconSlideAdd
- IconSlidesTall
- IconSlidesTallAdd
- IconSlidesWide
- IconSlidesWideAdd
- IconSlideTallAdd
- IconSlideWideAdd
- IconDirection1
- IconDirection2
- IconEarth
- IconGlobus
- IconInitiatives
- IconLocation
- IconMap
- IconMapPin
- IconMapPinFlat
- IconPinCircle
- IconPinFlag
- IconPinLocation
- IconRadar
- IconSend
- IconWorld
- IconAtom
- IconBlossom
- IconChargingStation
- IconDrillingRig
- IconExposure2
- IconGreenPower
- IconGrowth
- IconHomeEnergy
- IconHomeEnergy2
- IconNuclearPowerPlant
- IconPowerPlant
- IconPumpjack
- IconRainbow
- IconRose
- IconSolar
- IconSolarPanel
- IconTree
- IconWindPower
- IconBathMan1
- IconBathWoman1
- IconContacts
- IconFocusMode
- IconGenderFemale
- IconGenderMale
- IconGroup1
- IconGroup2
- IconGroup3
- IconHead
- IconPeople
- IconPeople2
- IconPeopleAdd
- IconPeopleAdd2
- IconPeopleAdded
- IconPeopleCircle
- IconPeopleCopy
- IconPeopleEdit
- IconPeopleLike
- IconPeopleRemove
- IconPeopleRemove2
- IconPeopleVersus
- IconSteveJobs
- IconStreaming
- IconTeacher
- IconTeacherWhiteboard
- IconWheelchair
- Icon4k
- IconAdjustPhoto
- IconAlt
- IconAspectRatio11
- IconAspectRatio169
- IconAspectRatio219
- IconAspectRatio34
- IconAspectRatio43
- IconAutoFlash
- IconAutoSize
- IconBlackpoint
- IconBlur
- IconBrightness
- IconBrilliance
- IconCamera1
- IconCamera2
- IconCamera3
- IconCamera4
- IconCamera5
- IconCameraAuto
- IconCameraOff
- IconCameraOff1
- IconCapture
- IconCat
- IconClapperboard
- IconClosedCaptioning
- IconContrast
- IconCrop
- IconDownsize
- IconDownsize2
- IconExpand
- IconExposure1
- IconFocusAuto
- IconFocusExposure
- IconFocusFlash
- IconFocusLock
- IconFocusMacro
- IconFocusMagic
- IconFocusRemove
- IconFocusRenew
- IconFocusSquare
- IconFocusZoomIn
- IconFocusZoomOut
- IconFullScreen
- IconGif
- IconGifSquare
- IconHd
- IconHighlights
- IconImages1
- IconImages2
- IconImages3
- IconImages4
- IconImages5
- IconImagesCircle
- IconMinimize
- IconMultiMedia
- IconNoFlash
- IconNoiseReduction
- IconPictureInPicture
- IconRear
- IconRemoveBackground
- IconScreenCapture
- IconShadows
- IconShareScreen
- IconSplit
- IconUnblur
- IconVideo
- IconVideoClip
- IconVideoOff
- IconVideoOn
- IconVideoRoll
- IconVideos
- IconVideoTimeline
- IconVideoTrim
- IconVignette
- IconWallpaper
- IconZap
- IconAnonymous
- IconAsterisk
- IconFaceId
- IconFingerPrint1
- IconFingerPrint2
- IconFirewall
- IconGhost
- IconKey1
- IconKey2
- IconKeyhole
- IconLaw
- IconLock
- IconPasskeys
- IconPassport
- IconPassword
- IconSafeSimple
- IconShield
- IconShieldBreak
- IconShieldCheck
- IconShieldCheck2
- IconShieldCheck3
- IconShieldCrossed
- IconShieldKeyhole
- IconSiren
- IconUmbrellaSecurity
- IconUnlocked
- IconVault
- IconAddToBasket
- IconAddToBasket2
- IconBanknote1
- IconBanknote2
- IconBasket1
- IconBasket2
- IconCoinLira
- IconCoinPesos
- IconCoinRand
- IconCoinRupees
- IconCoinWon
- IconCreditCard1
- IconCreditCard2
- IconCreditCardAdd
- IconCurrencyDollar
- IconCurrencyEuro
- IconCurrencyPesos
- IconCurrencyPounds
- IconCurrencyRupees
- IconCurrencyYen
- IconDollar
- IconEuro
- IconFastDelivery
- IconGift1
- IconGift2
- IconGiftBox
- IconGiftcard
- IconGiroCard
- IconGiroCards
- IconMoneybag
- IconPackage
- IconPackageAdd
- IconPackageBlock
- IconPackageCkeck
- IconPackageDelivery
- IconPackageDelivery1
- IconPackageDelivery2
- IconPackageEdit
- IconPackageIn
- IconPackageOut
- IconPackageRemove
- IconPackageSearch
- IconPackageSecurity
- IconPayment
- IconPercent
- IconPound
- IconReceiptBill
- IconReceiptCheck
- IconReceiptCheck2
- IconReceiptStorno
- IconReceiptTax
- IconRemoveFromBasket
- IconRemoveFromBasket2
- IconShoppingBag1
- IconShoppingBag2
- IconShoppingBag3
- IconShoppingBag4
- IconShoppingBagAdd2
- IconShoppingBagBlock2
- IconShoppingBagBookmark2
- IconShoppingBagEdit2
- IconShoppingBagLike1
- IconShoppingBagLike2
- IconTruck
- IconWallet1
- IconWallet2
- IconWallet3
- IconWallet4
- IconYen
- IconAnthropic
- IconApple
- IconAppleIntelligence
- IconAppleMusic
- IconAppstore
- IconArc
- IconArtifactNews
- IconBehance
- IconBitcoinLogo
- IconBluesky
- IconCash
- IconCentralIconSystem
- IconChrome
- IconClaudeai
- IconCodepen
- IconCopilot
- IconDeepseek
- IconDiscord
- IconDribbble
- IconDuolingo
- IconFacebook
- IconFigma
- IconFirefox
- IconFramer
- IconGithub
- IconGoogle
- IconGooglePlayStore
- IconGrok
- IconGumroad
- IconInstagram
- IconJava
- IconLemonsqueezy
- IconLinkedin
- IconLinktree
- IconLottielab
- IconManusAi
- IconMastadon
- IconMedium
- IconMicrosoftCopilot
- IconNintendoSwitch
- IconNotion
- IconNotionAi
- IconOpenai
- IconOpera
- IconPatreon
- IconPerplexity
- IconPhp
- IconPhyton
- IconPinterest
- IconPlaystation
- IconProducthunt
- IconQuora
- IconReddit
- IconRiotGames
- IconRive
- IconRobinhood
- IconRssFeed
- IconSafari
- IconSiri
- IconSketch
- IconSlack
- IconSnapchat
- IconSpotify
- IconSteam
- IconTelegram
- IconThreads
- IconTiktok
- IconTwitch
- IconTwitter
- IconVenmo
- IconVkontakte
- IconWebflow
- IconWhatsapp
- IconX
- IconXbox
- IconYoutube
- IconAirpodLeft
- IconAirpodRight
- IconAirpods
- IconAlbums
- IconAudio
- IconBack
- IconBack10s
- IconFastForward
- IconFastForward10s
- IconFastForward15s
- IconFastForward30s
- IconFastForward5s
- IconForwards10s
- IconHeadphones
- IconKeyboard
- IconMegaphone
- IconMicrophone
- IconMicrophoneOff
- IconMute
- IconPause
- IconPlay
- IconPlayCircle
- IconPlaylist
- IconPodcast1
- IconPodcast2
- IconRecord
- IconRepeat
- IconRewind
- IconRewind10s
- IconRewind15s
- IconRewind30s
- IconRewind5s
- IconShuffle
- IconSkip
- IconSpeachToText
- IconStop
- IconStopCircle
- IconTextToSpeach
- IconVoice1
- IconVoice2
- IconVoice3
- IconVoiceRecord
- IconVolumeDown
- IconVolumeFull
- IconVolumeHalf
- IconVolumeMinimum
- IconVolumeOff
- IconVolumeUp
- IconAmericanFootball
- IconBaseball
- IconBasketball
- IconBowling
- IconFrisbee
- IconFrisbeeGolf
- IconGolfBall
- IconIceHockey
- IconKickball
- IconPickelball
- IconSoccer
- IconTennis
- IconVersusCircle
- IconVolleyball
- IconAnalytics
- IconChart1
- IconChart2
- IconChart3
- IconChart4
- IconChart5
- IconChart6
- IconChart7
- IconLeaderboard
- IconLineChart1
- IconLineChart2
- IconLineChart3
- IconLineChart4
- IconPieChart1
- IconPieChart2
- IconPointChart
- IconTrending1
- IconTrending2
- IconTrending3
- IconTrending4
- IconTrending5
- IconTrendingCircle
- IconWhiteboard1
- IconWhiteboard2
- IconAirplane
- IconAirplaneDown
- IconAirplaneUp
- IconAlien
- IconBackpack
- IconBag
- IconBag2
- IconBalloon
- IconBaymax
- IconBean
- IconBee
- IconBike
- IconBlackHole
- IconBomb
- IconBooks
- IconBronceMedal
- IconBroom
- IconBus
- IconCap
- IconCar1
- IconCar10
- IconCar10Ev
- IconCar1Ev
- IconCar2
- IconCar2Ev
- IconCar3
- IconCar3Ev
- IconCar4
- IconCar4Ev
- IconCar5
- IconCar5Ev
- IconCar6
- IconCar6Ev
- IconCar7
- IconCar7Ev
- IconCar8
- IconCar8Ev
- IconCar9
- IconCar9Ev
- IconCarFrontView
- IconCelebrate
- IconCirclesThree
- IconConstructionHelmet
- IconCopyright
- IconCrown
- IconCurtain
- IconDashboardFast
- IconDashboardLow
- IconDashboardMiddle
- IconDeliveryBike
- IconDiamond
- IconDiamondShine
- IconDirectorChair
- IconDoorHanger
- IconDumbell
- IconEmojiAddReaction
- IconEmojiAlt
- IconEmojiArc
- IconEmojiSad
- IconEmojiSleep
- IconEmojiSmile
- IconEmojiSmiley
- IconEmojiSmilingFace
- IconExplosion
- IconFashion
- IconFire1
- IconFire2
- IconFire3
- IconFlag1
- IconFlag2
- IconFootsteps
- IconForYou
- IconGalaxy
- IconGoldMedal
- IconGraduateCap
- IconInfinity
- IconInjection
- IconJudgeGavel
- IconLab
- IconLifeVest
- IconLimit
- IconLiveActivity
- IconMakeItPop
- IconMask
- IconMedal
- IconMedicinePill
- IconMedicinePill2
- IconMedicineTablett
- IconMountainBike
- IconMouth
- IconNailedIt
- IconOrganisation
- IconParachute
- IconParasol
- IconPeace
- IconPets
- IconPiggyBank
- IconPillow
- IconPillowZz
- IconPilone
- IconPlayground
- IconPlugin1
- IconPlugin2
- IconPokeball
- IconPoop
- IconPushTheButton
- IconPuzzle
- IconReadingList
- IconReceiptionBell
- IconRescueRing
- IconRocket
- IconRoller
- IconScissors1
- IconScissors2
- IconShovel
- IconSilverMedal
- IconSocial
- IconSpace
- IconStage
- IconStamps
- IconSteeringWheel
- IconSticker
- IconStocks
- IconSubscriptionStar
- IconSubscriptionTick1
- IconSubscriptionTick2
- IconSuitcase
- IconSuitcaseSticker
- IconSuitcaseWork
- IconSupport
- IconTactics1
- IconTactics2
- IconTag
- IconTeddyBear
- IconTelescope
- IconTestTube
- IconThinkingBubble
- IconThinkingBubble1
- IconThread
- IconTicket
- IconToiletPaper
- IconTrainFrontView
- IconTreasure
- IconTrophy
- IconUfo
- IconUnicorn
- IconWarningSign
- IconWaste
- IconWip
- IconWreath
- IconCalendar1
- IconCalendar2
- IconCalendar3
- IconCalendar4
- IconCalendarAdd4
- IconCalendarCheck
- IconCalendarCheck4
- IconCalendarClock
- IconCalendarClock4
- IconCalendarDays
- IconCalendarEdit
- IconCalendarRemove4
- IconCalendarRepeat
- IconCalendarSearch
- IconCalendarSearch4
- IconCalendarTearOff
- IconCalender5
- IconCalenderAdd
- IconCalenderNextWeek
- IconCalenderRemove
- IconCalenderToday
- IconCalenderTomorrow
- IconClock
- IconClockAlert
- IconClockSnooze
- IconClockSquare
- IconDateCustom
- IconDateDaily
- IconDateMonthly
- IconDateWeekdays
- IconDateWeekly
- IconDateYearly
- IconHistory
- IconHourglass
- IconSleep
- IconStopwatch
- IconTimeFlies
- IconAlignmentCenter
- IconAlignmentJustify
- IconAlignmentLeft
- IconAlignmentLeftBar
- IconAlignmentRight
- IconAlpha
- IconAutoCorrect
- IconBeta
- IconBold
- IconBulletList
- IconCloseQuote1
- IconCloseQuote2
- IconConcise
- IconDivider
- IconH1
- IconH2
- IconH3
- IconHeadline
- IconHorizontalAlignmentBottom
- IconHorizontalAlignmentCenter
- IconHorizontalAlignmentTop
- IconInsertHtml
- IconItalic
- IconLinebreak
- IconLineHeight
- IconNumberedList
- IconOmega
- IconOpenQuote1
- IconOpenQuote2
- IconParagraph
- IconRemoveTextstyle
- IconSpacer
- IconStrikeThrough
- IconSubscript
- IconSuperscript
- IconText1
- IconText2
- IconTextBlock
- IconTextColor
- IconTextIndentLeft
- IconTextIndentRight
- IconTextIndicator
- IconTextMotion
- IconTextSelect
- IconTextSelectDashed
- IconTextSize
- IconTitleCase
- IconTranslate
- IconUnderline
- IconVerticalAlignmentCenter
- IconVerticalAlignmentLeft
- IconVerticalAlignmentRight
- IconWrite
- IconCloud
- IconCloudSnow
- IconCloudy
- IconCloudySun
- IconDrop
- IconLightning
- IconMoon
- IconMoonStar
- IconRainy
- IconRainyLight
- IconSnowFlakes
- IconSun
- IconSunrise
- IconSunriseArrowUp
- IconSunset
- IconSunsetArrowDown
- IconThermostat
- IconThunder
- IconWind
This is a private package with all rights reserved. Unauthorized copying or distribution is prohibited.
- Licenses can be purchased at: https://iconists.co/central
- License key must be present as an environment variable during installation
Common issues and solutions:
-
Installation fails
- Ensure
CENTRAL_LICENSE_KEY
is set correctly - Verify npm registry access
- Ensure
-
Icons not rendering
- Check if the icon name is correct
- Verify all required props are provided
- Ensure React version meets requirements
-
Bundle size concerns
- Use specific imports instead of the main entry point
- Use a build tool supporting tree shaking