generated from mateusfg7/nextjs-setup
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |