HelpButton is an affordance that accompanies an element on the screen. It helps describe or provide assistance on how to use the accompanying element.
also known as InfoButton
Props
Usage guidelines
- To offer simple, bite-sized assistive information about an element or section on the screen.
- To provide information or links to information that enhances a user's understanding of the feature.
- To provide extensive information that is longer than a short sentence. Use SlimBanner instead.
- To display recommendations for how to improve a user's experience. Use SlimBanner instead.
- To display time-sensitive information to a user. Use Callout or SlimBanner instead.
Best practices
Place HelpButton to the end of the element you wish to add guidance to.
Include HelpButton within blocks of content.
Accessibility
HelpButton's tooltip text is static
, defined as Click to learn more
. Use the required accessibilityLabel
prop to give the user more details, using the format "Click to learn more about {the associated element}". accessibilityPopoverLabel
should be similar, but using the format "Expanded information about {the associated element}".
Localization
Be sure to localize text
, accessibilityLabel
, accessibilityPopoverLabel
, link.text
and link.accessibilityLabel
within HelpButton. Note that localization can lengthen text by 20 to 30 percent.
Variants
Link
HelpButton's popover content can contain a link to additional information. If needed, this interaction can be paired with OnLinkNavigationProvider.
import { HelpButton, Text, Flex } from 'gestalt'; export default function Example() { return ( <Flex height="100%" justifyContent="center" alignItems="center" gap={1}> <Text>This is Gestalt</Text> <HelpButton accessibilityLabel="Click to learn more about gestalt" accessibilityPopoverLabel="Expanded information about Gestalt" link={{ href: 'https://gestalt.pinterest.systems/', text: 'Read our documentation', accessibilityLabel: 'Visit Gestalt portal', }} text="Gestalt is Pinterest's design system." /> </Flex> ); }
Text
The text
prop accepts either a string or Text. Use a string for simple text without any visual style. HelpButton will handle the message style and adherence to design guidelines. If a message with more complex style is required, such as bold text or inline links, use Text to wrap your message with any additional Text or Link components contained within.
import { HelpButton, Text, Flex } from 'gestalt'; export default function Example() { return ( <Flex height="100%" justifyContent="center" alignItems="center" gap={1}> <Text>This is Gestalt</Text> <HelpButton accessibilityLabel="Click to learn more about gestalt" accessibilityPopoverLabel="Expanded information about Gestalt" link={{ href: 'https://gestalt.pinterest.systems/', text: 'Read our documentation', accessibilityLabel: 'Visit Gestalt portal', }} text={ <Text> <Text weight="bold" inline> Gestalt </Text>{' '} is Pinterest`s design system. </Text> } /> </Flex> ); }
Related
Tooltip
Tooltip describes the function of an interactive element, typically IconButton, on hover. However, adding links, buttons or any clickable element within Tooltip is not advisable due to accessibility concerns. Adding Tooltip to HelpButton is not necessary as it's already built in.
IconButton
HelpButton is a more specific component than IconButton. IconButton is preferable for more general uses of interactive icons whereas HelpButton is the preferred solution for providing short-form guidance for an element.