Skip to content

Commit

Permalink
2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rosskhanas committed Dec 13, 2022
1 parent 02f3d16 commit ade96f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-qr-code",
"version": "2.0.10",
"version": "2.0.11",
"description": "A QR code generator for React and React Native.",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion src/QRCodeSvg/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const QRCodeSvg = forwardRef(({ bgColor, bgD, fgD, fgColor, size, viewBoxSize, .
viewBox={`0 0 ${viewBoxSize} ${viewBoxSize}`}
width={size}
>
<path d={bgD} fill={bgColor} />
<Path d={bgD} fill={bgColor} />
<Path d={fgD} fill={fgColor} />
</Svg>
));
Expand Down

0 comments on commit ade96f8

Please sign in to comment.