mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
Merge pull request #3788 from tylershuster/clock-mask-always
clock: always draw large arc
This commit is contained in:
commit
0920b83f2d
@ -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} />;
|
||||
|
Loading…
Reference in New Issue
Block a user