Logo
Brand text logo. Swap the contents with your SVG. No link wrapper — add your own where needed.
| Prop | Type |
|---|---|
| className | string |
bonk/ui
bonk/ui
<Logo />
{/* On a dark background */}
<Logo className="text-root" />import { Logo } from "@/ui";
<Logo />src/ui/Logo.tsx
import { cn } from "@/utils";
interface LogoProps {
className?: string;
}
export function Logo({ className }: LogoProps) {
return (
<span
className={cn(
"font-semibold tracking-tight text-root-contrast",
className,
)}
>
bonk/ui
</span>
);
}