(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function IconPipe(props: React.SVGProps<SVGSVGElement>) { |
| 3 | return ( |
| 4 | <svg |
| 5 | {...props} |
| 6 | xmlns="http://www.w3.org/2000/svg" |
| 7 | width="24" |
| 8 | height="24" |
| 9 | viewBox="0 0 24 24" |
| 10 | fill="none" |
| 11 | > |
| 12 | <path |
| 13 | d="M7.4 16.5H7.6M11.3958 18.7499L16.6458 9.65667C17.4742 8.22179 16.9826 6.38702 15.5477 5.55859L13.3245 4.27504C12.8173 3.98221 12.1894 3.99558 11.6951 4.30975M11.0001 19.6742L18.8414 15.147C20.2763 14.3186 20.7679 12.4838 19.9395 11.0489L18.5187 8.58816C18.3086 8.22421 17.9203 8 17.5 8M12 16.5V6C12 4.34315 10.6569 3 9 3H6C4.34315 3 3 4.34315 3 6V16.5C3 18.9853 5.01472 21 7.5 21C9.98528 21 12 18.9853 12 16.5ZM8 16.5C8 16.7761 7.77614 17 7.5 17C7.22386 17 7 16.7761 7 16.5C7 16.2239 7.22386 16 7.5 16C7.77614 16 8 16.2239 8 16.5Z" |
| 14 | stroke="currentColor" |
| 15 | strokeWidth="2" |
| 16 | strokeLinecap="round" |
| 17 | strokeLinejoin="round" |
| 18 | /> |
| 19 | </svg> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected