Skip to content

BottomNavigationItem

Represents a single item in a bottom navigation bar.

Importing

ts
import "@tapsioss/web-components/bottom-navigation";
ts
import { BottomNavigationItem } from "@tapsioss/react-components/BottomNavigationItem";

Component Usage

html
<tapsi-bottom-navigation-item></tapsi-bottom-navigation-item>
tsx
<BottomNavigationItem />

Properties

NameDescriptionTypeDefault Value
activeIndicates whether the item is active or not.booleanfalse
valueThe value associated with the item. This value has to be unique among sibling items.string""

Slots

NameDescription
iconThe slot for the icon element.
-The default slot for the content/label.

TIP

You can use slot names as variables:

ts
import { ItemSlots } from "@tapsioss/web-components/bottom-navigation";

console.log(ItemSlots.ICON); // "icon"
console.log(ItemSlots.DEFAULT); // ""
ts
import { BottomNavigationItemSlots } from "@tapsioss/react-components";

console.log(BottomNavigationItemSlots.ICON); // "icon"
console.log(BottomNavigationItemSlots.DEFAULT); // ""