chore: install prettier

This commit is contained in:
Viet An
2026-05-04 15:22:27 +07:00
parent 93d29ca7d8
commit bd58e2b847
267 changed files with 22950 additions and 13581 deletions

View File

@@ -4,8 +4,8 @@ const props = defineProps({
value: String,
unit: String,
icon: String,
color: String
})
color: String,
});
</script>
<template>
<div class="cell">
@@ -15,7 +15,12 @@ const props = defineProps({
<p class="fs-14 has-text-grey">{{ name }}</p>
<p class="fs-22 font-bold">{{ value }}</p>
</div>
<div :class="['p-3 rounded-lg is-flex is-justify-content-center is-align-items-center', `has-background-${color}-soft`]">
<div
:class="[
'p-3 rounded-lg is-flex is-justify-content-center is-align-items-center',
`has-background-${color}-soft`,
]"
>
<Icon
:name="icon"
:class="`has-text-${color}-40`"