Buttons indicate to a user that an important action is available (e.g., start a flow, proceed to next steps, send your info, save for later). Button hierarchy helps communicate the importance of one action vs. another.

- Button copy: encourages the user to take action.
Variants
Default
Loading
Disabled
Design guidelines
Be clear and use copy to motivate action
- Be succinct; try not to use more than 4 words.
- Don’t use punctuation.
- Button copy is written in all caps.

Don't
Use punctuation or more than 4 words in label.
Don't
Skip a label.Use icons thoughtfully
- An icon is allowed to use on a button to signify what the button does.
- The lock icon indicates security to the user (Learn more ). Check with legal when you are using it.
- Do not use the lock icon if the user will leave NerdWallet after clicking on the button (legally NerdWallet can’t promise security).

Don't
Use the lock icon to indicate security if NerdWallet can’t promise security.
Do
Use an icon to signify "open a new window".Use loading states sparingly
Only show a loading state if it isn’t possible for a user to do something else while the action processes.

Don't
Use button loading state when the user could do something else.Primary, secondary, tertiary button usage
- Primary buttons should be used very sparingly (ideally one per page) to draw user’s attention to highest priority action.
- Several secondary and tertiary buttons can be used per page and help differentiate between next steps.

Don't
Use multiple primary buttons when actions could be prioritized.
Exception
Use multiple primary buttons when hierarchy of action is parallel.Accessibility
Users may quickly tab through a page to discover interactive elements, or use the VoiceOver rotor to get a list of all buttons on the page. This means it's important that a button's label is descriptive of what the button actually does, since it's not guaranteed that the user will encounter your button in the context of adjacent labels or descriptions. Instead of button labels like "Read more" or "Apply now", you should prefer more descriptive ones like "Read more about robo-advisors" or "Apply now on Chase's site".
Development
import Button from '@nerdwallet/react-button';<Button>Click me</Button>;
You often want a button that looks like a link, or vice-versa a link that looks like a button. The <Button>
and <Link>
components can be used interchangeably, and which one you use should be determined by what you want it to look like. Both components can render either <a>
or <button>
tags depending on the props used (href
vs onClick
), ensuring you get both the right styling and the right DOM elements for semantics and accessibility.
- Use this component (
<Button>
) when you want something that looks like a button. - Use
<Link>
when you want something that looks like a link.
Props
In addition to props defined by this component, any props <button>
and <a>
take are also accepted.
<Button>
children
node
block
boolean
Changes the button to `display: block`, making it go full width.
className
string
Applies a CSS classname to the component.
component
string
Allows you to provide a React component or other HTML element, overriding the default `a` and `button` options.
disabled
boolean
Renders a button as disabled, making it non-interactable.
loading
boolean
Renders a button loading visual state.
loadingMessage
= 'Loading'
string
Message to be read by the screen reader when loading state is active.
primary
boolean
Renders a button with the highest visual affordances.
tertiary
boolean
Renders a button with the tertiary visual affordances.
dangerouslyForceHoverStyling
boolean
Force the component to use its hover styles.
dangerouslyForceFocusStyling
boolean
Force the component to use its focus styles.
dangerouslyForceActiveStyling
boolean
Force the component to use its active styles.
Related pages
- Forms
- Icon
- Link
- Voice and tone guidelines (log in through Okta)