mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 02:55:04 -05:00
fix(button): change loader color of secondary button to dark:text-slate-900 (#3795)
This commit is contained in:
committed by
GitHub
parent
0f2f3b1af8
commit
700068dc9f
@@ -122,7 +122,9 @@ export const Button: React.ForwardRefExoticComponent<
|
||||
<svg
|
||||
className={cn(
|
||||
"mx-4 h-5 w-5 animate-spin",
|
||||
variant === "primary" ? "text-white dark:text-slate-900" : "text-slate-900"
|
||||
variant === "primary" || variant === "secondary"
|
||||
? "text-white dark:text-slate-900"
|
||||
: "text-slate-900"
|
||||
)}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
|
||||
Reference in New Issue
Block a user