react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 829 B
JSX
import React, { Component } from 'react';
export default class KeyChangeIcon 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-key-change-icon ${this.props.className}`}><path d="M6.5 2a4.502 4.502 0 0 1 4.244 3H22v3h-4v3h-3V8h-4.256A4.502 4.502 0 0 1 2 6.5 4.5 4.5 0 0 1 6.5 2zm0 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm0 8a4.502 4.502 0 0 1 4.244 3H22v3h-2v3h-2v-3h-2v3h-3v-3h-2.256A4.502 4.502 0 0 1 2 17.5 4.5 4.5 0 0 1 6.5 13zm0 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg>
)
}
}