diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-21 00:32:25 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-21 00:32:25 +0000 |
| commit | 8f14e9f50fae51e09fdfb529af389a046b4672f6 (patch) | |
| tree | 3043bc29fe0c3746964e9c94fa4e61228183565f /apps/web/components/ui/button.tsx | |
| parent | 23941ff79ac201a233bda5e2d03bd4f76f52c8fd (diff) | |
| download | karakeep-8f14e9f50fae51e09fdfb529af389a046b4672f6.tar.zst | |
fix: Reset add list form form on submission
Diffstat (limited to '')
| -rw-r--r-- | apps/web/components/ui/button.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/web/components/ui/button.tsx b/apps/web/components/ui/button.tsx index 5ed8df91..42c8f137 100644 --- a/apps/web/components/ui/button.tsx +++ b/apps/web/components/ui/button.tsx @@ -12,6 +12,8 @@ const buttonVariants = cva( default: "bg-primary text-primary-foreground hover:bg-primary/90", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", + destructiveOutline: + "border border-destructive bg-transparent text-destructive hover:bg-destructive/90 hover:text-destructive-foreground", outline: "border border-input bg-background hover:bg-accent hover:text-accent-foreground", secondary: |
