prabhuignoto/float-menu

View on GitHub
src/components/icons/StarIcon.vue

Summary

Maintainability
Test Coverage
<template>
  <svg
    xmlns="http://www.w3.org/2000/svg"
    width="50%"
    height="50%"
    viewBox="0 0 24 24"
    fill="none"
    stroke="currentColor"
    stroke-width="2"
    stroke-linecap="round"
    stroke-linejoin="round"
    class="feather feather-star"
  >
    <polygon
      points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
    />
  </svg>
</template>

<script lang="ts">
import { defineComponent } from "vue";

export default defineComponent({
  name: "StarIcon",
});
</script>