Skip to content

Commit

Permalink
fix blur button icon color (#598)
Browse files Browse the repository at this point in the history
* add

* f

* f

* Create serious-carpets-promise.md
  • Loading branch information
prichodko authored Oct 10, 2024
1 parent aeee77e commit a3f9252
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-carpets-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@status-im/components": patch
---

fix `<Button />` icon color for blur variant
10 changes: 6 additions & 4 deletions packages/components/src/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,18 @@ const iconStyles = cva({
variant: {
primary: ['text-blur-white/70'],
positive: ['text-blur-white/70'],
grey: ['text-neutral-50'],
darkGrey: [
grey: [
'text-neutral-50',
'blur:text-neutral-80/40',
'dark:text-neutral-40',
'blur:dark:text-neutral-80/40',
'blur:dark:text-white-40',
],
darkGrey: ['text-neutral-40'],
outline: [
'text-neutral-50',
'blur:text-neutral-80/40',
'dark:text-neutral-40',
'blur:dark:text-neutral-80/40',
'blur:dark:text-white-40',
],
ghost: ['text-neutral-50'],
danger: ['text-blur-white/70'],
Expand Down

0 comments on commit a3f9252

Please sign in to comment.