react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 564 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class MdHdrOff extends React.Component {
render() {
return (
<IconBase viewBox="0 0 24 24" {...this.props}>
<g><path d="M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z"/></g>
</IconBase>
);
}
}