(props: SVGProps<SVGSVGElement>)
| 1 | import * as React from 'react' |
| 2 | import type { SVGProps } from 'react' |
| 3 | const Nextjs = (props: SVGProps<SVGSVGElement>) => ( |
| 4 | <svg |
| 5 | width="1em" |
| 6 | height="1em" |
| 7 | viewBox="0 0 180 180" |
| 8 | fill="none" |
| 9 | xmlns="http://www.w3.org/2000/svg" |
| 10 | {...props} |
| 11 | > |
| 12 | <mask |
| 13 | id="mask0_408_139" |
| 14 | style={{ |
| 15 | maskType: 'alpha', |
| 16 | }} |
| 17 | maskUnits="userSpaceOnUse" |
| 18 | x={0} |
| 19 | y={0} |
| 20 | width={180} |
| 21 | height={180} |
| 22 | > |
| 23 | <circle cx={90} cy={90} r={90} fill="black" /> |
| 24 | </mask> |
| 25 | <g mask="url(#mask0_408_139)"> |
| 26 | <circle |
| 27 | cx={90} |
| 28 | cy={90} |
| 29 | r={87} |
| 30 | fill="black" |
| 31 | stroke="white" |
| 32 | strokeWidth={6} |
| 33 | /> |
| 34 | <path |
| 35 | d="M149.508 157.52L69.142 54H54V125.97H66.1136V69.3836L139.999 164.845C143.333 162.614 146.509 160.165 149.508 157.52Z" |
| 36 | fill="url(#paint0_linear_408_139)" |
| 37 | /> |
| 38 | <rect |
| 39 | x={115} |
| 40 | y={54} |
| 41 | width={12} |
| 42 | height={72} |
| 43 | fill="url(#paint1_linear_408_139)" |
| 44 | /> |
| 45 | </g> |
| 46 | <defs> |
| 47 | <linearGradient |
| 48 | id="paint0_linear_408_139" |
| 49 | x1={109} |
| 50 | y1={116.5} |
| 51 | x2={144.5} |
| 52 | y2={160.5} |
| 53 | gradientUnits="userSpaceOnUse" |
| 54 | > |
| 55 | <stop stopColor="white" /> |
| 56 | <stop offset={1} stopColor="white" stopOpacity={0} /> |
| 57 | </linearGradient> |
| 58 | <linearGradient |
| 59 | id="paint1_linear_408_139" |
| 60 | x1={121} |
nothing calls this directly
no outgoing calls
no test coverage detected