react-icons
Version:
svg react icons of popular icon packs using ES6 imports
12 lines (9 loc) • 343 B
JavaScript
var IconBase = require('../IconBase');
var MdFormatColorText = (props) => {
return (
<IconBase viewBox="0 0 24 24" {...props}>
<g><path d="M0 20h24v4H0z"/><path d="M11 3L5.5 17h2.25l1.12-3h6.25l1.12 3h2.25L13 3h-2zm-1.38 9L12 5.67 14.38 12H9.62z"/></g>
</IconBase>
);
};
export default MdFormatColorText;