Skip to content

Icons Format

The icons JSON file should be named icons.json and placed at the root of your icon pack. This file defines all the icons that are available to TilePad in your pack


A typical Icons file looks like this:

[
...
]

Each icon has a name and path

{
"name": "example",
"path": "icons/example.svg"
}
FieldTypeRequiredDescription
namestringYesUnique name of the icon to reference it
iconstring (URL)YesPath to the icon relative to the icon pack root

[
{
"name": "example",
"path": "icons/example.svg"
},
{
"name": "example-b",
"path": "icons/example-b.svg"
}
]