You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible to use font-awesome icons if you like. You need to include the [Font Awesome CSS](https://www.bootstrapcdn.com/fontawesome/) in your application. That will enable you to use the icon classes to use those icons.
8
+
9
+
### Example
10
+
11
+
```javascript
12
+
var items = {
13
+
firstCommand: {
14
+
name: "Paste",
15
+
icon: "fa-trash" // Font-awesome trash icon
16
+
}
17
+
}
18
+
```
19
+
20
+
## Bring your own icons
21
+
22
+
It is also possible to use your own SVG icons if you like, you can [customize](customize) this by using the SASS files.
0 commit comments