@thesvg/react 1.0.3 → 1.0.7
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/README.md +2 -2
- package/dist/british-council.cjs +22 -0
- package/dist/british-council.d.ts +9 -0
- package/dist/british-council.js +21 -0
- package/dist/index.cjs +10 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/langchain.cjs +3 -3
- package/dist/langchain.js +3 -3
- package/dist/mimiclaw.cjs +22 -0
- package/dist/mimiclaw.d.ts +9 -0
- package/dist/mimiclaw.js +21 -0
- package/dist/openclaw-moltbot-clawdbot.cjs +2 -2
- package/dist/openclaw-moltbot-clawdbot.js +2 -2
- package/dist/picoclaw.cjs +22 -0
- package/dist/picoclaw.d.ts +9 -0
- package/dist/picoclaw.js +21 -0
- package/dist/profclaw.cjs +22 -0
- package/dist/profclaw.d.ts +9 -0
- package/dist/profclaw.js +21 -0
- package/dist/the-lawyers-global.cjs +22 -0
- package/dist/the-lawyers-global.d.ts +9 -0
- package/dist/the-lawyers-global.js +21 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://github.com/
|
|
3
|
-
<img src="https://raw.githubusercontent.com/
|
|
2
|
+
<a href="https://github.com/glincker/thesvg">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/glincker/thesvg/main/public/og-image.png" alt="theSVG - 3,847 Brand SVG Icons" width="700" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — British Council
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const BritishCouncil = react_1.forwardRef(function BritishCouncil({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
10
|
+
return react_1.createElement(
|
|
11
|
+
'svg',
|
|
12
|
+
Object.assign({ ref, viewBox, fill: '#00A7DB', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[{"type":"title","props":{},"children":["British Council"]},{"type":"circle","props":{"cx":"6","cy":"6","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"18","cy":"6","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"6","cy":"18","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"18","cy":"18","r":"5.5"},"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
|
+
BritishCouncil.displayName = 'BritishCouncil';
|
|
21
|
+
|
|
22
|
+
exports.default = BritishCouncil;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — British Council
|
|
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 BritishCouncil: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default BritishCouncil;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — British Council
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const BritishCouncil = forwardRef(
|
|
7
|
+
function BritishCouncil({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: '#00A7DB', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["British Council"]},{"type":"circle","props":{"cx":"6","cy":"6","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"18","cy":"6","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"6","cy":"18","r":"5.5"},"children":[]},{"type":"circle","props":{"cx":"18","cy":"18","r":"5.5"},"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
|
+
BritishCouncil.displayName = 'BritishCouncil';
|
|
20
|
+
|
|
21
|
+
export default BritishCouncil;
|
package/dist/index.cjs
CHANGED
|
@@ -942,6 +942,8 @@ const _bricks = require('./bricks.cjs');
|
|
|
942
942
|
exports.Bricks = _bricks.default;
|
|
943
943
|
const _british_airways = require('./british-airways.cjs');
|
|
944
944
|
exports.BritishAirways = _british_airways.default;
|
|
945
|
+
const _british_council = require('./british-council.cjs');
|
|
946
|
+
exports.BritishCouncil = _british_council.default;
|
|
945
947
|
const _broadcom = require('./broadcom.cjs');
|
|
946
948
|
exports.Broadcom = _broadcom.default;
|
|
947
949
|
const _bruno = require('./bruno.cjs');
|
|
@@ -4324,6 +4326,8 @@ const _million = require('./million.cjs');
|
|
|
4324
4326
|
exports.Million = _million.default;
|
|
4325
4327
|
const _milvus = require('./milvus.cjs');
|
|
4326
4328
|
exports.Milvus = _milvus.default;
|
|
4329
|
+
const _mimiclaw = require('./mimiclaw.cjs');
|
|
4330
|
+
exports.Mimiclaw = _mimiclaw.default;
|
|
4327
4331
|
const _minds = require('./minds.cjs');
|
|
4328
4332
|
exports.Minds = _minds.default;
|
|
4329
4333
|
const _mingw_w64 = require('./mingw-w64.cjs');
|
|
@@ -5208,6 +5212,8 @@ const _piapro = require('./piapro.cjs');
|
|
|
5208
5212
|
exports.Piapro = _piapro.default;
|
|
5209
5213
|
const _picartodottv = require('./picartodottv.cjs');
|
|
5210
5214
|
exports.Picartodottv = _picartodottv.default;
|
|
5215
|
+
const _picoclaw = require('./picoclaw.cjs');
|
|
5216
|
+
exports.Picoclaw = _picoclaw.default;
|
|
5211
5217
|
const _picnic = require('./picnic.cjs');
|
|
5212
5218
|
exports.Picnic = _picnic.default;
|
|
5213
5219
|
const _picpay = require('./picpay.cjs');
|
|
@@ -5462,6 +5468,8 @@ const _procure = require('./procure.cjs');
|
|
|
5462
5468
|
exports.Procure = _procure.default;
|
|
5463
5469
|
const _product_hunt = require('./product-hunt.cjs');
|
|
5464
5470
|
exports.ProductHunt = _product_hunt.default;
|
|
5471
|
+
const _profclaw = require('./profclaw.cjs');
|
|
5472
|
+
exports.Profclaw = _profclaw.default;
|
|
5465
5473
|
const _progate = require('./progate.cjs');
|
|
5466
5474
|
exports.Progate = _progate.default;
|
|
5467
5475
|
const _progress = require('./progress.cjs');
|
|
@@ -6836,6 +6844,8 @@ const _the_guardian = require('./the-guardian.cjs');
|
|
|
6836
6844
|
exports.TheGuardian = _the_guardian.default;
|
|
6837
6845
|
const _the_irish_times = require('./the-irish-times.cjs');
|
|
6838
6846
|
exports.TheIrishTimes = _the_irish_times.default;
|
|
6847
|
+
const _the_lawyers_global = require('./the-lawyers-global.cjs');
|
|
6848
|
+
exports.TheLawyersGlobal = _the_lawyers_global.default;
|
|
6839
6849
|
const _the_mighty = require('./the-mighty.cjs');
|
|
6840
6850
|
exports.TheMighty = _the_mighty.default;
|
|
6841
6851
|
const _the_models_resource = require('./the-models-resource.cjs');
|
package/dist/index.d.ts
CHANGED
|
@@ -472,6 +472,7 @@ export { default as Brevo } from './brevo.js';
|
|
|
472
472
|
export { default as Brex } from './brex.js';
|
|
473
473
|
export { default as Bricks } from './bricks.js';
|
|
474
474
|
export { default as BritishAirways } from './british-airways.js';
|
|
475
|
+
export { default as BritishCouncil } from './british-council.js';
|
|
475
476
|
export { default as Broadcom } from './broadcom.js';
|
|
476
477
|
export { default as Bruno } from './bruno.js';
|
|
477
478
|
export { default as Bsd } from './bsd.js';
|
|
@@ -2163,6 +2164,7 @@ export { default as Mikrotik } from './mikrotik.js';
|
|
|
2163
2164
|
export { default as Milanote } from './milanote.js';
|
|
2164
2165
|
export { default as Million } from './million.js';
|
|
2165
2166
|
export { default as Milvus } from './milvus.js';
|
|
2167
|
+
export { default as Mimiclaw } from './mimiclaw.js';
|
|
2166
2168
|
export { default as Minds } from './minds.js';
|
|
2167
2169
|
export { default as MingwW64 } from './mingw-w64.js';
|
|
2168
2170
|
export { default as Mini } from './mini.js';
|
|
@@ -2605,6 +2607,7 @@ export { default as PiNetwork } from './pi-network.js';
|
|
|
2605
2607
|
export { default as PiaggioGroup } from './piaggio-group.js';
|
|
2606
2608
|
export { default as Piapro } from './piapro.js';
|
|
2607
2609
|
export { default as Picartodottv } from './picartodottv.js';
|
|
2610
|
+
export { default as Picoclaw } from './picoclaw.js';
|
|
2608
2611
|
export { default as Picnic } from './picnic.js';
|
|
2609
2612
|
export { default as Picpay } from './picpay.js';
|
|
2610
2613
|
export { default as Picrew } from './picrew.js';
|
|
@@ -2732,6 +2735,7 @@ export { default as Processon } from './processon.js';
|
|
|
2732
2735
|
export { default as Processwire } from './processwire.js';
|
|
2733
2736
|
export { default as Procure } from './procure.js';
|
|
2734
2737
|
export { default as ProductHunt } from './product-hunt.js';
|
|
2738
|
+
export { default as Profclaw } from './profclaw.js';
|
|
2735
2739
|
export { default as Progate } from './progate.js';
|
|
2736
2740
|
export { default as Progress } from './progress.js';
|
|
2737
2741
|
export { default as Prometheus } from './prometheus.js';
|
|
@@ -3419,6 +3423,7 @@ export { default as TheConversation } from './the-conversation.js';
|
|
|
3419
3423
|
export { default as TheFinals } from './the-finals.js';
|
|
3420
3424
|
export { default as TheGuardian } from './the-guardian.js';
|
|
3421
3425
|
export { default as TheIrishTimes } from './the-irish-times.js';
|
|
3426
|
+
export { default as TheLawyersGlobal } from './the-lawyers-global.js';
|
|
3422
3427
|
export { default as TheMighty } from './the-mighty.js';
|
|
3423
3428
|
export { default as TheModelsResource } from './the-models-resource.js';
|
|
3424
3429
|
export { default as TheMovieDatabase } from './the-movie-database.js';
|
package/dist/index.js
CHANGED
|
@@ -470,6 +470,7 @@ export { default as Brevo } from './brevo.js';
|
|
|
470
470
|
export { default as Brex } from './brex.js';
|
|
471
471
|
export { default as Bricks } from './bricks.js';
|
|
472
472
|
export { default as BritishAirways } from './british-airways.js';
|
|
473
|
+
export { default as BritishCouncil } from './british-council.js';
|
|
473
474
|
export { default as Broadcom } from './broadcom.js';
|
|
474
475
|
export { default as Bruno } from './bruno.js';
|
|
475
476
|
export { default as Bsd } from './bsd.js';
|
|
@@ -2161,6 +2162,7 @@ export { default as Mikrotik } from './mikrotik.js';
|
|
|
2161
2162
|
export { default as Milanote } from './milanote.js';
|
|
2162
2163
|
export { default as Million } from './million.js';
|
|
2163
2164
|
export { default as Milvus } from './milvus.js';
|
|
2165
|
+
export { default as Mimiclaw } from './mimiclaw.js';
|
|
2164
2166
|
export { default as Minds } from './minds.js';
|
|
2165
2167
|
export { default as MingwW64 } from './mingw-w64.js';
|
|
2166
2168
|
export { default as Mini } from './mini.js';
|
|
@@ -2603,6 +2605,7 @@ export { default as PiNetwork } from './pi-network.js';
|
|
|
2603
2605
|
export { default as PiaggioGroup } from './piaggio-group.js';
|
|
2604
2606
|
export { default as Piapro } from './piapro.js';
|
|
2605
2607
|
export { default as Picartodottv } from './picartodottv.js';
|
|
2608
|
+
export { default as Picoclaw } from './picoclaw.js';
|
|
2606
2609
|
export { default as Picnic } from './picnic.js';
|
|
2607
2610
|
export { default as Picpay } from './picpay.js';
|
|
2608
2611
|
export { default as Picrew } from './picrew.js';
|
|
@@ -2730,6 +2733,7 @@ export { default as Processon } from './processon.js';
|
|
|
2730
2733
|
export { default as Processwire } from './processwire.js';
|
|
2731
2734
|
export { default as Procure } from './procure.js';
|
|
2732
2735
|
export { default as ProductHunt } from './product-hunt.js';
|
|
2736
|
+
export { default as Profclaw } from './profclaw.js';
|
|
2733
2737
|
export { default as Progate } from './progate.js';
|
|
2734
2738
|
export { default as Progress } from './progress.js';
|
|
2735
2739
|
export { default as Prometheus } from './prometheus.js';
|
|
@@ -3417,6 +3421,7 @@ export { default as TheConversation } from './the-conversation.js';
|
|
|
3417
3421
|
export { default as TheFinals } from './the-finals.js';
|
|
3418
3422
|
export { default as TheGuardian } from './the-guardian.js';
|
|
3419
3423
|
export { default as TheIrishTimes } from './the-irish-times.js';
|
|
3424
|
+
export { default as TheLawyersGlobal } from './the-lawyers-global.js';
|
|
3420
3425
|
export { default as TheMighty } from './the-mighty.js';
|
|
3421
3426
|
export { default as TheModelsResource } from './the-models-resource.js';
|
|
3422
3427
|
export { default as TheMovieDatabase } from './the-movie-database.js';
|
package/dist/langchain.cjs
CHANGED
|
@@ -6,11 +6,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
|
|
7
7
|
const react_1 = require("react");
|
|
8
8
|
|
|
9
|
-
const Langchain = react_1.forwardRef(function Langchain({ viewBox = '0 0
|
|
9
|
+
const Langchain = react_1.forwardRef(function Langchain({ viewBox = '0 0 120 120', ...props }, ref) {
|
|
10
10
|
return react_1.createElement(
|
|
11
11
|
'svg',
|
|
12
|
-
Object.assign({ ref, viewBox, fill: '
|
|
13
|
-
...[{"type":"
|
|
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":"M37.7,79.9c7.1-7.1,11-16.6,11-26.6s-4-19.6-11-26.6L11,0C4,7.1,0,16.6,0,26.6s4,19.6,11,26.6l26.6,26.6h0Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M93.4,82.3c-7.1-7.1-16.6-11-26.6-11s-19.6,4-26.6,11l26.6,26.6c7.1,7.1,16.6,11,26.6,11s19.6-4,26.6-11l-26.6-26.6h0Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M11.1,108.9c7.1,7.1,16.6,11,26.6,11v-37.7H0c0,10,4,19.6,11,26.6Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M103.7,43c-7.1-7.1-16.6-11-26.6-11-10,0-19.6,4-26.6,11l26.6,26.6,26.6-26.6Z"},"children":[]}]
|
|
14
14
|
.map(function _c(el) {
|
|
15
15
|
if (typeof el === 'string') return el;
|
|
16
16
|
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
package/dist/langchain.js
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
import { forwardRef, createElement } from 'react';
|
|
5
5
|
|
|
6
6
|
const Langchain = forwardRef(
|
|
7
|
-
function Langchain({ viewBox = '0 0
|
|
7
|
+
function Langchain({ viewBox = '0 0 120 120', ...props }, ref) {
|
|
8
8
|
return createElement(
|
|
9
9
|
'svg',
|
|
10
|
-
Object.assign({ ref, viewBox, fill: '
|
|
11
|
-
...[{"type":"
|
|
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":"M37.7,79.9c7.1-7.1,11-16.6,11-26.6s-4-19.6-11-26.6L11,0C4,7.1,0,16.6,0,26.6s4,19.6,11,26.6l26.6,26.6h0Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M93.4,82.3c-7.1-7.1-16.6-11-26.6-11s-19.6,4-26.6,11l26.6,26.6c7.1,7.1,16.6,11,26.6,11s19.6-4,26.6-11l-26.6-26.6h0Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M11.1,108.9c7.1,7.1,16.6,11,26.6,11v-37.7H0c0,10,4,19.6,11,26.6Z"},"children":[]},{"type":"path","props":{"className":"st0","d":"M103.7,43c-7.1-7.1-16.6-11-26.6-11-10,0-19.6,4-26.6,11l26.6,26.6,26.6-26.6Z"},"children":[]}]
|
|
12
12
|
.map(function _c(el) {
|
|
13
13
|
if (typeof el === 'string') return el;
|
|
14
14
|
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — MimiClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Mimiclaw = react_1.forwardRef(function Mimiclaw({ viewBox = '0 0 16 16', ...props }, ref) {
|
|
10
|
+
return react_1.createElement(
|
|
11
|
+
'svg',
|
|
12
|
+
Object.assign({ ref, viewBox, fill: '#ff4f40', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[{"type":"title","props":{},"children":["MimiClaw"]},{"type":"rect","props":{"x":"5","y":"3","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"4","y":"4","width":"8","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"5","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"6","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"7","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"4","y":"8","width":"8","height":"1"},"children":[]},{"type":"rect","props":{"x":"5","y":"9","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"5","y":"12","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"6","y":"13","width":"4","height":"1"},"children":[]},{"type":"rect","props":{"x":"1","y":"6","width":"2","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"2","y":"5","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"2","y":"7","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"6","width":"2","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"5","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"7","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"6","y":"4","width":"1","height":"1","fill":"#f5fbff"},"children":[]},{"type":"rect","props":{"x":"9","y":"4","width":"1","height":"1","fill":"#f5fbff"},"children":[]},{"type":"rect","props":{"x":"6","y":"5","width":"1","height":"1","fill":"#081016"},"children":[]},{"type":"rect","props":{"x":"9","y":"5","width":"1","height":"1","fill":"#081016"},"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
|
+
Mimiclaw.displayName = 'Mimiclaw';
|
|
21
|
+
|
|
22
|
+
exports.default = Mimiclaw;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — MimiClaw
|
|
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 Mimiclaw: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Mimiclaw;
|
package/dist/mimiclaw.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — MimiClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Mimiclaw = forwardRef(
|
|
7
|
+
function Mimiclaw({ viewBox = '0 0 16 16', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: '#ff4f40', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["MimiClaw"]},{"type":"rect","props":{"x":"5","y":"3","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"4","y":"4","width":"8","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"5","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"6","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"3","y":"7","width":"10","height":"1"},"children":[]},{"type":"rect","props":{"x":"4","y":"8","width":"8","height":"1"},"children":[]},{"type":"rect","props":{"x":"5","y":"9","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"5","y":"12","width":"6","height":"1"},"children":[]},{"type":"rect","props":{"x":"6","y":"13","width":"4","height":"1"},"children":[]},{"type":"rect","props":{"x":"1","y":"6","width":"2","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"2","y":"5","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"2","y":"7","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"6","width":"2","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"5","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"13","y":"7","width":"1","height":"1","fill":"#ff775f"},"children":[]},{"type":"rect","props":{"x":"6","y":"4","width":"1","height":"1","fill":"#f5fbff"},"children":[]},{"type":"rect","props":{"x":"9","y":"4","width":"1","height":"1","fill":"#f5fbff"},"children":[]},{"type":"rect","props":{"x":"6","y":"5","width":"1","height":"1","fill":"#081016"},"children":[]},{"type":"rect","props":{"x":"9","y":"5","width":"1","height":"1","fill":"#081016"},"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
|
+
Mimiclaw.displayName = 'Mimiclaw';
|
|
20
|
+
|
|
21
|
+
export default Mimiclaw;
|
|
@@ -9,8 +9,8 @@ const react_1 = require("react");
|
|
|
9
9
|
const OpenclawMoltbotClawdbot = react_1.forwardRef(function OpenclawMoltbotClawdbot({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
10
10
|
return react_1.createElement(
|
|
11
11
|
'svg',
|
|
12
|
-
Object.assign({ ref, viewBox, fill: '
|
|
13
|
-
...[{"type":"title","props":{},"children":["OpenClaw (MoltBot/ClawdBot)"]},{"type":"path","props":{"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z"},"children":[]},{"type":"path","props":{"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z"},"children":[]},{"type":"path","props":{"clipRule":"evenodd","d":"M16.877 1.912c.58-.27 1.14-.323 1.616-.037a.317.317 0 01-.326.542c-.227-.136-.547-.153-1.022.068-.352.165-.765.45-1.234.866 2.683 1.17 4.4 3.5 5.148 5.921a6.421 6.421 0 00-.704.184c-.578.016-1.174.204-1.502.735-.338.55-.268 1.276.072 2.069l.005.012.007.014c.523 1.045 1.318 1.91 2.2 2.284-.912 3.274-3.44 6.144-5.972 6.988v2.109h-2.11v-2.11c-1.043.417-2.086.01-2.11 0v2.11h-2.11v-2.11c-2.531-.843-5.061-3.713-5.973-6.987.882-.373 1.678-1.238 2.2-2.284l.007-.014.006-.012c.34-.793.41-1.518.071-2.069-.327-.531-.923-.719-1.503-.735a6.409 6.409 0 00-.704-.183c.749-2.421 2.466-4.751 5.149-5.922-.47-.416-.88-.701-1.234-.866-.474-.221-.794-.204-1.021-.068a.318.318 0 01-.435-.109.317.317 0 01.109-.433c.476-.286 1.036-.233 1.615.037.49.229 1.031.628 1.621 1.182A9.924 9.924 0 0112 2.568c1.199 0 2.284.19 3.256.526.59-.554 1.13-.953 1.62-1.182zM8.835 6.577a1.266 1.266 0 100 2.532 1.266 1.266 0 000-2.532zm6.33 0a1.267 1.267 0 100 2.533 1.267 1.267 0 000-2.533z"},"children":[]},{"type":"path","props":{"d":"M.395 13.118c-.966-1.932-.163-3.863 2.41-3.365v-.001l.05.01c.084.018.17.038.26.06.033.009.067.017.1.027.084.022.168.048.255.076l.09.027c.528 0 .95.158 1.16.501.212.343.212.87-.105 1.61-.085.17-.178.333-.276.489l-.01.017a4.967 4.967 0 01-.62.791l-.019.02c-1.092 1.117-2.496 1.336-3.295-.262z"},"children":[]},{"type":"path","props":{"d":"M21.193 9.753c2.574-.5 3.378 1.433 2.411 3.365-.58 1.159-1.476 1.361-2.342.96l-.011-.005a2.419 2.419 0 01-.114-.056l-.019-.01a2.751 2.751 0 01-.115-.067l-.023-.014c-.035-.022-.071-.044-.106-.068l-.05-.035c-.55-.388-1.062-1.007-1.44-1.76-.276-.647-.311-1.132-.174-1.472.176-.439.636-.639 1.23-.639.032-.011.066-.02.099-.03.08-.026.16-.05.238-.072l.117-.03a5.502 5.502 0 01.3-.067z"},"children":[]}
|
|
12
|
+
Object.assign({ ref, viewBox, fill: '#ff4d4d', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[{"type":"title","props":{},"children":["OpenClaw (MoltBot/ClawdBot)"]},{"type":"path","props":{"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z","fill":"#050810"},"children":[]},{"type":"path","props":{"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z","fill":"#050810"},"children":[]},{"type":"path","props":{"clipRule":"evenodd","d":"M16.877 1.912c.58-.27 1.14-.323 1.616-.037a.317.317 0 01-.326.542c-.227-.136-.547-.153-1.022.068-.352.165-.765.45-1.234.866 2.683 1.17 4.4 3.5 5.148 5.921a6.421 6.421 0 00-.704.184c-.578.016-1.174.204-1.502.735-.338.55-.268 1.276.072 2.069l.005.012.007.014c.523 1.045 1.318 1.91 2.2 2.284-.912 3.274-3.44 6.144-5.972 6.988v2.109h-2.11v-2.11c-1.043.417-2.086.01-2.11 0v2.11h-2.11v-2.11c-2.531-.843-5.061-3.713-5.973-6.987.882-.373 1.678-1.238 2.2-2.284l.007-.014.006-.012c.34-.793.41-1.518.071-2.069-.327-.531-.923-.719-1.503-.735a6.409 6.409 0 00-.704-.183c.749-2.421 2.466-4.751 5.149-5.922-.47-.416-.88-.701-1.234-.866-.474-.221-.794-.204-1.021-.068a.318.318 0 01-.435-.109.317.317 0 01.109-.433c.476-.286 1.036-.233 1.615.037.49.229 1.031.628 1.621 1.182A9.924 9.924 0 0112 2.568c1.199 0 2.284.19 3.256.526.59-.554 1.13-.953 1.62-1.182zM8.835 6.577a1.266 1.266 0 100 2.532 1.266 1.266 0 000-2.532zm6.33 0a1.267 1.267 0 100 2.533 1.267 1.267 0 000-2.533z"},"children":[]},{"type":"path","props":{"d":"M.395 13.118c-.966-1.932-.163-3.863 2.41-3.365v-.001l.05.01c.084.018.17.038.26.06.033.009.067.017.1.027.084.022.168.048.255.076l.09.027c.528 0 .95.158 1.16.501.212.343.212.87-.105 1.61-.085.17-.178.333-.276.489l-.01.017a4.967 4.967 0 01-.62.791l-.019.02c-1.092 1.117-2.496 1.336-3.295-.262z"},"children":[]},{"type":"path","props":{"d":"M21.193 9.753c2.574-.5 3.378 1.433 2.411 3.365-.58 1.159-1.476 1.361-2.342.96l-.011-.005a2.419 2.419 0 01-.114-.056l-.019-.01a2.751 2.751 0 01-.115-.067l-.023-.014c-.035-.022-.071-.044-.106-.068l-.05-.035c-.55-.388-1.062-1.007-1.44-1.76-.276-.647-.311-1.132-.174-1.472.176-.439.636-.639 1.23-.639.032-.011.066-.02.099-.03.08-.026.16-.05.238-.072l.117-.03a5.502 5.502 0 01.3-.067z"},"children":[]}]
|
|
14
14
|
.map(function _c(el) {
|
|
15
15
|
if (typeof el === 'string') return el;
|
|
16
16
|
return react_1.createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
@@ -7,8 +7,8 @@ const OpenclawMoltbotClawdbot = forwardRef(
|
|
|
7
7
|
function OpenclawMoltbotClawdbot({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
8
8
|
return createElement(
|
|
9
9
|
'svg',
|
|
10
|
-
Object.assign({ ref, viewBox, fill: '
|
|
11
|
-
...[{"type":"title","props":{},"children":["OpenClaw (MoltBot/ClawdBot)"]},{"type":"path","props":{"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z"},"children":[]},{"type":"path","props":{"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z"},"children":[]},{"type":"path","props":{"clipRule":"evenodd","d":"M16.877 1.912c.58-.27 1.14-.323 1.616-.037a.317.317 0 01-.326.542c-.227-.136-.547-.153-1.022.068-.352.165-.765.45-1.234.866 2.683 1.17 4.4 3.5 5.148 5.921a6.421 6.421 0 00-.704.184c-.578.016-1.174.204-1.502.735-.338.55-.268 1.276.072 2.069l.005.012.007.014c.523 1.045 1.318 1.91 2.2 2.284-.912 3.274-3.44 6.144-5.972 6.988v2.109h-2.11v-2.11c-1.043.417-2.086.01-2.11 0v2.11h-2.11v-2.11c-2.531-.843-5.061-3.713-5.973-6.987.882-.373 1.678-1.238 2.2-2.284l.007-.014.006-.012c.34-.793.41-1.518.071-2.069-.327-.531-.923-.719-1.503-.735a6.409 6.409 0 00-.704-.183c.749-2.421 2.466-4.751 5.149-5.922-.47-.416-.88-.701-1.234-.866-.474-.221-.794-.204-1.021-.068a.318.318 0 01-.435-.109.317.317 0 01.109-.433c.476-.286 1.036-.233 1.615.037.49.229 1.031.628 1.621 1.182A9.924 9.924 0 0112 2.568c1.199 0 2.284.19 3.256.526.59-.554 1.13-.953 1.62-1.182zM8.835 6.577a1.266 1.266 0 100 2.532 1.266 1.266 0 000-2.532zm6.33 0a1.267 1.267 0 100 2.533 1.267 1.267 0 000-2.533z"},"children":[]},{"type":"path","props":{"d":"M.395 13.118c-.966-1.932-.163-3.863 2.41-3.365v-.001l.05.01c.084.018.17.038.26.06.033.009.067.017.1.027.084.022.168.048.255.076l.09.027c.528 0 .95.158 1.16.501.212.343.212.87-.105 1.61-.085.17-.178.333-.276.489l-.01.017a4.967 4.967 0 01-.62.791l-.019.02c-1.092 1.117-2.496 1.336-3.295-.262z"},"children":[]},{"type":"path","props":{"d":"M21.193 9.753c2.574-.5 3.378 1.433 2.411 3.365-.58 1.159-1.476 1.361-2.342.96l-.011-.005a2.419 2.419 0 01-.114-.056l-.019-.01a2.751 2.751 0 01-.115-.067l-.023-.014c-.035-.022-.071-.044-.106-.068l-.05-.035c-.55-.388-1.062-1.007-1.44-1.76-.276-.647-.311-1.132-.174-1.472.176-.439.636-.639 1.23-.639.032-.011.066-.02.099-.03.08-.026.16-.05.238-.072l.117-.03a5.502 5.502 0 01.3-.067z"},"children":[]}
|
|
10
|
+
Object.assign({ ref, viewBox, fill: '#ff4d4d', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["OpenClaw (MoltBot/ClawdBot)"]},{"type":"path","props":{"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z","fill":"#050810"},"children":[]},{"type":"path","props":{"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z","fill":"#050810"},"children":[]},{"type":"path","props":{"clipRule":"evenodd","d":"M16.877 1.912c.58-.27 1.14-.323 1.616-.037a.317.317 0 01-.326.542c-.227-.136-.547-.153-1.022.068-.352.165-.765.45-1.234.866 2.683 1.17 4.4 3.5 5.148 5.921a6.421 6.421 0 00-.704.184c-.578.016-1.174.204-1.502.735-.338.55-.268 1.276.072 2.069l.005.012.007.014c.523 1.045 1.318 1.91 2.2 2.284-.912 3.274-3.44 6.144-5.972 6.988v2.109h-2.11v-2.11c-1.043.417-2.086.01-2.11 0v2.11h-2.11v-2.11c-2.531-.843-5.061-3.713-5.973-6.987.882-.373 1.678-1.238 2.2-2.284l.007-.014.006-.012c.34-.793.41-1.518.071-2.069-.327-.531-.923-.719-1.503-.735a6.409 6.409 0 00-.704-.183c.749-2.421 2.466-4.751 5.149-5.922-.47-.416-.88-.701-1.234-.866-.474-.221-.794-.204-1.021-.068a.318.318 0 01-.435-.109.317.317 0 01.109-.433c.476-.286 1.036-.233 1.615.037.49.229 1.031.628 1.621 1.182A9.924 9.924 0 0112 2.568c1.199 0 2.284.19 3.256.526.59-.554 1.13-.953 1.62-1.182zM8.835 6.577a1.266 1.266 0 100 2.532 1.266 1.266 0 000-2.532zm6.33 0a1.267 1.267 0 100 2.533 1.267 1.267 0 000-2.533z"},"children":[]},{"type":"path","props":{"d":"M.395 13.118c-.966-1.932-.163-3.863 2.41-3.365v-.001l.05.01c.084.018.17.038.26.06.033.009.067.017.1.027.084.022.168.048.255.076l.09.027c.528 0 .95.158 1.16.501.212.343.212.87-.105 1.61-.085.17-.178.333-.276.489l-.01.017a4.967 4.967 0 01-.62.791l-.019.02c-1.092 1.117-2.496 1.336-3.295-.262z"},"children":[]},{"type":"path","props":{"d":"M21.193 9.753c2.574-.5 3.378 1.433 2.411 3.365-.58 1.159-1.476 1.361-2.342.96l-.011-.005a2.419 2.419 0 01-.114-.056l-.019-.01a2.751 2.751 0 01-.115-.067l-.023-.014c-.035-.022-.071-.044-.106-.068l-.05-.035c-.55-.388-1.062-1.007-1.44-1.76-.276-.647-.311-1.132-.174-1.472.176-.439.636-.639 1.23-.639.032-.011.066-.02.099-.03.08-.026.16-.05.238-.072l.117-.03a5.502 5.502 0 01.3-.067z"},"children":[]}]
|
|
12
12
|
.map(function _c(el) {
|
|
13
13
|
if (typeof el === 'string') return el;
|
|
14
14
|
return createElement(el.type, el.props, ...(el.children || []).map(_c));
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — PicoClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Picoclaw = react_1.forwardRef(function Picoclaw({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
10
|
+
return react_1.createElement(
|
|
11
|
+
'svg',
|
|
12
|
+
Object.assign({ ref, viewBox, fill: '#2d6a8a', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[{"type":"title","props":{},"children":["PicoClaw"]},{"type":"ellipse","props":{"cx":"12","cy":"12.5","rx":"5.5","ry":"6"},"children":[]},{"type":"ellipse","props":{"cx":"12","cy":"7.5","rx":"4","ry":"3.5"},"children":[]},{"type":"path","props":{"d":"M9.5 5.5 Q7 2 5.5 2.5","stroke":"#2d6a8a","strokeWidth":"1","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"path","props":{"d":"M14.5 5.5 Q17 2 18.5 2.5","stroke":"#2d6a8a","strokeWidth":"1","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"5.2","cy":"2.5","r":"1","fill":"#2d6a8a"},"children":[]},{"type":"circle","props":{"cx":"18.8","cy":"2.5","r":"1","fill":"#2d6a8a"},"children":[]},{"type":"path","props":{"d":"M5.5 10 Q2 8.5 2 11 Q2 13.5 5 12.5","fill":"#e05c5c"},"children":[]},{"type":"path","props":{"d":"M18.5 10 Q22 8.5 22 11 Q22 13.5 19 12.5","fill":"#e05c5c"},"children":[]},{"type":"rect","props":{"x":"10","y":"18","width":"4","height":"2","rx":"1"},"children":[]},{"type":"rect","props":{"x":"10.5","y":"20","width":"3","height":"1.5","rx":".75"},"children":[]},{"type":"path","props":{"d":"M10 21.5 Q12 23.5 14 21.5","fill":"#2d6a8a"},"children":[]},{"type":"circle","props":{"cx":"10","cy":"7","r":"1.8","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"14","cy":"7","r":"1.8","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.3","cy":"6.8","r":"1","fill":"#0a1929"},"children":[]},{"type":"circle","props":{"cx":"14.3","cy":"6.8","r":"1","fill":"#0a1929"},"children":[]},{"type":"rect","props":{"x":"10","y":"11","width":"4","height":"3","rx":".8","fill":"#1a4a6a","opacity":".5"},"children":[]},{"type":"line","props":{"x1":"11","y1":"11","x2":"11","y2":"14","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"children":[]},{"type":"line","props":{"x1":"13","y1":"11","x2":"13","y2":"14","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"children":[]},{"type":"line","props":{"x1":"10","y1":"12.5","x2":"14","y2":"12.5","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"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
|
+
Picoclaw.displayName = 'Picoclaw';
|
|
21
|
+
|
|
22
|
+
exports.default = Picoclaw;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — PicoClaw
|
|
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 Picoclaw: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Picoclaw;
|
package/dist/picoclaw.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — PicoClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Picoclaw = forwardRef(
|
|
7
|
+
function Picoclaw({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: '#2d6a8a', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["PicoClaw"]},{"type":"ellipse","props":{"cx":"12","cy":"12.5","rx":"5.5","ry":"6"},"children":[]},{"type":"ellipse","props":{"cx":"12","cy":"7.5","rx":"4","ry":"3.5"},"children":[]},{"type":"path","props":{"d":"M9.5 5.5 Q7 2 5.5 2.5","stroke":"#2d6a8a","strokeWidth":"1","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"path","props":{"d":"M14.5 5.5 Q17 2 18.5 2.5","stroke":"#2d6a8a","strokeWidth":"1","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"5.2","cy":"2.5","r":"1","fill":"#2d6a8a"},"children":[]},{"type":"circle","props":{"cx":"18.8","cy":"2.5","r":"1","fill":"#2d6a8a"},"children":[]},{"type":"path","props":{"d":"M5.5 10 Q2 8.5 2 11 Q2 13.5 5 12.5","fill":"#e05c5c"},"children":[]},{"type":"path","props":{"d":"M18.5 10 Q22 8.5 22 11 Q22 13.5 19 12.5","fill":"#e05c5c"},"children":[]},{"type":"rect","props":{"x":"10","y":"18","width":"4","height":"2","rx":"1"},"children":[]},{"type":"rect","props":{"x":"10.5","y":"20","width":"3","height":"1.5","rx":".75"},"children":[]},{"type":"path","props":{"d":"M10 21.5 Q12 23.5 14 21.5","fill":"#2d6a8a"},"children":[]},{"type":"circle","props":{"cx":"10","cy":"7","r":"1.8","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"14","cy":"7","r":"1.8","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.3","cy":"6.8","r":"1","fill":"#0a1929"},"children":[]},{"type":"circle","props":{"cx":"14.3","cy":"6.8","r":"1","fill":"#0a1929"},"children":[]},{"type":"rect","props":{"x":"10","y":"11","width":"4","height":"3","rx":".8","fill":"#1a4a6a","opacity":".5"},"children":[]},{"type":"line","props":{"x1":"11","y1":"11","x2":"11","y2":"14","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"children":[]},{"type":"line","props":{"x1":"13","y1":"11","x2":"13","y2":"14","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"children":[]},{"type":"line","props":{"x1":"10","y1":"12.5","x2":"14","y2":"12.5","stroke":"#4a9aba","strokeWidth":".3","opacity":".6"},"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
|
+
Picoclaw.displayName = 'Picoclaw';
|
|
20
|
+
|
|
21
|
+
export default Picoclaw;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — profClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const Profclaw = react_1.forwardRef(function Profclaw({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
10
|
+
return react_1.createElement(
|
|
11
|
+
'svg',
|
|
12
|
+
Object.assign({ ref, viewBox, fill: '#f43f5e', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
13
|
+
...[{"type":"title","props":{},"children":["profClaw"]},{"type":"ellipse","props":{"cx":"12","cy":"13","rx":"5.76","ry":"5.28"},"children":[]},{"type":"ellipse","props":{"cx":"11.52","cy":"11.76","rx":"3.12","ry":"2.16","fill":"#fda4af","opacity":".15"},"children":[]},{"type":"rect","props":{"x":"9.36","y":"17.52","width":"1.92","height":"2.4","rx":".96","fill":"#be123c"},"children":[]},{"type":"rect","props":{"x":"12.72","y":"17.52","width":"1.92","height":"2.4","rx":".96","fill":"#be123c"},"children":[]},{"type":"ellipse","props":{"cx":"4.8","cy":"12.96","rx":"1.92","ry":"1.44","fill":"#be123c"},"children":[]},{"type":"path","props":{"d":"M3.6,11.76 L4.8,12.96 L6,11.76","stroke":"#4c0519","strokeWidth":".43","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"ellipse","props":{"cx":"19.2","cy":"12.96","rx":"1.92","ry":"1.44","fill":"#be123c"},"children":[]},{"type":"path","props":{"d":"M18,11.76 L19.2,12.96 L20.4,11.76","stroke":"#4c0519","strokeWidth":".43","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"line","props":{"x1":"9.36","y1":"8.16","x2":"7.44","y2":"4.8","stroke":"#be123c","strokeWidth":".53","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"7.2","cy":"4.32","r":".84","fill":"#fda4af"},"children":[]},{"type":"circle","props":{"cx":"7.2","cy":"4.32","r":".31","fill":"#fff","opacity":".35"},"children":[]},{"type":"line","props":{"x1":"14.64","y1":"8.16","x2":"16.56","y2":"4.8","stroke":"#be123c","strokeWidth":".53","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"16.8","cy":"4.32","r":".84","fill":"#fda4af"},"children":[]},{"type":"circle","props":{"cx":"16.8","cy":"4.32","r":".31","fill":"#fff","opacity":".35"},"children":[]},{"type":"circle","props":{"cx":"10.32","cy":"12.24","r":"1.56","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"13.68","cy":"12.24","r":"1.56","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.68","cy":"12","r":".84","fill":"#4c0519"},"children":[]},{"type":"circle","props":{"cx":"14.04","cy":"12","r":".84","fill":"#4c0519"},"children":[]},{"type":"circle","props":{"cx":"11.04","cy":"11.64","r":".34","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"14.4","cy":"11.64","r":".34","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.32","cy":"12.6","r":".17","fill":"#fff","opacity":".3"},"children":[]},{"type":"circle","props":{"cx":"13.68","cy":"12.6","r":".17","fill":"#fff","opacity":".3"},"children":[]},{"type":"path","props":{"d":"M10.8,15.12 Q12,16.32 13.68,14.88","stroke":"#9f1239","strokeWidth":".48","fill":"none","strokeLinecap":"round"},"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
|
+
Profclaw.displayName = 'Profclaw';
|
|
21
|
+
|
|
22
|
+
exports.default = Profclaw;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — profClaw
|
|
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 Profclaw: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default Profclaw;
|
package/dist/profclaw.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — profClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const Profclaw = forwardRef(
|
|
7
|
+
function Profclaw({ viewBox = '0 0 24 24', ...props }, ref) {
|
|
8
|
+
return createElement(
|
|
9
|
+
'svg',
|
|
10
|
+
Object.assign({ ref, viewBox, fill: '#f43f5e', xmlns: 'http://www.w3.org/2000/svg' }, props),
|
|
11
|
+
...[{"type":"title","props":{},"children":["profClaw"]},{"type":"ellipse","props":{"cx":"12","cy":"13","rx":"5.76","ry":"5.28"},"children":[]},{"type":"ellipse","props":{"cx":"11.52","cy":"11.76","rx":"3.12","ry":"2.16","fill":"#fda4af","opacity":".15"},"children":[]},{"type":"rect","props":{"x":"9.36","y":"17.52","width":"1.92","height":"2.4","rx":".96","fill":"#be123c"},"children":[]},{"type":"rect","props":{"x":"12.72","y":"17.52","width":"1.92","height":"2.4","rx":".96","fill":"#be123c"},"children":[]},{"type":"ellipse","props":{"cx":"4.8","cy":"12.96","rx":"1.92","ry":"1.44","fill":"#be123c"},"children":[]},{"type":"path","props":{"d":"M3.6,11.76 L4.8,12.96 L6,11.76","stroke":"#4c0519","strokeWidth":".43","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"ellipse","props":{"cx":"19.2","cy":"12.96","rx":"1.92","ry":"1.44","fill":"#be123c"},"children":[]},{"type":"path","props":{"d":"M18,11.76 L19.2,12.96 L20.4,11.76","stroke":"#4c0519","strokeWidth":".43","fill":"none","strokeLinecap":"round"},"children":[]},{"type":"line","props":{"x1":"9.36","y1":"8.16","x2":"7.44","y2":"4.8","stroke":"#be123c","strokeWidth":".53","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"7.2","cy":"4.32","r":".84","fill":"#fda4af"},"children":[]},{"type":"circle","props":{"cx":"7.2","cy":"4.32","r":".31","fill":"#fff","opacity":".35"},"children":[]},{"type":"line","props":{"x1":"14.64","y1":"8.16","x2":"16.56","y2":"4.8","stroke":"#be123c","strokeWidth":".53","strokeLinecap":"round"},"children":[]},{"type":"circle","props":{"cx":"16.8","cy":"4.32","r":".84","fill":"#fda4af"},"children":[]},{"type":"circle","props":{"cx":"16.8","cy":"4.32","r":".31","fill":"#fff","opacity":".35"},"children":[]},{"type":"circle","props":{"cx":"10.32","cy":"12.24","r":"1.56","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"13.68","cy":"12.24","r":"1.56","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.68","cy":"12","r":".84","fill":"#4c0519"},"children":[]},{"type":"circle","props":{"cx":"14.04","cy":"12","r":".84","fill":"#4c0519"},"children":[]},{"type":"circle","props":{"cx":"11.04","cy":"11.64","r":".34","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"14.4","cy":"11.64","r":".34","fill":"#fff"},"children":[]},{"type":"circle","props":{"cx":"10.32","cy":"12.6","r":".17","fill":"#fff","opacity":".3"},"children":[]},{"type":"circle","props":{"cx":"13.68","cy":"12.6","r":".17","fill":"#fff","opacity":".3"},"children":[]},{"type":"path","props":{"d":"M10.8,15.12 Q12,16.32 13.68,14.88","stroke":"#9f1239","strokeWidth":".48","fill":"none","strokeLinecap":"round"},"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
|
+
Profclaw.displayName = 'Profclaw';
|
|
20
|
+
|
|
21
|
+
export default Profclaw;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/react — The Lawyers Global
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
|
|
9
|
+
const TheLawyersGlobal = react_1.forwardRef(function TheLawyersGlobal({ viewBox = '0 0 1400 1400', ...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":"title","props":{},"children":["TLG-LOGO-SQUARE-BLUE-WHITE"]},{"type":"g","props":{"id":"f4f291f1-c050-43cb-9657-8bf0d77c1509","dataName":"TLG-LOGO-SQUARE-BLUE-WHITE"},"children":[{"type":"rect","props":{"className":"a994d081-920a-4a9c-a132-357baac52b04","width":"1400","height":"1400"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M198.14,631.13H161.26V589.2H282.51v41.93H245.88v145H198.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M289.84,589.2h41.93v59.61h.51c7.07-12.63,21.22-17.68,36.12-17.68,13.39,0,29.31,4.8,38.15,15.41,11.87,13.89,13.13,26.27,13.13,51.28v78.31H377.75V699.84c0-6.82,0-29.3-22.48-29.3-23.5,0-23.5,21-23.5,27.79v77.8H289.84Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M572,732.18c-6.82,15.66-16.67,27.78-28.54,35.87a68.2,68.2,0,0,1-39.92,12.63c-40.16,0-74.27-32.59-74.27-74.27,0-39.16,30.82-75.28,73.51-75.28s74,33.85,74,76.54a57.12,57.12,0,0,1-1,11.12H470.71c2.53,16.67,16.42,26.52,32.84,26.52,12.89,0,19.71-5.81,25.52-13.13ZM534.88,690.5c-1.77-8.34-10.11-24-31.83-24s-30.06,15.66-31.83,24Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M198.14,805.8h47.74v145H301.2v41.93H198.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M456.56,992.73H414.63V977.58h-.51c-7.07,13.64-24.5,19.95-40.92,19.95-44.46,0-70.48-34.86-70.48-75,0-46,33.09-74.78,70.48-74.78,23,0,35.87,11.12,40.92,19.71h.51V852.53h41.93Zm-77-34.35c26.27,0,35.11-22.23,35.11-35.87,0-16.93-11.62-35.62-35.37-35.62-24,0-34.61,20.21-34.61,36.12C344.65,936.15,354.25,958.38,379.52,958.38Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M507.09,852.53l21,87.15h.5l23-87.15h35.37l23.24,87.15h.5l21-87.15h43.2l-43,140.2H593L569.48,902H569l-23.49,90.69H506.58l-42.94-140.2Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M818.82,852.53l-70.23,186.94H704.13l22.23-53.81-52-133.13H719l28.05,81.34h.5l26.78-81.34Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M951.75,948.78c-6.82,15.66-16.67,27.79-28.54,35.87a68.15,68.15,0,0,1-39.92,12.63C843.13,997.28,809,964.69,809,923c0-39.15,30.82-75.28,73.51-75.28s74,33.85,74,76.55a57,57,0,0,1-1,11.11H850.45c2.53,16.67,16.42,26.53,32.84,26.53,12.88,0,19.71-5.82,25.52-13.14ZM914.62,907.1c-1.77-8.34-10.11-24-31.83-24s-30.07,15.66-31.83,24Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M966.91,852.53h39.41v14.91h.5c3.54-6.82,10.86-19.71,35.12-19.71v42.19c-19.46.5-33.1,4.55-33.1,25.77v77H966.91Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M1114.69,891.94c-.25-3-.76-10.61-13.14-10.61-8.84,0-11.87,5.56-11.87,9.35,0,7.58,10.36,11.87,21.47,15.15,23.75,6.57,49,13.65,49,44,0,29.56-26,47.74-57.09,47.74-21.22,0-53.3-9.6-57.09-46.48h41.68c1.77,12.89,14.14,12.89,15.91,12.89,7.08,0,14.65-4.05,14.65-10.87,0-10.86-10.35-12.12-37.13-22.48-18.19-5.81-33.35-17.68-33.35-36.63,0-27.79,25.27-46.23,54.32-46.23,18.44,0,50.27,7.33,53.8,44.21Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M387.6,1107.92c.25,3.28.25,6.06.25,9.85,0,62.65-48,100.29-99.78,100.29-56.59,0-99.28-44.21-99.28-98,0-55.82,45-96.24,100-96.24,44.72,0,83.12,30.06,93.47,66.18H328.74c-7.33-13.13-21-24.25-41.18-24.25-23.49,0-51,17.43-51,54.31,0,39.16,27.79,56.09,51.28,56.09,23.75,0,39.67-11.88,44.72-30.07H276.7v-38.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M398.21,1027.33h41.93v186.94H398.21Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M524.26,1069.52c51,0,75.54,40.17,75.54,74.52s-24.51,74.53-75.54,74.53-75.53-40.17-75.53-74.53S473.23,1069.52,524.26,1069.52Zm0,109.89c18.19,0,33.6-14.9,33.6-35.37s-15.41-35.36-33.6-35.36-33.59,14.9-33.59,35.36S506.07,1179.41,524.26,1179.41Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M608.38,1027.33h41.94v57.85c14.9-15.91,34.86-15.91,40.67-15.91,29.3,0,69,21,69,74,0,50.52-35.11,75.78-70.73,75.78-19.7,0-34.86-9.6-40.17-19.7h-.5v14.9H608.38Zm74.53,152.59c21.47,0,35.11-17.44,35.11-35.88,0-18.19-13.64-35.62-34.36-35.62-22.23,0-34.86,17.94-34.86,35.37C648.8,1163.24,661.94,1179.92,682.91,1179.92Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M920.62,1214.27H878.68v-15.16h-.5c-7.07,13.64-24.51,20-40.93,20-44.46,0-70.48-34.86-70.48-75,0-46,33.1-74.77,70.48-74.77,23,0,35.88,11.11,40.93,19.7h.5v-14.9h41.94Zm-77-34.35c26.27,0,35.11-22.24,35.11-35.88,0-16.92-11.62-35.62-35.36-35.62-24,0-34.61,20.21-34.61,36.13C808.71,1157.68,818.31,1179.92,843.57,1179.92Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M938.55,1027.33h41.94v186.94H938.55Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M1035,1033a17.49,17.49,0,1,1-17.45-17.49A17.51,17.51,0,0,1,1035,1033Zm-31.32,0a13.83,13.83,0,1,0,13.83-14A13.89,13.89,0,0,0,1003.67,1033Zm14.79-9.85c1.24,0,7,0,7,5.45a4.6,4.6,0,0,1-3.71,4.86v.09c2.75.78,3.25,2.42,3.34,5,.19,3.39.19,3.8.65,4.62h-3.44c-.36-.59-.5-1.19-.59-3.7-.14-3.16-.78-4-4.22-4.31h-4.07v8H1010v-20Zm-5,8.8h4.12c1.42,0,4.49,0,4.49-3.21-.23-2.11-2.34-2.33-4-2.33h-4.58Z"},"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
|
+
TheLawyersGlobal.displayName = 'TheLawyersGlobal';
|
|
21
|
+
|
|
22
|
+
exports.default = TheLawyersGlobal;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// @thesvg/react — The Lawyers Global
|
|
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 TheLawyersGlobal: ForwardRefExoticComponent<SvgIconProps & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default TheLawyersGlobal;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @thesvg/react — The Lawyers Global
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { forwardRef, createElement } from 'react';
|
|
5
|
+
|
|
6
|
+
const TheLawyersGlobal = forwardRef(
|
|
7
|
+
function TheLawyersGlobal({ viewBox = '0 0 1400 1400', ...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":"title","props":{},"children":["TLG-LOGO-SQUARE-BLUE-WHITE"]},{"type":"g","props":{"id":"f4f291f1-c050-43cb-9657-8bf0d77c1509","dataName":"TLG-LOGO-SQUARE-BLUE-WHITE"},"children":[{"type":"rect","props":{"className":"a994d081-920a-4a9c-a132-357baac52b04","width":"1400","height":"1400"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M198.14,631.13H161.26V589.2H282.51v41.93H245.88v145H198.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M289.84,589.2h41.93v59.61h.51c7.07-12.63,21.22-17.68,36.12-17.68,13.39,0,29.31,4.8,38.15,15.41,11.87,13.89,13.13,26.27,13.13,51.28v78.31H377.75V699.84c0-6.82,0-29.3-22.48-29.3-23.5,0-23.5,21-23.5,27.79v77.8H289.84Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M572,732.18c-6.82,15.66-16.67,27.78-28.54,35.87a68.2,68.2,0,0,1-39.92,12.63c-40.16,0-74.27-32.59-74.27-74.27,0-39.16,30.82-75.28,73.51-75.28s74,33.85,74,76.54a57.12,57.12,0,0,1-1,11.12H470.71c2.53,16.67,16.42,26.52,32.84,26.52,12.89,0,19.71-5.81,25.52-13.13ZM534.88,690.5c-1.77-8.34-10.11-24-31.83-24s-30.06,15.66-31.83,24Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M198.14,805.8h47.74v145H301.2v41.93H198.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M456.56,992.73H414.63V977.58h-.51c-7.07,13.64-24.5,19.95-40.92,19.95-44.46,0-70.48-34.86-70.48-75,0-46,33.09-74.78,70.48-74.78,23,0,35.87,11.12,40.92,19.71h.51V852.53h41.93Zm-77-34.35c26.27,0,35.11-22.23,35.11-35.87,0-16.93-11.62-35.62-35.37-35.62-24,0-34.61,20.21-34.61,36.12C344.65,936.15,354.25,958.38,379.52,958.38Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M507.09,852.53l21,87.15h.5l23-87.15h35.37l23.24,87.15h.5l21-87.15h43.2l-43,140.2H593L569.48,902H569l-23.49,90.69H506.58l-42.94-140.2Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M818.82,852.53l-70.23,186.94H704.13l22.23-53.81-52-133.13H719l28.05,81.34h.5l26.78-81.34Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M951.75,948.78c-6.82,15.66-16.67,27.79-28.54,35.87a68.15,68.15,0,0,1-39.92,12.63C843.13,997.28,809,964.69,809,923c0-39.15,30.82-75.28,73.51-75.28s74,33.85,74,76.55a57,57,0,0,1-1,11.11H850.45c2.53,16.67,16.42,26.53,32.84,26.53,12.88,0,19.71-5.82,25.52-13.14ZM914.62,907.1c-1.77-8.34-10.11-24-31.83-24s-30.07,15.66-31.83,24Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M966.91,852.53h39.41v14.91h.5c3.54-6.82,10.86-19.71,35.12-19.71v42.19c-19.46.5-33.1,4.55-33.1,25.77v77H966.91Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M1114.69,891.94c-.25-3-.76-10.61-13.14-10.61-8.84,0-11.87,5.56-11.87,9.35,0,7.58,10.36,11.87,21.47,15.15,23.75,6.57,49,13.65,49,44,0,29.56-26,47.74-57.09,47.74-21.22,0-53.3-9.6-57.09-46.48h41.68c1.77,12.89,14.14,12.89,15.91,12.89,7.08,0,14.65-4.05,14.65-10.87,0-10.86-10.35-12.12-37.13-22.48-18.19-5.81-33.35-17.68-33.35-36.63,0-27.79,25.27-46.23,54.32-46.23,18.44,0,50.27,7.33,53.8,44.21Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M387.6,1107.92c.25,3.28.25,6.06.25,9.85,0,62.65-48,100.29-99.78,100.29-56.59,0-99.28-44.21-99.28-98,0-55.82,45-96.24,100-96.24,44.72,0,83.12,30.06,93.47,66.18H328.74c-7.33-13.13-21-24.25-41.18-24.25-23.49,0-51,17.43-51,54.31,0,39.16,27.79,56.09,51.28,56.09,23.75,0,39.67-11.88,44.72-30.07H276.7v-38.14Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M398.21,1027.33h41.93v186.94H398.21Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M524.26,1069.52c51,0,75.54,40.17,75.54,74.52s-24.51,74.53-75.54,74.53-75.53-40.17-75.53-74.53S473.23,1069.52,524.26,1069.52Zm0,109.89c18.19,0,33.6-14.9,33.6-35.37s-15.41-35.36-33.6-35.36-33.59,14.9-33.59,35.36S506.07,1179.41,524.26,1179.41Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M608.38,1027.33h41.94v57.85c14.9-15.91,34.86-15.91,40.67-15.91,29.3,0,69,21,69,74,0,50.52-35.11,75.78-70.73,75.78-19.7,0-34.86-9.6-40.17-19.7h-.5v14.9H608.38Zm74.53,152.59c21.47,0,35.11-17.44,35.11-35.88,0-18.19-13.64-35.62-34.36-35.62-22.23,0-34.86,17.94-34.86,35.37C648.8,1163.24,661.94,1179.92,682.91,1179.92Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M920.62,1214.27H878.68v-15.16h-.5c-7.07,13.64-24.51,20-40.93,20-44.46,0-70.48-34.86-70.48-75,0-46,33.1-74.77,70.48-74.77,23,0,35.88,11.11,40.93,19.7h.5v-14.9h41.94Zm-77-34.35c26.27,0,35.11-22.24,35.11-35.88,0-16.92-11.62-35.62-35.36-35.62-24,0-34.61,20.21-34.61,36.13C808.71,1157.68,818.31,1179.92,843.57,1179.92Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M938.55,1027.33h41.94v186.94H938.55Z"},"children":[]},{"type":"path","props":{"className":"b96575ab-05f5-4d5e-b03a-d1d5c70995cf","d":"M1035,1033a17.49,17.49,0,1,1-17.45-17.49A17.51,17.51,0,0,1,1035,1033Zm-31.32,0a13.83,13.83,0,1,0,13.83-14A13.89,13.89,0,0,0,1003.67,1033Zm14.79-9.85c1.24,0,7,0,7,5.45a4.6,4.6,0,0,1-3.71,4.86v.09c2.75.78,3.25,2.42,3.34,5,.19,3.39.19,3.8.65,4.62h-3.44c-.36-.59-.5-1.19-.59-3.7-.14-3.16-.78-4-4.22-4.31h-4.07v8H1010v-20Zm-5,8.8h4.12c1.42,0,4.49,0,4.49-3.21-.23-2.11-2.34-2.33-4-2.33h-4.58Z"},"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
|
+
TheLawyersGlobal.displayName = 'TheLawyersGlobal';
|
|
20
|
+
|
|
21
|
+
export default TheLawyersGlobal;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thesvg/react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Typed React SVG components for all 3,800+ brand icons from thesvg.org",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"homepage": "https://thesvg.org",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/
|
|
12
|
+
"url": "https://github.com/glincker/thesvg.git",
|
|
13
13
|
"directory": "packages/react"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/
|
|
16
|
+
"url": "https://github.com/glincker/thesvg/issues"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"svg",
|