chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2025-01-16 21:49:29 +01:00
parent 2e2572bd51
commit e933e7e8c0
No known key found for this signature in database
3 changed files with 31 additions and 37 deletions

View file

@ -12,17 +12,11 @@ const props = withDefaults(
</script>
<template>
<Primitive
:as="props.as"
:as-child="props.asChild"
:class="
cn(
<Primitive :as="props.as" :as-child="props.asChild" :class="cn(
'rounded-lg border bg-card/20 backdrop-blur-xl text-card-foreground shadow-sm',
props.class,
)
"
data-component="card"
>
<slot />
</Primitive>
)
" data-component="card">
<slot />
</Primitive>
</template>