fix: button color

This commit is contained in:
Sean Yesmunt 2019-06-26 16:17:39 -04:00
parent be85c74b2a
commit dddeb52f09
2 changed files with 3 additions and 3 deletions

View file

@ -77,10 +77,10 @@ const Button = forwardRef<any, {}>((props: Props, ref: any) => {
const 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>}
{children && children}
{iconRight && <Icon icon={iconRight} size={iconSize} />}
{iconRight && <Icon icon={iconRight} iconColor={iconColor} size={iconSize} />}
</span>
);

View file

@ -359,4 +359,4 @@
"Error data": "Error data",
"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."
}
}