( props: React.SVGProps<SVGSVGElement> )
| 1 | import React from 'react'; |
| 2 | export function IconVersions( |
| 3 | props: React.SVGProps<SVGSVGElement> |
| 4 | ) { |
| 5 | return ( |
| 6 | <svg |
| 7 | {...props} |
| 8 | xmlns="http://www.w3.org/2000/svg" |
| 9 | width="24" |
| 10 | height="24" |
| 11 | viewBox="0 0 24 24" |
| 12 | fill="none" |
| 13 | > |
| 14 | <path |
| 15 | fillRule="evenodd" |
| 16 | clipRule="evenodd" |
| 17 | d="M11 2.79492L21 4.66992V19.3298L11 21.2048V2.79492ZM13 5.20477V18.7949L19 17.6699V6.32977L13 5.20477ZM9 3.99985V19.9998H7V3.99985H9ZM5 4.99985V18.9998H3V4.99985H5Z" |
| 18 | fill="currentColor" |
| 19 | /> |
| 20 | </svg> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected