<kendo-drawer-container>
<kendo-drawer
#drawer
[items]="drawerItems"
[mode]="'push'"
[mini]="true"
[expanded]="false"
(select)="onDrawerSelect($event)"
drawerItems: DrawerRoutingItem[] = [
{
svgIcon: ?????????,
text: "Chargements",
path: "",
selected: window.location.pathname==="/"
},
{
svgIcon: ????????????,
text: "Horaire des reprises",
path: "horaire",
selected: window.location.pathname==="/horaire"
}
];
I have a chargements.svg file in an Assets directory however the svgIcons in drawerItems will only take SVGIcon object from @progress/kendo-svg-icons
How can I use my own svg files inside the drawerItems array?