react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 658 B
JSX
import React, { Component } from 'react';
export default class AccountAlertIcon 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-alert-icon ${this.props.className}`}><path d="M10 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 10c4.418 0 8 1.79 8 4v2H2v-2c0-2.21 3.582-4 8-4zm10-2V7h2v5h-2zm0 4v-2h2v2h-2z"/></svg>
)
}
}