react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 683 B
JSX
import React, { Component } from 'react';
export default class FormatFontIcon 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-font-icon ${this.props.className}`}><path d="M17 8h3v12h1v1h-4v-1h1v-3h-4l-1.5 3H14v1h-4v-1h1l6-12zm1 1l-3.5 7H18V9zM5 3h5c1.108 0 2 .892 2 2v11H9v-5H6v5H3V5c0-1.108.892-2 2-2zm1 2v4h3V5H6z"/></svg>
)
}
}