chore: tweak logo

This commit is contained in:
Steven
2024-03-17 19:52:59 +08:00
parent 07d9436e1e
commit b6bcc3cda6
10 changed files with 8 additions and 8 deletions

View File

@@ -1,12 +1,12 @@
import classNames from "classnames";
import LogoBase64 from "data-base64:../../assets/icon.png";
import Icon from "./Icon";
interface Props {
className?: string;
}
const Logo = ({ className }: Props) => {
return <img className={classNames("rounded-full", className)} src={LogoBase64} alt="" />;
return <Icon.CircleSlash className={classNames("dark:text-gray-500", className)} strokeWidth={1.5} />;
};
export default Logo;