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.44 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var FlowSwitch = 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: "M8 16.184V15.5c0-.848.512-1.595 1.287-2.047a7.008 7.008 0 01-1.822-1.131C6.561 13.136 6 14.26 6 15.5v.684A2.997 2.997 0 004 19c0 1.654 1.346 3 3 3s3-1.346 3-3a2.997 2.997 0 00-2-2.816zM7 20a1.001 1.001 0 010-2 1.001 1.001 0 010 2zm9-12.185v.351c0 .985-.535 1.852-1.345 2.36a7.016 7.016 0 011.823 1.1C17.414 10.748 18 9.524 18 8.167v-.351A2.997 2.997 0 0020 5c0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.401 2 2.815zM17 4a1.001 1.001 0 11-1 1c0-.551.448-1 1-1zm.935 12.164C17.525 13.251 15.024 11 12 11a4.004 4.004 0 01-3.92-3.209A3 3 0 0010 5c0-1.654-1.346-3-3-3S4 3.346 4 5c0 1.326.87 2.44 2.065 2.836C6.475 10.749 8.976 13 12 13a4.004 4.004 0 013.92 3.209A3 3 0 0014 19c0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.326-.87-2.44-2.065-2.836zM7 4a1.001 1.001 0 11-1 1c0-.551.448-1 1-1zm10 16a1.001 1.001 0 010-2 1.001 1.001 0 010 2z", key: "k0" }))); }); FlowSwitch.displayName = 'FlowSwitch'; export var FlowSwitchDimensions = { height: 24, width: 24 };