@iconify-vue/tabler 1.0.6 → 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/components/a/ai-agent.vue +10 -0
- package/components/a/ai-agents.vue +10 -0
- package/components/a/ai-gateway.vue +10 -0
- package/components/a/api.vue +2 -2
- package/components/b/bot-id.vue +10 -0
- package/components/c/canary.vue +10 -0
- package/components/c/codeblock.vue +10 -0
- package/components/c/connection.vue +10 -0
- package/components/c/credits.vue +13 -0
- package/components/f/firewall-check.vue +10 -0
- package/components/f/firewall-flame.vue +10 -0
- package/components/i/image-generation.vue +13 -0
- package/components/m/microfrontends.vue +12 -0
- package/components/m/middleware.vue +10 -0
- package/components/s/scan-traces.vue +10 -0
- package/components/s/serverless.vue +10 -0
- package/components/s/sort-ascending-2.vue +2 -2
- package/components/s/sort-descending-2.vue +2 -2
- package/components/u/user-key.vue +10 -0
- package/components/z/zero-config.vue +10 -0
- package/css/a/aov77vb.css +8 -0
- package/css/c/c74miq.css +3 -0
- package/css/d/dt7mfjb.css +8 -0
- package/css/e/e-bnx6b.css +3 -0
- package/css/e/ercvw98i.css +8 -0
- package/css/i/irra16wa.css +8 -0
- package/css/j/jsqs5l8q.css +8 -0
- package/css/l/l0bbvr.css +3 -0
- package/css/l/li01hhwy.css +8 -0
- package/css/n/nxrf-5c.css +3 -0
- package/css/o/obc7akbc.css +8 -0
- package/css/p/p-i0v11o.css +8 -0
- package/css/p/pdbettb.css +8 -0
- package/css/r/rkqvwpbz.css +8 -0
- package/css/s/s-7kihx.css +8 -0
- package/css/s/sg3zesbg.css +8 -0
- package/css/s/spaapdgv.css +8 -0
- package/css/t/t3oiop.css +3 -0
- package/css/t/tbq4o4su.css +8 -0
- package/css/{m/m_sadzb.css → u/u7vmtob.css} +2 -2
- package/css/u/uf882to.css +8 -0
- package/css/u/usve2q.css +3 -0
- package/css/y/y0z_pybf.css +8 -0
- package/iconify.json +3 -3
- package/package.json +69 -1
- package/css/d/dhh8w4b.css +0 -8
- package/css/p/pp27tkb.css +0 -8
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/spaapdgv.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="spaapdgv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:ai-agent" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/sg3zesbg.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="sg3zesbg"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:ai-agents" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/o/obc7akbc.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="obc7akbc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:ai-gateway" /></template>
|
package/components/a/api.vue
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/t/tbq4o4su.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="tbq4o4su"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:api" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/y/y0z_pybf.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="y0z_pybf"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:bot-id" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/u/uf882to.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="uf882to"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:canary" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/d/dt7mfjb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="dt7mfjb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:codeblock" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/p/pdbettb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="pdbettb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:connection" /></template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s43_jkd.css';
|
|
4
|
+
import '../../css/u/usve2q.css';
|
|
5
|
+
import '../../css/l/l0bbvr.css';
|
|
6
|
+
import '../../css/t/t3oiop.css';
|
|
7
|
+
|
|
8
|
+
const props = defineProps(["width","height"]);
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="s43_jkd"><path class="usve2q"/><path class="l0bbvr"/><path class="t3oiop"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:credits" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/a/aov77vb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="aov77vb"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:firewall-check" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/j/jsqs5l8q.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="jsqs5l8q"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:firewall-flame" /></template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s43_jkd.css';
|
|
4
|
+
import '../../css/n/n_gsvp.css';
|
|
5
|
+
import '../../css/m/mx3kew.css';
|
|
6
|
+
import '../../css/n/nxrf-5c.css';
|
|
7
|
+
|
|
8
|
+
const props = defineProps(["width","height"]);
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="s43_jkd"><path class="n_gsvp"/><path class="mx3kew"/><path class="nxrf-5c"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:image-generation" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s43_jkd.css';
|
|
4
|
+
import '../../css/c/c74miq.css';
|
|
5
|
+
import '../../css/e/e-bnx6b.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":24,"height":24};
|
|
10
|
+
const content = `<g class="s43_jkd"><path class="c74miq"/><path class="e-bnx6b"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:microfrontends" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/e/ercvw98i.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="ercvw98i"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:middleware" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s-7kihx.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="s-7kihx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:scan-traces" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/i/irra16wa.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="irra16wa"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:serverless" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/p/p-i0v11o.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="p-i0v11o"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:sort-ascending-2" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/l/li01hhwy.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":24,"height":24};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="li01hhwy"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:sort-descending-2" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/r/rkqvwpbz.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="rkqvwpbz"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:user-key" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/u/u7vmtob.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":24,"height":24};
|
|
8
|
+
const content = `<path class="u7vmtob"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="tabler:zero-config" /></template>
|
package/css/c/c74miq.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.ercvw98i {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("m4 20l2.25-2.25M20 20l-2.25-2.25M20 4l-2.25 2.25M4 4l2.25 2.25M10 19.748A8.01 8.01 0 0 1 4.253 14m15.495 0A8.01 8.01 0 0 1 14 19.748M4.252 10A8.02 8.02 0 0 1 9.73 4.328l.27-.075m4-.001a8.01 8.01 0 0 1 5.748 5.749M11 12a1 1 0 1 0 2 0a1 1 0 0 0-2 0");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.irra16wa {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("m8 19l3.03 1.748a2 2 0 0 0 1.94 0l6-3.843A2 2 0 0 0 20 15.152V9l-8 3l-8 3V8.595c0-.728.394-1.399 1.03-1.752l6-3.582a2.05 2.05 0 0 1 2 0L16 5");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.jsqs5l8q {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M15.5 16q2.5 1.5 2.5-1v-2s4 1.06 4 5c0 1.664-.649 3.338-2 4v-.25c0-.957-1.053-1.75-2-1.75s-2 .793-2 1.75V22c-1.351-.662-2-2-2-3.5s1.5-2.5 1.5-2.5M9 3v13M3 9h18M6 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4M3 15h7m5-12v7");
|
|
8
|
+
}
|
package/css/l/l0bbvr.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.li01hhwy {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M5 5.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zm0 9a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zm9 .5l3 3l3-3m-3 3V6");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.obc7akbc {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M4 6.5a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0-5 0m11 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0-5 0m0 11a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0-5 0m-11 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0-5 0m4.5-2l7-7");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.p-i0v11o {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("m14 9l3-3l3 3M5 5.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zm0 9a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5zM17 6v12");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.rkqvwpbz {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h5m3.5 3.5L15 22l-1.5-1.5m5.054-2.086a2 2 0 1 1 2.828-2.828a2 2 0 0 1-2.828 2.828M16 19l1 1");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.sg3zesbg {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M17 19a2 2 0 1 0 4 0a2 2 0 1 0-4 0M3 19a2 2 0 1 0 4 0a2 2 0 1 0-4 0m7-14a2 2 0 1 0 4 0a2 2 0 1 0-4 0M6 5a1 1 0 1 0-2 0a1 1 0 0 0 2 0m12 0a1 1 0 1 0 2 0a1 1 0 0 0-2 0M4 12a1 1 0 1 0 2 0a1 1 0 0 0-2 0m7 0a1 1 0 1 0 2 0a1 1 0 0 0-2 0m7 0a1 1 0 1 0 2 0a1 1 0 0 0-2 0m-7 7a1 1 0 1 0 2 0a1 1 0 0 0-2 0");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.spaapdgv {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M11 14a1 1 0 1 0 2 0a1 1 0 1 0-2 0m-5 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m10 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m-5-9a1 1 0 1 0 2 0a1 1 0 1 0-2 0m2.5 4.5a1 1 0 1 0 2 0a1 1 0 1 0-2 0m-5 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m5 9a1 1 0 1 0 2 0a1 1 0 1 0-2 0m-5 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m-5 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m15 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0");
|
|
8
|
+
}
|
package/css/t/t3oiop.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.tbq4o4su {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M3 19a9 9 0 0 1 9 0a9 9 0 0 1 1.006-.5M3 6a9 9 0 0 1 9 0a9 9 0 0 1 9 0M3 6v13m9-13v13m9-13v6m-3.999 7a2 2 0 1 0 4 0a2 2 0 1 0-4 0m2-3.5V17m0 4v1.5m3.031-5.25l-1.299.75m-3.463 2l-1.3.75m0-3.5l1.3.75m3.463 2l1.3.75");
|
|
8
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.
|
|
1
|
+
.u7vmtob {
|
|
2
2
|
fill: none;
|
|
3
3
|
stroke: currentColor;
|
|
4
4
|
stroke-linecap: round;
|
|
5
5
|
stroke-linejoin: round;
|
|
6
6
|
stroke-width: 2px;
|
|
7
|
-
d: path("M4
|
|
7
|
+
d: path("M4 12a8 8 0 1 0 16 0a8 8 0 1 0-16 0m-1 9L21 3");
|
|
8
8
|
}
|
package/css/u/usve2q.css
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.y0z_pybf {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: 2px;
|
|
7
|
+
d: path("M7 10.5C7 9.672 7.746 9 8.667 9h6.666c.92 0 1.667.672 1.667 1.5v3c0 .828-.746 1.5-1.667 1.5H8.667C7.747 15 7 14.328 7 13.5zM12 7v2m-2 3v.01m4-.01v.01M4 8V6a2 2 0 0 1 2-2h2M4 16v2a2 2 0 0 0 2 2h2m8-16h2a2 2 0 0 1 2 2v2m-4 12h2a2 2 0 0 0 2-2v-2");
|
|
8
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"prefix": "tabler",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Tabler Icons",
|
|
5
|
-
"total":
|
|
6
|
-
"version": "3.
|
|
5
|
+
"total": 6055,
|
|
6
|
+
"version": "3.38.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Paweł Kuna",
|
|
9
9
|
"url": "https://github.com/tabler/tabler-icons"
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
],
|
|
31
31
|
"palette": false
|
|
32
32
|
},
|
|
33
|
-
"lastModified":
|
|
33
|
+
"lastModified": 1772603142
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/tabler",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/tabler/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -222,6 +222,18 @@
|
|
|
222
222
|
"types": "./types/dd0bq22g.d.ts",
|
|
223
223
|
"default": "./components/a/ai.vue"
|
|
224
224
|
},
|
|
225
|
+
"./ai-agent": {
|
|
226
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
227
|
+
"default": "./components/a/ai-agent.vue"
|
|
228
|
+
},
|
|
229
|
+
"./ai-agents": {
|
|
230
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
231
|
+
"default": "./components/a/ai-agents.vue"
|
|
232
|
+
},
|
|
233
|
+
"./ai-gateway": {
|
|
234
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
235
|
+
"default": "./components/a/ai-gateway.vue"
|
|
236
|
+
},
|
|
225
237
|
"./air-balloon": {
|
|
226
238
|
"types": "./types/dd0bq22g.d.ts",
|
|
227
239
|
"default": "./components/a/air-balloon.vue"
|
|
@@ -2886,6 +2898,10 @@
|
|
|
2886
2898
|
"types": "./types/dd0bq22g.d.ts",
|
|
2887
2899
|
"default": "./components/b/border-vertical.vue"
|
|
2888
2900
|
},
|
|
2901
|
+
"./bot-id": {
|
|
2902
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2903
|
+
"default": "./components/b/bot-id.vue"
|
|
2904
|
+
},
|
|
2889
2905
|
"./bottle": {
|
|
2890
2906
|
"types": "./types/dd0bq22g.d.ts",
|
|
2891
2907
|
"default": "./components/b/bottle.vue"
|
|
@@ -5442,6 +5458,10 @@
|
|
|
5442
5458
|
"types": "./types/dd0bq22g.d.ts",
|
|
5443
5459
|
"default": "./components/c/campfire-filled.vue"
|
|
5444
5460
|
},
|
|
5461
|
+
"./canary": {
|
|
5462
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
5463
|
+
"default": "./components/c/canary.vue"
|
|
5464
|
+
},
|
|
5445
5465
|
"./cancel": {
|
|
5446
5466
|
"types": "./types/dd0bq22g.d.ts",
|
|
5447
5467
|
"default": "./components/c/cancel.vue"
|
|
@@ -7806,6 +7826,10 @@
|
|
|
7806
7826
|
"types": "./types/dd0bq22g.d.ts",
|
|
7807
7827
|
"default": "./components/c/code-variable-plus.vue"
|
|
7808
7828
|
},
|
|
7829
|
+
"./codeblock": {
|
|
7830
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
7831
|
+
"default": "./components/c/codeblock.vue"
|
|
7832
|
+
},
|
|
7809
7833
|
"./coffee": {
|
|
7810
7834
|
"types": "./types/dd0bq22g.d.ts",
|
|
7811
7835
|
"default": "./components/c/coffee.vue"
|
|
@@ -8038,6 +8062,10 @@
|
|
|
8038
8062
|
"types": "./types/dd0bq22g.d.ts",
|
|
8039
8063
|
"default": "./components/c/congruent-to.vue"
|
|
8040
8064
|
},
|
|
8065
|
+
"./connection": {
|
|
8066
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8067
|
+
"default": "./components/c/connection.vue"
|
|
8068
|
+
},
|
|
8041
8069
|
"./container": {
|
|
8042
8070
|
"types": "./types/dd0bq22g.d.ts",
|
|
8043
8071
|
"default": "./components/c/container.vue"
|
|
@@ -8302,6 +8330,10 @@
|
|
|
8302
8330
|
"types": "./types/dd0bq22g.d.ts",
|
|
8303
8331
|
"default": "./components/c/credit-card-refund.vue"
|
|
8304
8332
|
},
|
|
8333
|
+
"./credits": {
|
|
8334
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
8335
|
+
"default": "./components/c/credits.vue"
|
|
8336
|
+
},
|
|
8305
8337
|
"./cricket": {
|
|
8306
8338
|
"types": "./types/dd0bq22g.d.ts",
|
|
8307
8339
|
"default": "./components/c/cricket.vue"
|
|
@@ -11518,6 +11550,14 @@
|
|
|
11518
11550
|
"types": "./types/dd0bq22g.d.ts",
|
|
11519
11551
|
"default": "./components/f/firetruck.vue"
|
|
11520
11552
|
},
|
|
11553
|
+
"./firewall-check": {
|
|
11554
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
11555
|
+
"default": "./components/f/firewall-check.vue"
|
|
11556
|
+
},
|
|
11557
|
+
"./firewall-flame": {
|
|
11558
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
11559
|
+
"default": "./components/f/firewall-flame.vue"
|
|
11560
|
+
},
|
|
11521
11561
|
"./first-aid-kit": {
|
|
11522
11562
|
"types": "./types/dd0bq22g.d.ts",
|
|
11523
11563
|
"default": "./components/f/first-aid-kit.vue"
|
|
@@ -13554,6 +13594,10 @@
|
|
|
13554
13594
|
"types": "./types/dd0bq22g.d.ts",
|
|
13555
13595
|
"default": "./components/i/ikosaedr.vue"
|
|
13556
13596
|
},
|
|
13597
|
+
"./image-generation": {
|
|
13598
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
13599
|
+
"default": "./components/i/image-generation.vue"
|
|
13600
|
+
},
|
|
13557
13601
|
"./image-in-picture": {
|
|
13558
13602
|
"types": "./types/dd0bq22g.d.ts",
|
|
13559
13603
|
"default": "./components/i/image-in-picture.vue"
|
|
@@ -16126,6 +16170,10 @@
|
|
|
16126
16170
|
"types": "./types/dd0bq22g.d.ts",
|
|
16127
16171
|
"default": "./components/m/mickey-filled.vue"
|
|
16128
16172
|
},
|
|
16173
|
+
"./microfrontends": {
|
|
16174
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
16175
|
+
"default": "./components/m/microfrontends.vue"
|
|
16176
|
+
},
|
|
16129
16177
|
"./microphone": {
|
|
16130
16178
|
"types": "./types/dd0bq22g.d.ts",
|
|
16131
16179
|
"default": "./components/m/microphone.vue"
|
|
@@ -16170,6 +16218,10 @@
|
|
|
16170
16218
|
"types": "./types/dd0bq22g.d.ts",
|
|
16171
16219
|
"default": "./components/m/microwave-off.vue"
|
|
16172
16220
|
},
|
|
16221
|
+
"./middleware": {
|
|
16222
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
16223
|
+
"default": "./components/m/middleware.vue"
|
|
16224
|
+
},
|
|
16173
16225
|
"./military-award": {
|
|
16174
16226
|
"types": "./types/dd0bq22g.d.ts",
|
|
16175
16227
|
"default": "./components/m/military-award.vue"
|
|
@@ -19766,6 +19818,10 @@
|
|
|
19766
19818
|
"types": "./types/dd0bq22g.d.ts",
|
|
19767
19819
|
"default": "./components/s/scan-position.vue"
|
|
19768
19820
|
},
|
|
19821
|
+
"./scan-traces": {
|
|
19822
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
19823
|
+
"default": "./components/s/scan-traces.vue"
|
|
19824
|
+
},
|
|
19769
19825
|
"./schema": {
|
|
19770
19826
|
"types": "./types/dd0bq22g.d.ts",
|
|
19771
19827
|
"default": "./components/s/schema.vue"
|
|
@@ -19974,6 +20030,10 @@
|
|
|
19974
20030
|
"types": "./types/dd0bq22g.d.ts",
|
|
19975
20031
|
"default": "./components/s/server-spark.vue"
|
|
19976
20032
|
},
|
|
20033
|
+
"./serverless": {
|
|
20034
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
20035
|
+
"default": "./components/s/serverless.vue"
|
|
20036
|
+
},
|
|
19977
20037
|
"./servicemark": {
|
|
19978
20038
|
"types": "./types/dd0bq22g.d.ts",
|
|
19979
20039
|
"default": "./components/s/servicemark.vue"
|
|
@@ -23354,6 +23414,10 @@
|
|
|
23354
23414
|
"types": "./types/dd0bq22g.d.ts",
|
|
23355
23415
|
"default": "./components/u/user-hexagon.vue"
|
|
23356
23416
|
},
|
|
23417
|
+
"./user-key": {
|
|
23418
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
23419
|
+
"default": "./components/u/user-key.vue"
|
|
23420
|
+
},
|
|
23357
23421
|
"./user-minus": {
|
|
23358
23422
|
"types": "./types/dd0bq22g.d.ts",
|
|
23359
23423
|
"default": "./components/u/user-minus.vue"
|
|
@@ -24178,6 +24242,10 @@
|
|
|
24178
24242
|
"types": "./types/dd0bq22g.d.ts",
|
|
24179
24243
|
"default": "./components/z/zeppelin-off.vue"
|
|
24180
24244
|
},
|
|
24245
|
+
"./zero-config": {
|
|
24246
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
24247
|
+
"default": "./components/z/zero-config.vue"
|
|
24248
|
+
},
|
|
24181
24249
|
"./zip": {
|
|
24182
24250
|
"types": "./types/dd0bq22g.d.ts",
|
|
24183
24251
|
"default": "./components/z/zip.vue"
|
package/css/d/dhh8w4b.css
DELETED
package/css/p/pp27tkb.css
DELETED