@arco-iconbox/vue-smartcode 0.1.73 → 0.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icon.js +4012 -3230
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +629 -561
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorBlock/index.js +71 -0
- package/esm/IconColorCard/index.js +44 -0
- package/esm/IconColorCascade/index.js +40 -0
- package/esm/IconColorCheckbox/index.js +48 -0
- package/esm/IconColorColorselection/index.js +54 -0
- package/esm/IconColorDate/index.js +57 -0
- package/esm/IconColorDictionary/index.js +40 -0
- package/esm/IconColorImageupload/index.js +53 -0
- package/esm/IconColorLine/index.js +41 -0
- package/esm/IconColorLink/index.js +38 -0
- package/esm/IconColorOrganization/index.js +46 -0
- package/esm/IconColorPeople/index.js +47 -0
- package/esm/IconColorRating/index.js +44 -0
- package/esm/IconColorSlide/index.js +59 -0
- package/esm/IconColorTab/index.js +44 -0
- package/esm/IconColorTip/index.js +46 -0
- package/esm/IconColorTitle/index.js +44 -0
- package/esm/index.js +17 -0
- package/lib/IconColorBlock/index.js +72 -0
- package/lib/IconColorCard/index.js +45 -0
- package/lib/IconColorCascade/index.js +41 -0
- package/lib/IconColorCheckbox/index.js +49 -0
- package/lib/IconColorColorselection/index.js +55 -0
- package/lib/IconColorDate/index.js +58 -0
- package/lib/IconColorDictionary/index.js +41 -0
- package/lib/IconColorImageupload/index.js +54 -0
- package/lib/IconColorLine/index.js +42 -0
- package/lib/IconColorLink/index.js +39 -0
- package/lib/IconColorOrganization/index.js +47 -0
- package/lib/IconColorPeople/index.js +48 -0
- package/lib/IconColorRating/index.js +45 -0
- package/lib/IconColorSlide/index.js +60 -0
- package/lib/IconColorTab/index.js +45 -0
- package/lib/IconColorTip/index.js +47 -0
- package/lib/IconColorTitle/index.js +45 -0
- package/lib/index.js +34 -0
- package/package.json +1 -1
- package/src/IconColorBlock/index.vue +19 -0
- package/src/IconColorCard/index.vue +19 -0
- package/src/IconColorCascade/index.vue +19 -0
- package/src/IconColorCheckbox/index.vue +19 -0
- package/src/IconColorColorselection/index.vue +19 -0
- package/src/IconColorDate/index.vue +19 -0
- package/src/IconColorDictionary/index.vue +19 -0
- package/src/IconColorImageupload/index.vue +19 -0
- package/src/IconColorLine/index.vue +19 -0
- package/src/IconColorLink/index.vue +19 -0
- package/src/IconColorOrganization/index.vue +19 -0
- package/src/IconColorPeople/index.vue +19 -0
- package/src/IconColorRating/index.vue +19 -0
- package/src/IconColorSlide/index.vue +19 -0
- package/src/IconColorTab/index.vue +19 -0
- package/src/IconColorTip/index.vue +19 -0
- package/src/IconColorTitle/index.vue +19 -0
- package/src/index.js +18 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-imageupload`]" width="1em" height="1em" v-bind="$attrs"><path d="M12.9309 4.34189H9.84727C7.60706 4.34189 6.48695 4.34189 5.6313 4.77786C4.87866 5.16136 4.26673 5.77328 3.88324 6.52593C3.44727 7.38157 3.44727 8.50168 3.44727 10.7419V13.7948C3.44727 16.035 3.44727 17.1551 3.88324 18.0107C4.26673 18.7634 4.87866 19.3753 5.6313 19.7588C6.48695 20.1948 7.60705 20.1948 9.84726 20.1948H13.8327C16.0729 20.1948 17.193 20.1948 18.0486 19.7588C18.8013 19.3753 19.4132 18.7634 19.7967 18.0107C20.2327 17.1551 20.2327 16.035 20.2327 13.7948V9.71425" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.07227 16.3838L7.91539 13.7129L9.83695 15.0483L11.7585 16.3838M19.9251 17.2341L13.3085 12.6357L11.5727 13.842" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.6523 2.63531V10.0955M20.5081 5.49111L17.6523 2.63531 14.7966 5.49111" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorImageupload',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-line`]" width="1em" height="1em" v-bind="$attrs"><path d="M3.04297 12.0027H20.9572" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.41406 4.62964C6.87246 4.62964 7.24414 5.00132 7.24414 5.45972 7.24393 5.91793 6.87233 6.28979 6.41406 6.28979H3.04297C2.58475 6.28974 2.2131 5.9179 2.21289 5.45972 2.21289 5.00136 2.58462 4.6297 3.04297 4.62964H6.41406zM13.6855 4.62964C14.1439 4.62964 14.5156 5.00132 14.5156 5.45972 14.5154 5.91793 14.1438 6.28979 13.6855 6.28979H10.3145C9.85622 6.28976 9.48459 5.91791 9.48438 5.45972 9.48438 5.00134 9.85609 4.62968 10.3145 4.62964H13.6855zM20.957 4.62964C21.4154 4.62964 21.7871 5.00132 21.7871 5.45972 21.7869 5.91793 21.4153 6.28979 20.957 6.28979H17.5859C17.1277 6.28978 16.7561 5.91792 16.7559 5.45972 16.7559 5.00133 17.1276 4.62966 17.5859 4.62964H20.957zM6.41406 17.7136C6.87239 17.7136 7.24404 18.0854 7.24414 18.5437 7.24414 19.0021 6.87246 19.3738 6.41406 19.3738H3.04297C2.58462 19.3737 2.21289 19.0021 2.21289 18.5437 2.213 18.0854 2.58469 17.7137 3.04297 17.7136H6.41406zM13.6855 17.7136C14.1439 17.7136 14.5155 18.0854 14.5156 18.5437 14.5156 19.0021 14.1439 19.3738 13.6855 19.3738H10.3145C9.85609 19.3737 9.48438 19.0021 9.48438 18.5437 9.48448 18.0854 9.85616 17.7137 10.3145 17.7136H13.6855zM20.957 17.7136C21.4154 17.7136 21.787 18.0854 21.7871 18.5437 21.7871 19.0021 21.4154 19.3738 20.957 19.3738H17.5859C17.1276 19.3738 16.7559 19.0021 16.7559 18.5437 16.756 18.0854 17.1276 17.7136 17.5859 17.7136H20.957z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorLine',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-link`]" width="1em" height="1em" v-bind="$attrs"><path d="M12.8428 12.8427C12.5186 13.1669 12.5186 13.6924 12.8428 14.0165C13.1669 14.3407 13.6924 14.3407 14.0165 14.0165L13.4297 13.4296L12.8428 12.8427ZM5.75797 14.4614C6.0821 14.7855 6.60762 14.7855 6.93175 14.4614C7.25588 14.1372 7.25588 13.6117 6.93175 13.2875L6.34486 13.8745L5.75797 14.4614ZM12.6948 5.16498L12.1079 5.75188L12.8428 6.48675L13.4297 5.89985L14.0165 5.31294L13.2817 4.57807L12.6948 5.16498ZM5.53262 13.0622L6.11951 12.4753L5.75209 12.1079L5.16519 12.6948L4.5783 13.2817L4.94573 13.6491L5.53262 13.0622ZM5.53262 13.0622L4.94573 13.6491L5.75797 14.4614L6.34486 13.8745L6.93175 13.2875L6.11951 12.4753L5.53262 13.0622ZM13.4297 5.89985L12.8428 6.48675C14.5979 8.24191 14.5979 11.0876 12.8428 12.8427L13.4297 13.4296L14.0165 14.0165C16.4199 11.6131 16.4199 7.71637 14.0165 5.31294L13.4297 5.89985ZM5.16519 5.16498L5.75209 5.75189C7.5072 3.99673 10.3528 3.99673 12.1079 5.75188L12.6948 5.16498L13.2817 4.57807C10.8783 2.17464 6.98168 2.17464 4.5783 4.57807L5.16519 5.16498ZM5.16519 5.16498L4.5783 4.57807C2.17493 6.9815 2.17493 10.8782 4.5783 13.2817L5.16519 12.6948L5.75209 12.1079C3.99697 10.3527 3.99697 7.50704 5.75209 5.75189L5.16519 5.16498Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/><path d="M11.1564 11.1569C11.4805 10.8327 11.4805 10.3072 11.1564 9.98307C10.8323 9.65893 10.3067 9.65893 9.9826 9.98307L10.5695 10.57L11.1564 11.1569ZM18.1315 9.42853C17.8073 9.10439 17.2818 9.10439 16.9577 9.42853C16.6335 9.75267 16.6335 10.2782 16.9577 10.6023L17.5446 10.0154L18.1315 9.42853ZM11.3043 18.8346L11.8912 18.2477L11.1564 17.5129L10.5695 18.0998L9.9826 18.6867L10.7175 19.4215L11.3043 18.8346ZM18.4665 10.9374L17.8796 11.5243L18.2471 11.8918L18.834 11.3048L19.4208 10.7179L19.0534 10.3505L18.4665 10.9374ZM18.4665 10.9374L19.0534 10.3505L18.1315 9.42853L17.5446 10.0154L16.9577 10.6023L17.8796 11.5243L18.4665 10.9374ZM18.834 18.8346L18.2471 18.2477C16.4919 20.0029 13.6464 20.0029 11.8912 18.2477L11.3043 18.8346L10.7175 19.4215C13.1208 21.825 17.0175 21.825 19.4208 19.4215L18.834 18.8346ZM18.834 18.8346L19.4208 19.4215C21.8242 17.0181 21.8242 13.1214 19.4208 10.7179L18.834 11.3048L18.2471 11.8918C20.0022 13.6469 20.0022 16.4926 18.2471 18.2477L18.834 18.8346ZM10.5695 18.0998L11.1564 17.5129C9.40127 15.7577 9.40127 12.912 11.1564 11.1569L10.5695 10.57L9.9826 9.98307C7.57922 12.3865 7.57923 16.2832 9.9826 18.6867L10.5695 18.0998Z" :fill="useCurrentColor ? 'currentColor' : '#00BBD8'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorLink',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-organization`]" width="1em" height="1em" v-bind="$attrs"><path d="M4.8125 16.4795C5.84812 16.4795 6.6875 17.319 6.6875 18.3545C6.68729 19.3898 5.84799 20.2295 4.8125 20.2295C3.77701 20.2295 2.93771 19.3898 2.9375 18.3545C2.9375 17.319 3.77688 16.4795 4.8125 16.4795ZM12 16.4795C13.0356 16.4795 13.875 17.319 13.875 18.3545C13.8747 19.3898 13.0355 20.2295 12 20.2295C10.9645 20.2295 10.1253 19.3898 10.125 18.3545C10.125 17.319 10.9644 16.4795 12 16.4795ZM19.1875 16.4795C20.2231 16.4795 21.0625 17.319 21.0625 18.3545C21.0623 19.3898 20.223 20.2295 19.1875 20.2295C18.152 20.2295 17.3127 19.3898 17.3125 18.3545C17.3125 17.319 18.1519 16.4795 19.1875 16.4795ZM12 2.75C13.1283 2.75003 14.043 3.66473 14.043 4.79297C14.043 5.92123 13.1283 6.83591 12 6.83594C10.8716 6.83594 9.95703 5.92125 9.95703 4.79297C9.95705 3.66471 10.8716 2.75 12 2.75Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/><path d="M12 8.03125L12 14.2225" stroke="#00BBD8" stroke-width="1.663" stroke-linejoin="round"/><path d="M4.8125 14.2225V11.2473H19.1875V14.2225" stroke="#00BBD8" stroke-width="1.663"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorOrganization',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-people`]" width="1em" height="1em" v-bind="$attrs"><path d="M2.30859 17.8132C2.30859 17.3609 2.30859 17.1348 2.32687 16.9442C2.50983 15.037 4.01945 13.5274 5.92663 13.3445C6.11718 13.3262 6.34334 13.3262 6.79566 13.3262H17.205C17.6573 13.3262 17.8835 13.3262 18.074 13.3445C19.9812 13.5274 21.4908 15.037 21.6738 16.9442C21.6921 17.1348 21.6921 17.3609 21.6921 17.8132C21.6921 18.0394 21.6921 18.1525 21.6829 18.2478C21.5915 19.2013 20.8367 19.9562 19.8831 20.0476C19.7878 20.0568 19.6747 20.0568 19.4485 20.0568H4.55213C4.32597 20.0568 4.21288 20.0568 4.11761 20.0476C3.16402 19.9562 2.40921 19.2013 2.31773 18.2478C2.30859 18.1525 2.30859 18.0394 2.30859 17.8132Z" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><rect x="8.391" y="3.2" width="7.22" height="7.22" rx="3.61" stroke="#00BBD8" stroke-width="1.66" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorPeople',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-rating`]" width="1em" height="1em" v-bind="$attrs"><path d="M12 2L14.645 8.35942L21.5106 8.90983L16.2798 13.3906L17.8779 20.0902L12 16.5L6.12215 20.0902L7.72025 13.3906L2.48944 8.90983L9.35497 8.35942L12 2Z" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><path d="M12.797 16.1588L12.0009 16.6185L11.2048 16.1588C10.1433 15.5459 10.1433 14.0138 11.2048 13.4009C11.6974 13.1165 12.3044 13.1165 12.797 13.4009C13.8585 14.0138 13.8585 15.5459 12.797 16.1588Z" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorRating',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-slide`]" width="1em" height="1em" v-bind="$attrs"><path d="M13.1973 7.55554H21.3022M2.69922 7.55554H3.41242" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round"/><circle cx="8.169" cy="7.556" stroke="#00BBD8" stroke-width="1.66" r="2.085"/><path d="M20.5801 16.4449H21.2933M2.69922 16.4449H10.8042" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round"/><circle cx="15.831" cy="16.445" stroke="#00BBD8" stroke-width="1.66" r="2.085"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorSlide',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-tab`]" width="1em" height="1em" v-bind="$attrs"><path d="M14.3047 4.07349L14.3047 9.2793" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round"/><path d="M20.8196 9.44585V15.1264C20.8196 16.8065 20.8196 17.6466 20.4926 18.2883C20.205 18.8528 19.746 19.3118 19.1816 19.5994C18.5398 19.9264 17.6997 19.9264 16.0196 19.9264H7.98164C6.30148 19.9264 5.4614 19.9264 4.81967 19.5994C4.25518 19.3118 3.79624 18.8528 3.50862 18.2883C3.18164 17.6466 3.18164 16.8065 3.18164 15.1264V9.44585M20.8196 9.44585V8.87349C20.8196 7.19333 20.8196 6.35325 20.4926 5.71151C20.205 5.14703 19.746 4.68809 19.1816 4.40047C18.5398 4.07349 17.6997 4.07349 16.0196 4.07349H13.147H7.98164C6.30148 4.07349 5.4614 4.07349 4.81967 4.40047C4.25518 4.68809 3.79624 5.14703 3.50862 5.71151C3.18164 6.35325 3.18164 7.19333 3.18164 8.87349V9.44585M20.8196 9.44585H3.18164" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorTab',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-tip`]" width="1em" height="1em" v-bind="$attrs"><path d="M10.4492 22.2666H13.5494" stroke="#165DFF" stroke-width="1.66" stroke-linecap="round"/><path d="M21.5449 11.2725C22.0029 11.2728 22.3748 11.6445 22.375 12.1025C22.3749 12.5606 22.003 12.9323 21.5449 12.9326H19.7148C19.7435 12.6616 19.7588 12.3861 19.7588 12.1074C19.7588 11.8253 19.7432 11.5468 19.7139 11.2725H21.5449ZM4.28516 11.2725C4.25579 11.5468 4.24025 11.8253 4.24023 12.1074C4.24023 12.3861 4.25554 12.6616 4.28418 12.9326H2.45508C1.99675 12.9326 1.6251 12.5608 1.625 12.1025C1.62522 11.6443 1.99682 11.2725 2.45508 11.2725H4.28516ZM18.166 4.76855C18.4902 4.44443 19.0157 4.44442 19.3398 4.76855C19.6637 5.09271 19.6639 5.61834 19.3398 5.94238L18.041 7.24023C17.6926 6.80835 17.2991 6.41482 16.8672 6.06641L18.166 4.76855ZM4.66699 4.76855C4.99113 4.44443 5.51766 4.44442 5.8418 4.76855L7.13574 6.0625C6.70364 6.41058 6.30962 6.80376 5.96094 7.23535L4.66699 5.94238C4.34316 5.61833 4.34323 5.09265 4.66699 4.76855ZM12.0049 1.7334C12.4631 1.73351 12.8349 2.10524 12.835 2.56348V4.39258C12.5605 4.3632 12.2813 4.34766 11.999 4.34766C11.7206 4.34767 11.4456 4.36299 11.1748 4.3916V2.56348C11.1749 2.10534 11.5468 1.73366 12.0049 1.7334Z" :fill="useCurrentColor ? 'currentColor' : '#165DFF'"/><path d="M17.4064 12.1078C17.4064 14.7864 14.5865 16.34 13.0039 16.8367C11.4213 17.3334 8.85592 20.2105 12.0001 20.2105C15.1442 20.2105 12.384 17.1807 10.973 16.8367C8.85697 16.3208 6.59375 14.8704 6.59375 12.1078C6.59375 9.12203 9.01424 6.70154 12.0001 6.70154C14.9859 6.70154 17.4064 9.12203 17.4064 12.1078Z" stroke="#00BBD8" stroke-width="1.66"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorTip',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-title`]" width="1em" height="1em" v-bind="$attrs"><rect x="1.92" y="3.498" width="20.162" height="17.004" rx="4" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><path d="M12.2959 7.90161C12.7542 7.90168 13.126 8.27333 13.126 8.73169V15.2688C13.1258 15.727 12.7542 16.0988 12.2959 16.0989C11.8376 16.0989 11.466 15.7271 11.4658 15.2688V12.7278C11.4475 12.729 11.4288 12.7307 11.4102 12.7307H8.33398V15.2688C8.33385 15.7271 7.96222 16.0989 7.50391 16.0989C7.04559 16.0989 6.67396 15.7271 6.67383 15.2688V8.73169C6.67383 8.27329 7.04551 7.90161 7.50391 7.90161C7.9623 7.90161 8.33398 8.27329 8.33398 8.73169V11.0706H11.4102C11.4288 11.0706 11.4475 11.0713 11.4658 11.0725V8.73169C11.4658 8.27329 11.8375 7.90161 12.2959 7.90161ZM16.4971 11.1702C16.9554 11.1703 17.3271 11.5419 17.3271 12.0002V15.2688C17.3271 15.7271 16.9554 16.0987 16.4971 16.0989C16.0387 16.0989 15.667 15.7272 15.667 15.2688V12.0002C15.667 11.5418 16.0387 11.1702 16.4971 11.1702Z" :fill="useCurrentColor ? 'currentColor' : '#00BBD8'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorTitle',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -341,4 +341,21 @@ export { default as IconLineOkBold } from './IconLineOkBold/index.vue';
|
|
|
341
341
|
export { default as IconColorDataFlow } from './IconColorDataFlow/index.vue';
|
|
342
342
|
export { default as IconColorOrg } from './IconColorOrg/index.vue';
|
|
343
343
|
export { default as IconColorApiGary } from './IconColorApiGary/index.vue';
|
|
344
|
-
export { default as IconColorApiPurple } from './IconColorApiPurple/index.vue';
|
|
344
|
+
export { default as IconColorApiPurple } from './IconColorApiPurple/index.vue';
|
|
345
|
+
export { default as IconColorCheckbox } from './IconColorCheckbox/index.vue';
|
|
346
|
+
export { default as IconColorRating } from './IconColorRating/index.vue';
|
|
347
|
+
export { default as IconColorCascade } from './IconColorCascade/index.vue';
|
|
348
|
+
export { default as IconColorDate } from './IconColorDate/index.vue';
|
|
349
|
+
export { default as IconColorLink } from './IconColorLink/index.vue';
|
|
350
|
+
export { default as IconColorColorselection } from './IconColorColorselection/index.vue';
|
|
351
|
+
export { default as IconColorTip } from './IconColorTip/index.vue';
|
|
352
|
+
export { default as IconColorImageupload } from './IconColorImageupload/index.vue';
|
|
353
|
+
export { default as IconColorSlide } from './IconColorSlide/index.vue';
|
|
354
|
+
export { default as IconColorPeople } from './IconColorPeople/index.vue';
|
|
355
|
+
export { default as IconColorTitle } from './IconColorTitle/index.vue';
|
|
356
|
+
export { default as IconColorBlock } from './IconColorBlock/index.vue';
|
|
357
|
+
export { default as IconColorTab } from './IconColorTab/index.vue';
|
|
358
|
+
export { default as IconColorDictionary } from './IconColorDictionary/index.vue';
|
|
359
|
+
export { default as IconColorOrganization } from './IconColorOrganization/index.vue';
|
|
360
|
+
export { default as IconColorCard } from './IconColorCard/index.vue';
|
|
361
|
+
export { default as IconColorLine } from './IconColorLine/index.vue';
|