(props: SVGProps<SVGSVGElement>)
| 2 | import type { SVGProps } from 'react' |
| 3 | |
| 4 | const TailwindCSS = (props: SVGProps<SVGSVGElement>) => ( |
| 5 | <svg |
| 6 | viewBox="0 0 256 154" |
| 7 | width="1em" |
| 8 | height="1em" |
| 9 | xmlns="http://www.w3.org/2000/svg" |
| 10 | preserveAspectRatio="xMidYMid" |
| 11 | {...props} |
| 12 | > |
| 13 | <defs> |
| 14 | <linearGradient |
| 15 | x1="-2.778%" |
| 16 | y1="32%" |
| 17 | x2="100%" |
| 18 | y2="67.556%" |
| 19 | id="gradient" |
| 20 | > |
| 21 | <stop stopColor="#2298BD" offset="0%" /> |
| 22 | <stop stopColor="#0ED7B5" offset="100%" /> |
| 23 | </linearGradient> |
| 24 | </defs> |
| 25 | <path |
| 26 | d="M128 0C93.867 0 72.533 17.067 64 51.2 76.8 34.133 91.733 27.733 108.8 32c9.737 2.434 16.697 9.499 24.401 17.318C145.751 62.057 160.275 76.8 192 76.8c34.133 0 55.467-17.067 64-51.2-12.8 17.067-27.733 23.467-44.8 19.2-9.737-2.434-16.697-9.499-24.401-17.318C174.249 14.743 159.725 0 128 0ZM64 76.8C29.867 76.8 8.533 93.867 0 128c12.8-17.067 27.733-23.467 44.8-19.2 9.737 2.434 16.697 9.499 24.401 17.318C81.751 138.857 96.275 153.6 128 153.6c34.133 0 55.467-17.067 64-51.2-12.8 17.067-27.733 23.467-44.8 19.2-9.737-2.434-16.697-9.499-24.401-17.318C110.249 91.543 95.725 76.8 64 76.8Z" |
| 27 | fill="url(#gradient)" |
| 28 | /> |
| 29 | </svg> |
| 30 | ) |
| 31 | export default TailwindCSS |
nothing calls this directly
no outgoing calls
no test coverage detected