From a8901f810d6baa1f0c96d3f7db898fa7a44dfdd2 Mon Sep 17 00:00:00 2001 From: Chef Hachioji <72719739+hachiojidev@users.noreply.github.com> Date: Tue, 9 Mar 2021 09:58:21 +0900 Subject: [PATCH] feat(button): Add current color to start/end icons (#210) --- src/components/Button/Button.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Button/Button.tsx b/src/components/Button/Button.tsx index 0c941e28e..08c2853c0 100644 --- a/src/components/Button/Button.tsx +++ b/src/components/Button/Button.tsx @@ -29,11 +29,13 @@ const Button = (props: ButtonProps): JSX.El {isValidElement(startIcon) && cloneElement(startIcon, { mr: "0.5rem", + color: "currentColor", })} {children} {isValidElement(endIcon) && cloneElement(endIcon, { ml: "0.5rem", + color: "currentColor", })}