Skip to content

Commit

Permalink
Merge pull request #50 from 425765923/sig-dev
Browse files Browse the repository at this point in the history
test: add rect(rx ry) test case
  • Loading branch information
425765923 authored May 11, 2024
2 parents c031245 + 7299048 commit 4e32fd9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tester/svgDemoCases/components/genRect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,26 @@ const basicCases: CaseParams[] = [
fill: 'green',
opacity:'0.1'
},
{
width: 90,
height: 60,
fill: 'green',
opacity:'0.1'
},
{
width: 90,
height: 60,
fill: 'green',
rx:10,
ry:10
},
{
width: 90,
height: 60,
fill: 'green',
rx:30,
ry:10
},
],
},
];
Expand Down

0 comments on commit 4e32fd9

Please sign in to comment.