items.icon String

Defines the name for an existing icon in a Kendo UI theme.

See web font icons help article for more details on Kendo UI icons.

Example

<nav id="bottomnav"></nav>

<script>
    $("#bottomnav").kendoBottomNavigation({
        items: [
            { text: "Home", icon: "home" },
            { text: "Info", icon: "info-circle" },
            { text: "Contact", icon: "envelope" }
        ]
    });
</script>
In this article