(props: React.SVGProps<SVGSVGElement>)
| 1 | export function ArrayIcon(props: React.SVGProps<SVGSVGElement>) { |
| 2 | |
| 3 | return ( |
| 4 | <svg |
| 5 | className={props.className} |
| 6 | xmlns="http://www.w3.org/2000/svg" |
| 7 | width="1em" |
| 8 | height="1em" |
| 9 | viewBox="0 0 24 24" |
| 10 | key="array" |
| 11 | > |
| 12 | <path d="M5.8899 18.525C5.8899 17.2 4.80855 17.025 3.84224 17.025C3.52013 17.025 3.22104 17.05 2.89893 17.05V2.95C4.00329 2.95 5.8899 3.25 5.8899 1.475C5.8899 0.525001 5.19968 0 4.37141 0H2.04766C0.80526 0 0 0.700001 0 2.1V17.925C0 19.35 0.782252 20 2.04766 20H4.37141C5.19968 20 5.8899 19.475 5.8899 18.525Z" fill="currentColor"/> |
| 13 | <path d="M20 17.925V2.1C20 0.700001 19.1947 0 17.9523 0H15.6286C14.8003 0 14.1101 0.525001 14.1101 1.475C14.1101 2.825 15.3065 2.975 16.2958 2.975C16.5489 2.975 16.825 2.95 17.1011 2.95V17.05C16.0197 17.05 14.1101 16.8 14.1101 18.525C14.1101 19.525 14.9154 20 15.7436 20H18.0904C19.3098 20 20 19.25 20 17.925Z" fill="currentColor"/> |
| 14 | |
| 15 | </svg> |
| 16 | ); |
| 17 | }; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected