react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 379 B
JavaScript
import React from 'react';
export default function NatureIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-nature ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 16.12a7 7 0 0 0 6.17-6.95c0-3.87-3.13-7-7-7a7 7 0 0 0-7 7c0 3.47 2.52 6.33 5.83 6.89V20H5v2h14v-2h-6v-3.88z" />
</svg>
);
}