11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
export function Wordmark({ className }: { className?: string }) {
|
|
return (
|
|
<span
|
|
className={`tracking-tight text-white [font-family:var(--font-space-grotesk)] ${className ?? ""}`}
|
|
>
|
|
<span className="font-bold [-webkit-text-stroke:0.7px_white]">KNUR</span>
|
|
<span className="font-medium text-accent">.APP</span>
|
|
</span>
|
|
);
|
|
}
|