Agriculture Design System
Beta
Design System for the Export Service

Main nav

The main nav is the primary way users navigate the user interface. It is consistently visible throughout the service.

View in FigmaView in StorybookView in Github
import { ... } from '@ag.ds-next/react/main-nav';

Usage

Main nav components can be imported via the main-nav entrypoint in the @ag.ds-next/react package.

For example:

import { ... } from '@ag.ds-next/react/main-nav';

Props

MainNav Props
PropTypeDescription
activePath?string
Used for highlighting the active navigation item.
background?"body" | "bodyAlt"Default: "body"
The background of the component.
children?ReactNode
id?string
Defines an identifier (ID) which must be unique.
items?MainNavListItemType[]
List of navigation items to display.
secondaryItems?(MainNavListDropdown | MainNavListItemType)[]
Optional list of navigation items to display on the right of the component.

MainNavBottomBar Props

MainNavBottomBar does not have any props.

Source

You can view the full source code for this package on Github.