Saas-Teamspace/components/logo.tsx
2024-11-24 20:56:03 -05:00

12 lines
377 B
TypeScript

import { Squircle } from 'lucide-react'
export const Logo = () => {
return (
<div className="flex items-center gap-2 group">
<Squircle className="w-12 h-12 text-primary group-hover:-rotate-12 transition-all duration-300" />
<span className="text-xl group-hover:translate-x-0.5 transition-all duration-300">
YourCompany
</span>
</div>
)
}