react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 775 B
JSX
import React, { Component } from 'react';
export default class AccountEditIcon 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-edit-icon ${this.props.className}`}><g><path d="M21.7 13.35l-1 1-2.05-2.05 1-1a.55.55 0 0 1 .77 0l1.28 1.28a.55.55 0 0 1 0 .77zM12 18.94l6.06-6.06 2.05 2.05L14.06 21H12v-2.06zM12 14c-4.42 0-8 1.79-8 4v2h6v-1.89l4-4a14.148 14.148 0 0 0-2-.11zm0-10a4 4 0 1 0 0 8 4 4 0 0 0 0-8z"/></g></svg>
)
}
}