({ height, ...others }: IconProps)
| 2 | import type { IconProps } from './types'; |
| 3 | |
| 4 | const IconVersion = ({ height, ...others }: IconProps) => { |
| 5 | return ( |
| 6 | <svg |
| 7 | xmlns="http://www.w3.org/2000/svg" |
| 8 | height={height ?? 20} |
| 9 | viewBox="0 0 20 20" |
| 10 | fill="none" |
| 11 | className={classes.icon} |
| 12 | {...others} |
| 13 | > |
| 14 | <title>Version Icon</title> |
| 15 | <g strokeWidth={1.5} clipPath="url(#a)"> |
| 16 | <path d="M6.75 2c0-.69.56-1.25 1.25-1.25h10c.69 0 1.25.56 1.25 1.25v16c0 .69-.56 1.25-1.25 1.25H8c-.69 0-1.25-.56-1.25-1.25V2Z" /> |
| 17 | <path |
| 18 | strokeLinecap="round" |
| 19 | d="M4 3.5H2a1 1 0 0 0-1 1V16a1 1 0 0 0 1 1h2" |
| 20 | /> |
| 21 | </g> |
| 22 | <defs> |
| 23 | <clipPath id="a"> |
| 24 | <path fill="#fff" d="M0 0h20v20H0z" /> |
| 25 | </clipPath> |
| 26 | </defs> |
| 27 | </svg> |
| 28 | ); |
| 29 | }; |
| 30 | |
| 31 | export { IconVersion }; |
nothing calls this directly
no outgoing calls
no test coverage detected