react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 813 B
JSX
import React, { Component } from 'react';
export default class AccountConvertIcon 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-convert-icon ${this.props.className}`}><path d="M7.52 21.48l1.33-1.32 3.81 3.81L12 24C5.71 24 .56 19.16.05 13h1.5c.36 3.76 2.7 6.94 5.97 8.48zm8.96-18.96l-1.33 1.32L11.34.03 12 0c6.29 0 11.44 4.84 11.95 11h-1.5c-.36-3.76-2.7-6.93-5.97-8.48zM6 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1zm9-8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/></svg>
)
}
}