chatbot-template/components/ui/vercel-logo.tsx

15 lines
390 B
TypeScript
Raw Normal View History

2023-06-02 15:33:48 -04:00
import { cn } from '@/lib/utils'
2023-05-19 12:33:56 -04:00
export const VercelLogo = ({ className }: { className?: string }) => (
<svg
height={22}
viewBox="0 0 235 203"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-label="Vercel Logo"
2023-06-02 15:33:48 -04:00
className={cn(className, 'dark:fill-white fill-black')}
2023-05-19 12:33:56 -04:00
>
<path d="M117.082 0L234.164 202.794H0L117.082 0Z" fill="currentColor" />
</svg>
2023-06-02 15:33:48 -04:00
)