@wikicasa-dev/svg-icons 0.1.8 → 0.1.9

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.
Files changed (57) hide show
  1. package/dist/AirConditionerIcon.js +35 -0
  2. package/dist/AlarmIcon.js +35 -0
  3. package/dist/AttachedIcon.js +110 -0
  4. package/dist/AtticIcon.js +40 -0
  5. package/dist/CeilingIcon.js +51 -0
  6. package/dist/CellarIcon.js +32 -0
  7. package/dist/ClosetIcon.js +35 -0
  8. package/dist/ElectricGateIcon.js +54 -0
  9. package/dist/EntranceIcon.js +30 -0
  10. package/dist/FireplaceIcon.js +35 -0
  11. package/dist/FixturesIcon.js +40 -0
  12. package/dist/FrontBuildingIcon.js +43 -0
  13. package/dist/FurnishedIcon.js +40 -0
  14. package/dist/HotWaterIcon.js +64 -0
  15. package/dist/KitchenIcon.js +34 -0
  16. package/dist/LaundryIcon.js +43 -0
  17. package/dist/MezzanineIcon.js +33 -0
  18. package/dist/OpticFiberIcon.js +36 -0
  19. package/dist/RoofIcon.js +32 -0
  20. package/dist/SatelliteSystemIcon.js +36 -0
  21. package/dist/SecurityDoorIcon.js +53 -0
  22. package/dist/TavernIcon.js +34 -0
  23. package/dist/TypeFloorIcon.js +43 -0
  24. package/dist/TypeRollerShutterIcon.js +35 -0
  25. package/dist/TypeTvIcon.js +35 -0
  26. package/dist/TypeViewIcon.js +34 -0
  27. package/dist/WhirlpoolIcon.js +52 -0
  28. package/dist/index.js +220 -166
  29. package/dist/lib/index.d.ts +27 -0
  30. package/dist/lib/svgIcons/AirConditionerIcon.d.ts +7 -0
  31. package/dist/lib/svgIcons/AlarmIcon.d.ts +7 -0
  32. package/dist/lib/svgIcons/AttachedIcon.d.ts +7 -0
  33. package/dist/lib/svgIcons/AtticIcon.d.ts +7 -0
  34. package/dist/lib/svgIcons/CeilingIcon.d.ts +7 -0
  35. package/dist/lib/svgIcons/CellarIcon.d.ts +7 -0
  36. package/dist/lib/svgIcons/ClosetIcon.d.ts +7 -0
  37. package/dist/lib/svgIcons/ElectricGateIcon.d.ts +7 -0
  38. package/dist/lib/svgIcons/EntranceIcon.d.ts +7 -0
  39. package/dist/lib/svgIcons/FireplaceIcon.d.ts +7 -0
  40. package/dist/lib/svgIcons/FixturesIcon.d.ts +7 -0
  41. package/dist/lib/svgIcons/FrontBuildingIcon.d.ts +7 -0
  42. package/dist/lib/svgIcons/FurnishedIcon.d.ts +7 -0
  43. package/dist/lib/svgIcons/HotWaterIcon.d.ts +7 -0
  44. package/dist/lib/svgIcons/KitchenIcon.d.ts +7 -0
  45. package/dist/lib/svgIcons/LaundryIcon.d.ts +7 -0
  46. package/dist/lib/svgIcons/MezzanineIcon.d.ts +7 -0
  47. package/dist/lib/svgIcons/OpticFiberIcon.d.ts +7 -0
  48. package/dist/lib/svgIcons/RoofIcon.d.ts +7 -0
  49. package/dist/lib/svgIcons/SatelliteSystemIcon.d.ts +7 -0
  50. package/dist/lib/svgIcons/SecurityDoorIcon.d.ts +7 -0
  51. package/dist/lib/svgIcons/TavernIcon.d.ts +7 -0
  52. package/dist/lib/svgIcons/TypeFloorIcon.d.ts +7 -0
  53. package/dist/lib/svgIcons/TypeRollerShutterIcon.d.ts +7 -0
  54. package/dist/lib/svgIcons/TypeTvIcon.d.ts +7 -0
  55. package/dist/lib/svgIcons/TypeViewIcon.d.ts +7 -0
  56. package/dist/lib/svgIcons/WhirlpoolIcon.d.ts +7 -0
  57. package/package.json +1 -1
@@ -0,0 +1,34 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const r = (h) => o({
4
+ props: h,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 20.589 17",
8
+ width: h.width ?? 20,
9
+ height: h.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: h["stroke-color"] ?? "#222",
16
+ "stroke-width": h["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ t("path", { d: "M1.79 9.3h4.23v7.2H2.69a.9.9 0 0 1-.9-.9Z" }),
22
+ t("path", { d: "M6.018 9.296h8.593V16.5H6.018z" }),
23
+ t("path", { d: "M14.611 9.3h4.23v6.3a.9.9 0 0 1-.9.9h-3.33Z" }),
24
+ t("path", { d: "M.5 9.296h19.589" }),
25
+ t("path", { d: "M14.006 6H6.582l2.026-3.716h3.373Z" }),
26
+ t("path", { d: "M9.229.5h2.131v1.785H9.229z" }),
27
+ t("path", { d: "M7.256 11.045h6.112v2.05H7.256z" }),
28
+ t("path", { d: "M8.851 14.804h2.955" })
29
+ ]
30
+ )
31
+ });
32
+ export {
33
+ r as KitchenIcon
34
+ };
@@ -0,0 +1,43 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const a = (h) => o({
4
+ props: h,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 21.024 17",
8
+ width: h.width ?? 21,
9
+ height: h.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: h["stroke-color"] ?? "#0e1d34",
16
+ "stroke-width": h["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ t("path", { d: "M7.018 4.171h13.506v9.983a2.346 2.346 0 0 1-2.347 2.346H7.018Z" }),
22
+ t("path", {
23
+ d: "M9.364.5h8.813a2.346 2.346 0 0 1 2.346 2.346v1.325H7.018V2.846A2.346 2.346 0 0 1 9.364.5Z"
24
+ }),
25
+ t("circle", {
26
+ cx: "3.312",
27
+ cy: "3.312",
28
+ r: "3.312",
29
+ transform: "translate(10.459 7.023)"
30
+ }),
31
+ t("path", { d: "M16.179 8.074a3.285 3.285 0 1 0 .9 2.26 3.286 3.286 0 0 0-.9-2.26Z" }),
32
+ t("path", { d: "M11.419.5v3.671" }),
33
+ t("path", { d: "M17.01 2.335h1.298" }),
34
+ t("path", {
35
+ d: "M2.846 6.659h4.173V16.5H2.846A2.346 2.346 0 0 1 .5 14.153V9.005a2.346 2.346 0 0 1 2.346-2.346Z"
36
+ }),
37
+ t("path", { d: "M5.246 4.171H2.272l.373 2.217h2.247Z" })
38
+ ]
39
+ )
40
+ });
41
+ export {
42
+ a as LaundryIcon
43
+ };
@@ -0,0 +1,33 @@
1
+ import { h as t } from "vue";
2
+ import { s as h } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const r = (a) => h({
4
+ props: a,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 17.113 17",
8
+ width: a.width ?? 17,
9
+ height: a.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: a["stroke-color"] ?? "#222",
16
+ "stroke-width": a["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ t("path", {
22
+ d: "M14.613 16.5H1.5a1 1 0 0 1-1-1v-1.09a.5.5 0 0 1 .5-.5h2.922a.5.5 0 0 0 .5-.5v-1.463a.5.5 0 0 1 .5-.5h2.752a.5.5 0 0 0 .5-.5V9.455a.5.5 0 0 1 .5-.5H11.5a.5.5 0 0 0 .5-.5V7a.5.5 0 0 1 .5-.5h3.114a1 1 0 0 1 1 1v7a2 2 0 0 1-2.001 2Z"
23
+ }),
24
+ t("path", { d: "M.5.5v2.85a1 1 0 0 0 1 1h8.744a1 1 0 0 0 1-1V.612" }),
25
+ t("path", { d: "M.5 2.207h10.744" }),
26
+ t("path", { d: "M4.103 2.207V4.35" }),
27
+ t("path", { d: "M7.38 2.207V4.35" })
28
+ ]
29
+ )
30
+ });
31
+ export {
32
+ r as MezzanineIcon
33
+ };
@@ -0,0 +1,36 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const h = (r) => o({
4
+ props: r,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 24.042 24.042",
8
+ width: r.width ?? 24,
9
+ height: r.height ?? 24
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: r["stroke-color"] ?? "#222",
16
+ "stroke-width": r["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ transform: "rotate(-135 10.99 9.531)"
20
+ },
21
+ [
22
+ t("path", { d: "M11.876 1.246s-.976 5.647 1.106 7.759" }),
23
+ t("path", { d: "M9.153.527S9 8.661 10.06 10.1" }),
24
+ t("path", { d: "M7.15.614S8.146 8.6 6.4 10.76" }),
25
+ t("path", { d: "M4.908 1.351s1.078 5.223-.88 7.107" }),
26
+ t("path", { d: "M3.993 9.9a.89.89 0 1 1 .044-1.259.89.89 0 0 1-.044 1.259Z" }),
27
+ t("path", { d: "M6.685 12.3a.89.89 0 1 1 .044-1.258.89.89 0 0 1-.044 1.258Z" }),
28
+ t("path", { d: "M11.1 11.675a.89.89 0 1 1 .044-1.257.89.89 0 0 1-.044 1.257Z" }),
29
+ t("path", { d: "M14.221 10.28a.89.89 0 1 1 .044-1.258.89.89 0 0 1-.044 1.258Z" }),
30
+ t("circle", { cx: "8", cy: "8", r: "8", transform: "translate(.5 .5)" })
31
+ ]
32
+ )
33
+ });
34
+ export {
35
+ h as OpticFiberIcon
36
+ };
@@ -0,0 +1,32 @@
1
+ import { h as t } from "vue";
2
+ import { s as r } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const h = (o) => r({
4
+ props: o,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 21.413 17",
8
+ width: o.width ?? 21,
9
+ height: o.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: o["stroke-color"] ?? "#222",
16
+ "stroke-width": o["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ transform: "translate(.207)"
20
+ },
21
+ [
22
+ t("path", { d: "m.5 10.187 8.3-8.905a2.372 2.372 0 0 1 3.521 0l8.179 8.783" }),
23
+ t("path", { d: "M3.69 6.828V.5h2.116v3.965" }),
24
+ t("circle", { cx: "2", cy: "2", r: "2", transform: "translate(8.5 5.602)" }),
25
+ t("path", { d: "M19.392 16.401V8.84" }),
26
+ t("path", { d: "M1.722 8.939V16.5" })
27
+ ]
28
+ )
29
+ });
30
+ export {
31
+ h as RoofIcon
32
+ };
@@ -0,0 +1,36 @@
1
+ import { h as o } from "vue";
2
+ import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const a = (t) => e({
4
+ props: t,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 13.889 17.084",
8
+ width: t.width ?? 13,
9
+ height: t.height ?? 17
10
+ },
11
+ childrenNodes: o(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: t["stroke-color"] ?? "#222",
16
+ "stroke-width": t["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ o("path", {
22
+ d: "M6.18 12.841c-1.415-.367-3.256-2.583-3.728-3L.6 15.717a.666.666 0 0 0 .636.867h4.8a.666.666 0 0 0 .657-.782Z"
23
+ }),
24
+ o("path", { d: "m8.845 5.067 1.793-1.777" }),
25
+ o("path", {
26
+ d: "M11.513 1.141a1.251 1.251 0 1 1-1.262 1.251 1.256 1.256 0 0 1 1.262-1.251Z"
27
+ }),
28
+ o("path", {
29
+ d: "M4.215 11.6 2.289 9.674a6.109 6.109 0 0 1 0-8.638l.187-.187a.906.906 0 0 1 1.28 0l9.284 9.284a.906.906 0 0 1 0 1.28l-.187.187a6.109 6.109 0 0 1-8.638 0Z"
30
+ })
31
+ ]
32
+ )
33
+ });
34
+ export {
35
+ a as SatelliteSystemIcon
36
+ };
@@ -0,0 +1,53 @@
1
+ import { h as o } from "vue";
2
+ import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const i = (t) => e({
4
+ props: t,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 14.007 17",
8
+ width: t.width ?? 14,
9
+ height: t.height ?? 17
10
+ },
11
+ childrenNodes: o("g", { transform: "translate(-1042.955 -2870.268)" }, [
12
+ o("g", [
13
+ o("path", {
14
+ fill: "none",
15
+ stroke: t["stroke-color"] ?? "#222",
16
+ "stroke-width": t["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ d: "M1053.995 2872.768a2 2 0 0 0-2-2h-6.54a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h6.54a2 2 0 0 0 2-2"
20
+ }),
21
+ o("path", {
22
+ fill: "none",
23
+ stroke: t["stroke-color"] ?? "#222",
24
+ "stroke-width": t["stroke-width"] ?? 1,
25
+ "stroke-linecap": "round",
26
+ "stroke-linejoin": "round",
27
+ d: "M1051.519 2877.978h4.943v4.943h-4.943z"
28
+ }),
29
+ o("path", {
30
+ fill: "none",
31
+ stroke: t["stroke-color"] ?? "#222",
32
+ "stroke-width": t["stroke-width"] ?? 1,
33
+ "stroke-linecap": "round",
34
+ "stroke-linejoin": "round",
35
+ d: "M1052.331 2877.978v-1.7a1.664 1.664 0 1 1 3.328 0v1.7"
36
+ }),
37
+ o("path", {
38
+ fill: "#0e1d34",
39
+ d: "M1054.67 2880.168a.68.68 0 1 0-.975.606v.473a.163.163 0 0 0 .163.163h.264a.163.163 0 0 0 .164-.163v-.473a.677.677 0 0 0 .384-.606"
40
+ })
41
+ ]),
42
+ o("circle", {
43
+ cx: "1",
44
+ cy: "1",
45
+ r: "1",
46
+ fill: "#101d31",
47
+ transform: "translate(1045 2877.768)"
48
+ })
49
+ ])
50
+ });
51
+ export {
52
+ i as SecurityDoorIcon
53
+ };
@@ -0,0 +1,34 @@
1
+ import { h as o } from "vue";
2
+ import { s as h } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const r = (t) => h({
4
+ props: t,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 12.972 17",
8
+ width: t.width ?? 12,
9
+ height: t.height ?? 17
10
+ },
11
+ childrenNodes: o(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: t["stroke-color"] ?? "#222",
16
+ "stroke-width": t["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ o("path", {
22
+ d: "m11.472 8.349-.4-4.067H9.367l-.3 4.07a1.608 1.608 0 0 0-.982 1.482V15.7a.8.8 0 0 0 .8.8h2.778a.8.8 0 0 0 .8-.8V9.834a1.6 1.6 0 0 0-.991-1.485Z"
23
+ }),
24
+ o("path", {
25
+ d: "M4.761 5.415a1.459 1.459 0 0 1-.683-1.163V.5H1.84v3.752a1.457 1.457 0 0 1-.683 1.163 1.552 1.552 0 0 0-.656 1.268V15.7a.8.8 0 0 0 .8.8h3.314a.8.8 0 0 0 .8-.8V6.683a1.55 1.55 0 0 0-.654-1.268Z"
26
+ }),
27
+ o("path", { d: "M.501 7.765h4.917" }),
28
+ o("path", { d: "M.501 13.503h4.917" })
29
+ ]
30
+ )
31
+ });
32
+ export {
33
+ r as TavernIcon
34
+ };
@@ -0,0 +1,43 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const e = (h) => o({
4
+ props: h,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 17.311 17.32",
8
+ width: h.width ?? 17,
9
+ height: h.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: h["stroke-color"] ?? "#222",
16
+ "stroke-width": h["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ t("rect", {
22
+ width: "15.991",
23
+ height: "15.991",
24
+ rx: "2",
25
+ transform: "translate(.546 .546)"
26
+ }),
27
+ t("path", { d: "M1.062 15.868 15.874 1.056" }),
28
+ t("path", { d: "M5.418 16.537 16.537 5.418" }),
29
+ t("path", { d: "m10.283 16.547 6.254-6.254" }),
30
+ t("path", { d: "M.547 12.54h3.802" }),
31
+ t("path", { d: "M.547 8.542h7.841" }),
32
+ t("path", { d: "M.547 4.544h11.839" }),
33
+ t("path", { d: "M3.39 4.544v3.998" }),
34
+ t("path", { d: "M5.418 4.544V.546" }),
35
+ t("path", { d: "M10.283 4.544V.546" }),
36
+ t("path", { d: "M7.784 4.544v3.998" }),
37
+ t("path", { d: "M4.948 8.632v3.35" })
38
+ ]
39
+ )
40
+ });
41
+ export {
42
+ e as TypeFloorIcon
43
+ };
@@ -0,0 +1,35 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const r = (h) => o({
4
+ props: h,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 17 17",
8
+ width: h.width ?? 17,
9
+ height: h.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: h["stroke-color"] ?? "#222",
16
+ "stroke-width": h["stroke-width"] ?? 1,
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round"
19
+ },
20
+ [
21
+ t("path", { d: "M.991 2.556h14.703" }),
22
+ t("path", { d: "M.991 4.975h14.703" }),
23
+ t("path", { d: "M.991 7.394h14.703" }),
24
+ t("path", { d: "M.991 9.814h14.703" }),
25
+ t("path", { d: "M.991 12.233h14.703" }),
26
+ t("path", { d: "M.991 14.652h14.703" }),
27
+ t("path", { d: "M2.413.707V16.5" }),
28
+ t("path", { d: "M2.413.707V16.5" }),
29
+ t("path", { d: "M.5.5h16v.415H.5z" })
30
+ ]
31
+ )
32
+ });
33
+ export {
34
+ r as TypeRollerShutterIcon
35
+ };
@@ -0,0 +1,35 @@
1
+ import { h as r } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const n = (t) => o({
4
+ props: t,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 20.947 17.095",
8
+ width: t.width ?? 20,
9
+ height: t.height ?? 17
10
+ },
11
+ childrenNodes: r(
12
+ "g",
13
+ {
14
+ fill: "none",
15
+ stroke: t["stroke-color"] ?? "#222",
16
+ "stroke-linecap": "round",
17
+ "stroke-linejoin": "round",
18
+ "stroke-width": t["stroke-width"] ?? 1,
19
+ transform: "translate(0 .001)"
20
+ },
21
+ [
22
+ r("rect", {
23
+ width: "19.853",
24
+ height: "12.832",
25
+ rx: "2",
26
+ transform: "translate(.547 .546)"
27
+ }),
28
+ r("path", { d: "M4.67 16.547h11.607" }),
29
+ r("path", { d: "M10.473 13.378v3.168" })
30
+ ]
31
+ )
32
+ });
33
+ export {
34
+ n as TypeTvIcon
35
+ };
@@ -0,0 +1,34 @@
1
+ import { h as t } from "vue";
2
+ import { s as o } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const i = (e) => o({
4
+ props: e,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 18.604 17",
8
+ width: e.width ?? 18,
9
+ height: e.height ?? 17
10
+ },
11
+ childrenNodes: t(
12
+ "g",
13
+ t(
14
+ "g",
15
+ {
16
+ fill: "none",
17
+ stroke: e["stroke-color"] ?? "#222",
18
+ "stroke-width": e["stroke-width"] ?? 1,
19
+ "stroke-linecap": "round",
20
+ "stroke-linejoin": "round"
21
+ },
22
+ [
23
+ t("path", { d: "M3.9.5h10.8a2 2 0 0 1 2 2v12H1.9v-12a2 2 0 0 1 2-2Z" }),
24
+ t("path", { d: "M5.137 2.616h8.331a1 1 0 0 1 1 1V14.5H4.137V3.616a1 1 0 0 1 1-1Z" }),
25
+ t("rect", { width: "17.604", height: "2", rx: ".902", transform: "translate(.5 14.5)" }),
26
+ t("path", { d: "m4.137 10.455 3.217-3.217 7.114 7.262" }),
27
+ t("path", { d: "m8.889 8.806 3.471-3.271 2.108 2.13" })
28
+ ]
29
+ )
30
+ )
31
+ });
32
+ export {
33
+ i as TypeViewIcon
34
+ };
@@ -0,0 +1,52 @@
1
+ import { h as t } from "vue";
2
+ import { s as e } from "./svgIconFactory-Dn0WJdb3.js";
3
+ const i = (o) => e({
4
+ props: o,
5
+ svgNodeAttrs: {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 19.834 16.5",
8
+ width: o.width ?? 19,
9
+ height: o.height ?? 16
10
+ },
11
+ childrenNodes: t("g", [
12
+ t("path", {
13
+ fill: "none",
14
+ stroke: o["stroke-color"] ?? "#222",
15
+ "stroke-width": o["stroke-width"] ?? 1,
16
+ "stroke-linecap": "round",
17
+ "stroke-linejoin": "round",
18
+ d: "M17.896 7.262a1.434 1.434 0 0 1 1.418 1.65l-.627 3.433A4.3 4.3 0 0 1 14.433 16H5.402a4.3 4.3 0 0 1-4.254-3.655L.519 8.912a1.434 1.434 0 0 1 1.418-1.65"
19
+ }),
20
+ t("path", {
21
+ fill: "none",
22
+ stroke: o["stroke-color"] ?? "#222",
23
+ "stroke-width": o["stroke-width"] ?? 1,
24
+ "stroke-linecap": "round",
25
+ "stroke-linejoin": "round",
26
+ d: "M4.202 7.115a2.2 2.2 0 0 1 1.452-.5c.732.058.863.564 1.576.622.892.073 1.126-.685 1.99-.58.716.087.774.634 1.411.622.734-.014.906-.747 1.576-.7.571.035.683.585 1.285.7a1.934 1.934 0 0 0 1.618-.664"
27
+ }),
28
+ t("path", {
29
+ fill: o["stroke-color"] ?? "#222",
30
+ d: "M4.978 3.6a.945.945 0 1 1-.945-.945.945.945 0 0 1 .945.945"
31
+ }),
32
+ t("path", {
33
+ fill: o["stroke-color"] ?? "#222",
34
+ d: "M10.119 1.9A1.857 1.857 0 1 1 8.261.041 1.858 1.858 0 0 1 10.119 1.9"
35
+ }),
36
+ t("path", {
37
+ fill: o["stroke-color"] ?? "#222",
38
+ d: "M13.145 3.684a1.091 1.091 0 1 1-1.092-1.092 1.092 1.092 0 0 1 1.092 1.092"
39
+ }),
40
+ t("path", {
41
+ fill: o["stroke-color"] ?? "#222",
42
+ d: "M13.747.6a.6.6 0 1 1-.6-.6.6.6 0 0 1 .6.6"
43
+ }),
44
+ t("path", {
45
+ fill: o["stroke-color"] ?? "#222",
46
+ d: "M16.234 3.653a.706.706 0 1 1-.706-.706.706.706 0 0 1 .706.706"
47
+ })
48
+ ])
49
+ });
50
+ export {
51
+ i as WhirlpoolIcon
52
+ };