ludc
2023-08-04 eb0adae7a31a1797afacd7b6acdf034ef1e5cc57
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>