UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 828 B
import React, { Component } from 'react'; export default class AccountRemoveIcon 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-account-remove-icon ${this.props.className}`}><path d="M15 13.998c2.666 0 8 1.335 8 4v2H7v-2c0-2.665 5.332-4 8-4zm0-2c-2.209 0-4-1.793-4-4 0-2.208 1.791-4 4-4 2.207 0 4 1.792 4 4 0 2.207-1.793 4-4 4zM5 9.586l2.121-2.122L8.536 8.88 6.414 11l2.121 2.121-1.414 1.415L5 12.414l-2.121 2.122-1.415-1.415L3.586 11 1.464 8.879 2.88 7.465 5 9.585z"/></svg> ) } }