react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 497 B
JavaScript
import React from 'react';
export default function BeatsIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-beats ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M7 12a5 5 0 0 0 5 5 5 5 0 0 0 5-5 5 5 0 0 0-5-5c-1.13 0-2.16.37-3 1V2.46c.95-.3 1.95-.46 3-.46a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12c0-3.7 2-6.93 5-8.66V12m5-3a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3z" />
</svg>
);
}