-
Notifications
You must be signed in to change notification settings - Fork 5
lux‐badge v16
Thomas Dickhut edited this page Mar 12, 2024
·
3 revisions
Name | Beschreibung |
---|---|
import | LuxCommonModule |
selector | lux-badge |
Name | Typ | Beschreibung |
---|---|---|
luxUppercase | boolean | Bestimmt ob der Text innerhalb der Badge nur mit Großbuchstaben dargestellt wird. |
luxIconName | string | Enthält den Namen des Icons, welches für die Badge angezeigt werden soll (z.B. 'fa-bars'). |
luxColor | LuxBadgeColor | Bestimmt die Hintergrundfarbe und davon abhängig die Schrift- farbe des Badges. |
Name | Typ | Beschreibung |
---|---|---|
lux-label | Die Bezeichnung des Badges. |
Html
<lux-badge luxIconName="fas fa-user" luxColor="red">
<lux-label luxId="Badge_red"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user" luxColor="blue">
<lux-label luxId="Badge_blue"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user" luxColor="green">
<lux-label luxId="Badge_green"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user" luxColor="gray">
<lux-label luxId="Badge_gray"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user" luxColor="orange">
<lux-label luxId="Badge_orange"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user" luxColor="brown">
<lux-label luxId="Badge_brown"> Badge </lux-label>
</lux-badge>
<lux-badge luxIconName="fas fa-user">
<lux-label luxId="Badge_no_color"> Badge ohne Farbe </lux-label>
</lux-badge>
<lux-badge luxColor="red" [luxUppercase]="false">
<lux-label luxId="Badge_no_icon"> Badge ohne Icon </lux-label>
</lux-badge>
-
Versionen