An icon is a graphic symbol that is used to visually represent functions, content or actions and improve the user experience.
The sbb-icon component provides a solid way of rendering registered and named icons.
The component will dynamically load an SVG for each icon, avoiding multiple requests to the same icon.
The icon components are not tied to specific icon sets; you can register custom namespaces
and then provide the sbb-icon with the name property in the format name="icon-name" or name="namespace:icon-name".
Note that if you do not provide a namespace, the default namespace will be used pointing to the SBB Icons CDN.
<!-- Will use the default namespace -->
<sbb-icon name="app-icon-medium"></sbb-icon>
** Register custom icon namespace **
import { mergeConfig } from '@sbb-esta/lyne-elements/core/config.js';
mergeConfig({
icon: {
namespaces: new Map<string, string>().set('your-namespace', 'https://domain-of-your-icons/'),
},
});
** Register custom interceptor **
import { mergeConfig } from '@sbb-esta/lyne-elements/core/config.js';
mergeConfig({
icon: {
interceptor: ({ namespace, name, request }) => {
if (namespace === 'your-namespace') {
// Do your own logic
return Promise.resolve(`<svg-fake data-name="${name}"></svg-fake>`);
}
return request();
},
},
});
Custom namespaces and interceptors must be registered globally before the first request is made.
If using the default SBB CDN, ensure that the icon name has the size suffix.
E.g. if in the Design (Figma) the icon is called 'circle-plus', the icon name will be either 'circle-plus-small' or 'circle-plus-medium'.
Similar to an <img> element, an icon alone does not convey any useful information for a screen-reader user.
The user of sbb-icon must provide additional information pertaining to how the icon is used.
Based on the use-cases described below, sbb-icon is marked as aria-hidden="true" by default,
but this can be overridden by adding aria-hidden="false" to the element.
In thinking about accessibility, it is useful to place icon use into one of three categories:
| Name | Attribute | Privacy | Type | Default | Description |
|---|---|---|---|---|---|
name | name | public | string | '' | The provided name consisting of the namespace and the name of the icon. If the namespace is missing, the default namespace "sbb" will be used. E.g. name (will use "sbb" as namespace) or namespace:name. |
noSanitize | no-sanitize | public | boolean | false | When set to true, SVG content that is HTTP fetched will not be checked if the response SVG content has any <script> elements, or any attributes that start with on, such as onclick. |
| Name | Default | Description |
|---|---|---|
--sbb-icon-svg-height | auto | Can be used to set a custom height. |
--sbb-icon-svg-width | auto | Can be used to set a custom width. |