| 1 | const CloseIcon = (props) => { |
| 2 | return ( |
| 3 | <svg {...props} width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 4 | <path fillRule="evenodd" clipRule="evenodd" d="M4.99954 6.0602L8.71184 9.7725L9.7725 8.71184L6.0602 4.99954L9.77251 1.28723L8.71185 0.226571L4.99954 3.93888L1.28722 0.226562L0.226562 1.28722L3.93888 4.99954L0.226571 8.71185L1.28723 9.77251L4.99954 6.0602Z" fill="#1E1E1E"/> |
| 5 | </svg> |
| 6 | ); |
| 7 | }; |
| 8 | |
| 9 | export default CloseIcon; |
| 10 |