Introducing
About WindUI
Setup
LoadstringThemes
UI
WindowKey SystemTabDialogPopupNotificationTagTab Section
Elements
SectionButtonToggleSliderInputDropdownParagraphKeybindColorpickerCodeDividerSpaceImageGroup (deprecated)HStack & VStack
Advanced
ConfigsIcons

Icons

Available icon references for WindUI elements

Icon System

WindUI supports icons from multiple sources:

  1. Built-In Icons (recommended)
  2. Roblox Asset IDs - Use rbxassetid:// format
  3. Image URLs - External image RAW links

Built-In Icons

WindUI uses Lucide icons by default. You can reference any Lucide icon by its name.

All Available Icon Sets

All Icon Sets
NamePrefix
Lucide Iconslucide:
Craft Iconscraft:
Geist Iconsgeist:
Solar Iconssolar:
SF Symbolssfsymbols:
Gravity UI Iconsgravity:

All Icons source

Loading...

Using Icons

Built-In Icons

Simply use the icon name:

Lucide:

Tab:Button({
    Title = "Save",
    Icon = "save" -- default Lucide icon
})

Solar:

Tab:Button({
    Title = "Edit",
    Icon = "solar:pen-bold" -- Solar icon
})

and others

Roblox Asset IDs

Use rbxassetid:// format:

Tab:Button({
    Icon = "rbxassetid://123456789",
    IconThemed = true -- optional, applies theme colors
})

Image URLs

Provide direct image URLs:

Tab:Button({
    Icon = "https://example.com/my-icon.png"
})