fix Tab icons color (#483)

* fix Tab icons color

* ch
This commit is contained in:
Felicio Mununga 2023-09-26 12:36:48 +02:00 committed by GitHub
parent 47d5316480
commit a159ac946c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'@status-im/components': patch
---
fix Tab icons color

View File

@ -111,7 +111,10 @@ const TabsTrigger = (props: TriggerProps, ref: Ref<View>) => {
active={selected}
>
{props.type === 'icon' &&
cloneElement(props.icon, { size: iconSizes[size] })}
cloneElement(props.icon, {
size: iconSizes[size],
color,
})}
{props.type === 'step' && <Step type="complete" value={props.step} />}