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 = ( 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>
); );