(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function IconUsage(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="M16 21.5L15.1429 18.5M8 21.5L8.85714 18.5M8 13V14M12 8V14M16 11V14M21 7V15C21 16.6569 19.6569 18 18 18H6C4.34315 18 3 16.6569 3 15V7C3 5.34315 4.34315 4 6 4H18C19.6569 4 21 5.34315 21 7Z" |
| 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