From 17595f9e654cf29e08de186d801aaa9d8e00f8ff Mon Sep 17 00:00:00 2001 From: John Kapantzakis Date: Thu, 27 Nov 2025 14:34:40 +0200 Subject: [PATCH] Add iconRotate prop to button --- src/components/button/button.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/button/button.js b/src/components/button/button.js index d650c047..f13cff48 100644 --- a/src/components/button/button.js +++ b/src/components/button/button.js @@ -16,6 +16,7 @@ export const Button = ({ iconSize, iconWidth, iconHeight, + iconRotate = 0, children = label, ref, ...rest @@ -42,6 +43,7 @@ export const Button = ({ name={icon} width={iconWidth} height={iconHeight} + rotate={iconRotate} /> )}