32 lines
620 B
JavaScript
32 lines
620 B
JavaScript
import React from "react";
|
|
|
|
const CloseIcon = (props) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="28"
|
|
height="28"
|
|
viewBox="0 0 28 28"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M20.7077 7.29199L7.29102 20.7087"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M7.29102 7.29199L20.7077 20.7087"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default CloseIcon;
|