react-modal-login
Version:
A highly customizable react login modal with social buttons
34 lines (30 loc) • 599 B
JavaScript
/**
*
*/
import React from "react";
const CloseIcon = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="Capa_1"
x="0px"
y="0px"
width="512px"
height="512px"
viewBox="0 0 357 357"
>
<g>
<g id="close">
<polygon
points="357,35.7 321.3,0 178.5,142.8 35.7,0 0,35.7
142.8,178.5 0,321.3 35.7,357 178.5,214.2 321.3,357
357,321.3 214.2,178.5"
fill="#ffffff"
/>
</g>
</g>
</svg>
);
};
export default CloseIcon;