18 lines
360 B
Svelte
18 lines
360 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils.js';
|
|
import { Avatar as AvatarPrimitive } from 'bits-ui';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: AvatarPrimitive.ImageProps = $props();
|
|
</script>
|
|
|
|
<AvatarPrimitive.Image
|
|
bind:ref
|
|
data-slot="avatar-image"
|
|
class={cn('aspect-square size-full', className)}
|
|
{...restProps}
|
|
/>
|