Icons
Create custom icon sets for use across the Umbraco backoffice.
Register a new set of icons
{
"$schema": "../../umbraco-package-schema.json",
"name": "My Package",
"version": "0.1.0",
"extensions": [
{
"type": "icons",
"alias": "My.Icons.Unicorn",
"name": "My Unicorn Icons",
"js": "/App_Plugins/MyPackage/Icons/icons.js"
}
]
}export default [
{
name: "my-unicorn",
path: () => import("./icon-unicorn.js"),
},
{
name: "my-giraffe",
path: () => import("./icon-giraffe.js"),
}
]Using Icons in your UI
Last updated
Was this helpful?