fix: button color
This commit is contained in:
parent
be85c74b2a
commit
dddeb52f09
2 changed files with 3 additions and 3 deletions
|
@ -77,10 +77,10 @@ const Button = forwardRef<any, {}>((props: Props, ref: any) => {
|
||||||
|
|
||||||
const content = (
|
const content = (
|
||||||
<span className="button__content">
|
<span className="button__content">
|
||||||
{icon && <Icon icon={icon} size={iconSize} />}
|
{icon && <Icon icon={icon} iconColor={iconColor} size={iconSize} />}
|
||||||
{label && <span className="button__label">{label}</span>}
|
{label && <span className="button__label">{label}</span>}
|
||||||
{children && children}
|
{children && children}
|
||||||
{iconRight && <Icon icon={iconRight} size={iconSize} />}
|
{iconRight && <Icon icon={iconRight} iconColor={iconColor} size={iconSize} />}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -359,4 +359,4 @@
|
||||||
"Error data": "Error data",
|
"Error data": "Error data",
|
||||||
"Error": "Error",
|
"Error": "Error",
|
||||||
"We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem.": "We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem."
|
"We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem.": "We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue