You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
532 B
22 lines
532 B
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue"
|
|
import type { AvatarVariants } from "."
|
|
import { AvatarRoot } from "reka-ui"
|
|
import { cn } from '~/lib/utils'
|
|
import { avatarVariant } from "."
|
|
|
|
const props = withDefaults(defineProps<{
|
|
class?: HTMLAttributes["class"]
|
|
size?: AvatarVariants["size"]
|
|
shape?: AvatarVariants["shape"]
|
|
}>(), {
|
|
size: "sm",
|
|
shape: "circle",
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<AvatarRoot :class="cn(avatarVariant({ size, shape }), props.class)">
|
|
<slot />
|
|
</AvatarRoot>
|
|
</template>
|
|
|