Button
Props
Usage guidelines
- Communicating an action that will occur.
- Triggering or enabling an action, such as submitting requested information.
- Progressing or regressing a user through a step in a flow.
- Directing users to a new page or different part within the same page. Instead, use Link.
- Limited space available. Consider using an IconButton instead.
Best practices
Place primary Buttons to the right or top of other Button styles.
Place more than one primary Button per container/area.
Show the full text on Buttons. Buttons should be stacked when they cannot be displayed side by side.
Truncate the Button text. In rare instances where Buttons must remain on one line, truncate the text on the secondary Button before truncating on the primary Button.
Keep the Button text as simple and actionable as possible. Refer to the Button writing guidelines for more detail. If text is not sufficient for accessibility, refer to Accessibility guidelines for more detail.
Do not add icons to a Button to reinforce the text.
Use an IconButton + Tooltip next to the disabled Button if you need to explain why it is disabled.
Use a Tooltip on disabled Button, as it is not accessible for keyboard and screen reader users.
Accessibility
ARIA attributes
When Button text does not provide sufficient context about the Button’s behavior, supply a short, descriptive label for screen-readers using accessibilityLabel
.
Texts like “Click here“, “Follow“, or “Shop“ can be confusing when a screen reader reads them out of context. In those cases, we must pass an alternative text with deeper context to replace the Button text, like “Follow Ryan” or “Shop Wedding Invitations”.
If Button is used as a control Button to show/hide a Popover-based component, we recommend passing the following ARIA attributes to assist screen readers:
accessibilityLabel
: if present, read by screen readers read instead of thetext
prop.accessibilityControls
: informs the screen reader that Button controls the display of an anchored Popover-based component. It populates aria-controls.accessibilityHaspopup
: informs the screen reader that there’s a Popover-based component attached to Button. It populates aria-haspopup.accessibilityExpanded
: informs the screen reader whether the button-anchored Popover-based component is currently open or closed. It populates aria-expanded.
Localization
Be sure to localize text
and accessibilityLabel
. Note that localization can lengthen text by 20 to 30 percent. Avoid truncating Button text whenever possible. Refer to the Button usage guidelines for more information.
Variants
Size
Button is available in 3 fixed sizes. The Button text has always a fixed size of 16px:
lg
(48px)
Large is the only size that should be used on Pinner surfaces.md
(40px)
Medium is used on more dense UI such as business surfaces or internal tools.sm
(32px)
Small should be used sparingly and only in places where the UI is very dense.
Width
- Inline (default)
Inline is our default Button width. The width of an inline Button is based on the length of its text. Use in most cases where you need a Button. - Full-width (
fullWidth
)
Full-width Buttons can be used in narrower content areas when the text in the Button is close to full width in the content area. This is especially common to see in components such as Callout and Upsell at their smaller breakpoints.
Color on white backgrounds
- Red (Primary)
High emphasis, used for primary actions. - Blue (Primary in shopping context)
The blue Button is only intended for the shopping experience and is used for primary shopping actions. - Gray (Secondary)
Medium emphasis, used for secondary actions. - Transparent (Tertiary)
Low emphasis when placed on dark/image backgrounds, used for tertiary actions in that context. Note, this treatment should be used with caution as it has potential color contrast issues.
Color on color/image backgrounds
- White (Primary)
High emphasis when placed on color/image backgrounds, used for primary actions in that context. - Semi-transparent white (Secondary)
Medium emphasis when placed on color/image backgrounds, used for secondary actions in that context.
Icons
Icon end
Adds an icon after the Button text. Icons should only be used to visually reinforce a specific function or interaction of the Button. Menus and external links are a common use case. Use arrow-up-right
when linking to an external URL or arrow-down
when displaying a Popover on click. Note that iconEnd on Button is not accessible to screen readers.
Role
- Button (default)
The “button”role
is used for actions. This is the default and should be used for most Buttons. - Link
The “link”role
is used for navigating by URL. These Buttons should not use aselected
state.
rel and target
These optional props control the behavior of role="link"
Buttons. External links commonly use target="_blank"
to open the link in a new tab or window, and rel="nofollow"
to provide hints for SEO.
States
- Default
The typical state of a Button that represents it can be interacted with and is not in a selected state. - Disabled
Used to block user interaction such as hover, focus and click. Disabled Buttons are completely unreachable by a keyboard and screenreader, so do not attach Tooltips to disabled Buttons. - Selected
When Button is used to toggle a boolean state or control the visibility of other elements (e.g. Dropdown), use theselected
prop to indicate the current state. Do not use this prop withrole="link"
Buttons.
Accessibility props: controls, expanded, & popup
Ref
To control focus or position anchored components relative to Button, use ref
as shown in the example below.
Writing
- If your object is already described on the screen, Buttons only need a verb (Example: Save).
- If your object isn’t described on the screen, Buttons need a verb + the object (Example: Create Pin).
- Use fewer than 3 words.
- Use sentence case.
- Do not use punctuation.
Related
ButtonGroup
When displaying multiple Buttons in a layout, use ButtonGroup to ensure consistent spacing and wrapping behavior.
IconButton
Use IconButton when only an icon is needed instead of text.
TapArea
Use TapArea to make non-button elements interactive, like an Image. This ensures the element interaction is accessible and uses Gestalt styles.
Tabs
Tabs are intended for page-level navigation between multiple URLs.
OnLinkNavigationProvider
OnLinkNavigationProvider allows external link navigation control across all children components with link behavior.
See OnLinkNavigationProvider to learn more about link navigation.