ludc
2023-07-11 9d8be8e7580ef577def96c852288a5a95eab4ea3
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>