changes: bump deps

This commit is contained in:
Viet An
2026-06-06 20:54:37 +07:00
parent de78da2d47
commit d17bc0583c
8 changed files with 4222 additions and 5114 deletions

View File

@@ -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) */