> For the complete documentation index, see [llms.txt](https://docs.oserosuite.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.oserosuite.com/technical-notes/unreal-engine-notes/slate/default-editor-icons.md).

# Default Editor Icons

~~**SlateEditorStyle.cpp** has most of the default common icons for the editor.~~

```cpp
FAppStyle::GetBrush("Icons.Refresh")
```

{% hint style="warning" %}
**SlateEditorStyle.cpp** was deprecated in UE5.
{% endhint %}

**StarshipCoreStyle.cpp** also has some of the default common icons for the editor.

```cpp
FAppStyle::GetBrush("Icons.Minus")
```

**StarshipStyle.cpp** also has some of the default common icons for the editor.

```cpp
FAppStyle::GetBrush("PropertyWindow.DiffersFromDefault")
```

**CoreStyle.cpp** also has some of the default common icons for the editor.

```cpp
FCoreStyle::Get().GetBrush("BreadcrumbTrail.Delimiter")
```
