Files
triggerdotdev--trigger.dev/apps/webapp/app/components/integrations/VercelLogo.tsx
Chris Arderne 4fde283e76 chore: format and lint webapp also (#4056)
#3977 added formatting and linting everywhere else.

This extends it to the webapp.
2026-06-26 13:02:53 +01:00

8 lines
270 B
TypeScript

export function VercelLogo({ className }: { className?: string }) {
return (
<svg viewBox="0 0 76 65" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
<path d="M37.5274 0L75.0548 65H0L37.5274 0Z" fill="currentColor" />
</svg>
);
}