Developer Programs

Learn

Docs

Icons

Components > Displaying Data > Icons

Overview

Responsive UI provides a library of enterprise icons to help ensure a consistent icon appearance across our applications.

You can learn more about enterprise icons here.

Development

Web component development

Component reference

rui-icon
rui-icon
Module: rui-icon - Package: @jkhy/responsive-ui-wc

Displays a standalone enterprise icon, outside of a Responsive UI component

NameTypeDefaultDescription
iconTypestring''

The name of the enterprise icon to display. You can find a list of all enterprise icons here.

Icon names used in Responsive UI web components use kebab casing. Switch the Component Technology selector at the top of this page to “Web Components” in order to see the kebab-cased icon names.

sizestring''Specifies the size of the status icon. Use CSS notation appropriate for the CSS “width” and “height” attributes.
contextstring''Icons display with different sizes and colors depending on where they are positioned in your application’s UI. We internally use the context property to let the icon understand where it’s displayed so that it can display the proper color and size. You’ll typically leave this property at its default blank value; this property is typically set internally.

Implementation

Enterprise icons in Responsive UI components

Most of the time you’ll display an enterprise icon within a Responsive UI component. All Responsive UI components that can display an icon include an iconType property. Set this property’s value to the name of the icon you wish to use.

Setting the iconType property in Responsive UI components
<rui-nav-button iconType="information" text="About" route="/#/About"></rui-nav-button>
Displaying custom icons

If you want to display a custom icon (one that isn’t in the enterprise icon library), use the custom-icon slot instead of the iconType property. You have three approaches for doing this:

  • You can provide a path to a standalone SVG icon file. This can be a good option if the same icon SVG is used in multiple places.
  • You can use an inline SVG icon. The icon SVG content is specified inline in the HTML.
  • You can use an icon font.
Custom standalone SVG icon file

Before using a custom standalone SVG icon file (say one you downloaded from the web), you must add (1) a unique id and (2) fill="currentColor" within the external svg file itself. We’ll reference the id in the next step, and the fill assignment helps the SVG inherit the correct theme color.

The custom external icon referenced in the next example
<?xml version="1.0" encoding="utf-8"?>
<svg id="asterisk" fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
    <path d="M1.728 20.992q-0.416 1.6 0.416 3.008 0.832 1.44 2.432 1.856t3.040-0.384q0.832-0.48 2.56-1.92t3.168-2.912q-0.608 2.016-0.96 4.192t-0.384 3.168q0 1.664 1.184 2.848t2.816 1.152 2.816-1.152 1.184-2.848q0-0.96-0.384-3.168t-0.928-4.192q1.44 1.504 3.168 2.944t2.528 1.888q1.44 0.832 3.040 0.384t2.432-1.856 0.416-3.008-1.888-2.464q-0.864-0.48-2.944-1.248t-4.064-1.28q2.016-0.512 4.096-1.28t2.912-1.248q1.44-0.832 1.888-2.432t-0.416-3.040q-0.832-1.44-2.432-1.856t-3.040 0.384q-0.832 0.512-2.528 1.92t-3.168 2.912q0.576-1.984 0.928-4.192t0.384-3.168q0-1.632-1.184-2.816t-2.816-1.184-2.816 1.184-1.184 2.816q0 0.992 0.384 3.168t0.96 4.192q-1.44-1.472-3.168-2.88t-2.56-1.952q-1.44-0.8-3.040-0.384t-2.432 1.856-0.416 3.040 1.888 2.432q0.832 0.48 2.912 1.248t4.128 1.28q-2.016 0.512-4.096 1.28t-2.944 1.248q-1.44 0.832-1.888 2.464z"></path>
</svg>

Then wherever you need to display that custom external icon, use an svg tag that slots into the custom-icon slot, reference the external SVG file with the use tag, and set the href to your icon path, suffixed with a hashtag and the id specified within the external svg file.

Button that uses a custom external icon
<rui-button text="Custom External Icon">
    <svg slot="custom-icon">
        <use href="images/icons/icon-asterisk.svg#asterisk"></use>
    </svg>
</rui-button>
Custom inline SVG icon

To use a custom inline icon, simply include the entire SVG file content in the markup, adding slot=”custom-icon” and fill=”currentColor” in order to inherit the correct theming.

Button with an custom inline icon
<rui-button text="Custom Inline Icon">
    <svg slot="custom-icon" fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
        <path d="M0 26.016q0 2.496 1.76 4.224t4.256 1.76 4.224-1.76 1.76-4.224v-2.016h8v2.016q0 2.496 1.792 4.256t4.224 1.728q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76h-2.016v-8h2.016q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76-4.256 1.76-1.76 4.256q0 0.992 0.384 1.984h-8.736q0.352-1.024 0.352-1.984 0-2.496-1.76-4.256t-4.224-1.76-4.256 1.76-1.76 4.256 1.76 4.224 4.256 1.76h1.984v8h-1.984q-2.528 0-4.256 1.792t-1.76 4.224zM4 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM4 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM12 20v-8h8v8h-8zM24 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM24 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408z"></path>
    </svg>
</rui-button>
Custom icon font

To use a custom icon font (such as Font Awesome), provide the <i> tag with the custom-icon slot name and the associated classes for your generated icon font.

Button with an custom font icon
<rui-button text="Custom Font Icon">
    <i slot="custom-icon" class="fa-solid fa-user"></i>
</rui-button>
Displaying standalone enterprise icons outside of a Responsive UI component

You can also display a standalone enterprise icon outside of a Responsive UI component.

Begin by importing the rui-icon module into your application.

Import the module
// import into app.module
import '@jkhy/responsive-ui-wc/components/rui-icon/rui-icon-imports';

A common use case for displaying a standalone enterprise icon outside of a Responsive UI component is templated lists.

Add an instance of rui-icon in the desired location within the template, specifying an icon name for the iconType property. Specify a value for the size property if you’d like the icon to be larger than the default size.

You can modify the opacity for the rui-icon using CSS if that helps the icon blend better into the template.

Displaying a standalone icon in a templated list
<div *ngFor="let account of accountList" class="rui-template account-container">

    <rui-icon [iconType]="account.iconType" size="28px" class="account-icon"></rui-icon>

    <div class="account-info">
        <div class="rui-bright-text-label">Account {{account.name}}</div>
        <div class="rui-regular-text-label">{{account.type}}</div>
    </div>

    <p class="rui-regular-text-label account-balance">
        {{account.balance | jhaCurrency}}
    </p>

</div>

To display an rui-icon with a custom icon, provide it within the slot. Ensure that the svg tag includes fill="currentColor" so the correct theming is inherited.

Displaying a standalone custom icon
<rui-icon size="28px" class="account-icon">
    <svg fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
        <path d="M0 26.016q0 2.496 1.76 4.224t4.256 1.76 4.224-1.76 1.76-4.224v-2.016h8v2.016q0 2.496 1.792 4.256t4.224 1.728q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76h-2.016v-8h2.016q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76-4.256 1.76-1.76 4.256q0 0.992 0.384 1.984h-8.736q0.352-1.024 0.352-1.984 0-2.496-1.76-4.256t-4.224-1.76-4.256 1.76-1.76 4.256 1.76 4.224 4.256 1.76h1.984v8h-1.984q-2.528 0-4.256 1.792t-1.76 4.224zM4 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM4 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM12 20v-8h8v8h-8zM24 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM24 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408z"></path>
    </svg>
</rui-icon>

Angular wrapper development

Wrapper reference

jha-icon
jha-icon
Module: JhaIconModule - Package: @jkhy/responsive-ui-angular

Displays a standalone enterprise icon, outside of a JHA component

NameTypeDefaultDescription
jhaIconTypestring''

The name of the enterprise icon to display. You can find a list of all enterprise icons here.

Icon names used in Responsive UI Angular components use Pascal casing. Switch the Component Technology selector at the top of this page to “Angular” in order to see the kebab-cased icon names.

jhaSizestring'14px'Specifies the size of the status icon. Use CSS notation appropriate for the CSS “width” and “height” attributes.

Implementation

Enterprise icons in Responsive UI components

Most of the time you’ll display an enterprise icon within a Responsive UI component. All Responsive UI components that can display an icon include a jhaIconType property. Set this property’s value to the name of the icon you wish to use.

Setting the iconType property in Responsive UI components
<jha-nav-button jhaIconType="Information" jhaText="About" jhaRouterLink="/About"></jha-nav-button>
Displaying custom icons

If you want to display a custom icon (one that isn’t in the enterprise icon library), use the custom-icon slot instead of the jhaIconType property. You have three approaches for doing this:

  • You can provide a path to a standalone SVG icon file. This can be a good option if the same icon SVG is used in multiple places.
  • You can use an inline SVG icon. The icon SVG content is specified inline in the HTML.
  • You can use an icon font.
Custom standalone SVG icon file

Before using a custom standalone SVG icon file (say one you downloaded from the web), you must add (1) a unique id and (2) fill="currentColor" within the external svg file itself. We’ll reference the id in the next step, and the fill assignment helps the SVG inherit the correct theme color.

The custom external icon referenced in the next example
<?xml version="1.0" encoding="utf-8"?>
<svg id="asterisk" fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
    <path d="M1.728 20.992q-0.416 1.6 0.416 3.008 0.832 1.44 2.432 1.856t3.040-0.384q0.832-0.48 2.56-1.92t3.168-2.912q-0.608 2.016-0.96 4.192t-0.384 3.168q0 1.664 1.184 2.848t2.816 1.152 2.816-1.152 1.184-2.848q0-0.96-0.384-3.168t-0.928-4.192q1.44 1.504 3.168 2.944t2.528 1.888q1.44 0.832 3.040 0.384t2.432-1.856 0.416-3.008-1.888-2.464q-0.864-0.48-2.944-1.248t-4.064-1.28q2.016-0.512 4.096-1.28t2.912-1.248q1.44-0.832 1.888-2.432t-0.416-3.040q-0.832-1.44-2.432-1.856t-3.040 0.384q-0.832 0.512-2.528 1.92t-3.168 2.912q0.576-1.984 0.928-4.192t0.384-3.168q0-1.632-1.184-2.816t-2.816-1.184-2.816 1.184-1.184 2.816q0 0.992 0.384 3.168t0.96 4.192q-1.44-1.472-3.168-2.88t-2.56-1.952q-1.44-0.8-3.040-0.384t-2.432 1.856-0.416 3.040 1.888 2.432q0.832 0.48 2.912 1.248t4.128 1.28q-2.016 0.512-4.096 1.28t-2.944 1.248q-1.44 0.832-1.888 2.464z"></path>
</svg>

Then wherever you need to display that custom external icon, use an svg tag that slots into the custom-icon slot, reference the external SVG file with the use tag, and set the href to your icon path, suffixed with a hashtag and the id specified within the external svg file.

Button that uses a custom external icon
<jha-button jhaText="Custom External Icon">
    <svg slot="custom-icon">
        <use href="images/icons/icon-asterisk.svg#asterisk"></use>
    </svg>
</jha-button>
Custom inline SVG icon

To use a custom inline icon, simply include the entire SVG file content in the markup, adding slot=”custom-icon” and fill=”currentColor” in order to inherit the correct theming.

Button with an custom inline icon
<jha-button jhaText="Custom Inline Icon">
    <svg slot="custom-icon" fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
        <path d="M0 26.016q0 2.496 1.76 4.224t4.256 1.76 4.224-1.76 1.76-4.224v-2.016h8v2.016q0 2.496 1.792 4.256t4.224 1.728q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76h-2.016v-8h2.016q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76-4.256 1.76-1.76 4.256q0 0.992 0.384 1.984h-8.736q0.352-1.024 0.352-1.984 0-2.496-1.76-4.256t-4.224-1.76-4.256 1.76-1.76 4.256 1.76 4.224 4.256 1.76h1.984v8h-1.984q-2.528 0-4.256 1.792t-1.76 4.224zM4 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM4 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM12 20v-8h8v8h-8zM24 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM24 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408z"></path>
    </svg>
</jha-button>
Custom icon font

To use a custom icon font (such as Font Awesome), provide the <i> tag with the custom-icon slot name and the associated classes for your generated icon font.

Button with an custom font icon
<jha-button jhaText="Custom Font Icon">
    <i slot="custom-icon" class="fa-solid fa-user"></i>
</jha-button>
Displaying standalone enterprise icons outside of a Responsive UI component

You can also display a standalone enterprise icon outside of a Responsive UI component.

Begin by importing the JhaIconModule module into your application.

Import the module
/ import into app.module
import { JhaIconModule } from '@jkhy/responsive-ui-angular/jha-icon';

@NgModule({
    imports: [
        ...
        JhaIconModule,
        ...
    ]
})

export class AppModule(){}

A common use case for displaying a standalone enterprise icon outside of a Responsive UI component is templated lists.

Add an instance of jha-icon in the desired location within the template, specifying an icon name for the jhaIconType property. Specify a value for the jhaSize property if you’d like the icon to be larger than the default size.

You can modify the opacity for the jha-icon using CSS if that helps the icon blend better into the template.

Displaying a standalone icon in a templated list
<div *ngFor="let account of accountList" class="jha-template account-container">

    <jha-icon [jhaIconType]="account.iconType" jhaSize="28px" class="account-icon"></jha-icon>

    <div class="account-info">
        <div class="jha-bright-text-label">Account {{account.name}}</div>
         <div class="jha-regular-text-label">{{account.type}}</div>
    </div>

    <p class="jha-regular-text-label account-balance">
        {{account.balance | jhaCurrency}}
    </p>

</div>

To display an jha-icon with a custom icon, provide it within the slot. Ensure that the svg tag includes fill="currentColor" so the correct theming is inherited.

Displaying a standalone custom icon
<jha-icon size="28px" class="account-icon">
    <svg fill="currentColor" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg">
        <path d="M0 26.016q0 2.496 1.76 4.224t4.256 1.76 4.224-1.76 1.76-4.224v-2.016h8v2.016q0 2.496 1.792 4.256t4.224 1.728q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76h-2.016v-8h2.016q2.464 0 4.224-1.76t1.76-4.224-1.76-4.256-4.224-1.76-4.256 1.76-1.76 4.256q0 0.992 0.384 1.984h-8.736q0.352-1.024 0.352-1.984 0-2.496-1.76-4.256t-4.224-1.76-4.256 1.76-1.76 4.256 1.76 4.224 4.256 1.76h1.984v8h-1.984q-2.528 0-4.256 1.792t-1.76 4.224zM4 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM4 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM12 20v-8h8v8h-8zM24 26.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408zM24 6.016q0-0.832 0.576-1.408t1.44-0.608 1.408 0.608 0.576 1.408-0.576 1.408-1.408 0.576-1.44-0.576-0.576-1.408z"></path>
    </svg>
</jha-icon>

Design

Figma design

Figma design info
You can find this component in the Components - Icons page in the Figma UI Kit.

Many of our development components embed an icon within the component, including header and nav buttons, icon buttons, tiles, etc.

The design components work differently. You first set up the container component (often a type of button), then drag in an icon component, set its Usage to get the appropriate size and color, then move it to a higher layer than its container component so that it appears above it.

Add an Enterprise Icon to your Design

After you have the container component in place, find the name of the icon you want here.

Next, find the design component for that icon by pressing Shift+I in Figma to display the Components popup. Type the icon’s name into the search box in the popup until you see it listed. Note that you may see several assets that match the name. You’re looking for one whose name starts with “RUI / Icon /”. For example, the component name for the “Notes” icon is “RUI / Icon / Notes”.

Click the icon component in the popup and it is added to your design. The odds are that the icon has the incorrect position, size, and/or styling. We’ll fix that next.

Note that we did not include some of the “Icons for Account Types” that duplicate other existing icons. Here’s a list of those icons, along with their icon equivalent (which looks the same):

  • Collateral = Gold
  • CreditLine = Invoice
  • Customer = Person
  • InternetBanking = Web
  • LoginLogout = LockClosed
  • NonJHAMisc = Import
  • OverdraftProtection = Protected
  • Shareholder = Stock
  • TaxPlan = Calculation
  • TimeDeposit = Certificate
  • Vendor = Building

Set the Icon’s Usage

Select the icon element and choose an appropriate value for the icon component’s Usage property:

Icon ContextUsage
Header buttonsHeader Button
Nav buttonsNav Button
Primary buttonsPrimary Button
Secondary buttonsSecondary Button
Destructive buttonsDestructive Button
Disabled buttonsDisabled Button
Toggle buttons – onSecondary Button
Toggle buttons – offSecondary Button
Grid buttonsGrid Button
Tree view nodesGrid Button
Large and Wide tilesLarge and Wide Tiles
Large and Wide tiles - disabledLarge and Wide Tiles: also manually change the icon fill color to “#999999”.
Large and Wide tiles - errorLarge and Wide Tiles: also manually change the icon fill color to “#A80000” and set the icon opacity to 40%.
Small tilesSmall Tiles
Small tiles - disabledSmall Tiles: also manually change the icon fill color to “#999999”.
Small tiles - errorSmall Tiles: also manually change the icon fill color to “#A80000” and set the icon opacity to 40%.
Icon in a templated listDefault (You can optionally change the icon’s opacity to help it blend well within the template.)

Position the Icon

Once the icon has the correct state, move it to the appropriate X,Y position in your design. Also, an icon for a button must appear above the button component in the Layers panel to be visible.

After the icon has the correct state and is in the correct position, it can be helpful to group the icon and its container so you can work with them together. Give the group a meaningful name so that anyone working on this design understands what’s in the group.


Adobe XD design

Adobe XD design info
You can find this component in these artboards in the Adobe XD design samples:
  • Guidance - Icon Usage

Many of our development components embed an icon within the component, including header and nav buttons, icon buttons, tiles, etc.

The design components work differently. You first set up the container component (often a type of button), then drag in an icon component, set its Usage to get the appropriate size and color, then move it to a higher layer than its container component so that it appears above it.

Add an Enterprise Icon to your Design

After you have the container component in place, find the name of the icon you want here.

Find the design component for that icon by typing its name into the Asset filter box in Adobe XD until you see it listed. Note that you may see several assets that match the name. You’re looking for one whose name starts with “JHA / Icon /”. For example, the component name for the “Notes” icon is “JHA / Icon / Notes”.

When searching for library assets in the Libraries panel, it’s important to consider the context for that search:

  • If you search from the Document Assets section of the Libraries panel, you’ll only see search results for components and icons that have already been used in this design document. If the item you’re searching for hasn’t already been used in the document, it won’t show up in the search results in this context.
  • If you search from the JHA Responsive UI Kit section of the Libraries panel, you’ll see search results for components and icons in the UI kit. This is typically the best context from which to search.
  • If you search from the topmost section of the Libraries panel, you’ll see search results for components and icons that are either currently being used in this design document (from the Document Assets context) or are in the UI kit (from the JHA Responsive UI Kit context). So you may see duplicate search results when searching from this context. You can hover the mouse over a search result to see which context it’s coming from.

The Document Assets section of the Libraries panel is typically the default context in the Libraries panel, so if you want to search just the UI kit, you’ll need to back up a level to the topmost context, then move down into the JHA Responsive UI Kit context to perform your search.

Drag the icon component from the Assets panel into your artboard. The odds are that the icon has the incorrect position, size, and/or styling. We’ll fix that next.

Note that we did not include some of the “Icons for Account Types” that duplicate other existing icons. Here’s a list of those icons, along with their icon equivalent (which looks the same):

  • Collateral = Gold
  • CreditLine = Invoice
  • Customer = Person
  • InternetBanking = Web
  • LoginLogout = LockClosed
  • NonJHAMisc = Import
  • OverdraftProtection = Protected
  • Shareholder = Stock
  • TaxPlan = Calculation
  • TimeDeposit = Certificate
  • Vendor = Building

Set the Icon’s Usage

Select the icon element and choose an appropriate value for the icon component’s Usage property:

Icon ContextUsage
Header buttonsHeader Button
Nav buttonsNav Button
Nav dropdown optionsNav Dropdown Option
Primary buttonsPrimary Button
Secondary buttonsSecondary Button
Destructive buttonsDestructive Button
Disabled buttonsDisabled Button
Toggle buttons – onSecondary Button
Toggle buttons – offSecondary Button
Grid buttonsGrid Button
Tree view nodesGrid Button
Large and Wide tilesLarge and Wide Tiles
Large and Wide tiles - disabledLarge and Wide Tiles: also manually change the icon fill color to “#999999”.
Large and Wide tiles - errorLarge and Wide Tiles: also manually change the icon fill color to “#A80000” and set the icon opacity to 40%.
Small tilesSmall Tiles
Small tiles - disabledSmall Tiles: also manually change the icon fill color to “#999999”.
Small tiles - errorSmall Tiles: also manually change the icon fill color to “#A80000” and set the icon opacity to 40%.
Icon in a templated listDefault state (You can optionally change the icon’s opacity to help it blend well within the template.)

Position the Icon

Once the icon has the correct state, move it to the appropriate X,Y position in your design. Also, an icon for a button must appear above the button component in the Layers panel to be visible.

After the icon has the correct state and is in the correct position, it can be helpful to group the icon and its container so you can work with them together. Give the group a meaningful name so that anyone working on this design understands what’s in the group.


Support options
Have questions on this topic?
Join the Responsive UI team in Microsoft Teams to connect with the community.
See something in this page that needs to change?
Send us feedback on this page.
Last updated Fri Jul 28 2023