Files
better-auth/docs/components/logo.tsx
2025-11-17 21:11:39 +00:00

22 lines
497 B
TypeScript

import type { 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>
);
};