Skip to content

Commit

Permalink
feat(assets): add angular icon
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 authored Sep 15, 2024
1 parent 5ccaafe commit 7de2e83
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ export { GitpodIcon } from './svgs/gitpod'
export { CodespacesIcon } from './svgs/codespaces'
export { VimIcon } from './svgs/vim'
export { GlpiIcon } from './svgs/glpi'
export { AngularIcon } from './svgs/angular'
37 changes: 37 additions & 0 deletions src/components/icons/svgs/angular.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import { SVGProps } from 'react'

export function AngularIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg width="1em" height="1em" viewBox="0 0 128 128" {...props}>
<g id="surface1">
<path
d="M 64 15.359375 L 16.332031 32.359375 L 23.601562 95.386719 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "
style={{
stroke: 'none',
fillRule: 'nonzero',
fill: 'rgb(86.666667%,0%,19.215686%)',
fillOpacity: 1
}}
></path>
<path
style={{
stroke: 'none',
fillRule: 'nonzero',
fill: 'rgb(76.470588%,0%,18.431373%)',
fillOpacity: 1
}}
d="M 64 15.359375 L 64 26.726562 L 64 26.675781 L 64 117.761719 L 104.398438 95.386719 L 111.667969 32.359375 Z M 64 15.359375 "
></path>
<path
style={{
stroke: 'none',
fillRule: 'nonzero',
fill: 'rgb(100%,100%,100%)',
fillOpacity: 1
}}
d="M 64 26.675781 L 34.203125 93.492188 L 45.3125 93.492188 L 51.300781 78.539062 L 76.59375 78.539062 L 82.585938 93.492188 L 93.695312 93.492188 Z M 72.703125 69.324219 L 55.296875 69.324219 L 64 48.382812 Z M 72.703125 69.324219 "
></path>
</g>
</svg>
)
}

0 comments on commit 7de2e83

Please sign in to comment.