UNPKG

styled-icons

Version:

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

22 lines (21 loc) 1.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.UserPlus = 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("path", { d: "M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2", key: "k0" }), React.createElement("circle", { cx: 8.5, cy: 7, r: 4, key: "k1" }), React.createElement("line", { x1: 20, x2: 20, y1: 8, y2: 14, key: "k2" }), React.createElement("line", { x1: 23, x2: 17, y1: 11, y2: 11, key: "k3" }))); }); exports.UserPlus.displayName = 'UserPlus'; exports.UserPlusDimensions = { height: 24, width: 24 };