1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

[CL-925] add filled danger button (#17633)

* add dangerPrimary button variant

* add dangerPrimary to small story
This commit is contained in:
Bryan Cunningham
2025-11-24 13:08:25 -05:00
committed by GitHub
parent 4c36a46ef2
commit 613e0c5461
3 changed files with 17 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
import { ModelSignal } from "@angular/core";
export type ButtonType = "primary" | "secondary" | "danger" | "unstyled";
export type ButtonType = "primary" | "secondary" | "danger" | "dangerPrimary" | "unstyled";
export type ButtonSize = "default" | "small";