@iconify-svelte/tabler 1.0.14 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/a/app-window-bottom-left.svelte +13 -0
- package/components/a/app-window-bottom-right.svelte +13 -0
- package/components/a/app-window-bottom.svelte +13 -0
- package/components/a/app-window-center.svelte +13 -0
- package/components/a/arrow-fork-triple.svelte +14 -0
- package/components/b/brand-adobe-after-effects.svelte +13 -0
- package/components/b/brand-kakao-talk.svelte +13 -0
- package/components/b/brand-signal-filled.svelte +11 -0
- package/components/b/brand-signal.svelte +11 -0
- package/components/c/currency-ruble.svelte +11 -0
- package/components/d/device-vision-pro-wifi.svelte +11 -0
- package/components/d/device-workstation.svelte +14 -0
- package/components/d/dragon.svelte +15 -0
- package/components/f/flip-horizontal.svelte +2 -2
- package/components/f/flip-vertical.svelte +2 -2
- package/components/f/footsteps.svelte +11 -0
- package/components/g/gender-travesti.svelte +11 -0
- package/components/i/icosahedron.svelte +14 -0
- package/components/i/italic-off.svelte +11 -0
- package/components/m/mood-confused-filled.svelte +11 -0
- package/components/m/mood-confused.svelte +13 -0
- package/components/p/physiotherapist.svelte +11 -0
- package/components/s/server-bolt.svelte +2 -2
- package/components/s/server.svelte +2 -2
- package/components/s/sport-billiard.svelte +14 -0
- package/components/t/tab-close.svelte +11 -0
- package/components/t/text-outline.svelte +11 -0
- package/components/t/text-regex-asterisk.svelte +11 -0
- package/components/t/text-regex-end.svelte +11 -0
- package/components/t/text-regex-plus.svelte +11 -0
- package/components/t/text-regex-question.svelte +11 -0
- package/components/t/text-regex-start.svelte +11 -0
- package/components/u/underline-off.svelte +11 -0
- package/components/v/virtual-space.svelte +13 -0
- package/css/b/b0o28ve4x.css +3 -0
- package/css/b/biid27bla.css +8 -0
- package/css/d/d-xodebre.css +3 -0
- package/css/d/d54xwq8av.css +3 -0
- package/css/d/dzlyfu30q.css +4 -0
- package/css/e/elbx3d_mc.css +8 -0
- package/css/e/erw8smbcx.css +8 -0
- package/css/f/f3tdgob5k.css +4 -0
- package/css/f/fbkip6-sb.css +3 -0
- package/css/g/g-pchobxb.css +4 -0
- package/css/h/h4negl00g.css +3 -0
- package/css/h/hz3ugwbtm.css +3 -0
- package/css/l/l3euuer_n.css +8 -0
- package/css/l/laf7_tbej.css +4 -0
- package/css/l/lqzc6h09o.css +8 -0
- package/css/m/miq6d5b8p.css +8 -0
- package/css/o/oqy67qbzl.css +3 -0
- package/css/o/oz05n205j.css +3 -0
- package/css/p/p746qwfkk.css +8 -0
- package/css/p/ppkjwabgd.css +8 -0
- package/css/q/qyvraz85q.css +8 -0
- package/css/q/qzcyntb8z.css +3 -0
- package/css/{h/hbl3flbyi.css → r/r0lg2ebmq.css} +2 -2
- package/css/s/sb41a-fzn.css +3 -0
- package/css/{h/h0pwczbsk.css → u/u9xgz4b1f.css} +2 -2
- package/css/u/uloec34qh.css +3 -0
- package/css/w/w3ejuwpti.css +8 -0
- package/css/x/x4gyvacst.css +8 -0
- package/css/x/x7x-jkbhl.css +3 -0
- package/css/x/x_6no5bff.css +4 -0
- package/iconify.json +3 -3
- package/package.json +143 -23
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/h/h38z5cbna.css';
|
|
5
|
+
import '../../css/f/f3tdgob5k.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="h38z5cbna"/><path class="f3tdgob5k"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:app-window-bottom-left" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/h/h38z5cbna.css';
|
|
5
|
+
import '../../css/g/g-pchobxb.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="h38z5cbna"/><path class="g-pchobxb"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:app-window-bottom-right" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/h/h38z5cbna.css';
|
|
5
|
+
import '../../css/d/dzlyfu30q.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="h38z5cbna"/><path class="dzlyfu30q"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:app-window-bottom" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/h/h38z5cbna.css';
|
|
5
|
+
import '../../css/x/x_6no5bff.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="h38z5cbna"/><path class="x_6no5bff"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:app-window-center" {...props}></Icon>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/q/qzcyntb8z.css';
|
|
5
|
+
import '../../css/x/x7x-jkbhl.css';
|
|
6
|
+
import '../../css/b/b0o28ve4x.css';
|
|
7
|
+
|
|
8
|
+
/** @type {{width?: string; height?: string;}} */
|
|
9
|
+
let {width, height, ...props} = $props();
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="qzcyntb8z"/><path class="x7x-jkbhl"/><path class="b0o28ve4x"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:arrow-fork-triple" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/f/f5mkz9bge.css';
|
|
5
|
+
import '../../css/i/ig5bxn3_m.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="f5mkz9bge"/><path class="ig5bxn3_m"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:brand-adobe-after-effects" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/m/m4mu9pi1w.css';
|
|
5
|
+
import '../../css/l/lpuw_j63z.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="m4mu9pi1w"/><path class="lpuw_j63z"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:brand-kakao-talk" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/laf7_tbej.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="laf7_tbej"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:brand-signal-filled" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/b/biid27bla.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="biid27bla"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:brand-signal" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/z/zr5wehbky.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="zr5wehbky"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:currency-ruble" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/p/ppkjwabgd.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="ppkjwabgd"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:device-vision-pro-wifi" {...props}></Icon>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/h/hz3ugwbtm.css';
|
|
5
|
+
import '../../css/o/oqy67qbzl.css';
|
|
6
|
+
import '../../css/d/d54xwq8av.css';
|
|
7
|
+
|
|
8
|
+
/** @type {{width?: string; height?: string;}} */
|
|
9
|
+
let {width, height, ...props} = $props();
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="hz3ugwbtm"/><path class="oqy67qbzl"/><path class="d54xwq8av"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:device-workstation" {...props}></Icon>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/o/oz05n205j.css';
|
|
5
|
+
import '../../css/u/uloec34qh.css';
|
|
6
|
+
import '../../css/f/fbkip6-sb.css';
|
|
7
|
+
import '../../css/d/d-xodebre.css';
|
|
8
|
+
|
|
9
|
+
/** @type {{width?: string; height?: string;}} */
|
|
10
|
+
let {width, height, ...props} = $props();
|
|
11
|
+
|
|
12
|
+
const viewBox = {"width":24,"height":24};
|
|
13
|
+
const content = `<g class="nrj6p8qat"><path class="oz05n205j"/><path class="uloec34qh"/><path class="fbkip6-sb"/><path class="d-xodebre"/></g>`;
|
|
14
|
+
</script>
|
|
15
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:dragon" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/q/
|
|
3
|
+
import '../../css/q/qxe6m81df.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":24,"height":24};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="qxe6m81df"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:flip-horizontal" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/q/
|
|
3
|
+
import '../../css/q/qq4cngnfc.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":24,"height":24};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="qq4cngnfc"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:flip-vertical" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/c/ctpzukbpu.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="ctpzukbpu"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:footsteps" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/r/riq9a1zbi.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="riq9a1zbi"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:gender-travesti" {...props}></Icon>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/r/rv57m5btj.css';
|
|
5
|
+
import '../../css/m/m9qep6biy.css';
|
|
6
|
+
import '../../css/l/l70hpib7m.css';
|
|
7
|
+
|
|
8
|
+
/** @type {{width?: string; height?: string;}} */
|
|
9
|
+
let {width, height, ...props} = $props();
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="rv57m5btj"/><path class="m9qep6biy"/><path class="l70hpib7m"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:icosahedron" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/lqzc6h09o.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="lqzc6h09o"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:italic-off" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/ec1c9ybub.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="ec1c9ybub"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:mood-confused-filled" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/v/vdyd8oaxp.css';
|
|
5
|
+
import '../../css/x/xfafm0-2k.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="vdyd8oaxp"/><path class="xfafm0-2k"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:mood-confused" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/z/zeleeyw0b.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="zeleeyw0b"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:physiotherapist" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/r/r0lg2ebmq.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":24,"height":24};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="r0lg2ebmq"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:server-bolt" {...props}></Icon>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Icon from '@iconify/css-svelte';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/u/u9xgz4b1f.css';
|
|
4
4
|
|
|
5
5
|
/** @type {{width?: string; height?: string;}} */
|
|
6
6
|
let {width, height, ...props} = $props();
|
|
7
7
|
|
|
8
8
|
const viewBox = {"width":24,"height":24};
|
|
9
|
-
const content = `<path class="
|
|
9
|
+
const content = `<path class="u9xgz4b1f"/>`;
|
|
10
10
|
</script>
|
|
11
11
|
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:server" {...props}></Icon>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/f/fc1zhqbtz.css';
|
|
5
|
+
import '../../css/x/x756dtbrg.css';
|
|
6
|
+
import '../../css/v/vbj2lk1_x.css';
|
|
7
|
+
|
|
8
|
+
/** @type {{width?: string; height?: string;}} */
|
|
9
|
+
let {width, height, ...props} = $props();
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":24,"height":24};
|
|
12
|
+
const content = `<g class="nrj6p8qat"><path class="fc1zhqbtz"/><path class="x756dtbrg"/><path class="vbj2lk1_x"/></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:sport-billiard" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/elbx3d_mc.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="elbx3d_mc"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:tab-close" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/e/erw8smbcx.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="erw8smbcx"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-outline" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/m/miq6d5b8p.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="miq6d5b8p"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-regex-asterisk" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/l/l3euuer_n.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="l3euuer_n"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-regex-end" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/q/qyvraz85q.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="qyvraz85q"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-regex-plus" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/w/w3ejuwpti.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="w3ejuwpti"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-regex-question" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/p/p746qwfkk.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="p746qwfkk"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:text-regex-start" {...props}></Icon>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/x/x4gyvacst.css';
|
|
4
|
+
|
|
5
|
+
/** @type {{width?: string; height?: string;}} */
|
|
6
|
+
let {width, height, ...props} = $props();
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":24,"height":24};
|
|
9
|
+
const content = `<path class="x4gyvacst"/>`;
|
|
10
|
+
</script>
|
|
11
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:underline-off" {...props}></Icon>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import Icon from '@iconify/css-svelte';
|
|
3
|
+
import '../../css/n/nrj6p8qat.css';
|
|
4
|
+
import '../../css/s/sb41a-fzn.css';
|
|
5
|
+
import '../../css/h/h4negl00g.css';
|
|
6
|
+
|
|
7
|
+
/** @type {{width?: string; height?: string;}} */
|
|
8
|
+
let {width, height, ...props} = $props();
|
|
9
|
+
|
|
10
|
+
const viewBox = {"width":24,"height":24};
|
|
11
|
+
const content = `<g class="nrj6p8qat"><path class="sb41a-fzn"/><path class="h4negl00g"/></g>`;
|
|
12
|
+
</script>
|
|
13
|
+
<Icon width={width} height={height} viewBox={viewBox} content={content} fallback="tabler:virtual-space" {...props}></Icon>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.biid27bla {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("m2.708 22.726l.148-.034l.822-.191m2.754-.642l.472-.11q.729.38 1.501.647m2.939.584a11 11 0 0 0 1.313 0m2.939-.583q.627-.216 1.217-.504m2.484-1.663a11 11 0 0 0 .933-.933m1.663-2.485q.288-.59.505-1.216m.582-2.94q.019-.326.02-.656q-.001-.33-.02-.657m-.583-2.939a11 11 0 0 0-.504-1.217M20.23 4.703a11 11 0 0 0-.933-.933m-2.485-1.663q-.59-.288-1.216-.505m-2.94-.582Q12.33 1.001 12 1q-.33.001-.657.02m-2.939.583q-.627.217-1.217.504M4.703 3.77a11 11 0 0 0-.933.933M2.107 7.188q-.288.59-.505 1.216m-.582 2.94Q1.001 11.67 1 12q0 .328.02.657m.584 2.939q.267.772.648 1.501l-.11.471m-.643 2.754l-.217.93l-.009.039a1.195 1.195 0 0 0 1.435 1.435m2.14-3.574l2.446-.57l.993.519a8 8 0 0 0 1.805.675a8 8 0 0 0 1.908.223c2.21 0 4.21-.895 5.657-2.342A7.98 7.98 0 0 0 19.999 12c0-2.21-.895-4.21-2.342-5.657A7.98 7.98 0 0 0 12 4.001c-2.21 0-4.21.895-5.657 2.342A7.98 7.98 0 0 0 4.001 12a8 8 0 0 0 .899 3.714l.519.993z");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.elbx3d_mc {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M3 21v-1a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v1M6 15a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2m-3-9l-3 3l-3-3m3 3V3");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.erw8smbcx {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M3 8V7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v1M3 16v1a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-1m.01-4h.01M3.01 12h.01M10 15v-4a2 2 0 1 1 4 0v4m-4-2h4");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.l3euuer_n {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0-4 0v1m-3 2v-3a2 2 0 1 0-4 0v1a2 2 0 0 0 3.726 1.01M21 10h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3H17m2-6V9m0 7v1");
|
|
8
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.laf7_tbej {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("m2.482 21.753l.969-.225a1 1 0 1 1 .453 1.946l-.969.225a2.2 2.2 0 0 1-.498.059a2.19 2.19 0 0 1-1.863-1.037A2.2 2.2 0 0 1 .3 21.065l.226-.969a1 1 0 0 1 1.946.453l-.227.965a.2.2 0 0 0 .025.153a.2.2 0 0 0 .122.087l.041.007zm4.176 1.079a.999.999 0 1 1-.452-1.946l.472-.11l.687.09q.292.153.67.316q.388.166.694.272a.996.996 0 0 1-.649 1.883q-.467-.163-.834-.319a10 10 0 0 1-.465-.215zm4.627 1.144a.997.997 0 1 1 .117-1.992l.295.014h.605l.296-.015a.999.999 0 0 1 .117 1.993L12 24zm4.636-.637a.997.997 0 0 1-.649-1.883a10 10 0 0 0 1.103-.461a.999.999 0 1 1 .876 1.796a12 12 0 0 1-1.33.548m4.036-2.363a.996.996 0 0 1-1.32-1.492q.214-.19.434-.411l.005-.004q.219-.22.408-.433a.996.996 0 1 1 1.492 1.321a12 12 0 0 1-1.019 1.019m2.835-3.726a1 1 0 0 1-1.797-.876a11 11 0 0 0 .461-1.102a.996.996 0 1 1 1.883.648a11 11 0 0 1-.547 1.33m1.184-4.535a.997.997 0 1 1-1.993-.117l.015-.296v-.604l-.015-.296a.999.999 0 0 1 1.993-.117L24 12zm-.637-4.636a.997.997 0 0 1-1.883.649a11 11 0 0 0-.461-1.107a.998.998 0 1 1 1.796-.867a12 12 0 0 1 .548 1.325m-2.363-4.036a.996.996 0 0 1-1.492 1.32a10 10 0 0 0-.41-.433l-.004-.005a10 10 0 0 0-.434-.409a.996.996 0 1 1 1.321-1.492a12 12 0 0 1 1.019 1.019M17.25 1.208a1 1 0 0 1-.876 1.797a11 11 0 0 0-1.102-.461a.996.996 0 1 1 .648-1.883a11 11 0 0 1 1.33.547M12.715.024a.997.997 0 1 1-.117 1.993l-.296-.015h-.604l-.296.015a.999.999 0 0 1-.117-1.993L12 0zM8.079.661a.997.997 0 0 1 .649 1.883a11 11 0 0 0-1.107.461a.998.998 0 1 1-.867-1.796A12 12 0 0 1 8.079.661M4.043 3.024a.996.996 0 0 1 1.32 1.492q-.213.19-.433.41l-.005.004a10 10 0 0 0-.409.434a.996.996 0 1 1-1.492-1.321a12 12 0 0 1 1.019-1.019M1.208 6.75a1 1 0 0 1 1.797.876q-.14.286-.247.545q-.107.258-.211.557a.998.998 0 1 1-1.89-.648q.112-.325.257-.674q.146-.351.294-.656M.024 11.285a.997.997 0 1 1 1.993.117l-.015.296v.605l.014.295a.997.997 0 1 1-1.992.117L0 12zm.639 4.635a.996.996 0 1 1 1.883-.648q.105.306.272.692q.142.339.317.672l.09.687l-.11.471a1 1 0 0 1-1.946-.452l.029-.124l-.212-.465a10 10 0 0 1-.323-.833m6.501 3.718l-2.089.487a1 1 0 0 1-1.199-1.199l.487-2.089l-.346-.662a9.2 9.2 0 0 1-.75-1.986l-.012-.041a9 9 0 0 1-.191-1.057A10 10 0 0 1 3.001 12a8.97 8.97 0 0 1 2.635-6.364a9.01 9.01 0 0 1 12.728 0a9.01 9.01 0 0 1 0 12.728A9 9 0 0 1 12 20.999q-.549 0-1.095-.063a9 9 0 0 1-1.051-.191a10 10 0 0 1-1.043-.322a9 9 0 0 1-.985-.439z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.miq6d5b8p {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0-4 0v1m-3 2v-3a2 2 0 1 0-4 0v1a2 2 0 0 0 3.726 1.01M19 9.5v5m-2-3.75l4 2.5m-4 0l4-2.5");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.p746qwfkk {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M17 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0-4 0v1m-3 2v-3a2 2 0 1 0-4 0v1a2 2 0 0 0 3.726 1.01M3 10l2-2l2 2");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.ppkjwabgd {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M12 10q1.715 0 3.275.104q1.526.101 2.798.42q1.22.304 2.119.909a3.9 3.9 0 0 1 1.328 1.531c.326.657.48 1.48.48 2.466q.002 1.51-.574 2.707q-.562 1.17-1.537 1.848a3.7 3.7 0 0 1-2.16.66q-.764.002-1.382-.21a6 6 0 0 1-1.17-.548a19 19 0 0 1-1.045-.695a9 9 0 0 0-1.001-.63a2.4 2.4 0 0 0-1.13-.301c-.373 0-.75.097-1.132.3q-.475.255-1 .63q-.482.345-1.047.695a5.8 5.8 0 0 1-1.168.548q-.62.211-1.378.21a3.7 3.7 0 0 1-2.165-.659q-.976-.68-1.537-1.848q-.576-1.196-.574-2.709c-.004-.98.15-1.802.477-2.46c.3-.619.76-1.147 1.33-1.531q.9-.604 2.12-.907q1.382-.335 2.8-.423Q10.287 10 12 10M7 4.071a7.07 7.07 0 0 1 10 0M9.5 6.572a3.535 3.535 0 0 1 5.001 0");
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.qyvraz85q {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0-4 0v1m-3 2v-3a2 2 0 1 0-4 0v1a2 2 0 0 0 3.726 1.01M17 13h4m-2-2v4");
|
|
8
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.
|
|
1
|
+
.r0lg2ebmq {
|
|
2
2
|
fill: none;
|
|
3
3
|
stroke: currentColor;
|
|
4
4
|
stroke-linecap: round;
|
|
5
5
|
stroke-linejoin: round;
|
|
6
6
|
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
-
d: path("M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-
|
|
7
|
+
d: path("M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm12 13H6a3 3 0 0 1-3-3v-2a3 3 0 0 1 3-3h12M7 8v.01M7 16v.01M20 15l-2 3h3l-2 3");
|
|
8
8
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.
|
|
1
|
+
.u9xgz4b1f {
|
|
2
2
|
fill: none;
|
|
3
3
|
stroke: currentColor;
|
|
4
4
|
stroke-linecap: round;
|
|
5
5
|
stroke-linejoin: round;
|
|
6
6
|
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
-
d: path("M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-
|
|
7
|
+
d: path("M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm0 8a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm4-7v.01M7 16v.01");
|
|
8
8
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
.w3ejuwpti {
|
|
2
|
+
fill: none;
|
|
3
|
+
stroke: currentColor;
|
|
4
|
+
stroke-linecap: round;
|
|
5
|
+
stroke-linejoin: round;
|
|
6
|
+
stroke-width: var(--svg-stroke-width--2px, 2px);
|
|
7
|
+
d: path("M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0-4 0v1m-3 2v-3a2 2 0 1 0-4 0v1a2 2 0 0 0 3.726 1.01M19 16v.01M19 13a2 2 0 0 0 .914-3.782a1.98 1.98 0 0 0-2.414.483");
|
|
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": 6166,
|
|
6
|
+
"version": "3.45.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": 1784526686
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-svelte/tabler",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.16",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/tabler/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -690,6 +690,22 @@
|
|
|
690
690
|
"types": "./types/gfwqskkx.d.ts",
|
|
691
691
|
"svelte": "./components/a/app-window.svelte"
|
|
692
692
|
},
|
|
693
|
+
"./app-window-bottom": {
|
|
694
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
695
|
+
"svelte": "./components/a/app-window-bottom.svelte"
|
|
696
|
+
},
|
|
697
|
+
"./app-window-bottom-left": {
|
|
698
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
699
|
+
"svelte": "./components/a/app-window-bottom-left.svelte"
|
|
700
|
+
},
|
|
701
|
+
"./app-window-bottom-right": {
|
|
702
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
703
|
+
"svelte": "./components/a/app-window-bottom-right.svelte"
|
|
704
|
+
},
|
|
705
|
+
"./app-window-center": {
|
|
706
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
707
|
+
"svelte": "./components/a/app-window-center.svelte"
|
|
708
|
+
},
|
|
693
709
|
"./app-window-filled": {
|
|
694
710
|
"types": "./types/gfwqskkx.d.ts",
|
|
695
711
|
"svelte": "./components/a/app-window-filled.svelte"
|
|
@@ -1106,6 +1122,10 @@
|
|
|
1106
1122
|
"types": "./types/gfwqskkx.d.ts",
|
|
1107
1123
|
"svelte": "./components/a/arrow-fork.svelte"
|
|
1108
1124
|
},
|
|
1125
|
+
"./arrow-fork-triple": {
|
|
1126
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
1127
|
+
"svelte": "./components/a/arrow-fork-triple.svelte"
|
|
1128
|
+
},
|
|
1109
1129
|
"./arrow-forward": {
|
|
1110
1130
|
"types": "./types/gfwqskkx.d.ts",
|
|
1111
1131
|
"svelte": "./components/a/arrow-forward.svelte"
|
|
@@ -3186,9 +3206,9 @@
|
|
|
3186
3206
|
"types": "./types/gfwqskkx.d.ts",
|
|
3187
3207
|
"svelte": "./components/b/brand-adobe.svelte"
|
|
3188
3208
|
},
|
|
3189
|
-
"./brand-adobe-after-
|
|
3209
|
+
"./brand-adobe-after-effects": {
|
|
3190
3210
|
"types": "./types/gfwqskkx.d.ts",
|
|
3191
|
-
"svelte": "./components/b/brand-adobe-after-
|
|
3211
|
+
"svelte": "./components/b/brand-adobe-after-effects.svelte"
|
|
3192
3212
|
},
|
|
3193
3213
|
"./brand-adobe-illustrator": {
|
|
3194
3214
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -3894,9 +3914,9 @@
|
|
|
3894
3914
|
"types": "./types/gfwqskkx.d.ts",
|
|
3895
3915
|
"svelte": "./components/b/brand-juejin.svelte"
|
|
3896
3916
|
},
|
|
3897
|
-
"./brand-
|
|
3917
|
+
"./brand-kakao-talk": {
|
|
3898
3918
|
"types": "./types/gfwqskkx.d.ts",
|
|
3899
|
-
"svelte": "./components/b/brand-
|
|
3919
|
+
"svelte": "./components/b/brand-kakao-talk.svelte"
|
|
3900
3920
|
},
|
|
3901
3921
|
"./brand-kbin": {
|
|
3902
3922
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -4310,6 +4330,14 @@
|
|
|
4310
4330
|
"types": "./types/gfwqskkx.d.ts",
|
|
4311
4331
|
"svelte": "./components/b/brand-shopee.svelte"
|
|
4312
4332
|
},
|
|
4333
|
+
"./brand-signal": {
|
|
4334
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
4335
|
+
"svelte": "./components/b/brand-signal.svelte"
|
|
4336
|
+
},
|
|
4337
|
+
"./brand-signal-filled": {
|
|
4338
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
4339
|
+
"svelte": "./components/b/brand-signal-filled.svelte"
|
|
4340
|
+
},
|
|
4313
4341
|
"./brand-sketch": {
|
|
4314
4342
|
"types": "./types/gfwqskkx.d.ts",
|
|
4315
4343
|
"svelte": "./components/b/brand-sketch.svelte"
|
|
@@ -8794,9 +8822,9 @@
|
|
|
8794
8822
|
"types": "./types/gfwqskkx.d.ts",
|
|
8795
8823
|
"svelte": "./components/c/currency-riyal.svelte"
|
|
8796
8824
|
},
|
|
8797
|
-
"./currency-
|
|
8825
|
+
"./currency-ruble": {
|
|
8798
8826
|
"types": "./types/gfwqskkx.d.ts",
|
|
8799
|
-
"svelte": "./components/c/currency-
|
|
8827
|
+
"svelte": "./components/c/currency-ruble.svelte"
|
|
8800
8828
|
},
|
|
8801
8829
|
"./currency-rufiyaa": {
|
|
8802
8830
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -9782,6 +9810,10 @@
|
|
|
9782
9810
|
"types": "./types/gfwqskkx.d.ts",
|
|
9783
9811
|
"svelte": "./components/d/device-vision-pro-filled.svelte"
|
|
9784
9812
|
},
|
|
9813
|
+
"./device-vision-pro-wifi": {
|
|
9814
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9815
|
+
"svelte": "./components/d/device-vision-pro-wifi.svelte"
|
|
9816
|
+
},
|
|
9785
9817
|
"./device-watch": {
|
|
9786
9818
|
"types": "./types/gfwqskkx.d.ts",
|
|
9787
9819
|
"svelte": "./components/d/device-watch.svelte"
|
|
@@ -9878,6 +9910,10 @@
|
|
|
9878
9910
|
"types": "./types/gfwqskkx.d.ts",
|
|
9879
9911
|
"svelte": "./components/d/device-watch-x.svelte"
|
|
9880
9912
|
},
|
|
9913
|
+
"./device-workstation": {
|
|
9914
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
9915
|
+
"svelte": "./components/d/device-workstation.svelte"
|
|
9916
|
+
},
|
|
9881
9917
|
"./devices": {
|
|
9882
9918
|
"types": "./types/gfwqskkx.d.ts",
|
|
9883
9919
|
"svelte": "./components/d/devices.svelte"
|
|
@@ -10262,6 +10298,10 @@
|
|
|
10262
10298
|
"types": "./types/gfwqskkx.d.ts",
|
|
10263
10299
|
"svelte": "./components/d/drag-drop-2.svelte"
|
|
10264
10300
|
},
|
|
10301
|
+
"./dragon": {
|
|
10302
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
10303
|
+
"svelte": "./components/d/dragon.svelte"
|
|
10304
|
+
},
|
|
10265
10305
|
"./drone": {
|
|
10266
10306
|
"types": "./types/gfwqskkx.d.ts",
|
|
10267
10307
|
"svelte": "./components/d/drone.svelte"
|
|
@@ -12090,9 +12130,9 @@
|
|
|
12090
12130
|
"types": "./types/gfwqskkx.d.ts",
|
|
12091
12131
|
"svelte": "./components/f/folders-off.svelte"
|
|
12092
12132
|
},
|
|
12093
|
-
"./
|
|
12133
|
+
"./footsteps": {
|
|
12094
12134
|
"types": "./types/gfwqskkx.d.ts",
|
|
12095
|
-
"svelte": "./components/f/
|
|
12135
|
+
"svelte": "./components/f/footsteps.svelte"
|
|
12096
12136
|
},
|
|
12097
12137
|
"./forbid": {
|
|
12098
12138
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -12306,9 +12346,9 @@
|
|
|
12306
12346
|
"types": "./types/gfwqskkx.d.ts",
|
|
12307
12347
|
"svelte": "./components/g/gender-transgender.svelte"
|
|
12308
12348
|
},
|
|
12309
|
-
"./gender-
|
|
12349
|
+
"./gender-travesti": {
|
|
12310
12350
|
"types": "./types/gfwqskkx.d.ts",
|
|
12311
|
-
"svelte": "./components/g/gender-
|
|
12351
|
+
"svelte": "./components/g/gender-travesti.svelte"
|
|
12312
12352
|
},
|
|
12313
12353
|
"./geometry": {
|
|
12314
12354
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -13742,6 +13782,10 @@
|
|
|
13742
13782
|
"types": "./types/gfwqskkx.d.ts",
|
|
13743
13783
|
"svelte": "./components/i/icons-off.svelte"
|
|
13744
13784
|
},
|
|
13785
|
+
"./icosahedron": {
|
|
13786
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
13787
|
+
"svelte": "./components/i/icosahedron.svelte"
|
|
13788
|
+
},
|
|
13745
13789
|
"./id": {
|
|
13746
13790
|
"types": "./types/gfwqskkx.d.ts",
|
|
13747
13791
|
"svelte": "./components/i/id.svelte"
|
|
@@ -13766,10 +13810,6 @@
|
|
|
13766
13810
|
"types": "./types/gfwqskkx.d.ts",
|
|
13767
13811
|
"svelte": "./components/i/id-off.svelte"
|
|
13768
13812
|
},
|
|
13769
|
-
"./ikosaedr": {
|
|
13770
|
-
"types": "./types/gfwqskkx.d.ts",
|
|
13771
|
-
"svelte": "./components/i/ikosaedr.svelte"
|
|
13772
|
-
},
|
|
13773
13813
|
"./image-generation": {
|
|
13774
13814
|
"types": "./types/gfwqskkx.d.ts",
|
|
13775
13815
|
"svelte": "./components/i/image-generation.svelte"
|
|
@@ -14010,6 +14050,10 @@
|
|
|
14010
14050
|
"types": "./types/gfwqskkx.d.ts",
|
|
14011
14051
|
"svelte": "./components/i/italic.svelte"
|
|
14012
14052
|
},
|
|
14053
|
+
"./italic-off": {
|
|
14054
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
14055
|
+
"svelte": "./components/i/italic-off.svelte"
|
|
14056
|
+
},
|
|
14013
14057
|
"./jacket": {
|
|
14014
14058
|
"types": "./types/gfwqskkx.d.ts",
|
|
14015
14059
|
"svelte": "./components/j/jacket.svelte"
|
|
@@ -16550,13 +16594,13 @@
|
|
|
16550
16594
|
"types": "./types/gfwqskkx.d.ts",
|
|
16551
16595
|
"svelte": "./components/m/mood-cog.svelte"
|
|
16552
16596
|
},
|
|
16553
|
-
"./mood-
|
|
16597
|
+
"./mood-confused": {
|
|
16554
16598
|
"types": "./types/gfwqskkx.d.ts",
|
|
16555
|
-
"svelte": "./components/m/mood-
|
|
16599
|
+
"svelte": "./components/m/mood-confused.svelte"
|
|
16556
16600
|
},
|
|
16557
|
-
"./mood-
|
|
16601
|
+
"./mood-confused-filled": {
|
|
16558
16602
|
"types": "./types/gfwqskkx.d.ts",
|
|
16559
|
-
"svelte": "./components/m/mood-
|
|
16603
|
+
"svelte": "./components/m/mood-confused-filled.svelte"
|
|
16560
16604
|
},
|
|
16561
16605
|
"./mood-crazy-happy": {
|
|
16562
16606
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -18430,9 +18474,9 @@
|
|
|
18430
18474
|
"types": "./types/gfwqskkx.d.ts",
|
|
18431
18475
|
"svelte": "./components/p/photo-x.svelte"
|
|
18432
18476
|
},
|
|
18433
|
-
"./
|
|
18477
|
+
"./physiotherapist": {
|
|
18434
18478
|
"types": "./types/gfwqskkx.d.ts",
|
|
18435
|
-
"svelte": "./components/p/
|
|
18479
|
+
"svelte": "./components/p/physiotherapist.svelte"
|
|
18436
18480
|
},
|
|
18437
18481
|
"./piano": {
|
|
18438
18482
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -21190,9 +21234,9 @@
|
|
|
21190
21234
|
"types": "./types/gfwqskkx.d.ts",
|
|
21191
21235
|
"svelte": "./components/s/spiral-off.svelte"
|
|
21192
21236
|
},
|
|
21193
|
-
"./sport-
|
|
21237
|
+
"./sport-billiard": {
|
|
21194
21238
|
"types": "./types/gfwqskkx.d.ts",
|
|
21195
|
-
"svelte": "./components/s/sport-
|
|
21239
|
+
"svelte": "./components/s/sport-billiard.svelte"
|
|
21196
21240
|
},
|
|
21197
21241
|
"./spray": {
|
|
21198
21242
|
"types": "./types/gfwqskkx.d.ts",
|
|
@@ -22662,6 +22706,10 @@
|
|
|
22662
22706
|
"types": "./types/gfwqskkx.d.ts",
|
|
22663
22707
|
"svelte": "./components/s/swords.svelte"
|
|
22664
22708
|
},
|
|
22709
|
+
"./tab-close": {
|
|
22710
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
22711
|
+
"svelte": "./components/t/tab-close.svelte"
|
|
22712
|
+
},
|
|
22665
22713
|
"./table": {
|
|
22666
22714
|
"types": "./types/gfwqskkx.d.ts",
|
|
22667
22715
|
"svelte": "./components/t/table.svelte"
|
|
@@ -22958,6 +23006,10 @@
|
|
|
22958
23006
|
"types": "./types/gfwqskkx.d.ts",
|
|
22959
23007
|
"svelte": "./components/t/text-orientation.svelte"
|
|
22960
23008
|
},
|
|
23009
|
+
"./text-outline": {
|
|
23010
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23011
|
+
"svelte": "./components/t/text-outline.svelte"
|
|
23012
|
+
},
|
|
22961
23013
|
"./text-plus": {
|
|
22962
23014
|
"types": "./types/gfwqskkx.d.ts",
|
|
22963
23015
|
"svelte": "./components/t/text-plus.svelte"
|
|
@@ -22966,6 +23018,26 @@
|
|
|
22966
23018
|
"types": "./types/gfwqskkx.d.ts",
|
|
22967
23019
|
"svelte": "./components/t/text-recognition.svelte"
|
|
22968
23020
|
},
|
|
23021
|
+
"./text-regex-asterisk": {
|
|
23022
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23023
|
+
"svelte": "./components/t/text-regex-asterisk.svelte"
|
|
23024
|
+
},
|
|
23025
|
+
"./text-regex-end": {
|
|
23026
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23027
|
+
"svelte": "./components/t/text-regex-end.svelte"
|
|
23028
|
+
},
|
|
23029
|
+
"./text-regex-plus": {
|
|
23030
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23031
|
+
"svelte": "./components/t/text-regex-plus.svelte"
|
|
23032
|
+
},
|
|
23033
|
+
"./text-regex-question": {
|
|
23034
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23035
|
+
"svelte": "./components/t/text-regex-question.svelte"
|
|
23036
|
+
},
|
|
23037
|
+
"./text-regex-start": {
|
|
23038
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23039
|
+
"svelte": "./components/t/text-regex-start.svelte"
|
|
23040
|
+
},
|
|
22969
23041
|
"./text-resize": {
|
|
22970
23042
|
"types": "./types/gfwqskkx.d.ts",
|
|
22971
23043
|
"svelte": "./components/t/text-resize.svelte"
|
|
@@ -23678,6 +23750,10 @@
|
|
|
23678
23750
|
"types": "./types/gfwqskkx.d.ts",
|
|
23679
23751
|
"svelte": "./components/u/underline.svelte"
|
|
23680
23752
|
},
|
|
23753
|
+
"./underline-off": {
|
|
23754
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
23755
|
+
"svelte": "./components/u/underline-off.svelte"
|
|
23756
|
+
},
|
|
23681
23757
|
"./unicycle": {
|
|
23682
23758
|
"types": "./types/gfwqskkx.d.ts",
|
|
23683
23759
|
"svelte": "./components/u/unicycle.svelte"
|
|
@@ -24034,6 +24110,10 @@
|
|
|
24034
24110
|
"types": "./types/gfwqskkx.d.ts",
|
|
24035
24111
|
"svelte": "./components/v/vip-off.svelte"
|
|
24036
24112
|
},
|
|
24113
|
+
"./virtual-space": {
|
|
24114
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
24115
|
+
"svelte": "./components/v/virtual-space.svelte"
|
|
24116
|
+
},
|
|
24037
24117
|
"./virus": {
|
|
24038
24118
|
"types": "./types/gfwqskkx.d.ts",
|
|
24039
24119
|
"svelte": "./components/v/virus.svelte"
|
|
@@ -24862,6 +24942,10 @@
|
|
|
24862
24942
|
"types": "./types/gfwqskkx.d.ts",
|
|
24863
24943
|
"svelte": "./components/b/braile.svelte"
|
|
24864
24944
|
},
|
|
24945
|
+
"./brand-adobe-after-effect": {
|
|
24946
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
24947
|
+
"svelte": "./components/b/brand-adobe-after-effect.svelte"
|
|
24948
|
+
},
|
|
24865
24949
|
"./brand-adobe-premier": {
|
|
24866
24950
|
"types": "./types/gfwqskkx.d.ts",
|
|
24867
24951
|
"svelte": "./components/b/brand-adobe-premier.svelte"
|
|
@@ -24878,6 +24962,10 @@
|
|
|
24878
24962
|
"types": "./types/gfwqskkx.d.ts",
|
|
24879
24963
|
"svelte": "./components/b/brand-blackbery.svelte"
|
|
24880
24964
|
},
|
|
24965
|
+
"./brand-kako-talk": {
|
|
24966
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
24967
|
+
"svelte": "./components/b/brand-kako-talk.svelte"
|
|
24968
|
+
},
|
|
24881
24969
|
"./brand-microsoft-teams": {
|
|
24882
24970
|
"types": "./types/gfwqskkx.d.ts",
|
|
24883
24971
|
"svelte": "./components/b/brand-microsoft-teams.svelte"
|
|
@@ -25138,6 +25226,10 @@
|
|
|
25138
25226
|
"types": "./types/gfwqskkx.d.ts",
|
|
25139
25227
|
"svelte": "./components/c/currency-bath.svelte"
|
|
25140
25228
|
},
|
|
25229
|
+
"./currency-rubel": {
|
|
25230
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25231
|
+
"svelte": "./components/c/currency-rubel.svelte"
|
|
25232
|
+
},
|
|
25141
25233
|
"./device-game-pad": {
|
|
25142
25234
|
"types": "./types/gfwqskkx.d.ts",
|
|
25143
25235
|
"svelte": "./components/d/device-game-pad.svelte"
|
|
@@ -25158,6 +25250,14 @@
|
|
|
25158
25250
|
"types": "./types/gfwqskkx.d.ts",
|
|
25159
25251
|
"svelte": "./components/e/electric-scooter.svelte"
|
|
25160
25252
|
},
|
|
25253
|
+
"./foodsteps": {
|
|
25254
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25255
|
+
"svelte": "./components/f/foodsteps.svelte"
|
|
25256
|
+
},
|
|
25257
|
+
"./gender-trasvesti": {
|
|
25258
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25259
|
+
"svelte": "./components/g/gender-trasvesti.svelte"
|
|
25260
|
+
},
|
|
25161
25261
|
"./grid": {
|
|
25162
25262
|
"types": "./types/gfwqskkx.d.ts",
|
|
25163
25263
|
"svelte": "./components/g/grid.svelte"
|
|
@@ -25314,6 +25414,10 @@
|
|
|
25314
25414
|
"types": "./types/gfwqskkx.d.ts",
|
|
25315
25415
|
"svelte": "./components/h/http-path.svelte"
|
|
25316
25416
|
},
|
|
25417
|
+
"./ikosaedr": {
|
|
25418
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25419
|
+
"svelte": "./components/i/ikosaedr.svelte"
|
|
25420
|
+
},
|
|
25317
25421
|
"./kering": {
|
|
25318
25422
|
"types": "./types/gfwqskkx.d.ts",
|
|
25319
25423
|
"svelte": "./components/k/kering.svelte"
|
|
@@ -25322,6 +25426,14 @@
|
|
|
25322
25426
|
"types": "./types/gfwqskkx.d.ts",
|
|
25323
25427
|
"svelte": "./components/m/miliraty-award.svelte"
|
|
25324
25428
|
},
|
|
25429
|
+
"./mood-confuzed": {
|
|
25430
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25431
|
+
"svelte": "./components/m/mood-confuzed.svelte"
|
|
25432
|
+
},
|
|
25433
|
+
"./mood-confuzed-filled": {
|
|
25434
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25435
|
+
"svelte": "./components/m/mood-confuzed-filled.svelte"
|
|
25436
|
+
},
|
|
25325
25437
|
"./mood-suprised": {
|
|
25326
25438
|
"types": "./types/gfwqskkx.d.ts",
|
|
25327
25439
|
"svelte": "./components/m/mood-suprised.svelte"
|
|
@@ -25334,6 +25446,10 @@
|
|
|
25334
25446
|
"types": "./types/gfwqskkx.d.ts",
|
|
25335
25447
|
"svelte": "./components/p/packge-import.svelte"
|
|
25336
25448
|
},
|
|
25449
|
+
"./physotherapist": {
|
|
25450
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25451
|
+
"svelte": "./components/p/physotherapist.svelte"
|
|
25452
|
+
},
|
|
25337
25453
|
"./seeding": {
|
|
25338
25454
|
"types": "./types/gfwqskkx.d.ts",
|
|
25339
25455
|
"svelte": "./components/s/seeding.svelte"
|
|
@@ -25354,6 +25470,10 @@
|
|
|
25354
25470
|
"types": "./types/gfwqskkx.d.ts",
|
|
25355
25471
|
"svelte": "./components/s/sort-deacending-small-big.svelte"
|
|
25356
25472
|
},
|
|
25473
|
+
"./sport-billard": {
|
|
25474
|
+
"types": "./types/gfwqskkx.d.ts",
|
|
25475
|
+
"svelte": "./components/s/sport-billard.svelte"
|
|
25476
|
+
},
|
|
25357
25477
|
"./square-0": {
|
|
25358
25478
|
"types": "./types/gfwqskkx.d.ts",
|
|
25359
25479
|
"svelte": "./components/s/square-0.svelte"
|