UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 816 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdScreenLockRotation extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m28 4.1v0.9h5.7v-0.9c0-1.5-1.3-2.8-2.8-2.8s-2.9 1.3-2.9 2.8z m-1.4 10.9c-0.9 0-1.6-0.7-1.6-1.6v-6.8c0-0.9 0.7-1.6 1.6-1.6v-0.9c0-2.2 2-4.1 4.3-4.1s4.1 1.9 4.1 4.1v0.9c0.9 0 1.6 0.7 1.6 1.6v6.8c0 0.9-0.7 1.6-1.6 1.6h-8.4z m-12.5 19.1l2.2-2.1 6.4 6.3-1.1 0.1c-10.5 0-19.1-8.2-20-18.4h2.5c0.7 6.3 4.6 11.6 10 14.1z m24.7-12.8c1 0.9 1 2.5 0 3.5l-10.7 10.6c-0.9 1-2.5 1-3.5 0l-20-20c-1-0.9-1-2.5 0-3.5l10.6-10.6c0.9-1.1 2.5-1.1 3.6 0l4 4-2.3 2.4-3.5-3.5-9.5 9.4 18.9 18.9 9.4-9.5-3.7-3.6 2.4-2.4z"/></g> </IconBase> ); } }