react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 433 B
JavaScript
import React from 'react';
export default function StopCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-stop-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8M9 9v6h6V9" />
</svg>
);
}