> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twenty.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Gezinti Çubuğu

Birden fazla `NavigationBarItem` bileşeni içeren bir gezinti çubuğu oluşturur.

<Tabs>
  <Tab title="Kullanım">
    ```jsx theme={null}
    import { IconHome, IconUser, IconSettings } from '@tabler/icons-react';
    import { NavigationBar } from "@/ui/navigation/navigation-bar/components/NavigationBar";

    export const MyComponent = () => {

       const navigationItems = [
         {
           name: "Home",
           Icon: IconHome,
           onClick: () => console.log("Home clicked"),
         },
         {
           name: "Profile",
           Icon: IconUser,
           onClick: () => console.log("Profile clicked"),
         },
         {
           name: "Settings",
           Icon: IconSettings,
           onClick: () => console.log("Settings clicked"),
         },
       ];

      return <NavigationBar activeItemName="Home" items={navigationItems}/>;
    };
    ```
  </Tab>

  <Tab title="Özellikler">
    | Özellikler  | Tür  | Açıklama                                                                                                                                                                        |
    | ----------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
    | aktifÖğeAdı | dize | Şu anda aktif olan gezinti öğesinin adı                                                                                                                                         |
    | öğeler      | dizi | Her gezinti öğesini temsil eden nesnelerin dizisi. Her nesne, öğenin adını, gösterilecek `Icon` bileşenini ve öğeye tıklandığında çağrılacak bir `onClick` fonksiyonunu içerir. |
  </Tab>
</Tabs>
