UNPKG

styled-icons

Version:

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

20 lines (19 loc) 958 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Repeat = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("polyline", { points: "17 1 21 5 17 9", key: "k0" }), React.createElement("path", { d: "M3 11V9a4 4 0 014-4h14", key: "k1" }), React.createElement("polyline", { points: "7 23 3 19 7 15", key: "k2" }), React.createElement("path", { d: "M21 13v2a4 4 0 01-4 4H3", key: "k3" }))); }); Repeat.displayName = 'Repeat'; export var RepeatDimensions = { height: 24, width: 24 };