react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 407 B
JavaScript
import React from 'react';
export default function Brightness_3Icon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-brightness-3 ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.04 7 9.54 0 4.5-2.94 8.27-7 9.54.95.3 1.95.46 3 .46a10 10 0 0 0 10-10A10 10 0 0 0 9 2z" />
</svg>
);
}