@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1,821 lines (1,697 loc) • 34 kB
Markdown
# @central-icons-react/square-filled-radius-0-stroke-1
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
## Table of Contents
- [Quick Start](#quick-start)
- [Installation](#installation)
- [Requirements](#requirements)
- [Usage](#usage)
- [Icon Properties](#icon-properties)
- [Accessibility](#accessibility)
- [Available Packages](#available-packages)
- [Icons List](#icons)
- [License](#license)
- [Troubleshooting](#troubleshooting)
## Quick Start
```bash
# 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/square-filled-radius-0-stroke-1
```
```jsx
import { IconHome } from "central-icons/IconHome";
function MyComponent() {
return <IconHome />;
}
```
## Installation
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.
```bash
# Set your license key first
export CENTRAL_LICENSE_KEY=your_license_key
# Then install using your preferred package manager
npm install @central-icons-react/square-filled-radius-0-stroke-1
# or
yarn add @central-icons-react/square-filled-radius-0-stroke-1
# or
pnpm add @central-icons-react/square-filled-radius-0-stroke-1
```
## Requirements
- React 14.0.0 or higher
- Valid license key (set as environment variable)
## Usage
### Individual Imports (Recommended)
Icons can be imported individually to keep your bundle size minimal:
```jsx
import { IconHome } from "@central-icons-react/square-filled-radius-0-stroke-1/IconHome";
function MyComponent() {
return <IconHome />;
}
```
### Import alias
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)
```bash
npm install central-icons@npm:@central-icons-react/square-filled-radius-0-stroke-1
```
```jsx
import { IconHome } from "central-icons/IconHome";
function MyComponent() {
return <IconHome />;
}
```
### Central Icon Component
Or you can import from the main entry point (not recommended to be used in production, loads all icons):
```jsx
import { CentralIcon } from "@central-icons-react/square-filled-radius-0-stroke-1";
function MyComponent() {
return <CentralIcon name="IconName" />;
}
```
## Icon Properties
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](#icons) |
Additionally, all standard SVG and HTML attributes are supported.
## Accessibility
Icons are aria-hidden by default for decorative purposes. When using icons that convey meaning, you should disable aria-hidden:
```jsx
// 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
## Available Packages
For optimal bundle size, consider using our specific bundles instead of the full package:
https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1
https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-filled-radius-0-stroke-2
https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1
https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-filled-radius-1-stroke-2
https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1
https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-filled-radius-2-stroke-2
https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1
https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-filled-radius-3-stroke-2
https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1
https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-outlined-radius-0-stroke-2
https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1
https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-outlined-radius-1-stroke-2
https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1
https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-outlined-radius-2-stroke-2
https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1
https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-1.5
https://npmjs.com/package/@central-icons-react/round-outlined-radius-3-stroke-2
https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1
https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-1.5
https://npmjs.com/package/@central-icons-react/square-filled-radius-0-stroke-2
https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1
https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-1.5
https://npmjs.com/package/@central-icons-react/square-outlined-radius-0-stroke-2
## Icons
Below is a complete list of available icons:
### AI & Magic
- 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
### Accessibility
- IconCircleHalfFill
- IconCirclePerson
- IconEar
- IconEyeClosed
- IconEyeOpen
- IconEyeSlash
- IconEyeSlash2
- IconImageAltText
- IconSquareLinesBottom
### Arrows
- 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
- IconRandom
- IconShareArrowDown
- IconSquareArrowBottomRight
- IconSquareArrowCenter
- IconSquareArrowInTopLeft
- IconSquareArrowOutTopLeft
- IconSquareArrowTopRight
- IconSquareArrowTopRight2
- IconSquareCursor
- IconSquized
- IconStepBack
- IconStepForwards
### Augmented Reality
- Icon3dBoxBottom
- Icon3dBoxTop
- Icon3dSphere
- IconAr
- IconArCube1
- IconArCube2
- IconArCube3
- IconAround
- IconArScanCube1
- IconArScanCube2
- IconOculus
- IconPanoramaView
- IconQm3
- IconRotate
- IconSpatialCapture
- IconVisionPro
- IconVisionProApp
### Building
- IconBank
- IconBlock
- IconBuildings
- IconCourt
- IconDoor
- IconGarage
- IconHome
- IconHomeCircle
- IconHomeDoor
- IconHomeLine
- IconHomeOpen
- IconHomePersonalFeed
- IconHomeRoof
- IconHomeRoundDoor
- IconMall
- IconSchool
- IconStore1
- IconStore2
- IconStore3
- IconStore4
- IconStores
### Clouds
- IconCloud
- IconCloudCheck
- IconCloudDownload
- IconCloudOff
- IconCloudOff2
- IconCloudSimple
- IconCloudSimpleDisconnected
- IconCloudSimpleDownload
- IconCloudSimpleUpload
- IconCloudSync
- IconCloudUpload
### Code
- IconAnimation
- IconAnimationAuto
- IconAnimationEase
- IconAnimationEaseIn
- IconAnimationEaseOut
- IconAnimationElastic
- IconAnimationLinear
- IconAnimationNone
- IconAnimationOvershoot
- IconAnimationUndershoot
- IconApiAggregate
- IconApiConnection
- IconBezierCurves
- IconBrackets1
- IconBrackets2
- IconBranch
- IconBug
- IconBugFace
- IconCode
- IconCodeAnalyze
- IconCodeAssistant
- IconCodeBrackets
- IconCodeInsert
- IconCodeLines
- IconConsole
- IconConsoleSimple
- IconDebugger
- IconDraft
- IconForkCode
- IconHammer
- IconPullRequest
- IconPush
- IconRequestClosed
- IconRunShortcut
- IconSandbox
- IconShip
- IconTestflight
### Communication
- IconBook
- IconBookSimple
- 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
### Crypto
- IconAirdrop2
- IconBitcoin
- IconCoin1
- IconCoin2
- IconCoins
- IconCoinsAdd
- IconCrypto
- IconCryptoCoin
- IconCryptopunk
- IconCryptoWallet
- IconEthereum
- IconGas
- IconSecretPhrase
- IconTradingViewCandles
- IconTradingViewLine
- IconTradingViewSteps
- IconWeb3
### Devices & Signals
- IconAirdrop
- IconAirplay
- IconAirplayAudio
- IconAirpodCase
- IconBatteryEmpty
- IconBatteryError
- IconBatteryFull
- IconBatteryLoading
- IconBatteryLow
- IconBatteryMedium
- IconBluetooth
- IconCalculator
- IconChip
- IconChipSimple
- IconChromecast
- IconCircleRecord
- IconDevices
- IconFullscreen
- IconHaptic
- IconImac
- IconKeyboardCable
- IconKeyboardDown
- IconKeyboardUp
- IconLiveFull
- IconLiveNoSignal
- IconLiveWeak
- IconMacbook
- IconMacbookAir
- IconMacintosh
- IconMacMini
- IconMouse
- IconMouseScrollDown
- IconMouseScrollUp
- IconNfc1
- IconNfc2
- IconOffline
- 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
### Edit
- 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
- IconGlass
- IconHighlight
- IconKeyframe
- IconLineThickness
- IconMagnet
- IconMarkdown
- IconMarker
- IconMarkerCircle
- IconPencil
- IconPencilLine
- IconPencilWave
- IconRecKeyframe
- IconRecKeyframe2
- IconRemoveKeyframe
- IconRepaint
- IconRewrite
- IconRewrite1
- IconRewrite2
- IconRuler
- IconShaders
- IconSignature
- IconSlice
- IconSummary
- IconTextEdit
- IconToolbox
- IconVariables
- IconVectorLogo
- IconWhiteboard
- IconWrite1
- IconWrite2
- IconWriting
### Filter & Settings
- IconFilter1
- IconFilter2
- IconFilterAsc
- IconFilterAscending
- IconFilterCircle
- IconFilterDesc
- IconFilterDescending
- IconFilterTimeline
- IconLiquidGlass
- IconMaintenance
- IconReorder
- IconSettingsGear1
- IconSettingsGear2
- IconSettingsGear3
- IconSettingsKnob
- IconSettingsSliderHor
- IconSettingsSliderThree
- IconSettingsSliderVer
- IconSettingsToggle1
- IconSettingsToggle2
- IconSortArrowUpDown
- IconToggle
### Folders & Files
- IconArchive
- IconBlankPageLandscape
- IconBlankPagePortrait
- IconDossier
- IconFaceIdFace
- 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
### Food
- IconAppleNewton
- IconApples
- IconAvocado
- IconBanana
- IconBirthdayCake
- IconBottle
- IconBreakfast
- IconBurger
- IconCandy
- 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
- IconTea
- IconToast
- IconToque
### Furniture & Household
- IconArmchair
- IconBed
- IconCabinet
- IconChair
- IconChairModern
- IconDeskOffice
- IconDeskOffice2
- IconDishwasher
- IconDrawer1
- IconDrawer2
- IconDrawer3
- IconDrawer4
- IconDresser
- IconFridge
- IconSofa
- IconWardrobe
- IconWashingMachine
### Gaming
- IconDice1
- IconDice2
- IconDice3
- IconDice4
- IconDice5
- IconDice6
- IconDices
- IconGamepad
- IconGamepadControls
- IconGamepadControlsDown
- IconGamepadControlsLeft
- IconGamepadControlsRight
- IconGamepadControlsRound
- IconGamepadControlsRoundDown
- IconGamepadControlsRoundLeft
- IconGamepadControlsRoundRight
- IconGamepadControlsRoundUp
- IconGamepadControlsUp
- IconRoulette1
- IconRoulette2
- IconScratchCard
- IconSlots
- IconSword
### Hands
- IconBlip
- IconFistbump
- IconHand4Finger
- IconHand5Finger
- IconHumanMashine
- IconMagicHands
- IconMoneyHand
- IconPinch
- IconPointer
- IconRaisingHand4Finger
- IconRaisingHand5Finger
- IconShaka1
- IconShaka2
- IconThumbDownCurved
- IconThumbsDown
- IconThumbsUp
- IconThumbUpCurved
- IconTouch
- IconTouchGrass
### Interface General
- 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
- IconDeepSearch
- 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
- IconMorningBrief
- 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
- IconTextareaDrag
- IconThumbtack
- IconTodos
- IconTrashCan
- IconTrashCanSimple
- IconTrashPaper
- IconTrashPermanently
- IconTriangleExclamation
- IconUnarchiv
- IconUnpin
- IconUntrash
- IconWindow
- IconWindow2
- IconWindowApp
- IconWindowCursor
- IconZoomIn
- IconZoomOut
### Keyboard
- IconAt
- IconBackward
- IconCmd
- IconCmdBox
- IconControl
- IconEsc
- IconHashtag
- IconOpt
- IconOptAlt
- IconShift
### Layout
- 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
### Location
- IconDirection1
- IconDirection2
- IconEarth
- IconGlobus
- IconInitiatives
- IconLocation
- IconMap
- IconMapPin
- IconMapPinFlat
- IconPinCircle
- IconPinFlag
- IconPinLocation
- IconRadar
- IconSend
- IconWorld
### Nature & Energy
- IconAtom
- IconBlossom
- IconChargingStation
- IconDrillingRig
- IconExposure2
- IconGreenPower
- IconGrowth
- IconHomeEnergy
- IconHomeEnergy2
- IconNuclearPowerPlant
- IconPowerPlant
- IconPumpjack
- IconRainbow
- IconRose
- IconSolar
- IconSolarPanel
- IconTree
- IconWindPower
### People
- IconBathMan1
- IconBathWoman1
- IconContacts
- IconFocusMode
- IconGenderFemale
- IconGenderMale
- IconGroup1
- IconGroup2
- IconGroup3
- IconHead
- IconPeople
- IconPeople2
- IconPeopleAdd
- IconPeopleAdd2
- IconPeopleAdded
- IconPeopleCircle
- IconPeopleCopy
- IconPeopleEdit
- IconPeopleLike
- IconPeopleRemove
- IconPeopleRemove2
- IconPeopleVersus
- IconSteveJobs
- IconStreaming
- IconSurfing
- IconTeacher
- IconTeacherWhiteboard
- IconVibeCodingBird
- IconVibeCodingStar
- IconWheelchair
### Photography & Video
- 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
- IconFullScreen1
- IconGif
- IconGifSquare
- IconHd
- IconHighlights
- IconImages1
- IconImages2
- IconImages3
- IconImages4
- IconImages5
- IconImagesCircle
- IconMinimize
- IconMultiMedia
- IconNoFlash
- IconNoiseReduction
- IconPictureInPicture
- IconRear
- IconRemoveBackground
- IconRemoveBackground2
- IconRetouch
- IconScreenCapture
- IconShadows
- IconShareScreen
- IconSplit
- IconUnblur
- IconVideo
- IconVideoClip
- IconVideoOff
- IconVideoOn
- IconVideoRoll
- IconVideos
- IconVideoTimeline
- IconVideoTrim
- IconVignette
- IconWallpaper
- IconZap
### Security
- 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
### Shopping & Payment
- 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
### Social Media & Brands
- IconAnthropic
- IconApple
- IconAppleIntelligence
- IconAppleMusic
- IconAppstore
- IconArc
- IconArtifactNews
- IconBehance
- IconBitcoinLogo
- IconBluesky
- IconBolt
- IconBun
- IconCash
- IconCentralIconSystem
- IconChrome
- IconClaudeai
- IconCodepen
- IconCopilot
- IconCpp
- IconCursor
- IconDeepseek
- IconDiscord
- IconDribbble
- IconDuolingo
- IconFacebook
- IconFigma
- IconFirefox
- IconFramer
- IconGemini
- IconGit
- IconGithub
- IconGoogle
- IconGooglePlayStore
- IconGrok
- IconGumroad
- IconInstagram
- IconJava
- IconJavaCoffeeBean
- IconJavascript
- IconLemonsqueezy
- IconLinear
- IconLinkedin
- IconLinktree
- IconLottielab
- IconLovable
- IconManusAi
- IconMastadon
- IconMedium
- IconMicrosoftCopilot
- IconNintendoSwitch
- IconNotion
- IconNotionAi
- IconNpm
- IconOpenai
- IconOpera
- IconPatreon
- IconPerplexity
- IconPhp
- IconPhpElephant
- IconPhyton
- IconPinterest
- IconPlaystation
- IconProducthunt
- IconQuora
- IconReddit
- IconRiotGames
- IconRive
- IconRobinhood
- IconRssFeed
- IconSafari
- IconSiri
- IconSketch
- IconSlack
- IconSnapchat
- IconSpotify
- IconSteam
- IconSupabase
- IconTelegram
- IconThreads
- IconTiktok
- IconTwitch
- IconTwitter
- IconTypescript
- IconVenmo
- IconVercel
- IconVkontakte
- IconWebflow
- IconWhatsapp
- IconWindsurf
- IconX
- IconXbox
- IconYoutube
### Sound & Music
- 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
- IconSoundFx
- IconSpeachToText
- IconStop
- IconStopCircle
- IconTextToSpeach
- IconVoice1
- IconVoice2
- IconVoice3
- IconVoiceRecord
- IconVolumeDown
- IconVolumeFull
- IconVolumeHalf
- IconVolumeMinimum
- IconVolumeOff
- IconVolumeUp
### Sports
- IconAmericanFootball
- IconBaseball
- IconBasketball
- IconBowling
- IconFrisbee
- IconFrisbeeGolf
- IconGolfBall
- IconIceHockey
- IconKickball
- IconPickelball
- IconSoccer
- IconTennis
- IconVersusCircle
- IconVolleyball
### Statistics & Charts
- IconAnalytics
- IconChart1
- IconChart2
- IconChart3
- IconChart4
- IconChart5
- IconChart6
- IconChart7
- IconInsights
- IconLeaderboard
- IconLineChart1
- IconLineChart2
- IconLineChart3
- IconLineChart4
- IconPieChart1
- IconPieChart2
- IconPointChart
- IconTrending1
- IconTrending2
- IconTrending3
- IconTrending4
- IconTrending5
- IconTrendingCircle
- IconWhiteboard1
- IconWhiteboard2
### Things
- IconAlien
- IconBackpack
- IconBag
- IconBag2
- IconBalloon
- IconBaymax
- IconBean
- IconBee
- IconBlackHole
- IconBomb
- IconBooks
- IconBronceMedal
- IconBroom
- IconCap
- IconCelebrate
- IconCirclesThree
- IconConstructionHelmet
- IconCopyright
- IconCrown
- IconCurtain
- IconDashboardFast
- IconDashboardLow
- IconDashboardMiddle
- 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
- IconMouth
- IconNailedIt
- IconOrganisation
- IconParachute
- IconParasol
- IconPeace
- IconPets
- IconPiggyBank
- IconPillow
- IconPillowZz
- IconPilone
- IconPlayground
- IconPlugin1
- IconPlugin2
- IconPokeball
- IconPoop
- IconPushTheButton
- IconPuzzle
- IconReadingList
- IconReceiptionBell
- IconRescueRing
- 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
- IconTreasure
- IconTrophy
- IconUnicorn
- IconWarningSign
- IconWaste
- IconWip
- IconWreath
### Time & Date
- 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
### Typography
- 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
### Vehicles & Aircrafts
- IconAirplane
- IconAirplaneDown
- IconAirplaneUp
- IconBike
- IconBus
- IconCar1
- IconCar10
- IconCar10Ev
- IconCar1Ev
- IconCar2
- IconCar2Ev
- IconCar3
- IconCar3Ev
- IconCar4
- IconCar4Ev
- IconCar5
- IconCar5Ev
- IconCar6
- IconCar6Ev
- IconCar7
- IconCar7Ev
- IconCar8
- IconCar8Ev
- IconCar9
- IconCar9Ev
- IconCarFrontView
- IconDeliveryBike
- IconMountainBike
- IconRocket
- IconRoller
- IconTrainFrontView
- IconUfo
### Weather
- IconCloud1
- IconCloudSnow
- IconCloudy
- IconCloudySun
- IconDrop
- IconLightning
- IconMoon
- IconMoonStar
- IconRainy
- IconRainyLight
- IconSnowFlakes
- IconSun
- IconSunrise
- IconSunriseArrowUp
- IconSunset
- IconSunsetArrowDown
- IconThermostat
- IconThunder
- IconWind
## License
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
## Troubleshooting
Common issues and solutions:
1. **Installation fails**
- Ensure `CENTRAL_LICENSE_KEY` is set correctly
- Verify npm registry access
2. **Icons not rendering**
- Check if the icon name is correct
- Verify all required props are provided
- Ensure React version meets requirements
3. **Bundle size concerns**
- Use specific imports instead of the main entry point
- Use a build tool supporting tree shaking