({ height, stroke, ...others }: IconProps)
| 2 | import type { IconProps } from './types'; |
| 3 | |
| 4 | const IconGuide = ({ height, stroke, ...others }: IconProps) => { |
| 5 | return ( |
| 6 | <svg |
| 7 | xmlns="http://www.w3.org/2000/svg" |
| 8 | height={height ?? 20} |
| 9 | fill="none" |
| 10 | viewBox="0 0 20 20" |
| 11 | className={classes.icon} |
| 12 | {...others} |
| 13 | > |
| 14 | <title>Guide Icon</title> |
| 15 | <path |
| 16 | stroke={stroke} |
| 17 | strokeLinecap="round" |
| 18 | strokeLinejoin="round" |
| 19 | strokeWidth={1.5} |
| 20 | d="M3.333 16.25a2.083 2.083 0 0 1 2.084-2.083h11.25" |
| 21 | /> |
| 22 | <path |
| 23 | stroke={stroke} |
| 24 | strokeLinecap="round" |
| 25 | strokeLinejoin="round" |
| 26 | strokeWidth={1.5} |
| 27 | d="M5.417 1.667h11.25v16.666H5.417a2.083 2.083 0 0 1-2.084-2.083V3.75a2.083 2.083 0 0 1 2.084-2.083v0Z" |
| 28 | /> |
| 29 | </svg> |
| 30 | ); |
| 31 | }; |
| 32 | |
| 33 | export { IconGuide }; |
nothing calls this directly
no outgoing calls
no test coverage detected