styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
22 lines (21 loc) • 1.08 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.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_1.StyledIconBase, tslib_1.__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" })));
});
exports.Repeat.displayName = 'Repeat';
exports.RepeatDimensions = { height: 24, width: 24 };
;