InfoIcon.vue 323 B

12345678910111213141516171819
  1. <script setup lang="ts">
  2. defineProps({
  3. tooltip: { type: String, required: true }
  4. });
  5. </script>
  6. <template>
  7. <span class="material-icons info-icon" :content="tooltip" v-tippy>
  8. info
  9. </span>
  10. </template>
  11. <style lang="less" scoped>
  12. .material-icons.info-icon {
  13. font-size: 14px;
  14. margin: auto 5px;
  15. cursor: help;
  16. }
  17. </style>