import { Component, input } from '@angular/core'; export type ButtonVariant = 'primary' | 'secondary' | 'danger'; @Component({ selector: 'ev-button', standalone: true, templateUrl: './button.html', styleUrl: './button.scss', }) export class Button { variant = input('primary'); type = input<'button' | 'submit'>('button'); disabled = input(false); fullWidth = input(true); }