react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 710 B
JSX
import React, { Component } from 'react';
export default class PauseOctagonOutlineIcon 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-pause-octagon-outline-icon ${this.props.className}`}><path d="M15 16h-2V8h2v8zm-4 0H9V8h2v8zm4.728-13L21 8.272v7.456L15.728 21H8.271L3 15.728V8.272L8.271 3h7.457zM14.9 5H9.1L5 9.1v5.8L9.1 19h5.8l4.1-4.1V9.1L14.9 5z"/></svg>
)
}
}