@thesvg/vue 3.2.13 → 3.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/tahcia.cjs +21 -0
- package/dist/tahcia.d.ts +7 -0
- package/dist/tahcia.js +18 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -11542,6 +11542,8 @@ const _taco_bell = require('./taco-bell.cjs');
|
|
|
11542
11542
|
exports.TacoBell = _taco_bell.default;
|
|
11543
11543
|
const _tado = require('./tado.cjs');
|
|
11544
11544
|
exports.Tado = _tado.default;
|
|
11545
|
+
const _tahcia = require('./tahcia.cjs');
|
|
11546
|
+
exports.Tahcia = _tahcia.default;
|
|
11545
11547
|
const _taichi_graphics = require('./taichi-graphics.cjs');
|
|
11546
11548
|
exports.TaichiGraphics = _taichi_graphics.default;
|
|
11547
11549
|
const _taichi_lang = require('./taichi-lang.cjs');
|
package/dist/index.d.ts
CHANGED
|
@@ -5770,6 +5770,7 @@ export { default as Tablecheck } from './tablecheck.js';
|
|
|
5770
5770
|
export { default as Taboola } from './taboola.js';
|
|
5771
5771
|
export { default as TacoBell } from './taco-bell.js';
|
|
5772
5772
|
export { default as Tado } from './tado.js';
|
|
5773
|
+
export { default as Tahcia } from './tahcia.js';
|
|
5773
5774
|
export { default as TaichiGraphics } from './taichi-graphics.js';
|
|
5774
5775
|
export { default as TaichiLang } from './taichi-lang.js';
|
|
5775
5776
|
export { default as Tails } from './tails.js';
|
package/dist/index.js
CHANGED
|
@@ -5770,6 +5770,7 @@ export { default as Tablecheck } from './tablecheck.js';
|
|
|
5770
5770
|
export { default as Taboola } from './taboola.js';
|
|
5771
5771
|
export { default as TacoBell } from './taco-bell.js';
|
|
5772
5772
|
export { default as Tado } from './tado.js';
|
|
5773
|
+
export { default as Tahcia } from './tahcia.js';
|
|
5773
5774
|
export { default as TaichiGraphics } from './taichi-graphics.js';
|
|
5774
5775
|
export { default as TaichiLang } from './taichi-lang.js';
|
|
5775
5776
|
export { default as Tails } from './tails.js';
|
package/dist/tahcia.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - Tahcia
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const Tahcia = vue_1.defineComponent({
|
|
10
|
+
name: 'Tahcia',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 425.57 585.57',
|
|
14
|
+
fill: 'currentColor',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
exports.default = Tahcia;
|
package/dist/tahcia.d.ts
ADDED
package/dist/tahcia.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @thesvg/vue - Tahcia
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const Tahcia = defineComponent({
|
|
7
|
+
name: 'Tahcia',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 425.57 585.57',
|
|
11
|
+
fill: 'currentColor',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export default Tahcia;
|