UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 770 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Rss = 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 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M6.002 15.999a2 2 0 10-.004 4 2 2 0 00.004-4zM6 4a2 2 0 000 4c5.514 0 10 4.486 10 10a2 2 0 004 0c0-7.72-6.28-14-14-14zm0 6a2 2 0 000 4c2.205 0 4 1.794 4 4a2 2 0 004 0c0-4.411-3.589-8-8-8z", key: "k0" }))); }); Rss.displayName = 'Rss'; export var RssDimensions = { height: 24, width: 24 };