bitwarden-estensione-browser/libs/components/src/submit-button/submit-button.component.ts

14 lines
336 B
TypeScript

import { Component, Input } from "@angular/core";
import { ButtonTypes } from "../button";
@Component({
selector: "bit-submit-button",
templateUrl: "./submit-button.component.html",
})
export class SubmitButtonComponent {
@Input() buttonType: ButtonTypes = "primary";
@Input() disabled = false;
@Input() loading: boolean;
}