"use client";
import * as React from "react";
import * as AvatarPrimitive from "@radix-ui/react-avatar@1.1.3";
import { cn } from "./utils";
function Avatar({
className,
...props
}) {
return (
);
}
function AvatarImage({
className,
...props
}) {
return (
);
}
function AvatarFallback({
className,
...props
}) {
return (
);
}
export { Avatar, AvatarImage, AvatarFallback };