react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 729 B
JSX
import React, { Component } from 'react';
export default class VoicemailIcon 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-voicemail-icon ${this.props.className}`}><path d="M18.5 14.998a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7zm-13 0a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7zm13-9a5.5 5.5 0 0 0-4.243 9H9.743A5.5 5.5 0 1 0 0 11.498a5.5 5.5 0 0 0 5.5 5.5h13a5.5 5.5 0 1 0 0-11z"/></svg>
)
}
}