lighteningcards 2.1.4 → 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +12 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +12 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/generateBaccaratCardSVG.js +12 -0
package/dist/index.cjs.js
CHANGED
|
@@ -44626,6 +44626,18 @@ const generateBaccaratCardSVG = (rank, suit, width = 200, height = 280) => {
|
|
|
44626
44626
|
</feMerge>
|
|
44627
44627
|
</filter>
|
|
44628
44628
|
</defs>
|
|
44629
|
+
|
|
44630
|
+
<!-- Black background rectangle with rounded corners matching the border -->
|
|
44631
|
+
<rect
|
|
44632
|
+
x="5"
|
|
44633
|
+
y="5"
|
|
44634
|
+
width="${width - 10}"
|
|
44635
|
+
height="${height - 10}"
|
|
44636
|
+
rx="${cornerRadius}"
|
|
44637
|
+
ry="${cornerRadius}"
|
|
44638
|
+
fill="#000000"
|
|
44639
|
+
/>
|
|
44640
|
+
|
|
44629
44641
|
<!-- Card background with rounded corners - transparent background -->
|
|
44630
44642
|
<rect
|
|
44631
44643
|
x="5"
|