elmeg-demo/frontend/components/ui/avatar.tsx
fullsizemalt d443eabd69 fix: Add missing avatar component, reduce venues API limit
- Create Avatar, AvatarImage, AvatarFallback components
- Fix venues page API limit (500 -> 100)
2025-12-21 17:58:58 -08:00

62 lines
1.7 KiB
TypeScript

"use client"
import * as React from "react"
import { cn } from "@/lib/utils"
interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> { }
const Avatar = React.forwardRef<HTMLDivElement, AvatarProps>(
({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",
className
)}
{...props}
/>
)
)
Avatar.displayName = "Avatar"
interface AvatarImageProps extends React.ImgHTMLAttributes<HTMLImageElement> { }
const AvatarImage = React.forwardRef<HTMLImageElement, AvatarImageProps>(
({ className, src, alt = "", ...props }, ref) => {
const [hasError, setHasError] = React.useState(false)
if (hasError || !src) {
return null
}
return (
<img
ref={ref}
src={src}
alt={alt}
onError={() => setHasError(true)}
className={cn("aspect-square h-full w-full object-cover", className)}
{...props}
/>
)
}
)
AvatarImage.displayName = "AvatarImage"
interface AvatarFallbackProps extends React.HTMLAttributes<HTMLDivElement> { }
const AvatarFallback = React.forwardRef<HTMLDivElement, AvatarFallbackProps>(
({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"flex h-full w-full items-center justify-center rounded-full bg-muted text-muted-foreground",
className
)}
{...props}
/>
)
)
AvatarFallback.displayName = "AvatarFallback"
export { Avatar, AvatarImage, AvatarFallback }