Icons are the symbolic representation of an action or information, providing visual context and improving usability.
Props
Usage guidelines
- As symbolic communication for elements that do not have room for text, like the number of pins in a carousel. In this case, ensure the icon choice is easily recognizable and makes sense to international users.
- To convey a critical meaning that cannot be communicated with words, like a downward chevron in a Button to indicate it reveals a menu.
- To help with quick scanning by adding rhythm and hierarchy to the design.
- For purposes that are decorative or for visual embellishment, such as how illustrations are typically used. Contact us if this is needed.
- As a visual reinforcement for associated text, without adding new meaning.
- To communicate status or health. Use Status instead.
- As an interactive element (e.g., utilizing hover, focus, click/tap). Use IconButton instead.
Best practices
Use icons intentionally, ensuring the Icon choice is easily recognizable and makes sense in the context.
Repurpose icons. Using icons for their intended meaning supports good comprehension.
Pair text and icons when possible to provide better clarity.
Accessibility
Icons are a great way to help users who have difficulties with reading, focus attention, and low vision impairments.
ARIA attributes
If the icon appears without text, the Icon requires accessibilityLabel
, a text description for screen readers to announce and communicate the represented Icon, as shown in the first example.
Avoid using the generic words like "image" or "icon"; instead, use verbs that describe the meaning of the icon, for example: “pins".
If an icon has a visible label that describes what the icon represents, accessibilityLabel
can be an empty string, as shown in the second example.
Legibility and touch area
Ensure that icons use a contrast ratio of 4.5:1 between icon color and background color.
Localization
Be sure to localize accessibilityLabel
.
Variants
Primary-color combinations
Size
These are the guidelines for icon sizes (in px):
12
Used sparingly in tight spaces. When possible, use a text label next to the icon, as it can be hard to see for visually impaired people.14
Used often following body text content any time an icon is needed.16
Used often any time an icon is needed. Default icon size.24
Used frequently any time an icon is needed.32
Used occasionally, on more dense UI.32+
Should be used sparingly and only in places where the UI is very dense and a larger icon is required.
Custom icon
Icon accepts both Gestalt icons and custom icons, as shown in the second example. For custom icons, follow the iconography and SVG guidelines.
Writing
Use a descriptive label to describe the Icon
- Be succinct. Exclude unnecessary words.
- Be informative and accurate
- Write in the active voice
- Avoid technical jargon
- Use the words "image" or "icon" in the description label; instead, use words that indicate the purpose of the icon.
Related
IconButton
Use IconButton when only an icon is needed to represent an action instead of text.
Button
Use Button to allow users to take an action.