changes: bump deps
This commit is contained in:
@@ -1,16 +1,28 @@
|
||||
<template>
|
||||
<nuxt-img
|
||||
<NuxtImg
|
||||
loading="lazy"
|
||||
:alt="alt"
|
||||
:class="`svg-${type || 'findata'}`"
|
||||
:style="`width: ${size || 26}px;`"
|
||||
:src="`/icon/${name || 'check.svg'}`"
|
||||
:src="`/icon/${name}`"
|
||||
/>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: ["name", "size", "type", "alt"],
|
||||
};
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
name: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
size: {
|
||||
type: Number,
|
||||
default: 26,
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
default: "findata",
|
||||
},
|
||||
alt: String,
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
/* primary: $blue-dianne (#204853) */
|
||||
|
||||
Reference in New Issue
Block a user