react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 425 B
JavaScript
import React from 'react';
export default function FlattrIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-flattr ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M21 12a9 9 0 0 1-9 9H4.5l5.24-5.24 1.42 1.41L9.33 19H12a7 7 0 0 0 7-7V7l2-2v7M3 12a9 9 0 0 1 9-9h7.5l-5.24 5.24-1.42-1.41L14.67 5H12a7 7 0 0 0-7 7v5l-2 2v-7z" />
</svg>
);
}