styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
20 lines (19 loc) • 980 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var 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, __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" })));
});
UserPlus.displayName = 'UserPlus';
export var UserPlusDimensions = { height: 24, width: 24 };