@thesvg/react 3.0.15 → 3.0.16
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/conceptboard.cjs +22 -0
- package/dist/conceptboard.d.ts +9 -0
- package/dist/conceptboard.js +21 -0
- package/dist/frequencia-invisivel.cjs +22 -0
- package/dist/frequencia-invisivel.d.ts +9 -0
- package/dist/frequencia-invisivel.js +21 -0
- package/dist/index.cjs +24 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -0
- package/dist/jaco.cjs +22 -0
- package/dist/jaco.d.ts +9 -0
- package/dist/jaco.js +21 -0
- package/dist/jaguar-legacy.cjs +22 -0
- package/dist/jaguar-legacy.d.ts +9 -0
- package/dist/jaguar-legacy.js +21 -0
- package/dist/jaguar.cjs +22 -0
- package/dist/jaguar.d.ts +9 -0
- package/dist/jaguar.js +21 -0
- package/dist/jobicy.cjs +22 -0
- package/dist/jobicy.d.ts +9 -0
- package/dist/jobicy.js +21 -0
- package/dist/kde-connect.cjs +22 -0
- package/dist/kde-connect.d.ts +9 -0
- package/dist/kde-connect.js +21 -0
- package/dist/kde-discover.cjs +22 -0
- package/dist/kde-discover.d.ts +9 -0
- package/dist/kde-discover.js +21 -0
- package/dist/kfc-legacy.cjs +22 -0
- package/dist/kfc-legacy.d.ts +9 -0
- package/dist/kfc-legacy.js +21 -0
- package/dist/kfc.cjs +3 -3
- package/dist/kfc.js +3 -3
- package/dist/mondelez-international.cjs +22 -0
- package/dist/mondelez-international.d.ts +9 -0
- package/dist/mondelez-international.js +21 -0
- package/dist/trek.cjs +22 -0
- package/dist/trek.d.ts +9 -0
- package/dist/trek.js +21 -0
- package/dist/vidiq.cjs +22 -0
- package/dist/vidiq.d.ts +9 -0
- package/dist/vidiq.js +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — Conceptboard
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Conceptboard = react_1.forwardRef(function Conceptboard({ viewBox = '0 0 260 260', ...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
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"path","props":{"className":"st0","d":"M225.3,0H34.7C15.6,0,0,15.6,0,34.7v190.6c0,19.1,15.6,34.7,34.7,34.7h190.6c19.1,0,34.7-15.6,34.7-34.7V34.7C260,15.6,244.4,0,225.3,0ZM213.4,153.5c-22.3,0-43-6.8-60.1-18.5v78.3h-46.6v-59.9h-59.9v-46.6h78.3c-11.6-17.1-18.4-37.7-18.4-59.9h46.6c0,33,26.7,59.9,59.9,59.9h.2v46.8Z"},"children":[]},{"type":"path","props":{"className":"st1","d":"M153.3,46.8h-46.6c0,22.2,6.8,42.8,18.4,59.9H46.8v46.6h59.9v59.9h46.6v-78.3c17.1,11.7,37.8,18.5,60.1,18.5v-46.8h-.2c-33.2,0-59.9-26.9-59.9-59.9Z"},"children":[]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
Conceptboard.displayName = 'Conceptboard';
|
|
21
|
+
|
|
22
|
+
exports.default = Conceptboard;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — Conceptboard
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const Conceptboard: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Conceptboard;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — Conceptboard
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Conceptboard = forwardRef(
|
|
7
|
+
function Conceptboard({ viewBox = '0 0 260 260', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"path","props":{"className":"st0","d":"M225.3,0H34.7C15.6,0,0,15.6,0,34.7v190.6c0,19.1,15.6,34.7,34.7,34.7h190.6c19.1,0,34.7-15.6,34.7-34.7V34.7C260,15.6,244.4,0,225.3,0ZM213.4,153.5c-22.3,0-43-6.8-60.1-18.5v78.3h-46.6v-59.9h-59.9v-46.6h78.3c-11.6-17.1-18.4-37.7-18.4-59.9h46.6c0,33,26.7,59.9,59.9,59.9h.2v46.8Z"},"children":[]},{"type":"path","props":{"className":"st1","d":"M153.3,46.8h-46.6c0,22.2,6.8,42.8,18.4,59.9H46.8v46.6h59.9v59.9h46.6v-78.3c17.1,11.7,37.8,18.5,60.1,18.5v-46.8h-.2c-33.2,0-59.9-26.9-59.9-59.9Z"},"children":[]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
Conceptboard.displayName = 'Conceptboard';
|
|
20
|
+
|
|
21
|
+
export default Conceptboard;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — Frequência Invisível
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const FrequenciaInvisivel = react_1.forwardRef(function FrequenciaInvisivel({ viewBox = '0 0 719.14 165.69', ...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
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Layer_1-2","dataName":"Layer 1"},"children":[{"type":"g","props":{},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"className":"cls-2","d":"M13.05,165.69c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21V50.29c0-3.58,1.28-6.65,3.84-9.21,2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21v102.35c0,3.58-1.28,6.65-3.84,9.21-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M116.42,37.75c17.99,1.02,32.79,7.34,44.39,18.93,12.28,12.28,18.51,27.12,18.68,44.52v49.38c0,4.95-1.28,8.7-3.84,11.26-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-6.22-3.84-11v-49.38c0-.77.04-1.53.13-2.3-.51-9.38-4.18-17.44-11-24.18-7.42-7.42-16.38-11.13-26.87-11.13h-.51c-10.49,0-19.45,3.71-26.87,11.13-6.82,6.74-10.49,14.8-11,24.18.08.77.13,1.53.13,2.3v49.38c0,4.78-1.28,8.44-3.84,11-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-6.31-3.84-11.26v-49.38c.17-17.4,6.4-32.24,18.68-44.52,11.6-11.6,26.4-17.91,44.39-18.93h2.05Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M372.94,37.75c3.58,0,6.61,1.24,9.08,3.71,2.47,2.48,3.71,5.5,3.71,9.08s-1.24,6.51-3.71,9.02c-2.47,2.52-5.5,3.77-9.08,3.77-1.79,0-3.31.62-4.54,1.86s-1.85,2.75-1.85,4.54.62,3.31,1.85,4.54c1.24,1.24,2.75,1.86,4.54,1.86,12.37,0,22.92,4.37,31.67,13.11,8.74,8.74,13.11,19.3,13.11,31.67s-4.37,22.92-13.11,31.66c-8.74,8.74-19.3,13.11-31.67,13.11s-22.92-4.37-31.66-13.11c-8.74-8.74-13.11-19.3-13.11-31.66,0-3.58,1.26-6.61,3.77-9.08,2.52-2.47,5.52-3.71,9.02-3.71s6.61,1.24,9.08,3.71c2.47,2.47,3.71,5.5,3.71,9.08,0,5.29,1.87,9.81,5.63,13.56,3.75,3.75,8.27,5.63,13.56,5.63s9.81-1.87,13.56-5.63c3.75-3.75,5.63-8.27,5.63-13.56s-1.88-9.81-5.63-13.56c-3.75-3.75-8.27-5.63-13.56-5.63-8.87,0-16.42-3.13-22.64-9.4-6.23-6.27-9.34-13.79-9.34-22.58s3.11-16.42,9.34-22.64c6.23-6.23,13.77-9.34,22.64-9.34Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M490.26,157.37c-.6,1.71-1.58,3.2-2.94,4.48-2.47,2.56-5.5,3.84-9.08,3.84s-6.48-1.28-8.96-3.84c-1.36-1.28-2.35-2.73-2.94-4.35l-49.77-99.66c-1.53-2.13-2.3-4.56-2.3-7.29,0-3.5,1.26-6.5,3.77-9.02,2.52-2.52,5.52-3.77,9.02-3.77s6.61,1.24,9.08,3.71c.85.85,1.54,1.75,2.05,2.69h.13l39.92,79.96,39.92-79.96.13.13c.6-1.02,1.32-1.96,2.18-2.81,2.47-2.47,5.46-3.71,8.96-3.71s6.61,1.26,9.08,3.77c2.47,2.52,3.71,5.52,3.71,9.02,0,2.82-.81,5.29-2.43,7.42l-49.51,99.41Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M265.07,157.12c-.6,1.71-1.58,3.2-2.94,4.48-2.47,2.56-5.5,3.84-9.08,3.84s-6.48-1.28-8.96-3.84c-1.36-1.28-2.35-2.73-2.94-4.35l-49.77-99.66c-1.53-2.13-2.3-4.56-2.3-7.29,0-3.5,1.26-6.5,3.77-9.02,2.52-2.52,5.52-3.77,9.02-3.77s6.61,1.24,9.08,3.71c.85.85,1.54,1.75,2.05,2.69h.13l39.92,79.96,39.92-79.96.13.13c.6-1.02,1.32-1.96,2.18-2.81,2.47-2.47,5.46-3.71,8.96-3.71s6.61,1.26,9.08,3.77c2.47,2.52,3.71,5.52,3.71,9.02,0,2.82-.81,5.29-2.43,7.42l-49.51,99.41Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M632.01,67.05c-4.69-2.13-9.85-3.2-15.48-3.2-10.49,0-19.45,3.69-26.87,11.07-7.42,7.38-11.13,16.31-11.13,26.8s3.71,19.45,11.13,26.87,16.38,11.13,26.87,11.13,19.32-3.67,26.74-11c.08-.08.17-.17.26-.26,2.47-2.47,5.5-3.71,9.08-3.71s6.65,1.26,9.21,3.77c2.56,2.52,3.84,5.57,3.84,9.15s-1.28,6.65-3.84,9.21c-.09.09-.17.17-.26.26-12.37,12.37-27.38,18.55-45.03,18.55s-32.71-6.23-45.16-18.68c-12.45-12.45-18.68-27.51-18.68-45.16s6.23-32.71,18.68-45.16c12.45-12.45,27.51-18.68,45.16-18.68s32.67,6.19,45.03,18.55l-.13.13c0,.09.04.13.13.13,2.47,2.48,3.71,5.5,3.71,9.08s-1.24,6.48-3.71,8.96l-36.59,36.33c-2.56,2.48-5.63,3.71-9.21,3.71s-6.78-1.24-9.34-3.71c-2.47-2.56-3.71-5.67-3.71-9.34s1.24-6.65,3.71-9.21l25.59-25.59Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M715.3,3.97c2.56,2.56,3.84,5.63,3.84,9.21v139.45c0,3.58-1.28,6.65-3.84,9.21-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-5.63-3.84-9.21V13.18c0-3.58,1.28-6.65,3.84-9.21,2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84Z"},"children":[]}]},{"type":"path","props":{"className":"cls-1","d":"M320.99,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21s1.28-6.65,3.84-9.21c2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M413.57,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21s1.28-6.65,3.84-9.21c2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M13.05,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21S1.28,6.4,3.84,3.84C6.4,1.28,9.47,0,13.05,0s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]}]}]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
FrequenciaInvisivel.displayName = 'FrequenciaInvisivel';
|
|
21
|
+
|
|
22
|
+
exports.default = FrequenciaInvisivel;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — Frequência Invisível
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const FrequenciaInvisivel: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default FrequenciaInvisivel;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — Frequência Invisível
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const FrequenciaInvisivel = forwardRef(
|
|
7
|
+
function FrequenciaInvisivel({ viewBox = '0 0 719.14 165.69', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Layer_1-2","dataName":"Layer 1"},"children":[{"type":"g","props":{},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"className":"cls-2","d":"M13.05,165.69c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21V50.29c0-3.58,1.28-6.65,3.84-9.21,2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21v102.35c0,3.58-1.28,6.65-3.84,9.21-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M116.42,37.75c17.99,1.02,32.79,7.34,44.39,18.93,12.28,12.28,18.51,27.12,18.68,44.52v49.38c0,4.95-1.28,8.7-3.84,11.26-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-6.22-3.84-11v-49.38c0-.77.04-1.53.13-2.3-.51-9.38-4.18-17.44-11-24.18-7.42-7.42-16.38-11.13-26.87-11.13h-.51c-10.49,0-19.45,3.71-26.87,11.13-6.82,6.74-10.49,14.8-11,24.18.08.77.13,1.53.13,2.3v49.38c0,4.78-1.28,8.44-3.84,11-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-6.31-3.84-11.26v-49.38c.17-17.4,6.4-32.24,18.68-44.52,11.6-11.6,26.4-17.91,44.39-18.93h2.05Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M372.94,37.75c3.58,0,6.61,1.24,9.08,3.71,2.47,2.48,3.71,5.5,3.71,9.08s-1.24,6.51-3.71,9.02c-2.47,2.52-5.5,3.77-9.08,3.77-1.79,0-3.31.62-4.54,1.86s-1.85,2.75-1.85,4.54.62,3.31,1.85,4.54c1.24,1.24,2.75,1.86,4.54,1.86,12.37,0,22.92,4.37,31.67,13.11,8.74,8.74,13.11,19.3,13.11,31.67s-4.37,22.92-13.11,31.66c-8.74,8.74-19.3,13.11-31.67,13.11s-22.92-4.37-31.66-13.11c-8.74-8.74-13.11-19.3-13.11-31.66,0-3.58,1.26-6.61,3.77-9.08,2.52-2.47,5.52-3.71,9.02-3.71s6.61,1.24,9.08,3.71c2.47,2.47,3.71,5.5,3.71,9.08,0,5.29,1.87,9.81,5.63,13.56,3.75,3.75,8.27,5.63,13.56,5.63s9.81-1.87,13.56-5.63c3.75-3.75,5.63-8.27,5.63-13.56s-1.88-9.81-5.63-13.56c-3.75-3.75-8.27-5.63-13.56-5.63-8.87,0-16.42-3.13-22.64-9.4-6.23-6.27-9.34-13.79-9.34-22.58s3.11-16.42,9.34-22.64c6.23-6.23,13.77-9.34,22.64-9.34Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M490.26,157.37c-.6,1.71-1.58,3.2-2.94,4.48-2.47,2.56-5.5,3.84-9.08,3.84s-6.48-1.28-8.96-3.84c-1.36-1.28-2.35-2.73-2.94-4.35l-49.77-99.66c-1.53-2.13-2.3-4.56-2.3-7.29,0-3.5,1.26-6.5,3.77-9.02,2.52-2.52,5.52-3.77,9.02-3.77s6.61,1.24,9.08,3.71c.85.85,1.54,1.75,2.05,2.69h.13l39.92,79.96,39.92-79.96.13.13c.6-1.02,1.32-1.96,2.18-2.81,2.47-2.47,5.46-3.71,8.96-3.71s6.61,1.26,9.08,3.77c2.47,2.52,3.71,5.52,3.71,9.02,0,2.82-.81,5.29-2.43,7.42l-49.51,99.41Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M265.07,157.12c-.6,1.71-1.58,3.2-2.94,4.48-2.47,2.56-5.5,3.84-9.08,3.84s-6.48-1.28-8.96-3.84c-1.36-1.28-2.35-2.73-2.94-4.35l-49.77-99.66c-1.53-2.13-2.3-4.56-2.3-7.29,0-3.5,1.26-6.5,3.77-9.02,2.52-2.52,5.52-3.77,9.02-3.77s6.61,1.24,9.08,3.71c.85.85,1.54,1.75,2.05,2.69h.13l39.92,79.96,39.92-79.96.13.13c.6-1.02,1.32-1.96,2.18-2.81,2.47-2.47,5.46-3.71,8.96-3.71s6.61,1.26,9.08,3.77c2.47,2.52,3.71,5.52,3.71,9.02,0,2.82-.81,5.29-2.43,7.42l-49.51,99.41Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M632.01,67.05c-4.69-2.13-9.85-3.2-15.48-3.2-10.49,0-19.45,3.69-26.87,11.07-7.42,7.38-11.13,16.31-11.13,26.8s3.71,19.45,11.13,26.87,16.38,11.13,26.87,11.13,19.32-3.67,26.74-11c.08-.08.17-.17.26-.26,2.47-2.47,5.5-3.71,9.08-3.71s6.65,1.26,9.21,3.77c2.56,2.52,3.84,5.57,3.84,9.15s-1.28,6.65-3.84,9.21c-.09.09-.17.17-.26.26-12.37,12.37-27.38,18.55-45.03,18.55s-32.71-6.23-45.16-18.68c-12.45-12.45-18.68-27.51-18.68-45.16s6.23-32.71,18.68-45.16c12.45-12.45,27.51-18.68,45.16-18.68s32.67,6.19,45.03,18.55l-.13.13c0,.09.04.13.13.13,2.47,2.48,3.71,5.5,3.71,9.08s-1.24,6.48-3.71,8.96l-36.59,36.33c-2.56,2.48-5.63,3.71-9.21,3.71s-6.78-1.24-9.34-3.71c-2.47-2.56-3.71-5.67-3.71-9.34s1.24-6.65,3.71-9.21l25.59-25.59Z"},"children":[]},{"type":"path","props":{"className":"cls-2","d":"M715.3,3.97c2.56,2.56,3.84,5.63,3.84,9.21v139.45c0,3.58-1.28,6.65-3.84,9.21-2.56,2.56-5.63,3.84-9.21,3.84s-6.65-1.28-9.21-3.84c-2.56-2.56-3.84-5.63-3.84-9.21V13.18c0-3.58,1.28-6.65,3.84-9.21,2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84Z"},"children":[]}]},{"type":"path","props":{"className":"cls-1","d":"M320.99,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21s1.28-6.65,3.84-9.21c2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M413.57,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21s1.28-6.65,3.84-9.21c2.56-2.56,5.63-3.84,9.21-3.84s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]},{"type":"path","props":{"className":"cls-1","d":"M13.05,26.1c-3.58,0-6.65-1.28-9.21-3.84-2.56-2.56-3.84-5.63-3.84-9.21S1.28,6.4,3.84,3.84C6.4,1.28,9.47,0,13.05,0s6.65,1.28,9.21,3.84c2.56,2.56,3.84,5.63,3.84,9.21s-1.28,6.65-3.84,9.21c-2.56,2.56-5.63,3.84-9.21,3.84Z"},"children":[]}]}]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
FrequenciaInvisivel.displayName = 'FrequenciaInvisivel';
|
|
20
|
+
|
|
21
|
+
export default FrequenciaInvisivel;
|
package/dist/index.cjs
CHANGED
|
@@ -4276,6 +4276,8 @@ const _comsol = require('./comsol.cjs');
|
|
|
4276
4276
|
exports.Comsol = _comsol.default;
|
|
4277
4277
|
const _conan = require('./conan.cjs');
|
|
4278
4278
|
exports.Conan = _conan.default;
|
|
4279
|
+
const _conceptboard = require('./conceptboard.cjs');
|
|
4280
|
+
exports.Conceptboard = _conceptboard.default;
|
|
4279
4281
|
const _concourse = require('./concourse.cjs');
|
|
4280
4282
|
exports.Concourse = _concourse.default;
|
|
4281
4283
|
const _conda_forge = require('./conda-forge.cjs');
|
|
@@ -5364,6 +5366,8 @@ const _freepik = require('./freepik.cjs');
|
|
|
5364
5366
|
exports.Freepik = _freepik.default;
|
|
5365
5367
|
const _freetube = require('./freetube.cjs');
|
|
5366
5368
|
exports.Freetube = _freetube.default;
|
|
5369
|
+
const _frequencia_invisivel = require('./frequencia-invisivel.cjs');
|
|
5370
|
+
exports.FrequenciaInvisivel = _frequencia_invisivel.default;
|
|
5367
5371
|
const _fresh = require('./fresh.cjs');
|
|
5368
5372
|
exports.Fresh = _fresh.default;
|
|
5369
5373
|
const _freshrss = require('./freshrss.cjs');
|
|
@@ -6802,8 +6806,14 @@ const _iveco = require('./iveco.cjs');
|
|
|
6802
6806
|
exports.Iveco = _iveco.default;
|
|
6803
6807
|
const _jabber = require('./jabber.cjs');
|
|
6804
6808
|
exports.Jabber = _jabber.default;
|
|
6809
|
+
const _jaco = require('./jaco.cjs');
|
|
6810
|
+
exports.Jaco = _jaco.default;
|
|
6805
6811
|
const _jaeger = require('./jaeger.cjs');
|
|
6806
6812
|
exports.Jaeger = _jaeger.default;
|
|
6813
|
+
const _jaguar = require('./jaguar.cjs');
|
|
6814
|
+
exports.Jaguar = _jaguar.default;
|
|
6815
|
+
const _jaguar_legacy = require('./jaguar-legacy.cjs');
|
|
6816
|
+
exports.JaguarLegacy = _jaguar_legacy.default;
|
|
6807
6817
|
const _jameson = require('./jameson.cjs');
|
|
6808
6818
|
exports.Jameson = _jameson.default;
|
|
6809
6819
|
const _jamstack = require('./jamstack.cjs');
|
|
@@ -6884,6 +6894,8 @@ const _jitpack = require('./jitpack.cjs');
|
|
|
6884
6894
|
exports.Jitpack = _jitpack.default;
|
|
6885
6895
|
const _jitsi = require('./jitsi.cjs');
|
|
6886
6896
|
exports.Jitsi = _jitsi.default;
|
|
6897
|
+
const _jobicy = require('./jobicy.cjs');
|
|
6898
|
+
exports.Jobicy = _jobicy.default;
|
|
6887
6899
|
const _john_deere = require('./john-deere.cjs');
|
|
6888
6900
|
exports.JohnDeere = _john_deere.default;
|
|
6889
6901
|
const _johnson_and_johnson = require('./johnson-and-johnson.cjs');
|
|
@@ -7066,6 +7078,10 @@ const _kavita = require('./kavita.cjs');
|
|
|
7066
7078
|
exports.Kavita = _kavita.default;
|
|
7067
7079
|
const _kde = require('./kde.cjs');
|
|
7068
7080
|
exports.Kde = _kde.default;
|
|
7081
|
+
const _kde_connect = require('./kde-connect.cjs');
|
|
7082
|
+
exports.KdeConnect = _kde_connect.default;
|
|
7083
|
+
const _kde_discover = require('./kde-discover.cjs');
|
|
7084
|
+
exports.KdeDiscover = _kde_discover.default;
|
|
7069
7085
|
const _kde_neon = require('./kde-neon.cjs');
|
|
7070
7086
|
exports.KdeNeon = _kde_neon.default;
|
|
7071
7087
|
const _kde_plasma = require('./kde-plasma.cjs');
|
|
@@ -7104,6 +7120,8 @@ const _keystone = require('./keystone.cjs');
|
|
|
7104
7120
|
exports.Keystone = _keystone.default;
|
|
7105
7121
|
const _kfc = require('./kfc.cjs');
|
|
7106
7122
|
exports.Kfc = _kfc.default;
|
|
7123
|
+
const _kfc_legacy = require('./kfc-legacy.cjs');
|
|
7124
|
+
exports.KfcLegacy = _kfc_legacy.default;
|
|
7107
7125
|
const _khan_academy = require('./khan-academy.cjs');
|
|
7108
7126
|
exports.KhanAcademy = _khan_academy.default;
|
|
7109
7127
|
const _khronos_group = require('./khronos-group.cjs');
|
|
@@ -8008,6 +8026,8 @@ const _momenteo = require('./momenteo.cjs');
|
|
|
8008
8026
|
exports.Momenteo = _momenteo.default;
|
|
8009
8027
|
const _monday = require('./monday.cjs');
|
|
8010
8028
|
exports.Monday = _monday.default;
|
|
8029
|
+
const _mondelez_international = require('./mondelez-international.cjs');
|
|
8030
|
+
exports.MondelezInternational = _mondelez_international.default;
|
|
8011
8031
|
const _monero = require('./monero.cjs');
|
|
8012
8032
|
exports.Monero = _monero.default;
|
|
8013
8033
|
const _moneygram = require('./moneygram.cjs');
|
|
@@ -10822,6 +10842,8 @@ const _travis_ci = require('./travis-ci.cjs');
|
|
|
10822
10842
|
exports.TravisCi = _travis_ci.default;
|
|
10823
10843
|
const _treehouse = require('./treehouse.cjs');
|
|
10824
10844
|
exports.Treehouse = _treehouse.default;
|
|
10845
|
+
const _trek = require('./trek.cjs');
|
|
10846
|
+
exports.Trek = _trek.default;
|
|
10825
10847
|
const _trello = require('./trello.cjs');
|
|
10826
10848
|
exports.Trello = _trello.default;
|
|
10827
10849
|
const _trend_micro = require('./trend-micro.cjs');
|
|
@@ -11164,6 +11186,8 @@ const _victoriametrics = require('./victoriametrics.cjs');
|
|
|
11164
11186
|
exports.Victoriametrics = _victoriametrics.default;
|
|
11165
11187
|
const _victron_energy = require('./victron-energy.cjs');
|
|
11166
11188
|
exports.VictronEnergy = _victron_energy.default;
|
|
11189
|
+
const _vidiq = require('./vidiq.cjs');
|
|
11190
|
+
exports.Vidiq = _vidiq.default;
|
|
11167
11191
|
const _vidu = require('./vidu.cjs');
|
|
11168
11192
|
exports.Vidu = _vidu.default;
|
|
11169
11193
|
const _vietnam_airlines = require('./vietnam-airlines.cjs');
|
package/dist/index.d.ts
CHANGED
|
@@ -2139,6 +2139,7 @@ export { default as Composer } from './composer.js';
|
|
|
2139
2139
|
export { default as Comptia } from './comptia.js';
|
|
2140
2140
|
export { default as Comsol } from './comsol.js';
|
|
2141
2141
|
export { default as Conan } from './conan.js';
|
|
2142
|
+
export { default as Conceptboard } from './conceptboard.js';
|
|
2142
2143
|
export { default as Concourse } from './concourse.js';
|
|
2143
2144
|
export { default as CondaForge } from './conda-forge.js';
|
|
2144
2145
|
export { default as Conekta } from './conekta.js';
|
|
@@ -2683,6 +2684,7 @@ export { default as Freenas } from './freenas.js';
|
|
|
2683
2684
|
export { default as Freenet } from './freenet.js';
|
|
2684
2685
|
export { default as Freepik } from './freepik.js';
|
|
2685
2686
|
export { default as Freetube } from './freetube.js';
|
|
2687
|
+
export { default as FrequenciaInvisivel } from './frequencia-invisivel.js';
|
|
2686
2688
|
export { default as Fresh } from './fresh.js';
|
|
2687
2689
|
export { default as Freshrss } from './freshrss.js';
|
|
2688
2690
|
export { default as Friendli } from './friendli.js';
|
|
@@ -3402,7 +3404,10 @@ export { default as Itunes } from './itunes.js';
|
|
|
3402
3404
|
export { default as Itvx } from './itvx.js';
|
|
3403
3405
|
export { default as Iveco } from './iveco.js';
|
|
3404
3406
|
export { default as Jabber } from './jabber.js';
|
|
3407
|
+
export { default as Jaco } from './jaco.js';
|
|
3405
3408
|
export { default as Jaeger } from './jaeger.js';
|
|
3409
|
+
export { default as Jaguar } from './jaguar.js';
|
|
3410
|
+
export { default as JaguarLegacy } from './jaguar-legacy.js';
|
|
3406
3411
|
export { default as Jameson } from './jameson.js';
|
|
3407
3412
|
export { default as Jamstack } from './jamstack.js';
|
|
3408
3413
|
export { default as JapanAirlines } from './japan-airlines.js';
|
|
@@ -3443,6 +3448,7 @@ export { default as Jira } from './jira.js';
|
|
|
3443
3448
|
export { default as JiraSoftware } from './jira-software.js';
|
|
3444
3449
|
export { default as Jitpack } from './jitpack.js';
|
|
3445
3450
|
export { default as Jitsi } from './jitsi.js';
|
|
3451
|
+
export { default as Jobicy } from './jobicy.js';
|
|
3446
3452
|
export { default as JohnDeere } from './john-deere.js';
|
|
3447
3453
|
export { default as JohnsonAndJohnson } from './johnson-and-johnson.js';
|
|
3448
3454
|
export { default as Joomla } from './joomla.js';
|
|
@@ -3534,6 +3540,8 @@ export { default as Katana } from './katana.js';
|
|
|
3534
3540
|
export { default as Kaufland } from './kaufland.js';
|
|
3535
3541
|
export { default as Kavita } from './kavita.js';
|
|
3536
3542
|
export { default as Kde } from './kde.js';
|
|
3543
|
+
export { default as KdeConnect } from './kde-connect.js';
|
|
3544
|
+
export { default as KdeDiscover } from './kde-discover.js';
|
|
3537
3545
|
export { default as KdeNeon } from './kde-neon.js';
|
|
3538
3546
|
export { default as KdePlasma } from './kde-plasma.js';
|
|
3539
3547
|
export { default as Kdenlive } from './kdenlive.js';
|
|
@@ -3553,6 +3561,7 @@ export { default as Keycdn } from './keycdn.js';
|
|
|
3553
3561
|
export { default as Keycloak } from './keycloak.js';
|
|
3554
3562
|
export { default as Keystone } from './keystone.js';
|
|
3555
3563
|
export { default as Kfc } from './kfc.js';
|
|
3564
|
+
export { default as KfcLegacy } from './kfc-legacy.js';
|
|
3556
3565
|
export { default as KhanAcademy } from './khan-academy.js';
|
|
3557
3566
|
export { default as KhronosGroup } from './khronos-group.js';
|
|
3558
3567
|
export { default as Kia } from './kia.js';
|
|
@@ -4005,6 +4014,7 @@ export { default as Mojeek } from './mojeek.js';
|
|
|
4005
4014
|
export { default as Moleculer } from './moleculer.js';
|
|
4006
4015
|
export { default as Momenteo } from './momenteo.js';
|
|
4007
4016
|
export { default as Monday } from './monday.js';
|
|
4017
|
+
export { default as MondelezInternational } from './mondelez-international.js';
|
|
4008
4018
|
export { default as Monero } from './monero.js';
|
|
4009
4019
|
export { default as Moneygram } from './moneygram.js';
|
|
4010
4020
|
export { default as Mongodb } from './mongodb.js';
|
|
@@ -5412,6 +5422,7 @@ export { default as TransportForLondon } from './transport-for-london.js';
|
|
|
5412
5422
|
export { default as Travelperk } from './travelperk.js';
|
|
5413
5423
|
export { default as TravisCi } from './travis-ci.js';
|
|
5414
5424
|
export { default as Treehouse } from './treehouse.js';
|
|
5425
|
+
export { default as Trek } from './trek.js';
|
|
5415
5426
|
export { default as Trello } from './trello.js';
|
|
5416
5427
|
export { default as TrendMicro } from './trend-micro.js';
|
|
5417
5428
|
export { default as Tresorit } from './tresorit.js';
|
|
@@ -5583,6 +5594,7 @@ export { default as Viber } from './viber.js';
|
|
|
5583
5594
|
export { default as Viblo } from './viblo.js';
|
|
5584
5595
|
export { default as Victoriametrics } from './victoriametrics.js';
|
|
5585
5596
|
export { default as VictronEnergy } from './victron-energy.js';
|
|
5597
|
+
export { default as Vidiq } from './vidiq.js';
|
|
5586
5598
|
export { default as Vidu } from './vidu.js';
|
|
5587
5599
|
export { default as VietnamAirlines } from './vietnam-airlines.js';
|
|
5588
5600
|
export { default as Viewsonic } from './viewsonic.js';
|
package/dist/index.js
CHANGED
|
@@ -2137,6 +2137,7 @@ export { default as Composer } from './composer.js';
|
|
|
2137
2137
|
export { default as Comptia } from './comptia.js';
|
|
2138
2138
|
export { default as Comsol } from './comsol.js';
|
|
2139
2139
|
export { default as Conan } from './conan.js';
|
|
2140
|
+
export { default as Conceptboard } from './conceptboard.js';
|
|
2140
2141
|
export { default as Concourse } from './concourse.js';
|
|
2141
2142
|
export { default as CondaForge } from './conda-forge.js';
|
|
2142
2143
|
export { default as Conekta } from './conekta.js';
|
|
@@ -2681,6 +2682,7 @@ export { default as Freenas } from './freenas.js';
|
|
|
2681
2682
|
export { default as Freenet } from './freenet.js';
|
|
2682
2683
|
export { default as Freepik } from './freepik.js';
|
|
2683
2684
|
export { default as Freetube } from './freetube.js';
|
|
2685
|
+
export { default as FrequenciaInvisivel } from './frequencia-invisivel.js';
|
|
2684
2686
|
export { default as Fresh } from './fresh.js';
|
|
2685
2687
|
export { default as Freshrss } from './freshrss.js';
|
|
2686
2688
|
export { default as Friendli } from './friendli.js';
|
|
@@ -3400,7 +3402,10 @@ export { default as Itunes } from './itunes.js';
|
|
|
3400
3402
|
export { default as Itvx } from './itvx.js';
|
|
3401
3403
|
export { default as Iveco } from './iveco.js';
|
|
3402
3404
|
export { default as Jabber } from './jabber.js';
|
|
3405
|
+
export { default as Jaco } from './jaco.js';
|
|
3403
3406
|
export { default as Jaeger } from './jaeger.js';
|
|
3407
|
+
export { default as Jaguar } from './jaguar.js';
|
|
3408
|
+
export { default as JaguarLegacy } from './jaguar-legacy.js';
|
|
3404
3409
|
export { default as Jameson } from './jameson.js';
|
|
3405
3410
|
export { default as Jamstack } from './jamstack.js';
|
|
3406
3411
|
export { default as JapanAirlines } from './japan-airlines.js';
|
|
@@ -3441,6 +3446,7 @@ export { default as Jira } from './jira.js';
|
|
|
3441
3446
|
export { default as JiraSoftware } from './jira-software.js';
|
|
3442
3447
|
export { default as Jitpack } from './jitpack.js';
|
|
3443
3448
|
export { default as Jitsi } from './jitsi.js';
|
|
3449
|
+
export { default as Jobicy } from './jobicy.js';
|
|
3444
3450
|
export { default as JohnDeere } from './john-deere.js';
|
|
3445
3451
|
export { default as JohnsonAndJohnson } from './johnson-and-johnson.js';
|
|
3446
3452
|
export { default as Joomla } from './joomla.js';
|
|
@@ -3532,6 +3538,8 @@ export { default as Katana } from './katana.js';
|
|
|
3532
3538
|
export { default as Kaufland } from './kaufland.js';
|
|
3533
3539
|
export { default as Kavita } from './kavita.js';
|
|
3534
3540
|
export { default as Kde } from './kde.js';
|
|
3541
|
+
export { default as KdeConnect } from './kde-connect.js';
|
|
3542
|
+
export { default as KdeDiscover } from './kde-discover.js';
|
|
3535
3543
|
export { default as KdeNeon } from './kde-neon.js';
|
|
3536
3544
|
export { default as KdePlasma } from './kde-plasma.js';
|
|
3537
3545
|
export { default as Kdenlive } from './kdenlive.js';
|
|
@@ -3551,6 +3559,7 @@ export { default as Keycdn } from './keycdn.js';
|
|
|
3551
3559
|
export { default as Keycloak } from './keycloak.js';
|
|
3552
3560
|
export { default as Keystone } from './keystone.js';
|
|
3553
3561
|
export { default as Kfc } from './kfc.js';
|
|
3562
|
+
export { default as KfcLegacy } from './kfc-legacy.js';
|
|
3554
3563
|
export { default as KhanAcademy } from './khan-academy.js';
|
|
3555
3564
|
export { default as KhronosGroup } from './khronos-group.js';
|
|
3556
3565
|
export { default as Kia } from './kia.js';
|
|
@@ -4003,6 +4012,7 @@ export { default as Mojeek } from './mojeek.js';
|
|
|
4003
4012
|
export { default as Moleculer } from './moleculer.js';
|
|
4004
4013
|
export { default as Momenteo } from './momenteo.js';
|
|
4005
4014
|
export { default as Monday } from './monday.js';
|
|
4015
|
+
export { default as MondelezInternational } from './mondelez-international.js';
|
|
4006
4016
|
export { default as Monero } from './monero.js';
|
|
4007
4017
|
export { default as Moneygram } from './moneygram.js';
|
|
4008
4018
|
export { default as Mongodb } from './mongodb.js';
|
|
@@ -5410,6 +5420,7 @@ export { default as TransportForLondon } from './transport-for-london.js';
|
|
|
5410
5420
|
export { default as Travelperk } from './travelperk.js';
|
|
5411
5421
|
export { default as TravisCi } from './travis-ci.js';
|
|
5412
5422
|
export { default as Treehouse } from './treehouse.js';
|
|
5423
|
+
export { default as Trek } from './trek.js';
|
|
5413
5424
|
export { default as Trello } from './trello.js';
|
|
5414
5425
|
export { default as TrendMicro } from './trend-micro.js';
|
|
5415
5426
|
export { default as Tresorit } from './tresorit.js';
|
|
@@ -5581,6 +5592,7 @@ export { default as Viber } from './viber.js';
|
|
|
5581
5592
|
export { default as Viblo } from './viblo.js';
|
|
5582
5593
|
export { default as Victoriametrics } from './victoriametrics.js';
|
|
5583
5594
|
export { default as VictronEnergy } from './victron-energy.js';
|
|
5595
|
+
export { default as Vidiq } from './vidiq.js';
|
|
5584
5596
|
export { default as Vidu } from './vidu.js';
|
|
5585
5597
|
export { default as VietnamAirlines } from './vietnam-airlines.js';
|
|
5586
5598
|
export { default as Viewsonic } from './viewsonic.js';
|
package/dist/jaco.cjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — JACO
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Jaco = react_1.forwardRef(function Jaco({ viewBox = '0 0 1024 1024', ...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
|
+
...[{"type":"title","props":{},"children":["JACO"]},{"type":"rect","props":{"fill":"#fff","x":"119.9","y":"120.1","width":"784.2","height":"784.2","rx":"143.4","ry":"143.4"},"children":[]},{"type":"path","props":{"fill":"#8710ff","d":"M548.8,264.3v452.6l-147.3,85.3v-85.3h-45.9c-64.9,0-117.6-52.6-117.6-117.6v-217.5c0-64.9,52.6-117.6,117.6-117.6h193.2Z"},"children":[]},{"type":"path","props":{"fill":"#ff7410","d":"M786,547.4h-237.2v-283.1h119.6c64.9,0,117.6,52.6,117.6,117.6v165.5Z"},"children":[]},{"type":"path","props":{"fill":"#ffdc10","d":"M585.5,716.9h-36.7v-169.6h154.3v52c0,64.9-52.6,117.6-117.6,117.6Z"},"children":[]},{"type":"circle","props":{"fill":"#fff","cx":"393.4","cy":"417.6","r":"59.7"},"children":[]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
Jaco.displayName = 'Jaco';
|
|
21
|
+
|
|
22
|
+
exports.default = Jaco;
|
package/dist/jaco.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — JACO
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const Jaco: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Jaco;
|
package/dist/jaco.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — JACO
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Jaco = forwardRef(
|
|
7
|
+
function Jaco({ viewBox = '0 0 1024 1024', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["JACO"]},{"type":"rect","props":{"fill":"#fff","x":"119.9","y":"120.1","width":"784.2","height":"784.2","rx":"143.4","ry":"143.4"},"children":[]},{"type":"path","props":{"fill":"#8710ff","d":"M548.8,264.3v452.6l-147.3,85.3v-85.3h-45.9c-64.9,0-117.6-52.6-117.6-117.6v-217.5c0-64.9,52.6-117.6,117.6-117.6h193.2Z"},"children":[]},{"type":"path","props":{"fill":"#ff7410","d":"M786,547.4h-237.2v-283.1h119.6c64.9,0,117.6,52.6,117.6,117.6v165.5Z"},"children":[]},{"type":"path","props":{"fill":"#ffdc10","d":"M585.5,716.9h-36.7v-169.6h154.3v52c0,64.9-52.6,117.6-117.6,117.6Z"},"children":[]},{"type":"circle","props":{"fill":"#fff","cx":"393.4","cy":"417.6","r":"59.7"},"children":[]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
Jaco.displayName = 'Jaco';
|
|
20
|
+
|
|
21
|
+
export default Jaco;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — Jaguar (legacy)
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const JaguarLegacy = react_1.forwardRef(function JaguarLegacy({ viewBox = '0 0 1045.7 85', ...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
|
+
...[{"type":"g","props":{},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"className":"st0","d":"M997.4,53.2l6.1-0.5c2.5-0.2,5-0.5,7.3-0.8c6-0.9,11.1-2.5,15.3-4.7c1.6-0.8,2.4-1.4,4.2-2.7\n\t\t\tc5.3-3.8,8-8.9,8.4-15.9c0.1-1.4,0-2.5-0.1-3.7c-0.3-4.4-1.3-8.1-3.1-11c-2.1-3.5-5.1-6.2-9.1-8.2c-4-2-9.1-3.5-15-4.4\n\t\t\tc0,0-8.7-1.4-21.6-1.4h-98.6v83.1h31V53.8h42.1l47.4,29.3h34L997.4,53.2z M983.3,9.6c0.2,0,0.3,0,0.5,0c3.5,0.1,6.5,0.2,9.1,0.5\n\t\t\tc3.3,0.4,6.1,1.1,8.3,2.3c2.3,1.2,4.1,3,5,5.2c0.9,1.9,1.3,4.3,1.4,7.2c0,0.2,0.1,4.2-0.1,6.2c-0.1,2-0.6,4.2-1.3,5.7\n\t\t\tc-0.7,1.6-1.7,2.9-3.1,4c-0.4,0.3-0.8,0.6-1.2,0.8c-2,1.1-4.5,1.8-7.7,2.2c-2.9,0.3-6.6,0.5-11,0.5h-61.2V9.6H983.3z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M101.8,0v39.1c0,11.7-4.3,20.4-12.8,25.8C81.7,69.6,71.1,72,57.6,72H0v11.1h47.8c13.3,0,25.5-0.5,36.2-1.5\n\t\t\tc10.5-1,19.4-3,26.6-6c7-2.9,12.5-7.1,16.3-12.5c3.4-4.9,5.3-11.3,5.7-19.2c0-0.7,0.1-1.6,0.1-2.6V0H101.8z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M456.7,45V72h-47.3c-24.8,0-39.2-8-43.1-23.6c-1.6-6.5-0.6-12.7,0-15c3.8-15.8,18-23.5,43.1-23.5h74V0h-64.3\n\t\t\tc-13.5,0-25.7,0.5-36.4,1.4c-10.4,0.9-19.4,2.9-26.6,5.8c-7.1,2.9-12.5,7-16.2,12.4c-3.6,5.1-5.4,12-5.6,20.5c0,0.2,0,0.4,0,0.7\n\t\t\tc0,0.4,0,0.8,0,1.3c0.1,8.8,2,15.9,5.7,21.1c3.8,5.4,9.3,9.6,16.3,12.5c7.2,3,16.2,5,26.6,6c10.7,1,22.8,1.5,36.2,1.5h68.5V45\n\t\t\tH456.7z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M250.1,0h-31.9l-71.5,83.1h18.5l16.1-18.7h89.9l16.1,18.7h34.4L250.1,0z M226.2,12.2l37.3,43.3h-74.5\n\t\t\tL226.2,12.2z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M760.1,0l-71.5,83.1h18.5l16.1-18.8h89.8l16.1,18.8h34.5L792.1,0H760.1z M805.5,55.5h-74.6l37.3-43.3\n\t\t\tL805.5,55.5z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M643.7,0v42.1c0,3.6-0.5,6.9-1.2,9.9c-4,15.3-18.3,23.1-42.9,23.2h-3.1c-24.7,0-39.1-8-43-23.5\n\t\t\tc-0.7-2.9-1.1-6.1-1.1-9.5V0h-31v43.4c0,9,1.9,16.4,5.7,21.8c2.4,3.3,5.4,6.3,9,8.7c2.2,1.4,4.6,2.7,7.3,3.8\n\t\t\tc2.7,1.1,5.6,2.1,8.8,2.9c5.3,1.4,11.3,2.4,17.9,3.1c8.3,0.8,17.7,1.3,27.9,1.3c10.3,0,19.6-0.5,27.9-1.3c6.5-0.6,12.5-1.6,17.8-3\n\t\t\tc3.2-0.8,6.1-1.8,8.8-2.9c2.7-1.1,5.1-2.3,7.3-3.8c3.7-2.4,6.7-5.3,9-8.7c3.8-5.4,5.7-12.8,5.7-21.8V0H643.7z"},"children":[]}]}]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
JaguarLegacy.displayName = 'JaguarLegacy';
|
|
21
|
+
|
|
22
|
+
exports.default = JaguarLegacy;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — Jaguar (legacy)
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const JaguarLegacy: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default JaguarLegacy;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — Jaguar (legacy)
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const JaguarLegacy = forwardRef(
|
|
7
|
+
function JaguarLegacy({ viewBox = '0 0 1045.7 85', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"g","props":{},"children":[{"type":"g","props":{},"children":[{"type":"path","props":{"className":"st0","d":"M997.4,53.2l6.1-0.5c2.5-0.2,5-0.5,7.3-0.8c6-0.9,11.1-2.5,15.3-4.7c1.6-0.8,2.4-1.4,4.2-2.7\n\t\t\tc5.3-3.8,8-8.9,8.4-15.9c0.1-1.4,0-2.5-0.1-3.7c-0.3-4.4-1.3-8.1-3.1-11c-2.1-3.5-5.1-6.2-9.1-8.2c-4-2-9.1-3.5-15-4.4\n\t\t\tc0,0-8.7-1.4-21.6-1.4h-98.6v83.1h31V53.8h42.1l47.4,29.3h34L997.4,53.2z M983.3,9.6c0.2,0,0.3,0,0.5,0c3.5,0.1,6.5,0.2,9.1,0.5\n\t\t\tc3.3,0.4,6.1,1.1,8.3,2.3c2.3,1.2,4.1,3,5,5.2c0.9,1.9,1.3,4.3,1.4,7.2c0,0.2,0.1,4.2-0.1,6.2c-0.1,2-0.6,4.2-1.3,5.7\n\t\t\tc-0.7,1.6-1.7,2.9-3.1,4c-0.4,0.3-0.8,0.6-1.2,0.8c-2,1.1-4.5,1.8-7.7,2.2c-2.9,0.3-6.6,0.5-11,0.5h-61.2V9.6H983.3z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M101.8,0v39.1c0,11.7-4.3,20.4-12.8,25.8C81.7,69.6,71.1,72,57.6,72H0v11.1h47.8c13.3,0,25.5-0.5,36.2-1.5\n\t\t\tc10.5-1,19.4-3,26.6-6c7-2.9,12.5-7.1,16.3-12.5c3.4-4.9,5.3-11.3,5.7-19.2c0-0.7,0.1-1.6,0.1-2.6V0H101.8z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M456.7,45V72h-47.3c-24.8,0-39.2-8-43.1-23.6c-1.6-6.5-0.6-12.7,0-15c3.8-15.8,18-23.5,43.1-23.5h74V0h-64.3\n\t\t\tc-13.5,0-25.7,0.5-36.4,1.4c-10.4,0.9-19.4,2.9-26.6,5.8c-7.1,2.9-12.5,7-16.2,12.4c-3.6,5.1-5.4,12-5.6,20.5c0,0.2,0,0.4,0,0.7\n\t\t\tc0,0.4,0,0.8,0,1.3c0.1,8.8,2,15.9,5.7,21.1c3.8,5.4,9.3,9.6,16.3,12.5c7.2,3,16.2,5,26.6,6c10.7,1,22.8,1.5,36.2,1.5h68.5V45\n\t\t\tH456.7z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M250.1,0h-31.9l-71.5,83.1h18.5l16.1-18.7h89.9l16.1,18.7h34.4L250.1,0z M226.2,12.2l37.3,43.3h-74.5\n\t\t\tL226.2,12.2z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M760.1,0l-71.5,83.1h18.5l16.1-18.8h89.8l16.1,18.8h34.5L792.1,0H760.1z M805.5,55.5h-74.6l37.3-43.3\n\t\t\tL805.5,55.5z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M643.7,0v42.1c0,3.6-0.5,6.9-1.2,9.9c-4,15.3-18.3,23.1-42.9,23.2h-3.1c-24.7,0-39.1-8-43-23.5\n\t\t\tc-0.7-2.9-1.1-6.1-1.1-9.5V0h-31v43.4c0,9,1.9,16.4,5.7,21.8c2.4,3.3,5.4,6.3,9,8.7c2.2,1.4,4.6,2.7,7.3,3.8\n\t\t\tc2.7,1.1,5.6,2.1,8.8,2.9c5.3,1.4,11.3,2.4,17.9,3.1c8.3,0.8,17.7,1.3,27.9,1.3c10.3,0,19.6-0.5,27.9-1.3c6.5-0.6,12.5-1.6,17.8-3\n\t\t\tc3.2-0.8,6.1-1.8,8.8-2.9c2.7-1.1,5.1-2.3,7.3-3.8c3.7-2.4,6.7-5.3,9-8.7c3.8-5.4,5.7-12.8,5.7-21.8V0H643.7z"},"children":[]}]}]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
JaguarLegacy.displayName = 'JaguarLegacy';
|
|
20
|
+
|
|
21
|
+
export default JaguarLegacy;
|
package/dist/jaguar.cjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — Jaguar
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Jaguar = react_1.forwardRef(function Jaguar({ viewBox = '0 0 929.72 115.03', ...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
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Layer_1-2","dataName":"Layer 1"},"children":[{"type":"path","props":{"id":"Regular_Logotype","className":"cls-1","d":"M0,91.54l14.91-10.09c7.53,9.94,17.16,15.51,29.21,15.51,8.43,0,16.37-2.6,22.13-8.43,5.38-5.46,8.88-13.85,8.88-26.05V2.41h18.37v62.48c0,16.11-5.38,27.89-14,36.44s-21.83,13.7-35.68,13.7c-17.62,0-34.18-8.43-43.81-23.49ZM151.31,57.51c0-31.62,25.9-57.51,57.66-57.51,15.66,0,30.71,6.32,41.4,17.01,9.94,9.94,16.11,23.49,16.11,40.65v54.95h-18.37v-16.71c-7.68,10.69-23.49,19.12-39.75,19.12-31.77,0-57.06-25.29-57.06-57.51ZM209.28,96.96c21.53,0,38.99-16.86,38.99-39.45s-17.46-39.45-38.99-39.45-39.15,16.86-39.15,39.45,17.62,39.45,39.15,39.45ZM324.31,57.51c0-31.92,25.14-57.51,57.81-57.51,21.23,0,37.94,8.73,48.18,23.64l-15.21,10.09c-7.68-10.24-19.12-15.66-32.97-15.66-21.08,0-38.99,14.91-38.99,39.45,0,22.73,16.26,39.45,39.3,39.45,19.42,0,34.33-11.89,38.09-29.36h-24.84v-17.62h43.51c.3,2.26.6,4.82.6,7.53,0,31.47-25.14,57.51-57.66,57.51s-57.81-25.44-57.81-57.51ZM510.71,99.37c-8.11-8.6-13.1-20.33-13.1-34.03V2.41h18.37v60.52c0,11.14,3.49,18.79,8.88,24.39,6.21,6.44,14.91,9.64,23.49,9.64s17.28-3.19,23.49-9.64c5.39-5.6,8.88-13.25,8.88-24.39V2.41h18.37v62.93c0,13.7-4.99,25.43-13.1,34.03-9.36,9.92-22.88,15.66-37.64,15.66s-28.28-5.74-37.64-15.66ZM656.9,57.51c0-31.62,25.9-57.51,57.66-57.51,15.66,0,30.71,6.32,41.4,17.01,9.94,9.94,16.11,23.49,16.11,40.65v54.95h-18.37v-16.71c-7.68,10.69-23.49,19.12-39.75,19.12-31.77,0-57.06-25.29-57.06-57.51ZM714.87,96.96c21.53,0,38.99-16.86,38.99-39.45s-17.46-39.45-38.99-39.45-39.15,16.86-39.15,39.45,17.62,39.45,39.15,39.45ZM850.22,13.7c9-8.92,21.83-13.7,35.68-13.7,17.62,0,34.18,8.43,43.81,23.49l-14.91,10.09c-7.53-9.94-17.16-15.51-29.21-15.51-8.43,0-16.37,2.6-22.13,8.43-5.39,5.46-8.88,13.85-8.88,26.05v60.07h-18.37v-62.48c0-16.11,5.38-27.89,14-36.43Z"},"children":[]}]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
Jaguar.displayName = 'Jaguar';
|
|
21
|
+
|
|
22
|
+
exports.default = Jaguar;
|
package/dist/jaguar.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — Jaguar
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const Jaguar: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Jaguar;
|
package/dist/jaguar.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — Jaguar
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Jaguar = forwardRef(
|
|
7
|
+
function Jaguar({ viewBox = '0 0 929.72 115.03', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"defs","props":{},"children":[]},{"type":"g","props":{"id":"Layer_1-2","dataName":"Layer 1"},"children":[{"type":"path","props":{"id":"Regular_Logotype","className":"cls-1","d":"M0,91.54l14.91-10.09c7.53,9.94,17.16,15.51,29.21,15.51,8.43,0,16.37-2.6,22.13-8.43,5.38-5.46,8.88-13.85,8.88-26.05V2.41h18.37v62.48c0,16.11-5.38,27.89-14,36.44s-21.83,13.7-35.68,13.7c-17.62,0-34.18-8.43-43.81-23.49ZM151.31,57.51c0-31.62,25.9-57.51,57.66-57.51,15.66,0,30.71,6.32,41.4,17.01,9.94,9.94,16.11,23.49,16.11,40.65v54.95h-18.37v-16.71c-7.68,10.69-23.49,19.12-39.75,19.12-31.77,0-57.06-25.29-57.06-57.51ZM209.28,96.96c21.53,0,38.99-16.86,38.99-39.45s-17.46-39.45-38.99-39.45-39.15,16.86-39.15,39.45,17.62,39.45,39.15,39.45ZM324.31,57.51c0-31.92,25.14-57.51,57.81-57.51,21.23,0,37.94,8.73,48.18,23.64l-15.21,10.09c-7.68-10.24-19.12-15.66-32.97-15.66-21.08,0-38.99,14.91-38.99,39.45,0,22.73,16.26,39.45,39.3,39.45,19.42,0,34.33-11.89,38.09-29.36h-24.84v-17.62h43.51c.3,2.26.6,4.82.6,7.53,0,31.47-25.14,57.51-57.66,57.51s-57.81-25.44-57.81-57.51ZM510.71,99.37c-8.11-8.6-13.1-20.33-13.1-34.03V2.41h18.37v60.52c0,11.14,3.49,18.79,8.88,24.39,6.21,6.44,14.91,9.64,23.49,9.64s17.28-3.19,23.49-9.64c5.39-5.6,8.88-13.25,8.88-24.39V2.41h18.37v62.93c0,13.7-4.99,25.43-13.1,34.03-9.36,9.92-22.88,15.66-37.64,15.66s-28.28-5.74-37.64-15.66ZM656.9,57.51c0-31.62,25.9-57.51,57.66-57.51,15.66,0,30.71,6.32,41.4,17.01,9.94,9.94,16.11,23.49,16.11,40.65v54.95h-18.37v-16.71c-7.68,10.69-23.49,19.12-39.75,19.12-31.77,0-57.06-25.29-57.06-57.51ZM714.87,96.96c21.53,0,38.99-16.86,38.99-39.45s-17.46-39.45-38.99-39.45-39.15,16.86-39.15,39.45,17.62,39.45,39.15,39.45ZM850.22,13.7c9-8.92,21.83-13.7,35.68-13.7,17.62,0,34.18,8.43,43.81,23.49l-14.91,10.09c-7.53-9.94-17.16-15.51-29.21-15.51-8.43,0-16.37,2.6-22.13,8.43-5.39,5.46-8.88,13.85-8.88,26.05v60.07h-18.37v-62.48c0-16.11,5.38-27.89,14-36.43Z"},"children":[]}]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
Jaguar.displayName = 'Jaguar';
|
|
20
|
+
|
|
21
|
+
export default Jaguar;
|
package/dist/jobicy.cjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — Jobicy
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Jobicy = react_1.forwardRef(function Jobicy({ viewBox = '0 0 587 587', ...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
|
+
...[{"type":"path","props":{"d":"M0 289.163C0 152.85 0 84.6941 42.3467 42.347C84.6934 0 152.849 0 289.16 0H297.837C434.149 0 502.305 0 544.651 42.347C586.997 84.6941 586.997 152.85 586.997 289.163V297.839C586.997 434.152 586.997 502.308 544.651 544.655C502.305 587.002 434.149 587.002 297.837 587.002H289.16C152.849 587.002 84.6934 587.002 42.3467 544.655C0 502.308 0 434.152 0 297.839V289.163Z","fill":"#003BAE"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","clipRule":"evenodd","d":"M324.958 153.129H267.039C239.052 153.129 216.362 173.424 216.362 198.46V237.315C216.362 262.349 239.052 282.645 267.039 282.645H324.958C352.947 282.645 375.635 262.349 375.635 237.315V198.46C375.635 173.424 352.947 153.129 324.958 153.129ZM267.039 94.8477C203.066 94.8477 151.205 141.237 151.205 198.46V237.315C151.205 294.538 203.066 340.927 267.039 340.927H324.958C388.931 340.927 440.792 294.538 440.792 237.315V198.46C440.792 141.237 388.931 94.8477 324.958 94.8477H267.039Z","fill":"white"},"children":[]},{"type":"path","props":{"d":"M545.826 545.832C587 504.658 587 438.358 587 305.758C587 259.592 549.568 222.216 503.459 222.216H83.6003C37.4345 222.216 0.0595703 259.647 0.0595703 305.758C0.0595703 438.358 0.0595397 504.658 41.2344 545.832C82.4093 587.007 148.709 587.007 281.308 587.007H305.751C438.35 587.007 504.65 587.007 545.826 545.832Z","fill":"#029AEB"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","clipRule":"evenodd","d":"M79.9865 365.827C87.3284 350.564 105.378 344.278 120.301 351.787L135.193 359.28C235.785 409.895 353.65 409.895 454.242 359.28L469.134 351.787C484.058 344.278 502.107 350.564 509.449 365.826C516.791 381.089 510.645 399.549 495.722 407.058L480.83 414.552C363.472 473.602 225.963 473.602 108.606 414.552L93.7137 407.058C78.7905 399.549 72.6446 381.089 79.9865 365.827Z","fill":"white"},"children":[]}]
|
|
14
|
+
.map(function _c(el) {
|
|
15
|
+
if (typeof el === 'string') return el;
|
|
16
|
+
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
Jobicy.displayName = 'Jobicy';
|
|
21
|
+
|
|
22
|
+
exports.default = Jobicy;
|
package/dist/jobicy.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — Jobicy
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import type { SVGProps, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
5
|
+
|
|
6
|
+
export type SvgIconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
declare const Jobicy: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Jobicy;
|
package/dist/jobicy.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — Jobicy
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Jobicy = forwardRef(
|
|
7
|
+
function Jobicy({ viewBox = '0 0 587 587', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: 'none', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"path","props":{"d":"M0 289.163C0 152.85 0 84.6941 42.3467 42.347C84.6934 0 152.849 0 289.16 0H297.837C434.149 0 502.305 0 544.651 42.347C586.997 84.6941 586.997 152.85 586.997 289.163V297.839C586.997 434.152 586.997 502.308 544.651 544.655C502.305 587.002 434.149 587.002 297.837 587.002H289.16C152.849 587.002 84.6934 587.002 42.3467 544.655C0 502.308 0 434.152 0 297.839V289.163Z","fill":"#003BAE"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","clipRule":"evenodd","d":"M324.958 153.129H267.039C239.052 153.129 216.362 173.424 216.362 198.46V237.315C216.362 262.349 239.052 282.645 267.039 282.645H324.958C352.947 282.645 375.635 262.349 375.635 237.315V198.46C375.635 173.424 352.947 153.129 324.958 153.129ZM267.039 94.8477C203.066 94.8477 151.205 141.237 151.205 198.46V237.315C151.205 294.538 203.066 340.927 267.039 340.927H324.958C388.931 340.927 440.792 294.538 440.792 237.315V198.46C440.792 141.237 388.931 94.8477 324.958 94.8477H267.039Z","fill":"white"},"children":[]},{"type":"path","props":{"d":"M545.826 545.832C587 504.658 587 438.358 587 305.758C587 259.592 549.568 222.216 503.459 222.216H83.6003C37.4345 222.216 0.0595703 259.647 0.0595703 305.758C0.0595703 438.358 0.0595397 504.658 41.2344 545.832C82.4093 587.007 148.709 587.007 281.308 587.007H305.751C438.35 587.007 504.65 587.007 545.826 545.832Z","fill":"#029AEB"},"children":[]},{"type":"path","props":{"fillRule":"evenodd","clipRule":"evenodd","d":"M79.9865 365.827C87.3284 350.564 105.378 344.278 120.301 351.787L135.193 359.28C235.785 409.895 353.65 409.895 454.242 359.28L469.134 351.787C484.058 344.278 502.107 350.564 509.449 365.826C516.791 381.089 510.645 399.549 495.722 407.058L480.83 414.552C363.472 473.602 225.963 473.602 108.606 414.552L93.7137 407.058C78.7905 399.549 72.6446 381.089 79.9865 365.827Z","fill":"white"},"children":[]}]
|
|
12
|
+
.map(function _c(el) {
|
|
13
|
+
if (typeof el === 'string') return el;
|
|
14
|
+
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
Jobicy.displayName = 'Jobicy';
|
|
20
|
+
|
|
21
|
+
export default Jobicy;
|