Zur Navigation Zum Inhalt Kontakt Menu Komponente finden Übersicht Lyne Prinzipien Grundlagen Barrierefreiheit Design System Guidelines Deutsch Français Italiano English Unsere Gestaltungsprinzipien Nutzerzentriert Wiedererkennbar Inklusiv Reduziert Ganzheitlich Selbsterklärend Aufgabenorientiert Passend SBB Markenportal Logo Digitale Uhr Nutzungsrechte Basis-Farben Funktionale Farben Off-Brand Farben Icons Fahrplan-Icons Piktogramme Über Barrierefreiheit Über diesen Guide Kontakt Weitere Informationen Product Owner User Research Interaction Design Visual Design Development Content Design Testing Was ist ein Design System?​ Designing Coding FAQ Hilfe Prozess Contribution Kontakt Übersicht Basis Komponenten Übersicht Releases Design Tokens Komponenten Übersicht Basis Informationen Übersicht Basis Komponenten Sinn & Zweck Community Assets Anleitung Power-Apps Digitale Werbebanner SAP App Icons Secondary-Button (Link) Info

Was macht die Komponente?

Ein Button ist ein interaktives Element, das eine Aktion auslöst, wenn er angeklickt wird.

Wann soll die Komponente eingesetzt werden?

  • Um eine primäre oder sekundäre Aktion auf einer Seite auszuführen.
  • Um das Absenden von Formularen zu ermöglichen.
  • Um Interaktionen, wie das Öffnen von Dialogen oder das Navigieren zu einer anderen Seite, zu ermöglichen.

Regeln

  • Ein Button soll klar beschriftet sein und eine eindeutige Aktion beschreiben.
Anatomie
Anatomie der Komponente
Nummer Typ Beschreibung Optional Hinweis
1 Komponente sbb-icon Ja Ein Icon oder ein Label ist zu setzen.
2 Text Label Ja Ein Icon oder ein Label ist zu setzen.
Demo

Spielwiese

Label
Grössen M L Icon Ja Nein Label Ja Nein Negativ Nein Ja Hintergrund White Milk Iron Charcoal Black

Beispiele

Default
Negative
Disabled
Negative Disabled
Icon Only
Icon Only Negative
Icon Only Disabled
No Icon
Size M
Size S
Fixed Width
With Slotted Icon
Loading Indicator
With Hidden Slotted Icon
HTML-Markup kopiert.
Implementation

The sbb-secondary-button-link component provides the same functionality as a native <a>,
despite its appearance as a button enhanced with the SBB Design in the 'secondary' variant.

<sbb-secondary-button-link href="https://www.sbb.ch">Button text</sbb-secondary-button-link>

Slots

The text is provided via an unnamed slot; the component can optionally display a sbb-icon
at the component start using the iconName property or via custom content using the icon slot.
At least one is mandatory, so you can have a sbb-secondary-button-link with icon only, text only, or with both.

<sbb-secondary-button-link href="https://www.sbb.ch" icon-name="info">
  Button text
</sbb-secondary-button-link>

<sbb-secondary-button-link href="https://www.sbb.ch">
  <sbb-icon slot="icon" name="info"></sbb-icon>
  Button text
</sbb-secondary-button-link>

<sbb-secondary-button-link
  href="https://www.sbb.ch"
  icon-name="info"
  accessibility-label="Click for more information."
></sbb-secondary-button-link>

Link properties

The component is internally rendered as a link,
accepting its associated properties (href, target, rel and download).

<sbb-secondary-button-link
  href="https://github.com/sbb-design-systems/lyne-components"
  target="_blank"
>
  Go to site
</sbb-secondary-button-link>

Style

The component has a negative variant which can be set using the negative property.

There are two different sizes (m and l, which is the default) that can be set using the size property.

The component can be displayed in disabled state using the self-named property.

<sbb-secondary-button-link href="https://www.sbb.ch" negative>Button</sbb-secondary-button-link>

<sbb-secondary-button-link href="https://www.sbb.ch" size="m">Button</sbb-secondary-button-link>

<sbb-secondary-button-link href="https://www.sbb.ch" disabled>Button</sbb-secondary-button-link>

Focus outline

Please make sure that the focus outline appears in the correct color if the component is used on a dark background.
You can set it by re-defining the css var on sbb-secondary-button-link or any parent element:

sbb-secondary-button-link {
  --sbb-focus-outline-color: var(--sbb-focus-outline-color-dark);
}

Accessibility

Use the accessibility properties in case of an icon-only button to describe the purpose of the sbb-secondary-button-link for screen-reader users.

Properties

Name Attribute Privacy Type Default Description
accessibilityLabel accessibility-label public string | undefined This will be forwarded as aria-label to the inner anchor element.
disabled disabled public boolean false Whether the component is disabled.
download download public boolean | undefined Whether the browser will show the download dialog on click.
href href public string | undefined The href value you want to link to.
iconName icon-name public string | undefined The icon name we want to use, choose from the small icon variants from the ui-icons category from here https://icons.app.sbb.ch.
negative negative public boolean false Negative coloring variant flag.
rel rel public string | undefined The relationship of the linked URL as space-separated link types.
size size public SbbButtonSize | undefined 'l' Size variant, either l or m.
target target public LinkTargetType | string | undefined Where to display the linked URL.

Slots

Name Description
Use the unnamed slot to add content to the secondary-button-link.
icon Slot used to display the icon, if one is set
Impressum Kontakt Cookie Einstellungen