( props: React.SVGProps<SVGSVGElement> )
| 1 | import React from 'react'; |
| 2 | export function IconFewShot( |
| 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 | d="M18.5 3.08582L7 14.5858V20H12.4142L23.9142 8.50003L18.5 3.08582Z" |
| 16 | fill="currentColor" |
| 17 | /> |
| 18 | <path d="M1 5.00003V7.00003H10V5.00003H1Z" fill="currentColor" /> |
| 19 | <path d="M1 9.00003V11H7V9.00003H1Z" fill="currentColor" /> |
| 20 | </svg> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected