react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 521 B
JavaScript
import React from 'react';
export default function WhiteBalanceAutoIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-white-balance-auto ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10.3 16l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9M22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.5 4 8 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9M6.85 12.65h2.3L8 9l-1.15 3.65z" />
</svg>
);
}