(props: React.SVGProps<SVGSVGElement>)
| 1 | import React from 'react'; |
| 2 | export function IconDoc(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="M9 8H15M9 12H12M19.5 6.5V17.5C19.5 19.1569 18.1569 20.5 16.5 20.5H7.5C5.84315 20.5 4.5 19.1569 4.5 17.5V6.5C4.5 4.84315 5.84315 3.5 7.5 3.5H16.5C18.1569 3.5 19.5 4.84315 19.5 6.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