PageHeader

PageHeader is used to determine the arrangement of the top-level headings and how elements adopt to different viewports.
  • Draft
  • Not reviewed for accessibility
import {PageHeader} from '@primer/react/drafts'

Examples

Has title only

Title

Title variant="large"

Title

With leading and trailing visuals

Title

Beta

With leading visual is hidden on regular viewport

Title

Beta

Component as Title

With leading and trailing actions

Title

With actions

Title

With description slot

add-pageheader-docs

broccolinisoup created this branch 5 days ago · 14 commits · updated today

With navigation slot

Utilizing a Navigation component

Utilizing a custom navigation

Page Title

With ContextArea

Title

With context bar and actions (only visible on mobile)

With a ContextArea with all possible children (always visible)

With actions that have responsive content

Webhooks

Props

NameTypeDefaultDescription
aria-label
string | undefined
A unique label for the rendered main landmark
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.
as
React.ElementType
"div"The underlying element to render — either a HTML element name or a React component.

PageHeader.ContextArea

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.
NameTypeDefaultDescription
href
string
The URL to link to.
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
`{ narrow: false regular: true wide: true }`Whether the parent link is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.ContextBar

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.ContextAreaActions

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.TitleArea

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
variant
| 'subtitle' | 'medium' | 'large' | { narrow?: | 'subtitle' | 'medium' | 'large' regular?: | 'subtitle' | 'medium' | 'large' wide?: | 'subtitle' | 'medium' | 'large' }
mediumDefault title (medium) is the most common page title size. Use for static titles in most situations. Large variant should be used for user-generated content such as issues, pull requests, or discussions. Subtitle variant can be used when a PageHeader.Title is already present in the page, such as in a SplitPageLayout.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.LeadingAction

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.LeadingVisual

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.Title

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.
as
React.ElementType
"h2"The underlying element to render — either a HTML element name or a React component.

PageHeader.TrailingVisual

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.TrailingAction

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.Actions

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.Description

NameTypeDefaultDescription
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

PageHeader.Navigation

NameTypeDefaultDescription
aria-label
string
The aria-label attribute for the navigaton component when it is rendered as a "nav" element.
aria-labelledby
string
The aria-labelledby attribute for the navigaton component when it is rendered as a "nav" element.
as
React.ElementType
"div"The HTML element used to render the navigation.
hidden
| boolean | { narrow?: boolean regular?: boolean wide?: boolean }
falseWhether the content is hidden.
sx
SystemStyleObject
Style overrides to apply to the component. See also overriding styles.

Status

Alpha

  • Component props and basic example usage of the component are documented on primer.style/react.
  • Component does not have any unnecessary third-party dependencies.
  • Component can adapt to different themes.
  • Component can adapt to different screen sizes.
  • Component has robust unit test coverage (100% where achievable).
  • Component has visual regression coverage of its default and interactive states.
  • Component does not introduce any axe violations.
  • Component has been manually reviewed by the accessibility team and any resulting issues have been addressed.

Beta

  • Component is used in a production application.
  • Common usage examples are documented on primer.style/react.
  • Common usage examples are documented in storybook stories.
  • Component has been reviewed by a systems designer and any resulting issues have been addressed.
  • Component does not introduce any performance regressions.

Stable

  • Component API has been stable with no breaking changes for at least one month.
  • Feedback on API usability has been sought from developers using the component and any resulting issues have been addressed.
  • Component has corresponding design guidelines documented in the interface guidelines.
  • Component has corresponding Figma component in the Primer Web library.
  • Tooling (such as linters, codemods, etc.) exists to prevent further use of alternatives.