ludc
2024-09-12 9936c2c1aeebc91b6242083826ef48d77ea03032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <i class="action" :title="text">
    <svg width="1em" height="1em" fill="currentColor">
      <use :xlink:href="'#' + type" />
    </svg>
  </i>
</template>
 
<script>
import '../iconfont'
export default {
  name: 'EditorIcon',
  props: ['type', 'text'],
}
</script>