Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion 16/umbraco-cms/customizing/foundation/icons.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Icons

The icons in the Umbraco backoffice are based on [Lucide Icons](https://lucide.dev/). The syntax for using an icon starts with `icon-`. You can find the full list of available icons in the [Icon registry list on GitHub](https://github.com/umbraco/Umbraco-CMS/tree/main/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons).
The icons in the Umbraco backoffice are based on [Lucide Icons](https://lucide.dev/) and [Simple Icons](https://simpleicons.org/). The syntax for using an icon starts with `icon-`. You can find the full list of available icons in the [All Icons article in the UI documentation](https://apidocs.umbraco.com/v16/ui/?path=/docs/umb-icons--docs).

Check warning on line 3 in 16/umbraco-cms/customizing/foundation/icons.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐢 [UmbracoDocs.Editorializing] Consider removing 'Simple' Raw Output: {"message": "[UmbracoDocs.Editorializing] Consider removing 'Simple'", "location": {"path": "16/umbraco-cms/customizing/foundation/icons.md", "range": {"start": {"line": 3, "column": 91}}}, "severity": "WARNING"}

## Example

```html
<umb-icon name="icon-umbraco" color="blue"></umb-icon>
```
Loading