Skip to content

Commit d03f1f3

Browse files
committed
don't set default tintColor for icon buttons
1 parent b374332 commit d03f1f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/button/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export default class Button extends PureBaseComponent {
253253
} else if (outline) {
254254
color = outlineColor || Colors.blue30;
255255
} else if (this.isIconButton) {
256-
color = Colors.dark10;
256+
color = undefined; // Colors.dark10;
257257
}
258258

259259
if (disabled && (link || outline)) {

0 commit comments

Comments
 (0)