chore: update logo (#1442)

* chore: update logo

* chore: update
This commit is contained in:
boojack
2023-04-02 09:54:52 +08:00
committed by GitHub
parent c7a57191bd
commit 1ea65c0b60
15 changed files with 91 additions and 89 deletions

View File

@ -6,8 +6,8 @@ interface Props {
const UserAvatar = (props: Props) => {
const { avatarUrl, className } = props;
return (
<div className={`${className ?? ""} w-8 h-8 overflow-clip bg-gray-100 dark:bg-zinc-800`}>
<img className="w-full h-auto rounded-full min-w-full min-h-full object-cover" src={avatarUrl || "/logo.png"} alt="" />
<div className={`${className ?? ""} w-8 h-8 overflow-clip`}>
<img className="w-full h-auto rounded-full min-w-full min-h-full object-cover" src={avatarUrl || "/logo.webp"} alt="" />
</div>
);
};