| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- "use client"
- import * as React from "react"
- import { Avatar as AvatarPrimitive } from "@base-ui/react/avatar"
- import { cn } from "@/lib/utils/client"
- const Avatar = React.forwardRef<
- HTMLSpanElement,
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>
- >(({ className, ...props }, ref) => (
- <AvatarPrimitive.Root
- ref={ref}
- className={cn(
- "relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
- className
- )}
- {...props}
- />
- ))
- Avatar.displayName = "Avatar"
- const AvatarImage = React.forwardRef<
- HTMLImageElement,
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Image>
- >(({ className, ...props }, ref) => (
- <AvatarPrimitive.Image
- ref={ref}
- className={cn("aspect-square h-full w-full", className)}
- {...props}
- />
- ))
- AvatarImage.displayName = "AvatarImage"
- const AvatarFallback = React.forwardRef<
- HTMLSpanElement,
- React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Fallback>
- >(({ className, ...props }, ref) => (
- <AvatarPrimitive.Fallback
- ref={ref}
- className={cn(
- "flex h-full w-full items-center justify-center rounded-full bg-muted",
- className
- )}
- {...props}
- />
- ))
- AvatarFallback.displayName = "AvatarFallback"
- export { Avatar, AvatarImage, AvatarFallback }
|