(props: { size: number })
| 1 | import React from "react"; |
| 2 | |
| 3 | const ExpandIcon = (props: { size: number }) => ( |
| 4 | <svg |
| 5 | xmlns="http://www.w3.org/2000/svg" |
| 6 | width={props.size} |
| 7 | height={props.size} |
| 8 | fill="currentColor" |
| 9 | viewBox="0 0 256 256" |
| 10 | > |
| 11 | <path d="M224,128a8,8,0,0,1-8,8H40a8,8,0,0,1,0-16H216A8,8,0,0,1,224,128ZM101.66,53.66,120,35.31V96a8,8,0,0,0,16,0V35.31l18.34,18.35a8,8,0,0,0,11.32-11.32l-32-32a8,8,0,0,0-11.32,0l-32,32a8,8,0,0,0,11.32,11.32Zm52.68,148.68L136,220.69V160a8,8,0,0,0-16,0v60.69l-18.34-18.35a8,8,0,0,0-11.32,11.32l32,32a8,8,0,0,0,11.32,0l32-32a8,8,0,0,0-11.32-11.32Z"></path> |
| 12 | </svg> |
| 13 | ); |
| 14 | export default ExpandIcon; |
nothing calls this directly
no outgoing calls
no test coverage detected