UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 789 B
import React, { Component } from 'react'; export default class KeyRemoveIcon 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-remove-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.09 8L16 15.41 13.41 18 16 20.59 14.59 22 12 19.41 9.41 22 8 20.59 10.59 18 8 15.41 9.41 14 12 16.59 14.59 14z"/></svg> ) } }