I've used dxslideout in some parts of the Devextreme basic project
.dxView
<div data-bind="dxSlideOut: {
dataSource: musteriNavItems
}">
.
.
</div>
javascript
musteriNavItems = [
{ action: "Profil", icon: "profil", text: "Profil" },
{ icon: "info", text: "Çıkış" }
];
These codes work.Text appears in dxSlideOut design,but icons do not appear on this design. How do I add icons beside the text?