react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 399 B
JavaScript
import React from 'react';
export default function SendCircleIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-send-circle ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2M8 7.71v3.34l7.14.95-7.14.95v3.34L18 12 8 7.71z" />
</svg>
);
}