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.04 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var FlowChildren = 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: "M17 16a2.99 2.99 0 00-2.816 2H11c-1.654 0-3-1.346-3-3v-3.025A4.954 4.954 0 0011 13h3.184A2.99 2.99 0 0017 15a3 3 0 100-6 2.99 2.99 0 00-2.816 2H11c-1.654 0-3-1.346-3-3v-.184A2.99 2.99 0 0010 5a3 3 0 10-6 0 2.99 2.99 0 002 2.816V15c0 2.757 2.243 5 5 5h3.184A2.99 2.99 0 0017 22a3 3 0 100-6zm0-5a1.001 1.001 0 11-1 1c0-.551.448-1 1-1zM7 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" }))); }); FlowChildren.displayName = 'FlowChildren'; export var FlowChildrenDimensions = { height: 24, width: 24 };