( props: React.SVGProps<SVGSVGElement> )
| 1 | import React from 'react'; |
| 2 | export function IconLogs( |
| 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="M2.00085 19C2.00085 17.3431 3.34399 16 5.00085 16C6.6577 16 8.00085 17.3431 8.00085 19C8.00085 20.6569 6.6577 22 5.00085 22H2.00085V19Z" |
| 18 | fill="currentColor" |
| 19 | /> |
| 20 | <path |
| 21 | fillRule="evenodd" |
| 22 | clipRule="evenodd" |
| 23 | d="M9.08841 9H6.61888L5.11888 12H6.53841L9.08841 9ZM6.58663 14H1.88281L5.38281 7H10.8155C13.5883 4.06747 16.7604 2 21.0008 2H22.0008V3C22.0008 7.24046 19.9334 10.4125 17.0008 13.1853V18.618L10.0008 22.118V17.4142L6.58663 14ZM12.0008 17.4624V18.882L15.0008 17.382V14.9124L12.0008 17.4624Z" |
| 24 | fill="currentColor" |
| 25 | /> |
| 26 | </svg> |
| 27 | ); |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected