styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.03 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Feed = 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 8a2 2 0 113.999-.001A2 2 0 016 8zm4.38-4.398a4.999 4.999 0 010 8.796c.689-1.096 1.12-2.66 1.12-4.398s-.431-3.302-1.12-4.398zM4.5 8c0 1.738.431 3.302 1.12 4.398a4.999 4.999 0 010-8.796C4.931 4.698 4.5 6.262 4.5 8zm-3 0c0 2.686.85 5.097 2.198 6.746C1.475 13.325 0 10.835 0 8s1.474-5.325 3.698-6.746C2.35 2.903 1.5 5.314 1.5 8zm10.802-6.746C14.525 2.675 16 5.165 16 8s-1.474 5.325-3.698 6.746C13.65 13.097 14.5 10.686 14.5 8s-.85-5.097-2.198-6.746z", key: "k0" })));
});
Feed.displayName = 'Feed';
export var FeedDimensions = { height: 16, width: 16 };