UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 708 B
import React, { Component } from 'react'; export default class KeyPlusIcon 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-plus-icon ${this.props.className}`}><path d="M6.5 3a4.502 4.502 0 0 1 4.244 3H22v3h-4v3h-3V9h-4.256A4.502 4.502 0 0 1 2 7.5 4.5 4.5 0 0 1 6.5 3zm0 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM8 17h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z"/></svg> ) } }