1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| <!-- src/components/SvgIcon.vue -->
| <template>
| <svg :class="classNames" :width="width" :height="height" :viewBox="viewBox" xmlns="http://www.w3.org/2000/svg" fill="currentColor">
| <use :xlink:href="`#icon-${icon}`"></use>
| </svg>
| </template>
|
| <script>
| export default {
| name: 'SvgIcon',
| props: {
| icon: {
| type: String,
| required: true
| },
| width: {
| type: [String, Number],
| default: '1em'
| },
| height: {
| type: [String, Number],
| default: '1em'
| },
| viewBox: {
| type: String,
| default: '0 0 24 24'
| },
| classNames: {
| type: String,
| default: ''
| }
| }
| };
| </script>
|
| <style scoped>
| svg {
| display: inline-block;
| vertical-align: middle;
| }
| </style>
|
|
|