ChatBubbleIcon.vue 530 B

12345678910111213141516
  1. <template>
  2. <svg viewBox="0 0 20 20" aria-hidden="true">
  3. <path
  4. stroke-linecap="round"
  5. stroke-linejoin="round"
  6. d="M10 16.5c4.142 0 7.5-3.134 7.5-7s-3.358-7-7.5-7c-4.142 0-7.5 3.134-7.5 7 0 1.941.846 3.698 2.214 4.966L3.5 17.5c2.231 0 3.633-.553 4.513-1.248A8.014 8.014 0 0 0 10 16.5Z"/>
  7. <path
  8. fill="none"
  9. stroke-linecap="round"
  10. stroke-linejoin="round"
  11. d="M7.5 8.5h5M8.5 11.5h3"/>
  12. </svg>
  13. </template>
  14. <script setup>
  15. </script>