Zur Navigation Zum Inhalt Kontakt Menu Find component Overview Lyne Principles Foundation Accessibility Design System Guidelines Deutsch Français Italiano English Our design principles User-centred Recognisable Inclusive Reduced Holistic Self-explanatory Task-oriented Appropriate SBB Brand portal Logo Digital clock Rights of use Base colors Functional colors Off brand colors Icons Timetable icons Pictograms About accessibility Über diesen Guide Contact Further information Product Owner User Research Interaction Design Visual Design Development Content Design Testing What is a design system? Designing Coding FAQ Help Process Contribution Contact Overview Base Components Overview Releases Design Tokens Komponenten Overview Base Informationen Overview Base Components Sense & Purpose Community Assets Instructions Power-Apps Digital banner ads SAP Design Guidelines App Icons Tertiary-Button Info

What does the component do?

A button is an interactive element that triggers an action when it is clicked.

When should the component be used?

  • To perform a primary or secondary action on a page.
  • To enable the user to submit forms.
  • To enable interactions for example opening dialogues or navigating to another page.

Rules

  • A button should be clearly labelled and describe a specific action.

Variants

Tertiary-Button (Link)Tertiary-Button (Static)

Sibling Components

Primary-ButtonMini-ButtonSecondary-ButtonTertiary-ButtonTransparent-Button
Anatomy
Anatomy of the component
Number Type Description Optional Info
1 Component sbb-icon Yes Ein Icon oder ein Label ist zu setzen.
2 Text Label Yes Ein Icon oder ein Label ist zu setzen.
Demo

Playground

Label
Sizes M L Icon Yes No Label Yes No Negative No Yes Background White Milk Iron Charcoal Black

Examples

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
Request Submit
With Hidden Slotted Icon
HTML-Markup kopiert.
Implementation

The sbb-tertiary-button component provides the same functionality as a native <button>
enhanced with the SBB Design in the 'tertiary' variant.

<sbb-tertiary-button>Button text</sbb-tertiary-button>

Slots

The button 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-tertiary-button with icon only, text only, or with both.

<sbb-tertiary-button icon-name="info"> Button text </sbb-tertiary-button>

<sbb-tertiary-button>
  <sbb-icon slot="icon" name="info"></sbb-icon>
  Button text
</sbb-tertiary-button>

<sbb-tertiary-button
  icon-name="info"
  aria-label="Click for more information."
></sbb-tertiary-button>

Button properties

The component is internally rendered as a button,
accepting its associated properties (type, name, value and form).

<sbb-tertiary-button type="submit" name="tickets" form="buy" value="tickets">
  Buy tickets
</sbb-tertiary-button>

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-tertiary-button negative>Button</sbb-tertiary-button>

<sbb-tertiary-button size="m">Button</sbb-tertiary-button>

<sbb-tertiary-button disabled>Button</sbb-tertiary-button>

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-tertiary-button or any parent element:

sbb-tertiary-button {
  --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-tertiary-button for screen-reader users.

Properties

Name Attribute Privacy Type Default Description
disabled disabled public boolean false Whether the component is disabled.
form form public string | undefined The
element to associate the button with.
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.
name name public string The name of the button element.
negative negative public boolean false Negative coloring variant flag.
size size public SbbButtonSize | undefined 'l' Size variant, either l or m.
type type public SbbButtonType 'button' The type attribute to use for the button.
value value public string The value of the button element.

Slots

Name Description
Use the unnamed slot to add content to the tertiary-button.
icon Slot used to display the icon, if one is set
Imprint Contact Cookie settings