Skip to content

Commit

Permalink
fix: outerRadius in default props
Browse files Browse the repository at this point in the history
  • Loading branch information
ridvanaltun committed Aug 21, 2022
1 parent f3e4003 commit 7ca2ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LuckyWheel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const LuckyWheel = forwardRef<LuckyWheelHandle, ILuckyWheel>((props, ref) => {
const defaultProps: ILuckyWheelOptionalProps = {
duration: 4,
innerRadius: 30,
outerRadius: (width - 40) / 2 - 15,
outerRadius: 13,
padAngle: 0.01,
backgroundColor: '#FFF',
size: width - 40,
Expand Down

0 comments on commit 7ca2ddd

Please sign in to comment.