Skip to content
Snippets Groups Projects
FontAwesomeIcon.vue 333 B
Newer Older
  • Learn to ignore specific revisions
  •     class="align-middle"
        :class="icon"
        :style="{
          color: props.fill,
        }"
    
    </template>
    
    <script setup lang="ts">
    
    const props = defineProps({
      icon: { type: String, required: true },
    
      fill: { type: String, default: "currentColor", required: false },
    
    </script>
    
    <style scoped></style>