react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 605 B
JavaScript
import React from 'react';
export default function WaterPercentIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-water-percent ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 3.25S6 10 6 14c0 3.32 2.69 6 6 6a6 6 0 0 0 6-6c0-4-6-10.75-6-10.75m2.47 6.72l1.06 1.06-6 6-1.06-1.06M9.75 10A1.25 1.25 0 0 1 11 11.25a1.25 1.25 0 0 1-1.25 1.25 1.25 1.25 0 0 1-1.25-1.25A1.25 1.25 0 0 1 9.75 10m4.5 4.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 14.25 17 1.25 1.25 0 0 1 13 15.75a1.25 1.25 0 0 1 1.25-1.25z" />
</svg>
);
}