styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.17 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.ArrowRepeat = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M16.5 7h-2.086l1.293-1.293a.999.999 0 10-1.414-1.414L10.586 8l3.707 3.707a.997.997 0 001.414 0 .999.999 0 000-1.414L14.414 9H16.5c1.379 0 2.5 1.346 2.5 3s-1.346 3-3 3a1 1 0 100 2c2.757 0 5-2.243 5-5s-2.019-5-4.5-5zm-8.207 5.293a.999.999 0 000 1.414L9.586 15H7.5C6.121 15 5 13.654 5 12s1.346-3 3-3a1 1 0 100-2c-2.757 0-5 2.243-5 5s2.019 5 4.5 5h2.086l-1.293 1.293a.999.999 0 101.414 1.414L13.414 16l-3.707-3.707a.999.999 0 00-1.414 0z", key: "k0" })));
});
exports.ArrowRepeat.displayName = 'ArrowRepeat';
exports.ArrowRepeatDimensions = { height: 24, width: 24 };
;