
Icons Reference
All available icons for sections and pages

Arcane Lexicon supports three types of icons in frontmatter and section configuration:

  1. Lucide icons - 90+ built-in icon names
  2. SVG files - Reference external .svg files
  3. Raw SVG - Inline SVG markup

Usage#

Use a Lucide icon name string:

---
title: My Page
icon: rocket
---
{
  "title": "Guide",
  "icon": "book"
}

SVG Files#

Reference an SVG file by path (relative to your site root or absolute URL):

---
title: My Page
icon: /images/custom-icon.svg
---
{
  "title": "Guide",
  "icon": "/assets/icons/guide.svg"
}

External URLs are also supported:

icon: https://example.com/icon.svg

Raw SVG Markup#

Embed SVG directly (useful for simple icons):

icon: <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/></svg>

Note

Raw SVG markup is rendered at 16x16 pixels and inherits the current text color via currentColor.

Documents and Files#

Icon NameDescription
file-textDocument with text
fileGeneric file
bookClosed book
book-openOpen book
notebookSpiral notebook
scrollScroll document
Icon NameDescription
rocketRocket ship
zapLightning bolt
homeHouse
playPlay button
compassCompass
mapMap
navigationNavigation arrow

Server and Infrastructure#

Icon NameDescription
serverServer
databaseDatabase cylinder
hard-driveHard drive
cpuProcessor chip
cloudCloud
globeGlobe
networkNetwork nodes
wifiWiFi signal
monitorDesktop monitor
laptopLaptop computer
containerShipping container

Security#

Icon NameDescription
shieldShield
shield-checkShield with checkmark
shield-alertShield with alert
lockLocked padlock
unlockUnlocked padlock
keyKey
key-roundRound key
scanScan/fingerprint

Settings and Tools#

Icon NameDescription
settingsGear
settings-2Alternative gear
slidersSliders (horizontal)
sliders-horizontalHorizontal sliders
wrenchWrench
hammerHammer
terminalTerminal/command line
codeCode brackets
bracesCurly braces
bracketsSquare brackets

Files and Folders#

Icon NameDescription
folderFolder
folder-openOpen folder
folder-closedClosed folder
archiveArchive box
packagePackage
boxBox

Communication#

Icon NameDescription
mailEnvelope
message-circleChat bubble (round)
message-squareChat bubble (square)
headphonesHeadphones
phonePhone
bellNotification bell

Status and Monitoring#

Icon NameDescription
activityActivity/heartbeat line
bar-chartBar chart
line-chartLine chart
pie-chartPie chart
gaugeGauge/speedometer
clockClock
timerTimer
refresh-cwRefresh (clockwise)
rotate-cwRotate clockwise
loaderLoading spinner

Money and Billing#

Icon NameDescription
credit-cardCredit card
dollar-signDollar sign
receiptReceipt
walletWallet
coinsCoins
banknoteBanknote

Users#

Icon NameDescription
userSingle user
usersMultiple users
user-plusAdd user
user-checkVerified user
user-cogUser settings

Miscellaneous#

Icon NameDescription
layersStacked layers
layoutLayout grid
grid3x3 grid
sparklesSparkles
starStar
heartHeart
flagFlag
bookmarkBookmark
tagSingle tag
tagsMultiple tags
infoInformation circle

Alerts and Information#

Icon NameDescription
alert-triangleWarning triangle
alert-circleAlert circle
help-circleHelp/question circle
checkCheckmark
check-circleCheckmark in circle
xX/close
x-circleX in circle

Arrows and Navigation#

Icon NameDescription
arrow-rightRight arrow
arrow-leftLeft arrow
arrow-upUp arrow
arrow-downDown arrow
chevron-rightRight chevron
chevron-leftLeft chevron
chevron-upUp chevron
chevron-downDown chevron
external-linkExternal link
linkLink chain

Actions#

Icon NameDescription
downloadDownload
uploadUpload
copyCopy
clipboardClipboard
trashTrash can
trash-2Alternative trash
editEdit/pencil
pencilPencil
saveSave/disk
plusPlus sign
minusMinus sign
searchMagnifying glass
filterFilter funnel
eyeVisible eye
eye-offHidden eye

Support and Help#

Icon NameDescription
life-buoyLife buoy
helpHelp circle

Power and Control#

Icon NameDescription
powerPower button
plugElectrical plug
plug-zapPlug with power
batteryBattery

World and Location#

Icon NameDescription
map-pinMap pin/marker
buildingBuilding
building-2Alternative building

Fallback Behavior#

If an invalid icon name is used, file-text is displayed as the default fallback.

Icon Styling#

Icons in the sidebar are rendered at a small size (IconSize.sm) and inherit the current text color, ensuring they match the theme.