@arco-iconbox/vue-smartcode 0.1.23 → 0.1.24
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 +2039 -1869
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +345 -325
- package/dist/icon.min.js.map +1 -1
- package/esm/IconFillBranch/index.js +2 -2
- package/esm/IconFillSyncMsg/index.js +32 -0
- package/esm/IconFillUpdateData/index.js +32 -0
- package/esm/IconLineCut/index.js +32 -0
- package/esm/IconLineDrag/index.js +40 -0
- package/esm/IconLineScroll/index.js +44 -0
- package/esm/index.js +5 -0
- package/lib/IconFillBranch/index.js +2 -2
- package/lib/IconFillSyncMsg/index.js +33 -0
- package/lib/IconFillUpdateData/index.js +33 -0
- package/lib/IconLineCut/index.js +33 -0
- package/lib/IconLineDrag/index.js +41 -0
- package/lib/IconLineScroll/index.js +45 -0
- package/lib/index.js +10 -0
- package/package.json +1 -1
- package/src/IconFillBranch/index.vue +1 -1
- package/src/IconFillSyncMsg/index.vue +19 -0
- package/src/IconFillUpdateData/index.vue +19 -0
- package/src/IconLineCut/index.vue +19 -0
- package/src/IconLineDrag/index.vue +19 -0
- package/src/IconLineScroll/index.vue +19 -0
- package/src/index.js +6 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-scroll`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_cc21f26f28__clip0_5547_357500)"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.99995 9.64557C8.36705 9.64573 8.66493 9.94447 8.66499 10.3116V13.5284L10.0166 12.1768C10.2762 11.9172 10.6973 11.9172 10.957 12.1768C11.2167 12.4365 11.2167 12.8576 10.957 13.1173L8.47065 15.6036C8.38767 15.6866 8.28701 15.7396 8.18159 15.7696C8.16371 15.7747 8.14634 15.7816 8.12788 15.7852C8.043 15.8018 7.95589 15.802 7.87104 15.7852C7.85054 15.7812 7.83126 15.7735 7.81147 15.7676C7.78899 15.761 7.7659 15.7562 7.74409 15.7471C7.72871 15.7407 7.71492 15.7312 7.70015 15.7237C7.6765 15.7117 7.6522 15.7007 7.62983 15.6856C7.59165 15.66 7.55639 15.6305 7.52437 15.5977L5.04292 13.1173C4.78356 12.8576 4.78357 12.4365 5.04292 12.1768C5.30262 11.9171 5.72463 11.9171 5.98433 12.1768L7.33491 13.5274V10.3106C7.33517 9.94376 7.63312 9.6459 7.99995 9.64557ZM7.99995 7.00104C8.55222 7.00104 8.99992 7.44878 8.99995 8.00104C8.99995 8.55333 8.55224 9.00104 7.99995 9.00104C7.44781 9.00088 6.99995 8.55322 6.99995 8.00104C6.99998 7.44889 7.44783 7.00121 7.99995 7.00104ZM7.74409 0.25397C7.94633 0.169748 8.18161 0.19031 8.36812 0.314517C8.40483 0.33899 8.43956 0.366447 8.47065 0.397525L10.957 2.88483C11.2166 3.14454 11.2166 3.5656 10.957 3.82526C10.6973 4.08477 10.2762 4.08479 10.0166 3.82526L8.66499 2.4737V5.69049C8.6648 6.05751 8.36697 6.35537 7.99995 6.35553C7.63299 6.3552 7.33495 6.05752 7.33491 5.69049V2.4737L5.98335 3.82526C5.72362 4.08458 5.30249 4.08483 5.04292 3.82526C4.78346 3.56568 4.78363 3.14452 5.04292 2.88483L7.53022 0.397525C7.5911 0.336837 7.66353 0.28758 7.74409 0.25397Z"/></g><defs><clipPath id="svg_cc21f26f28__clip0_5547_357500"><path d="M0 0H16V16H0z"/></clipPath></defs></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineScroll',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -198,4 +198,9 @@ export { default as IconFillVariable } from './IconFillVariable/index.vue';
|
|
|
198
198
|
export { default as IconFillCode } from './IconFillCode/index.vue';
|
|
199
199
|
export { default as IconLineAiFlow } from './IconLineAiFlow/index.vue';
|
|
200
200
|
export { default as IconLineLogicFlow } from './IconLineLogicFlow/index.vue';
|
|
201
|
-
export { default as IconLineDataFlow } from './IconLineDataFlow/index.vue';
|
|
201
|
+
export { default as IconLineDataFlow } from './IconLineDataFlow/index.vue';
|
|
202
|
+
export { default as IconFillUpdateData } from './IconFillUpdateData/index.vue';
|
|
203
|
+
export { default as IconFillSyncMsg } from './IconFillSyncMsg/index.vue';
|
|
204
|
+
export { default as IconLineCut } from './IconLineCut/index.vue';
|
|
205
|
+
export { default as IconLineDrag } from './IconLineDrag/index.vue';
|
|
206
|
+
export { default as IconLineScroll } from './IconLineScroll/index.vue';
|