From f52a06a6eafbaabbb34f51428508cc609fc1adfc Mon Sep 17 00:00:00 2001 From: Cj Jordan Date: Tue, 21 Feb 2023 23:29:37 -0500 Subject: [PATCH] adds flexibility to wheel styling --- packages/color-wheel/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/color-wheel/src/index.tsx b/packages/color-wheel/src/index.tsx index e660bd977..421c1c137 100644 --- a/packages/color-wheel/src/index.tsx +++ b/packages/color-wheel/src/index.tsx @@ -59,10 +59,10 @@ const Wheel = React.forwardRef((props, ref) => { className={[prefixCls, className || ''].filter(Boolean).join(' ')} {...other} style={{ - ...style, position: 'relative', width, height, + ...style, }} ref={ref} onMove={handleChange}