react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 721 B
JSX
import React, { Component } from 'react';
export default class BulletinBoardIcon 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-bulletin-board-icon ${this.props.className}`}><path d="M12.039 2.5L9.528 5h5l-2.489-2.5zM4 7v13h16V7H4zm8-7l5 5h3c1.1 0 2 .9 2 2v13c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3l5-5zM7 18v-4h5v4H7zm7-1v-7h4v7h-4zm-8-5V9h5v3H6z"/></svg>
)
}
}