mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
* Begin implementing submit button * Add submit button * Update figma url * Add disabled when loading * Update existing submit buttons * Move template to it's own file
14 lines
336 B
TypeScript
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;
|
|
}
|