Skip to content

Commit 16d152c

Browse files
committed
feat(Icon): new symbol
- Upload Icon
1 parent 6295fd8 commit 16d152c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

components/Symbols/Icon.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
mail: () => import('./library/MailSymbol.vue'),
4444
clock: () => import('./library/ClockSymbol.vue'),
4545
info: () => import('./library/InfoSymbol.vue'),
46+
upload: () => import('./library/UploadSymbol.vue'),
4647
book: () => import('./library/BookSymbol.vue')
4748
}
4849
})
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<template>
2+
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><title>upload</title><path d='M320,367.79h76c55,0,100-29.21,100-83.6s-53-81.47-96-83.6c-8.89-85.06-71-136.8-144-136.8-69,0-113.44,45.79-128,91.2-60,5.7-112,43.88-112,106.4s54,106.4,120,106.4h56' :class="themeStroke" style='fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px'/><polyline :class="themeStroke" points='320 255.79 256 191.79 192 255.79' style='fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px'/><line :class="themeStroke" x1='256' y1='448.21' x2='256' y2='207.79' style='fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px'/></svg>
3+
</template>
4+
5+
<script lang="ts">
6+
import Symbol from "../Symbol.vue";
7+
import {Component, Mixins} from 'vue-property-decorator'
8+
9+
@Component
10+
export default class UploadSymbol extends Mixins(Symbol) {}
11+
</script>

0 commit comments

Comments
 (0)