items.text String
The text of the item. It is optional - if not set, no text will be rendered.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
items: [
{ icon: "home" },
{ icon: "info-circle" },
{ icon: "envelope" }
]
});
</script>