22 lines
494 B
TypeScript
22 lines
494 B
TypeScript
import { cn } from '@/lib/utils'
|
|
|
|
interface BrandWordmarkProps {
|
|
size?: 'sm' | 'lg'
|
|
className?: string
|
|
}
|
|
|
|
export function BrandWordmark({ size = 'sm', className }: BrandWordmarkProps) {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
'font-heading font-bold tracking-tight',
|
|
size === 'sm' ? 'text-xl' : 'text-3xl',
|
|
className
|
|
)}
|
|
>
|
|
<span className="text-foreground">Resolution</span>
|
|
<span className="text-gradient-brand">Flow</span>
|
|
</span>
|
|
)
|
|
}
|