Files
ShopSolution-frontend/src/app/shared/components/ui/button/button.component.html
Tizian.Breuch c65aef11ca styles
2025-09-08 19:27:46 +02:00

16 lines
549 B
HTML

<button
[type]="type"
[disabled]="disabled"
class="btn"
[class.btn-primary]="color === 'primary'"
[class.btn-secondary]="color === 'secondary'"
[class.btn-stroked]="color === 'stroked'"
[class.btn-flat]="color === 'flat'"
[class.btn-icon]="color === 'icon' || color === 'icon-danger'"
[class.btn-icon-danger]="color === 'icon-danger'"
[class.btn-full-width]="fullWidth"
[attr.data-tooltip]="tooltip">
<!-- ng-content erlaubt es, Text oder SVGs von außen in den Button einzufügen -->
<ng-content></ng-content>
</button>