| 123456789101112131415161718192021222324252627282930 |
- <template>
- <text class="svg-icon">{{svg}}</text>
- </template>
- <script>
- export default {
- name: "MIcon",
- props: {
- svg: {
- type: String,
- default: ''
- }
- }
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- .svg-icon {
- width: 1em;
- height: 1em;
- vertical-align: -0.15em;
- fill: currentColor;
- overflow: hidden;
- }
- </style>
|