UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 937 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdFilterTiltShift extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m9.5 32.9l2.3-2.4c1.9 1.5 4.1 2.4 6.6 2.7v3.4c-3.4-0.3-6.4-1.7-8.9-3.7z m12.1 0.3c2.5-0.3 4.7-1.2 6.5-2.7l2.4 2.4c-2.5 2-5.5 3.4-8.9 3.7v-3.4z m8.9-5c1.5-1.9 2.4-4.1 2.7-6.5h3.4c-0.3 3.4-1.7 6.3-3.7 8.8z m-5.5-8.2c0 2.7-2.3 5-5 5s-5-2.3-5-5 2.3-5 5-5 5 2.3 5 5z m-18.2 1.6c0.3 2.5 1.2 4.7 2.7 6.5l-2.4 2.4c-2-2.5-3.3-5.5-3.7-8.9h3.4z m2.7-9.8c-1.5 1.9-2.4 4.1-2.7 6.6h-3.4c0.4-3.4 1.7-6.4 3.7-8.9z m23.7 6.6c-0.3-2.5-1.2-4.7-2.7-6.6l2.4-2.3c2 2.5 3.4 5.5 3.7 8.9h-3.4z m-2.7-11.3l-2.3 2.4c-1.9-1.5-4.1-2.4-6.6-2.7v-3.4c3.4 0.4 6.4 1.7 8.9 3.7z m-12.1-0.3c-2.5 0.3-4.7 1.2-6.6 2.7l-2.3-2.4c2.5-2 5.5-3.3 8.9-3.7v3.4z"/></g> </IconBase> ); } }