shadow Boolean
(default: false)
Toggles the shadow of the widget.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
shadow: true,
items: [
{ text: "Home", icon: "home" },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>