( props: React.SVGProps<SVGSVGElement> )
| 1 | import React from 'react'; |
| 2 | export function IconStream( |
| 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 5H22V7H2V5ZM2 11H22V13H2V11ZM2 17H12V19H2V17Z" |
| 18 | fill="currentColor" |
| 19 | /> |
| 20 | </svg> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected