26 lines
658 B
TypeScript
26 lines
658 B
TypeScript
import { type SVGProps } from 'react'
|
|
import { cn } from '@/lib/utils'
|
|
|
|
export function IconGitlab({ className, ...props }: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
role='img'
|
|
viewBox='0 0 24 24'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
width='24'
|
|
height='24'
|
|
className={cn('[&>path]:stroke-current', className)}
|
|
fill='none'
|
|
stroke='currentColor'
|
|
strokeWidth='2'
|
|
strokeLinecap='round'
|
|
strokeLinejoin='round'
|
|
{...props}
|
|
>
|
|
<title>GitLab</title>
|
|
<path strokeWidth='0' d='M0 0h24v24H0z' fill='none' />
|
|
<path d='M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z' />
|
|
</svg>
|
|
)
|
|
}
|