Files
better-auth/demo/nextjs/components/ui/avatar.tsx
2025-03-04 20:55:46 +03:00

48 lines
1.1 KiB
TypeScript

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