When I load webix kanban in react app, few icons( "mdi mdi-comment-outline",) are not loaded, can you please help here?

When I load webix kanban in react few icons( “mdi mdi-comment-outline”,) are not loaded, can you please help here?

webix.type(webix.ui.kanbanlist, {
name: “cards”,
icons: [
{
id: “comments”,
icon: “mdi mdi-comment-outline”,
template(obj) {
return obj.comments ? obj.comments.length : “”;
}
}
],