0.29.1原版

This commit is contained in:
anian
2026-07-02 19:14:14 +08:00
commit d94008f0fb
947 changed files with 174905 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { cn } from "@/lib/utils";
interface Props {
avatarUrl?: string;
className?: string;
}
const UserAvatar = (props: Props) => {
const { avatarUrl, className } = props;
return (
<div className={cn(`w-8 h-8 overflow-clip rounded-xl border border-border`, className)}>
<img
className="w-full h-auto shadow min-w-full min-h-full object-cover"
src={avatarUrl || "/full-logo.webp"}
decoding="async"
loading="lazy"
alt=""
/>
</div>
);
};
export default UserAvatar;