Files
better-auth/docs/components/logo.tsx
KinfeMichael Tariku 46e39415a2 docs: 404 page (#2005)
2025-03-26 09:42:11 +03:00

22 lines
492 B
TypeScript

import { SVGProps } from "react";
import { cn } from "@/lib/utils";
export const Logo = (props: SVGProps<any>) => {
return (
<svg
width="60"
height="45"
viewBox="0 0 60 45"
fill="none"
className={cn("w-5 h-5", props.className)}
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M0 0H15V15H30V30H15V45H0V30V15V0ZM45 30V15H30V0H45H60V15V30V45H45H30V30H45Z"
className="fill-black dark:fill-white"
/>
</svg>
);
};