Link is mainly used as navigational element and usually appear within or directly following a paragraph or sentence.

also known as Anchor, <a>, Text Link, Hyperlink

Figma:

Web:

iOS:

Android:

A11y:

Props

Component props
Name
Type
Default
href
Required
string
-

The URL that the hyperlink points to.

accessibilityLabel
string
-

Supply a short, descriptive label for screen-readers to replace link texts that don't provide sufficient context about the link component behavior. Texts like "Click Here", or "Read More" can be confusing when a screen reader reads them out of context. In those cases, we must pass an alternative text to replace the link text. It populates aria-label. Screen readers read the accessibilityLabel prop, if present, instead of the link text. See the Accessibility guidelines for more information.

children
React.Node
-

Link is a wrapper around components (or children), most commonly text, so that they become hyperlinks. See the Text and Link variant to learn more.

externalLinkIcon
"none"
| "default"
| {|
    color: $ElementType<React$ElementConfig<typeof Icon>, "color">,
    size: $ElementType<React$ElementConfig<typeof Text>, "size">,
  |}
-

When supplied, a "visit" icon is shown at the end of Link. See the externalLinkIcon and rel variant to learn more.

id
string
-

Unique id attribute of the anchor tag.

inline
boolean
-

Properly positions Link relative to an inline element, such as Text, using the inline property. See the underline variant to learn more.

onBlur
({| event: SyntheticFocusEvent<HTMLAnchorElement> |}) => void
-

Callback triggered when when the element loses focus.

onClick
({|
  event: SyntheticMouseEvent<HTMLAnchorElement> | SyntheticKeyboardEvent<HTMLAnchorElement>,
  dangerouslyDisableOnNavigation: () => void,
|}) => void
-

Callback fired when Link is clicked (pressed and released) with a mouse or keyboard. See OnLinkNavigationProvider to learn more about link navigation.

onFocus
({| event: SyntheticFocusEvent<HTMLAnchorElement> |}) => void
-

Callback triggered when the element gains focus.

ref
React.Ref<"a">
-

Ref that is forwarded to the underlying anchor element.

rel
"none" | "nofollow"
-

Establishes the relationship of the linked URL. Use rel="nofollow" for offsite links to inform search engines to ignore and not follow them. See the externalLinkIcon and rel variant to learn more.

rounding
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | "circle" | "pill"
-

Sets a border radius for Link. Select a rounding option that aligns with its children.

tapStyle
"none" | "compress"
-

When compress is supplied, Link is visually compressed on click.

target
null | "self" | "blank"
-

Define the frame or window to open the anchor defined on href:

  • 'null' opens the anchor in the same window.
  • 'blank' opens the anchor in a new window.
  • 'self' opens an anchor in the same frame.

See the target variant to learn more.

underline
"auto" | "none" | "always" | "hover"
-

When underline is supplied, we override the underline style internally managed by the component. See the underline variant to learn more.

Usage guidelines

When to use
  • Primarily for navigation, and usually within or directly accompanying a sentence. In particular cases, a Link is used to trigger actions assisting in a task completion in addition to navigation. However, these links should still serve as a support to a navigation purpose.
  • Directing users to another page or a different portion of the same page.
  • Jump to an element on the same page.
  • Highlighting URL destinations.
When not to use
  • Actions that will change data, change a state, or trigger a high-emphasis action. Use Button instead.
  • In Heading, as headings aren't easily recognizable as interactive elements. Headings can act as anchor elements on the page (accompanied by the "link" Icon), but if the heading needs to take users to a different page, add a subtitle next to the heading with an inline Link instead.

Best practices

Do

Display an underline on inline Links in the context of heavy text around them or in dense layouts such as Links on dashboards. The underline helps to determine its interactivity and reinforces accessibility standards.

Don't

Use a bold font weight to represent inline Links in the context of text around them. Bold font weight in the text context can be perceived as emphasis purposes, and it could fail to convey interactivity.

Do

Use bold font-weight in link elements such as lists, profile and board names, and any link element that an underline style isn't necessary to convey interactivity. For example, the user easily recognizes the bold element as a link since it is a typical treatment across our surfaces.

Don't

Display an underline on Links that aren't within a paragraph context, for example, lists or table links, as it could create cognitive load. Please note: If these elements are nested inside message components, consider displaying an underline, as it reinforces interactivity.

Do

Match Link to the text size and font-weight of the content they are accompanying for consistency and visual balance.

Don't

Apply multiple text styles on links paired with text, as it can create inconsistency it can make it hard to scan. See the Link and color variant for guidelines.

Do

Display the external icon ("visit" icon) when the link text needs support to convey an external domain or subsite, and when it helps Pinners scan and pick a navigation option.

Don't

Use other icons to represent an external Link. Instead, use the appropriate external icon.

Do

Add clarity to external links through explicit link text and predictable destinations instead of overusing external icons when the link is surrounded by text content. If not possible, limit to a maximum of two external icons per paragraph.

Don't

Overuse external icons, especially when they are part of text content.

Displaying multiple icons within the same text block can cause unnecessary visual load and negatively impact readability. Instead, add clarity to external links through explicit link text.

Do

Provide a meaningful descriptive label to the link that clearly indicates the link’s destination.

Don't

Use generic phrases like "click here" or "go to" on links. Review Writing guidelines for reference.

Accessibility

Avoid using Link to perform actions other than navigation or accessing external pages. Link should serve a navigation purpose.

Accessible content

Sometimes we don't have space to be more verbose and the Link content can't provide enough context. In those cases, use the accessibilityLabel prop. accessibilityLabel adds an aria-label attribute to the link, which assistive technologies like screen readers can access. Typically, the label text replaces the visible text on the Link for users who use assistive technology. While we don't recommend using "Learn more" or "See details" for Link text, it can be used as long as it is supplemented with a more descriptive accessibilityLabel, like "Learn more about personalization and data" or "See rate limit details for trial package".

Accessible content is critical if we consider that assistive technology also presents links in isolation from their contexts. For example, screen reader rotors list all the links present in a page. If all listed links are repetitions of the same generic phrases, the content is not accessible.

Keyboard navigation

Give Link keyboard focus with the tab key (or shift + tab when tabbing backwards). Activate Link with the enter/return key.

When rendering an external link, add text for screen readers that this Link will go to a different destination. Users should be informed that they will be moving out of a domain and which domain they are moving to. This is particularly relevant for those with cognitive impairments or people relying on assistive technology.

These are cases where external links should open in a new tab, as it supports Pinners to better navigate our product without disrupting their flow experience:

  • When changing pages would make the user lose unsaved progress—for example, filling out a form or adding content.

  • When starting a process, which would stop if the user clicks away. For example, watching a video or completing a core task.

  • When Pinners are logged in and, clicking away would interrupt that session.

Sometimes opening links in a new tab can be challenging for users with difficulty perceiving visual content, users with cognitive disabilities, or people who magnify their screens. We don't recommend opening a link in a new tab when:

  • It is invasive and disruptive to the flow of the page.

  • Users have not been clearly informed about this behavior.

We recommend adding an external link to inline content. However, use a maximum of two external links per paragraph when possible, as adding more than two icons in the same block of text can clutter the design and create readability issues.

Also, consider adding external links to elements where the "visit" icon will support the user's comprehension, letting them know they are leaving Pinterest content and going to an external domain. For example, when using external links inside a footer element.

For external links where an external Gestalt Link doesn't apply, check out Button link role or IconButton link role.

Localization

Be sure to localize the accessibilityLabel as well as any children content.

Link announces to assistive technologies that the link opens in a new tab when setting target to 'blank'. Localize the default label with DefaultLabelProvider. Learn more

Variants

Link depends on Text to inherit style attributes including weight, color, and size. Aim to match the text size and style of the content they are accompanying. Always use Link within Text to get the correct underline color.

Link uses the typography color tokens. Keep in mind colors should be used purposefully and consistently as they convey meaning in multiple ways. See below how to use colors on links.

  1. color="default"
    Default text color for links used across Pinterest UI.
  2. color="subtle"
    Intended for links placed within a subtle inline text (e.g. additional link on a sub-header).
  3. color="inverse"
    For links over a dark-colored background. Make sure it has a 4.5:1 contrast ratio between foreground and background.
  4. color="shopping"
    Used on links related to shopping products or surfaces when a color is needed to highlight a link. Please note: This color should only be used in a shopping context.
  5. Status: color="error", color="warning", color="success"
    Used purposefully, applies only on links within a status message. See status colors for reference.
  6. Documentation: color="link"
    Reserved color for links within documentation and internal subsites when a color is needed to convey interactivity. Please note: This color shouldn't be used on links across Pinterest customer-facing UI.

Underline

To follow Link design guidelines and best practices, inline and underline props must be used accordingly. In addition, using Links consistently will ensure a great usability experience.

We recommend showing the underline on the link, at least upon a hover behavior; it will sustain accessibility standards. Only hide the underline if the link element has a different hover behavior (e.g., a color background), and the user can still perceive the element as a link. In that case, it’s always a good idea to test this assumption with users. Reach out to Gestalt for assistance.

Don’t underline Text that isn’t a Link, as underline has a strong link affordance.

Link with inline={true} defaults the underline style to "always" to follow design guidelines while inline={false} defaults the underline style to "hover". On hover, underline="always" removes the underline, while underline="hover" adds it.

However, Link's underline style can be overridden at any time using the underline prop.

underline="none" doesn't show any underline style. However, for cases where underline isn’t needed to convey interactivity or when the link element doesn’t function as a link visually, consider using TapArea or Button with role=link.

Inline Link
Standalone Link
Inline Link with overridden underline
Link with hidden underline

Target

target is optional and defines the frame or window to open the anchor defined on href:

  • "null" opens the anchor in the same window.
  • "blank" opens the anchor in a new window.
  • "self" opens an anchor in the same frame.
Link announces to assistive technologies that the link opens in a new tab. Localize the default label with DefaultLabelProvider. Learn more

externalLinkIcon and rel

An external link, also called an outbound link, is a link from Pinterest to a different website. External links require specific SEO, visual, and accessibility treatments.

rel is optional. Use "nofollow" for external links to specify to web crawlers not follow the link. Don't use "nofollow" with urls redirecting to any Pinterest domain or subsite.

externalLinkIcon is optional. externalLinkIcon displays a "visit" icon at the end of external Links to visually communicate an outbound link destination to the user. Follow Link's Best practices to properly use the "visit" icon on external Links.

As the "visit" icon is a visual/graphic representation, it's hidden to assistive technologies to avoid duplication of information. Instead, follow accessibility best practices for external links as detailed in the Accessibility section.

The "visit" icon should also match Text's size and color. externalLinkIcon="default" automatically sets the "visit" icon style to match Text's default properties: size="300" and color="default" as shown in the first example. However, for different Text treatments, externalLinkIcon can be used to match custom Text properties as shown in the second example.

Writing

Do
  • Link should be 3 words or less: long enough to be understood by users but short enough to prevent text wrapping
  • Use meaningful words that makes sense even out of context. Provide a meaningful descriptive label to the link that clearly indicates the link’s destination
  • Use the name of the page rather than the URL. For example, "Visit Pinterest.com" rather than "Visit www.pinterest.com"
Don't
  • Use text like "Click here" or "See more". Instead, write a meaningful descriptive label that clearly indicates the link’s destination.
  • Use all-caps

Component quality checklist

Component quality checklist
Quality item
Status
Status description
Figma Library
Component is not currently available in Figma.
Responsive Web
Ready
Component is available in code for web and mobile web.
iOS
Component is not currently available in code for iOS.
Android
Component is not currently available in code for Android.

Text
Text provides Link with style: size, color, and font.

OnLinkNavigationProvider
OnLinkNavigationProvider allows external link navigation control across all children components with link behavior.

Button
Button allows users to take actions, and make choices using text labels to express what action will occur when the user interacts with it.

Button, IconButton, TapArea
These components support link functionality themselves by setting role="link". Don't use Link to add link functionality to elements other than text.