@thesvg/vue 0.8.0 → 1.0.6
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 +27 -0
- package/dist/british-council.d.ts +7 -0
- package/dist/british-council.js +24 -0
- package/dist/index.cjs +8 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/mimiclaw.cjs +23 -0
- package/dist/mimiclaw.d.ts +7 -0
- package/dist/mimiclaw.js +20 -0
- package/dist/openclaw-moltbot-clawdbot.cjs +3 -4
- package/dist/openclaw-moltbot-clawdbot.js +3 -4
- package/dist/picoclaw.cjs +23 -0
- package/dist/picoclaw.d.ts +7 -0
- package/dist/picoclaw.js +20 -0
- package/dist/profclaw.cjs +23 -0
- package/dist/profclaw.d.ts +7 -0
- package/dist/profclaw.js +20 -0
- package/package.json +11 -8
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 - 4,000+ Brand SVG Icons" width="700" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - British Council
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const BritishCouncil = vue_1.defineComponent({
|
|
10
|
+
name: 'BritishCouncil',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 24 24',
|
|
14
|
+
fill: 'none',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
}, [
|
|
18
|
+
vue_1.h('title', {}),
|
|
19
|
+
vue_1.h('circle', {"cx":"6","cy":"6","r":"5.5"}),
|
|
20
|
+
vue_1.h('circle', {"cx":"18","cy":"6","r":"5.5"}),
|
|
21
|
+
vue_1.h('circle', {"cx":"6","cy":"18","r":"5.5"}),
|
|
22
|
+
vue_1.h('circle', {"cx":"18","cy":"18","r":"5.5"})
|
|
23
|
+
]);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
exports.default = BritishCouncil;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// @thesvg/vue - British Council
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const BritishCouncil = defineComponent({
|
|
7
|
+
name: 'BritishCouncil',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 24 24',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
}, [
|
|
15
|
+
h('title', {}),
|
|
16
|
+
h('circle', {"cx":"6","cy":"6","r":"5.5"}),
|
|
17
|
+
h('circle', {"cx":"18","cy":"6","r":"5.5"}),
|
|
18
|
+
h('circle', {"cx":"6","cy":"18","r":"5.5"}),
|
|
19
|
+
h('circle', {"cx":"18","cy":"18","r":"5.5"})
|
|
20
|
+
]);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
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');
|
package/dist/index.d.ts
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';
|
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';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - MimiClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const Mimiclaw = vue_1.defineComponent({
|
|
10
|
+
name: 'Mimiclaw',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 16 16',
|
|
14
|
+
fill: 'none',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
}, [
|
|
18
|
+
vue_1.h('title', {})
|
|
19
|
+
]);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
exports.default = Mimiclaw;
|
package/dist/mimiclaw.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// @thesvg/vue - MimiClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const Mimiclaw = defineComponent({
|
|
7
|
+
name: 'Mimiclaw',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 16 16',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
}, [
|
|
15
|
+
h('title', {})
|
|
16
|
+
]);
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export default Mimiclaw;
|
|
@@ -16,12 +16,11 @@ const OpenclawMoltbotClawdbot = vue_1.defineComponent({
|
|
|
16
16
|
...attrs
|
|
17
17
|
}, [
|
|
18
18
|
vue_1.h('title', {}),
|
|
19
|
-
vue_1.h('path', {"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z"}),
|
|
20
|
-
vue_1.h('path', {"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z"}),
|
|
19
|
+
vue_1.h('path', {"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z","fill":"#050810"}),
|
|
20
|
+
vue_1.h('path', {"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z","fill":"#050810"}),
|
|
21
21
|
vue_1.h('path', {"clip-rule":"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"}),
|
|
22
22
|
vue_1.h('path', {"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"}),
|
|
23
|
-
vue_1.h('path', {"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"})
|
|
24
|
-
vue_1.h('path', {"d":"M0 0h24v24H0z"})
|
|
23
|
+
vue_1.h('path', {"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"})
|
|
25
24
|
]);
|
|
26
25
|
}
|
|
27
26
|
});
|
|
@@ -13,12 +13,11 @@ const OpenclawMoltbotClawdbot = defineComponent({
|
|
|
13
13
|
...attrs
|
|
14
14
|
}, [
|
|
15
15
|
h('title', {}),
|
|
16
|
-
h('path', {"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z"}),
|
|
17
|
-
h('path', {"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z"}),
|
|
16
|
+
h('path', {"d":"M9.046 7.104a.527.527 0 110 1.055.527.527 0 010-1.055z","fill":"#050810"}),
|
|
17
|
+
h('path', {"d":"M15.376 7.104a.528.528 0 110 1.056.528.528 0 010-1.056z","fill":"#050810"}),
|
|
18
18
|
h('path', {"clip-rule":"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"}),
|
|
19
19
|
h('path', {"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"}),
|
|
20
|
-
h('path', {"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"})
|
|
21
|
-
h('path', {"d":"M0 0h24v24H0z"})
|
|
20
|
+
h('path', {"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"})
|
|
22
21
|
]);
|
|
23
22
|
}
|
|
24
23
|
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - PicoClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const Picoclaw = vue_1.defineComponent({
|
|
10
|
+
name: 'Picoclaw',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 24 24',
|
|
14
|
+
fill: 'none',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
}, [
|
|
18
|
+
vue_1.h('title', {})
|
|
19
|
+
]);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
exports.default = Picoclaw;
|
package/dist/picoclaw.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// @thesvg/vue - PicoClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const Picoclaw = defineComponent({
|
|
7
|
+
name: 'Picoclaw',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 24 24',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
}, [
|
|
15
|
+
h('title', {})
|
|
16
|
+
]);
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export default Picoclaw;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - profClaw
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const Profclaw = vue_1.defineComponent({
|
|
10
|
+
name: 'Profclaw',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 24 24',
|
|
14
|
+
fill: 'none',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
}, [
|
|
18
|
+
vue_1.h('title', {})
|
|
19
|
+
]);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
exports.default = Profclaw;
|
package/dist/profclaw.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// @thesvg/vue - profClaw
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const Profclaw = defineComponent({
|
|
7
|
+
name: 'Profclaw',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 24 24',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
}, [
|
|
15
|
+
h('title', {})
|
|
16
|
+
]);
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export default Profclaw;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thesvg/vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Typed Vue 3 SVG components for all 4000+ 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/vue"
|
|
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",
|
|
@@ -47,10 +47,6 @@
|
|
|
47
47
|
"README.md",
|
|
48
48
|
"LICENSE"
|
|
49
49
|
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsx scripts/build-components.ts",
|
|
52
|
-
"prepublishOnly": "npm run build"
|
|
53
|
-
},
|
|
54
50
|
"peerDependencies": {
|
|
55
51
|
"vue": ">=3.3"
|
|
56
52
|
},
|
|
@@ -60,5 +56,12 @@
|
|
|
60
56
|
},
|
|
61
57
|
"engines": {
|
|
62
58
|
"node": ">=18"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"provenance": true,
|
|
62
|
+
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsx scripts/build-components.ts"
|
|
63
66
|
}
|
|
64
|
-
}
|
|
67
|
+
}
|