Merge pull request #3788 from tylershuster/clock-mask-always

clock: always draw large arc
This commit is contained in:
matildepark 2020-10-27 13:44:08 -04:00 committed by GitHub
commit 0920b83f2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,7 +107,7 @@ const SvgArc = ({ start, end, ...rest }) => {
const d = [
'M', CX, CY,
'L', x1, y1,
'A', RADIUS, RADIUS, '0', (isLarge ? '1' : '0'), '1', x2, y2, 'z'
'A', RADIUS, RADIUS, '0', '1', '1', x2, y2, 'z'
].join(' ');
return <path d={d} {...rest} />;