react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 695 B
JSX
import React, { Component } from 'react';
export default class FormatListBulletedTypeIcon 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-format-list-bulleted-type-icon ${this.props.className}`}><path d="M5 9.5L7.5 14h-5L5 9.5zM3 4h4v4H3V4zm2 16c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9 5v2h12V5H9zm0 14h12v-2H9v2zm0-6h12v-2H9v2z"/></svg>
)
}
}