Skip to content

Commit

Permalink
feat: Added the linkedin logo
Browse files Browse the repository at this point in the history
  • Loading branch information
lisay committed Sep 15, 2024
1 parent b698b2f commit ae11930
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/components/assets/icons/Linkedin.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
function Linkedin({ className, ...rest }: { className?: string }) {
return (
<svg
className={className}
xmlns='http://www.w3.org/2000/svg'
width='24'
height='24'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
{...rest}
>
<path d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z' />
<rect width='4' height='12' x='2' y='9' />
<circle cx='4' cy='4' r='2' />
</svg>
);
}

export { Linkedin };

0 comments on commit ae11930

Please sign in to comment.