@thesvg/react 0.8.0 → 0.9.0
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/glincker.cjs +31 -3
- package/dist/glincker.js +12 -3
- package/package.json +1 -1
package/dist/glincker.cjs
CHANGED
|
@@ -1,14 +1,42 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// @thesvg/react — GLINCKER
|
|
3
3
|
// Auto-generated. Do not edit.
|
|
4
|
-
// WARNING: SVG source not found for slug "glincker"
|
|
5
4
|
|
|
6
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
6
|
|
|
8
7
|
const react_1 = require("react");
|
|
9
8
|
|
|
10
|
-
const Glincker = react_1.forwardRef(function Glincker(
|
|
11
|
-
return
|
|
9
|
+
const Glincker = react_1.forwardRef(function Glincker({ viewBox = '0 0 375 374.999991', ...props }, ref) {
|
|
10
|
+
return react_1.createElement(
|
|
11
|
+
'svg',
|
|
12
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[
|
|
14
|
+
{
|
|
15
|
+
"type": "path",
|
|
16
|
+
"props": {
|
|
17
|
+
"fill": "#ffffff",
|
|
18
|
+
"d": "M 53.101562 187.5 C 89.175781 151.425781 125.25 115.351562 161.398438 79.199219 L 161.398438 26.101562 C 107.625 79.875 53.773438 133.726562 0 187.5 C 53.773438 241.273438 107.625 295.125 161.398438 348.898438 L 161.398438 295.800781 C 125.324219 259.726562 89.175781 223.574219 53.101562 187.5 Z M 268.800781 187.5 L 242.25 160.949219 C 224.023438 179.175781 205.800781 197.398438 187.5 215.699219 L 159.300781 187.5 C 186.375 160.425781 213.523438 133.273438 240.601562 106.199219 C 267.675781 133.273438 294.824219 160.351562 321.898438 187.5 C 285.976562 223.425781 249.976562 259.425781 214.050781 295.351562 L 187.5 268.800781 C 214.574219 241.726562 241.726562 214.574219 268.800781 187.5 Z M 187.5 268.800781 L 187.5 375 C 249.976562 312.523438 312.523438 249.976562 375 187.5 C 312.523438 125.023438 249.976562 62.476562 187.5 0 L 187.5 106.199219 C 160.425781 133.273438 133.273438 160.351562 106.199219 187.5 C 133.726562 215.023438 160.351562 241.574219 187.5 268.800781 Z M 187.5 268.800781 ",
|
|
19
|
+
"fillOpacity": "1",
|
|
20
|
+
"fillRule": "evenodd"
|
|
21
|
+
},
|
|
22
|
+
"children": []
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "path",
|
|
26
|
+
"props": {
|
|
27
|
+
"fill": "#000000",
|
|
28
|
+
"d": "M 53.101562 187.5 C 89.175781 151.425781 125.25 115.351562 161.398438 79.199219 L 161.398438 26.101562 C 107.625 79.875 53.773438 133.726562 0 187.5 C 53.773438 241.273438 107.625 295.125 161.398438 348.898438 L 161.398438 295.800781 C 125.324219 259.726562 89.175781 223.574219 53.101562 187.5 Z M 268.800781 187.5 L 242.25 160.949219 C 224.023438 179.175781 205.800781 197.398438 187.5 215.699219 L 159.300781 187.5 C 186.375 160.425781 213.523438 133.273438 240.601562 106.199219 C 267.675781 133.273438 294.824219 160.351562 321.898438 187.5 C 285.976562 223.425781 249.976562 259.425781 214.050781 295.351562 L 187.5 268.800781 C 214.574219 241.726562 241.726562 214.574219 268.800781 187.5 Z M 187.5 268.800781 L 187.5 375 C 249.976562 312.523438 312.523438 249.976562 375 187.5 C 312.523438 125.023438 249.976562 62.476562 187.5 0 L 187.5 106.199219 C 160.425781 133.273438 133.273438 160.351562 106.199219 187.5 C 133.726562 215.023438 160.351562 241.574219 187.5 268.800781 Z M 187.5 268.800781 ",
|
|
29
|
+
"fillOpacity": "1",
|
|
30
|
+
"fillRule": "evenodd"
|
|
31
|
+
},
|
|
32
|
+
"children": []
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
.map(function(el) {
|
|
36
|
+
if (typeof el === 'string') return el;
|
|
37
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []));
|
|
38
|
+
})
|
|
39
|
+
);
|
|
12
40
|
});
|
|
13
41
|
Glincker.displayName = 'Glincker';
|
|
14
42
|
|
package/dist/glincker.js
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
// @thesvg/react — GLINCKER
|
|
2
2
|
// Auto-generated. Do not edit.
|
|
3
|
-
// WARNING: SVG source not found for slug "glincker"
|
|
4
3
|
|
|
5
4
|
import { forwardRef } from 'react';
|
|
6
5
|
import type { SVGProps } from 'react';
|
|
7
6
|
|
|
8
7
|
const Glincker = forwardRef<SVGSVGElement, SVGProps<SVGSVGElement>>(
|
|
9
|
-
function Glincker(props, ref) {
|
|
10
|
-
return
|
|
8
|
+
function Glincker({ viewBox = '0 0 375 374.999991', ...props }, ref) {
|
|
9
|
+
return (
|
|
10
|
+
<svg
|
|
11
|
+
ref={ref}
|
|
12
|
+
viewBox={viewBox}
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<path fill="#ffffff" d="M 53.101562 187.5 C 89.175781 151.425781 125.25 115.351562 161.398438 79.199219 L 161.398438 26.101562 C 107.625 79.875 53.773438 133.726562 0 187.5 C 53.773438 241.273438 107.625 295.125 161.398438 348.898438 L 161.398438 295.800781 C 125.324219 259.726562 89.175781 223.574219 53.101562 187.5 Z M 268.800781 187.5 L 242.25 160.949219 C 224.023438 179.175781 205.800781 197.398438 187.5 215.699219 L 159.300781 187.5 C 186.375 160.425781 213.523438 133.273438 240.601562 106.199219 C 267.675781 133.273438 294.824219 160.351562 321.898438 187.5 C 285.976562 223.425781 249.976562 259.425781 214.050781 295.351562 L 187.5 268.800781 C 214.574219 241.726562 241.726562 214.574219 268.800781 187.5 Z M 187.5 268.800781 L 187.5 375 C 249.976562 312.523438 312.523438 249.976562 375 187.5 C 312.523438 125.023438 249.976562 62.476562 187.5 0 L 187.5 106.199219 C 160.425781 133.273438 133.273438 160.351562 106.199219 187.5 C 133.726562 215.023438 160.351562 241.574219 187.5 268.800781 Z M 187.5 268.800781 " fillOpacity="1" fillRule="evenodd"/><path fill="#000000" d="M 53.101562 187.5 C 89.175781 151.425781 125.25 115.351562 161.398438 79.199219 L 161.398438 26.101562 C 107.625 79.875 53.773438 133.726562 0 187.5 C 53.773438 241.273438 107.625 295.125 161.398438 348.898438 L 161.398438 295.800781 C 125.324219 259.726562 89.175781 223.574219 53.101562 187.5 Z M 268.800781 187.5 L 242.25 160.949219 C 224.023438 179.175781 205.800781 197.398438 187.5 215.699219 L 159.300781 187.5 C 186.375 160.425781 213.523438 133.273438 240.601562 106.199219 C 267.675781 133.273438 294.824219 160.351562 321.898438 187.5 C 285.976562 223.425781 249.976562 259.425781 214.050781 295.351562 L 187.5 268.800781 C 214.574219 241.726562 241.726562 214.574219 268.800781 187.5 Z M 187.5 268.800781 L 187.5 375 C 249.976562 312.523438 312.523438 249.976562 375 187.5 C 312.523438 125.023438 249.976562 62.476562 187.5 0 L 187.5 106.199219 C 160.425781 133.273438 133.273438 160.351562 106.199219 187.5 C 133.726562 215.023438 160.351562 241.574219 187.5 268.800781 Z M 187.5 268.800781 " fillOpacity="1" fillRule="evenodd"/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
11
20
|
}
|
|
12
21
|
);
|
|
13
22
|
Glincker.displayName = 'Glincker';
|