import {UnderlineNav} from '@primer/react/drafts'
<UnderlineNav aria-label="Repository"><UnderlineNav.Item selected>Code</UnderlineNav.Item><UnderlineNav.Item>Issues</UnderlineNav.Item><UnderlineNav.Item>Pull Requests</UnderlineNav.Item></UnderlineNav>
<UnderlineNav aria-label="Repository"><UnderlineNav.Item selected icon={CodeIcon}>Code</UnderlineNav.Item><UnderlineNav.Item icon={IssueOpenedIcon} counter={30}>Issues</UnderlineNav.Item><UnderlineNav.Item icon={GitPullRequestIcon} counter={3}>Pull Requests</UnderlineNav.Item><UnderlineNav.Item icon={CommentDiscussionIcon}>Discussions</UnderlineNav.Item><UnderlineNav.Item icon={EyeIcon} counter={9}>Actions</UnderlineNav.Item><UnderlineNav.Item icon={EyeIcon} counter={7}>Projects</UnderlineNav.Item></UnderlineNav>
Component first hides icons if they present to optimize for space and show as many items as possible. If there is still an overflow, it will display the items that don't fit in the More
menu.
const Navigation = () => {const items = [{navigation: 'Code', icon: CodeIcon},{navigation: 'Issues', icon: IssueOpenedIcon, counter: 120},{navigation: 'Pull Requests', icon: GitPullRequestIcon, counter: 13},{navigation: 'Discussions', icon: CommentDiscussionIcon, counter: 5},{navigation: 'Actions', icon: PlayIcon, counter: 4},{navigation: 'Projects', icon: ProjectIcon, counter: 9},{navigation: 'Insights', icon: GraphIcon},{navigation: 'Settings', icon: GearIcon, counter: 10},{navigation: 'Security', icon: ShieldLockIcon}]const [selectedIndex, setSelectedIndex] = React.useState(0)return (<Box sx={{width: 750, border: '1px solid', borderBottom: 0, borderColor: 'border.default'}}><UnderlineNav aria-label="Repository">{items.map((item, index) => (<UnderlineNav.Itemkey={item.navigation}icon={item.icon}selected={index === selectedIndex}onSelect={e => {setSelectedIndex(index)e.preventDefault()}}counter={item.counter}>{item.navigation}</UnderlineNav.Item>))}</UnderlineNav></Box>)}render(<Navigation />)
<UnderlineNav aria-label="Repository" loadingCounters={true}><UnderlineNav.Item counter={4} selected>Code</UnderlineNav.Item><UnderlineNav.Item counter={44}>Issues</UnderlineNav.Item><UnderlineNav.Item>Pull Requests</UnderlineNav.Item></UnderlineNav>
import {Link} from 'react-router-dom'import {UnderlineNav} from '@primer/react/drafts'const Navigation = () => {return (<UnderlineNav aria-label="Repository"><UnderlineNav.Item as={Link} to="code" counter={4} selected>Code</UnderlineNav.Item><UnderlineNav.Item counter={44} as={Link} to="issues">Issues</UnderlineNav.Item><UnderlineNav.Item as={Link} to="pulls">Pull Requests</UnderlineNav.Item></UnderlineNav>)}
Name | Type | Default | Description |
---|---|---|---|
children Required | UnderlineNav.Item[] | ||
aria-label | string | A unique name for the rendered 'nav' landmark. It will also be used to label the arrow buttons that control the scroll behaviour on coarse pointer devices. (I.e. 'Scroll ${aria-label} left/right') | |
loadingCounters | boolean | false | Whether the navigation items are in loading state. Component waits for all the counters to finish loading to prevent multiple layout shifts. |
afterSelect | (event) => void | The handler that gets called when a nav link child is selected | |
sx | SystemStyleObject | Style overrides to apply to the component. See also overriding styles. |
Name | Type | Default | Description |
---|---|---|---|
href | string | The URL that the item navigates to. 'href' is passed to the underlying '<a>' element. If 'as' is specified, the component may need different props and 'href' is ignored. (Required prop for the react router is 'to' for example) | |
icon | Component | The leading icon comes before item label | |
selected | boolean | Whether the link is selected | |
onSelect | (event) => void | The handler that gets called when a nav link is selected. For example, a manual route binding can be done here(I.e. 'navigate(href)' for the react router.) | |
as | string | React.ElementType | a | The underlying element to render — either a HTML element name or a React component. |
sx | SystemStyleObject | Style overrides to apply to the component. See also overriding styles. |