@iconify-vue/material-symbols-light 1.0.16 → 1.0.17
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/h/horizontal-align-center-rounded.vue +16 -0
- package/components/h/horizontal-align-center.vue +16 -0
- package/components/h/horizontal-align-left-rounded.vue +16 -0
- package/components/h/horizontal-align-left.vue +16 -0
- package/components/h/horizontal-align-right-rounded.vue +16 -0
- package/components/h/horizontal-align-right.vue +16 -0
- package/components/p/phone-cancel-outline-rounded.vue +16 -0
- package/components/p/phone-cancel-outline-sharp.vue +16 -0
- package/components/p/phone-cancel-outline.vue +16 -0
- package/components/p/phone-cancel-rounded.vue +16 -0
- package/components/p/phone-cancel-sharp.vue +16 -0
- package/components/p/phone-cancel.vue +16 -0
- package/components/r/resize-window-rounded.vue +16 -0
- package/components/r/resize-window.vue +16 -0
- package/iconify.json +2 -2
- package/package.json +57 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="sd7-c-bm"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-center-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.sd7-c-bm {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m15.8 12.5l1.746 1.746q.14.14.15.344t-.15.364t-.354.16t-.353-.16l-2.382-2.382q-.138-.137-.19-.276q-.054-.14-.054-.298t.053-.296q.053-.136.19-.274l2.383-2.382q.14-.14.344-.15t.363.15t.16.354t-.16.354L15.8 11.5h4.7q.213 0 .356.144t.144.357t-.144.356t-.356.143zm-3.3 6q0 .213-.144.356t-.357.144t-.356-.144t-.143-.356v-13q0-.213.144-.356T12.001 5t.356.144t.143.356zm-4.3-6H3.5q-.213 0-.356-.144T3 11.999t.144-.356t.356-.143h4.7L6.454 9.754q-.14-.14-.15-.344t.15-.364t.354-.16t.353.16l2.382 2.382q.138.137.19.276q.053.14.053.298t-.052.296t-.19.274L7.16 14.954q-.14.14-.344.15t-.363-.15t-.16-.354t.16-.354z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="l6bmxwb"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-center" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.l6bmxwb {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M17.192 15.308L13.885 12l3.307-3.308l.708.708l-2.094 2.1H21v1h-5.194l2.094 2.1zM11.5 19V5h1v14zm-4.692-3.692L6.1 14.6l2.094-2.1H3v-1h5.194L6.1 9.4l.708-.708L10.116 12z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="j-1yepbj"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-left-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j-1yepbj {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4.143 18.857Q4 18.714 4 18.5v-13q0-.213.143-.357T4.5 5t.357.143T5 5.5v13q0 .214-.143.357T4.5 19t-.357-.143M9.608 12.5l2.746 2.746q.14.14.15.344t-.15.364t-.354.16t-.354-.16l-3.388-3.389q-.131-.13-.184-.267q-.053-.136-.053-.298t.053-.298t.184-.267l3.388-3.389q.14-.14.344-.15t.364.15t.16.354t-.16.354L9.608 11.5H19.5q.214 0 .357.143T20 12t-.143.357t-.357.143z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="a28bgcc"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-left" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.a28bgcc {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M4 19V5h1v14zm8-2.692L7.692 12L12 7.692l.708.708l-3.1 3.1H20v1H9.608l3.1 3.1z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="xa4rg3bx"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-right-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.xa4rg3bx {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.143 18.857Q19 18.714 19 18.5v-13q0-.213.143-.357T19.5 5t.357.143T20 5.5v13q0 .214-.143.357T19.5 19t-.357-.143m-4.75-6.357H4.5q-.213 0-.357-.143T4 12t.143-.357t.357-.143h9.892l-2.746-2.746q-.14-.14-.15-.344t.15-.364t.354-.16t.354.16l3.388 3.388q.131.132.184.268q.053.137.053.298t-.053.298t-.184.268l-3.388 3.388q-.14.14-.344.15t-.364-.15t-.16-.354t.16-.354z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="zc3q5nt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:horizontal-align-right" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.zc3q5nt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19 19V5h1v14zm-7-2.692l-.708-.708l3.1-3.1H4v-1h10.392l-3.1-3.1l.708-.708L16.308 12z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="qbv3kk-x"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel-outline-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.qbv3kk-x {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.93 20q-2.528 0-5.184-1.266t-4.944-3.555q-2.27-2.288-3.536-4.935T4 5.07q0-.45.3-.76T5.05 4h2.473q.408 0 .721.257t.402.659L9.142 7.3q.07.42-.025.733t-.333.513L6.59 10.592q.616 1.117 1.361 2.076t1.59 1.817q.87.87 1.874 1.62q1.004.749 2.204 1.414l2.139-2.177q.244-.263.549-.357t.674-.023l2.103.43q.408.095.662.408t.254.715v2.435q0 .45-.31.75t-.76.3M6.122 9.654l1.92-1.765q.095-.077.124-.212q.03-.135-.01-.25l-.443-2.12q-.039-.153-.135-.23T7.327 5H5.275q-.115 0-.192.077t-.077.192q.029 1.025.321 2.14t.794 2.245m8.45 8.334q1.014.502 2.16.743q1.148.24 2 .257q.115 0 .192-.077T19 18.72v-2.008q0-.153-.077-.25q-.077-.096-.23-.134l-1.85-.379q-.116-.039-.203-.01q-.086.03-.182.125zm2.64-10.467l-1.745 1.721q-.141.14-.342.153t-.366-.153q-.16-.16-.16-.354t.16-.354l1.74-1.746l-1.74-1.72q-.16-.141-.16-.342t.16-.367q.165-.165.357-.165q.19 0 .356.165l1.74 1.741l1.722-1.746q.14-.165.341-.165t.367.165t.165.357t-.166.356L17.92 6.79l1.726 1.746q.146.146.153.344t-.158.363q-.166.16-.354.163q-.189.003-.354-.163z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="evi_sccn"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel-outline-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.evi_sccn {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m15.112 9.596l-.708-.707l2.094-2.1l-2.094-2.075l.708-.714l2.1 2.1L19.287 4l.713.713l-2.08 2.076l2.08 2.1l-.713.707l-2.075-2.075zM19.2 20q-2.702 0-5.418-1.244t-5.005-3.533q-2.27-2.289-3.523-5.021Q4 7.469 4 4.8V4h4.439l.848 4.083l-2.696 2.51q.684 1.186 1.417 2.167t1.527 1.769q.802.84 1.808 1.57t2.296 1.44l2.611-2.708l3.75.756V20zM6.121 9.654l2.092-1.92L7.635 5h-2.63q.03 1.144.309 2.305q.278 1.16.807 2.349m8.45 8.335q.923.463 2.09.723t2.339.277v-2.605l-2.388-.475zm0 0");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="utth0edg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel-outline" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.utth0edg {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.93 20q-2.528 0-5.184-1.266t-4.935-3.555t-3.545-4.935T4 5.07q0-.458.3-.763T5.05 4h2.473q.403 0 .719.257t.404.659L9.142 7.3q.07.42-.025.733t-.333.513L6.59 10.592q.616 1.117 1.361 2.076t1.59 1.817q.87.87 1.874 1.62q1.004.749 2.204 1.414l2.139-2.177q.244-.263.549-.357t.674-.023l2.103.43q.408.095.662.408t.254.715v2.435q0 .45-.306.75t-.763.3M6.12 9.654l1.92-1.765q.095-.077.124-.212q.03-.135-.01-.25l-.443-2.12q-.039-.153-.135-.23T7.327 5H5.275q-.115 0-.192.077t-.077.192q.029 1.025.321 2.14t.794 2.245m8.45 8.334q1.014.502 2.16.743q1.148.24 2 .257q.115 0 .192-.077T19 18.72v-2.008q0-.153-.077-.25q-.077-.096-.23-.134l-1.85-.379q-.116-.039-.203-.01q-.086.03-.182.125zm.54-8.392l-.707-.708l2.094-2.1l-2.094-2.075l.708-.713l2.1 2.1L19.287 4l.713.713l-2.08 2.076l2.08 2.1l-.713.707l-2.075-2.075z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="j-o0qlrt"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.j-o0qlrt {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.93 20q-2.528 0-5.184-1.266t-4.944-3.555q-2.27-2.288-3.536-4.935T4 5.07q0-.45.3-.76T5.05 4h2.473q.408 0 .721.257t.402.659L9.142 7.3q.07.42-.025.733t-.333.513L6.59 10.592q.616 1.117 1.361 2.076t1.59 1.817q.87.87 1.874 1.62q1.004.749 2.204 1.414l2.139-2.177q.244-.263.549-.357t.674-.023l2.103.43q.408.095.662.408t.254.715v2.435q0 .45-.31.75t-.76.3M17.213 7.521l-1.746 1.721q-.141.14-.342.153t-.366-.153q-.16-.16-.16-.354t.16-.353l1.74-1.746l-1.74-1.722q-.16-.14-.16-.341t.16-.366q.165-.166.357-.166q.19 0 .356.166l1.74 1.74l1.722-1.746q.14-.165.341-.165t.367.165t.165.357t-.166.356L17.92 6.79l1.726 1.746q.146.146.153.344t-.158.363q-.166.16-.354.163q-.189.003-.354-.163z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="frn_k9_x"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel-sharp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.frn_k9_x {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("m15.112 9.596l-.708-.707l2.094-2.1l-2.094-2.075l.708-.714l2.1 2.1L19.287 4l.713.713l-2.08 2.076l2.08 2.1l-.713.707l-2.075-2.075zM19.2 20q-2.702 0-5.418-1.244t-5.005-3.533q-2.27-2.289-3.523-5.021Q4 7.469 4 4.8V4h4.439l.848 4.083l-2.696 2.51q.684 1.186 1.417 2.167t1.527 1.769q.802.84 1.808 1.57t2.296 1.44l2.611-2.708l3.75.756V20z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="bud74bcu"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:phone-cancel" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bud74bcu {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M18.93 20q-2.528 0-5.184-1.266t-4.944-3.555q-2.27-2.288-3.536-4.935T4 5.07q0-.45.3-.76T5.05 4h2.473q.408 0 .721.257t.402.659L9.142 7.3q.07.42-.025.733t-.333.513L6.59 10.592q.616 1.117 1.361 2.076t1.59 1.817q.87.87 1.874 1.62q1.004.749 2.204 1.414l2.139-2.177q.244-.263.549-.357t.674-.023l2.103.43q.408.095.662.408t.254.715v2.435q0 .45-.31.75t-.76.3M15.113 9.596l-.708-.707l2.094-2.1l-2.094-2.075l.708-.714l2.1 2.1L19.287 4l.713.713l-2.08 2.076l2.08 2.1l-.713.707l-2.075-2.075z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="ctyw23jp"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:resize-window-rounded" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ctyw23jp {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.646 19.646q-.165.166-.356.166q-.192 0-.357-.166L4.353 5.067q-.145-.146-.155-.347t.156-.366q.165-.165.357-.165t.356.165l14.58 14.579q.145.146.155.347t-.156.366m-9.615 0q-.165.166-.357.166t-.357-.166l-4.963-4.963q-.146-.147-.156-.348t.156-.366t.357-.165t.356.165l4.964 4.964q.146.146.156.347t-.156.366");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":24,"height":24};
|
|
7
|
+
const content = `<path class="rf_dn-b"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="material-symbols-light:resize-window" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.rf_dn-b {
|
|
12
|
+
fill: currentColor;
|
|
13
|
+
d: path("M19.292 20L4 4.714L4.713 4L20 19.287zm-9.62 0L4 14.329l.714-.714l5.67 5.671z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "material-symbols-light",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Material Symbols Light",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 15201,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Google",
|
|
8
8
|
"url": "https://github.com/google/material-design-icons"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1771495664
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/material-symbols-light",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.17",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/material-symbols-light/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -27674,6 +27674,30 @@
|
|
|
27674
27674
|
"types": "./types/dd0bq22g.d.ts",
|
|
27675
27675
|
"default": "./components/h/home-work-rounded.vue"
|
|
27676
27676
|
},
|
|
27677
|
+
"./horizontal-align-center": {
|
|
27678
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27679
|
+
"default": "./components/h/horizontal-align-center.vue"
|
|
27680
|
+
},
|
|
27681
|
+
"./horizontal-align-center-rounded": {
|
|
27682
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27683
|
+
"default": "./components/h/horizontal-align-center-rounded.vue"
|
|
27684
|
+
},
|
|
27685
|
+
"./horizontal-align-left": {
|
|
27686
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27687
|
+
"default": "./components/h/horizontal-align-left.vue"
|
|
27688
|
+
},
|
|
27689
|
+
"./horizontal-align-left-rounded": {
|
|
27690
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27691
|
+
"default": "./components/h/horizontal-align-left-rounded.vue"
|
|
27692
|
+
},
|
|
27693
|
+
"./horizontal-align-right": {
|
|
27694
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27695
|
+
"default": "./components/h/horizontal-align-right.vue"
|
|
27696
|
+
},
|
|
27697
|
+
"./horizontal-align-right-rounded": {
|
|
27698
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
27699
|
+
"default": "./components/h/horizontal-align-right-rounded.vue"
|
|
27700
|
+
},
|
|
27677
27701
|
"./horizontal-distribute": {
|
|
27678
27702
|
"types": "./types/dd0bq22g.d.ts",
|
|
27679
27703
|
"default": "./components/h/horizontal-distribute.vue"
|
|
@@ -41418,6 +41442,30 @@
|
|
|
41418
41442
|
"types": "./types/dd0bq22g.d.ts",
|
|
41419
41443
|
"default": "./components/p/phone-callback-sharp.vue"
|
|
41420
41444
|
},
|
|
41445
|
+
"./phone-cancel": {
|
|
41446
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41447
|
+
"default": "./components/p/phone-cancel.vue"
|
|
41448
|
+
},
|
|
41449
|
+
"./phone-cancel-outline": {
|
|
41450
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41451
|
+
"default": "./components/p/phone-cancel-outline.vue"
|
|
41452
|
+
},
|
|
41453
|
+
"./phone-cancel-outline-rounded": {
|
|
41454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41455
|
+
"default": "./components/p/phone-cancel-outline-rounded.vue"
|
|
41456
|
+
},
|
|
41457
|
+
"./phone-cancel-outline-sharp": {
|
|
41458
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41459
|
+
"default": "./components/p/phone-cancel-outline-sharp.vue"
|
|
41460
|
+
},
|
|
41461
|
+
"./phone-cancel-rounded": {
|
|
41462
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41463
|
+
"default": "./components/p/phone-cancel-rounded.vue"
|
|
41464
|
+
},
|
|
41465
|
+
"./phone-cancel-sharp": {
|
|
41466
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
41467
|
+
"default": "./components/p/phone-cancel-sharp.vue"
|
|
41468
|
+
},
|
|
41421
41469
|
"./phone-disabled": {
|
|
41422
41470
|
"types": "./types/dd0bq22g.d.ts",
|
|
41423
41471
|
"default": "./components/p/phone-disabled.vue"
|
|
@@ -45246,6 +45294,14 @@
|
|
|
45246
45294
|
"types": "./types/dd0bq22g.d.ts",
|
|
45247
45295
|
"default": "./components/r/resize-rounded.vue"
|
|
45248
45296
|
},
|
|
45297
|
+
"./resize-window": {
|
|
45298
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
45299
|
+
"default": "./components/r/resize-window.vue"
|
|
45300
|
+
},
|
|
45301
|
+
"./resize-window-rounded": {
|
|
45302
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
45303
|
+
"default": "./components/r/resize-window-rounded.vue"
|
|
45304
|
+
},
|
|
45249
45305
|
"./respiratory-rate": {
|
|
45250
45306
|
"types": "./types/dd0bq22g.d.ts",
|
|
45251
45307
|
"default": "./components/r/respiratory-rate.vue"
|