diff --git a/beta/src/components/Icon/IconArrow.tsx b/beta/src/components/Icon/IconArrow.tsx
index 6c93c7758..942f8a2db 100644
--- a/beta/src/components/Icon/IconArrow.tsx
+++ b/beta/src/components/Icon/IconArrow.tsx
@@ -19,7 +19,7 @@ export const IconArrow = React.memo<
fill="currentColor"
{...rest}
className={cn(className, {
- 'transform rotate-180': displayDirection === 'right',
+ 'rotate-180': displayDirection === 'right',
})}>
diff --git a/beta/src/components/Icon/IconArrowSmall.tsx b/beta/src/components/Icon/IconArrowSmall.tsx
index e415b9fac..ed838882e 100644
--- a/beta/src/components/Icon/IconArrowSmall.tsx
+++ b/beta/src/components/Icon/IconArrowSmall.tsx
@@ -11,8 +11,8 @@ export const IconArrowSmall = React.memo<
}
>(function IconArrowSmall({displayDirection, className, ...rest}) {
const classes = cn(className, {
- 'transform rotate-180': displayDirection === 'left',
- 'transform rotate-90': displayDirection === 'down',
+ 'rotate-180': displayDirection === 'left',
+ 'rotate-90': displayDirection === 'down',
});
return (