UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 453 B
import React from 'react'; export default function CloseCircleIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-close-circle ${props.className}`} viewBox="0 0 24 24" > <path d="M12 2c5.53 0 10 4.47 10 10s-4.47 10-10 10S2 17.53 2 12 6.47 2 12 2m3.59 5L12 10.59 8.41 7 7 8.41 10.59 12 7 15.59 8.41 17 12 13.41 15.59 17 17 15.59 13.41 12 17 8.41 15.59 7z" /> </svg> ); }