react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 732 B
JSX
import React, { Component } from 'react';
export default class BrightnessAutoIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-brightness-auto-icon ${this.props.className}`}><path d="M14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-9.15 3.96h2.3L12 9l-1.15 3.65z"/></svg>
)
}
}