react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 983 B
JSX
import React, { Component } from 'react';
export default class ReadabilityIcon 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-readability-icon ${this.props.className}`}><path d="M12 4c3.15 0 5.813 2.377 6.692 5.647a2.996 2.996 0 0 0-1.183 2.163l-.184 2.102c-1.775-.886-3.55-1.745-5.325-1.745-1.774 0-3.548.858-5.321 1.744l-.188-2.143a2.996 2.996 0 0 0-1.174-2.155C6.206 6.36 8.862 4 12 4zm5.055 13H6.949l-.221-2.53c1.757-.878 3.514-1.72 5.272-1.72 1.759 0 3.517.844 5.276 1.721L17.055 17zM5 19v-1l-1.282-3.51-.218.01a2.5 2.5 0 1 1 2.493-2.693L6.5 18v1H5zm14 0h-1.5v-1l.507-6.193A2.5 2.5 0 1 1 20.5 14.5l-.218-.01L19 18v1z"/></svg>
)
}
}