styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 912 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Blog = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M6 0v1.5a8.46 8.46 0 016.01 2.489 8.472 8.472 0 012.489 6.01h1.5c0-5.523-4.477-10-10-10z", key: "k0" }),
React.createElement("path", { d: "M6 3v1.5c1.469 0 2.85.572 3.889 1.611S11.5 8.531 11.5 10H13a7 7 0 00-7-7zM7.5 6l-1 1L3 8l-3 6.5.396.396 3.638-3.638a1 1 0 11.707.707l-3.638 3.638.396.396 6.5-3 1-3.5 1-1-2.5-2.5z", key: "k1" })));
});
Blog.displayName = 'Blog';
export var BlogDimensions = { height: 16, width: 16 };