react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 759 B
JSX
import React, { Component } from 'react';
export default class LockScreenIcon 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-lock-screen-icon ${this.props.className}`}><path d="M7 3a4 4 0 0 1 1 7.874v2.252c.37.095.72.242 1.04.433l4.519-4.52a4 4 0 1 1 1.417 1.411l-4.525 4.526A4 4 0 1 1 6 13.126l-.001-2.252A4.002 4.002 0 0 1 7 3zm10 10a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/></svg>
)
}
}