UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.36 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ArrowLoopOutline = 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: "M18.994 7.187L19 7c0-.801-.312-1.555-.879-2.121C17.555 4.312 16.801 4 16 4s-1.555.312-2.121.879l-2.883 2.883A2.987 2.987 0 009 7H8c-3.859 0-7 3.14-7 7s3.141 7 7 7h9c3.859 0 7-3.14 7-7 0-3.306-2.14-6.084-5.006-6.813zM17 19H8c-2.757 0-5-2.243-5-5s2.243-5 5-5h1a1 1 0 110 2H8c-1.654 0-3 1.346-3 3s1.346 3 3 3h9c1.654 0 3-1.346 3-3s-1.121-3-2.5-3h-2.086l1.293 1.293a.999.999 0 11-1.414 1.414L11.586 10l3.707-3.707a.997.997 0 011.414 0 .999.999 0 010 1.414L15.414 9H17.5c2.481 0 4.5 2.243 4.5 5s-2.243 5-5 5zm.749-6.971c.7.164 1.251 1 1.251 1.971 0 1.103-.897 2-2 2H8c-1.103 0-2-.897-2-2s.897-2 2-2h1c.856 0 1.588-.541 1.873-1.299l3.713 3.713c.378.378.88.586 1.414.586s1.036-.208 1.414-.586S18 13.534 18 13c0-.345-.087-.677-.251-.971z", key: "k0" }))); }); ArrowLoopOutline.displayName = 'ArrowLoopOutline'; export var ArrowLoopOutlineDimensions = { height: 24, width: 24 };