optimall-icons
Version:
Biblioteca de ícones do Optimall
35 lines • 2.68 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const TeamIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "team",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7.5 7.4a4.4 4.4 0 1 0 8.8 0 4.4 4.4 0 0 0-8.8 0Zm1.8 0c0-1.43 1.17-2.6 2.6-2.6 1.43 0 2.6 1.17 2.6 2.6 0 1.43-1.17 2.6-2.6 2.6-1.43 0-2.6-1.17-2.6-2.6Z",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M.566 17.36c.316.379 1.199 1.44 2.564 1.44l-.01.01c.5 0 .9-.4.9-.9s-.4-.9-.9-.9c-.23 0-.6-.08-1.18-.8-.147-.183-.142-.283-.14-.321v-.009c.048-.358.732-.865 1.094-1.133l.036-.027.25-.19c.55-.42 1.17-.67 1.8-.73.5-.05.86-.48.82-.98a.913.913 0 0 0-.98-.82c-.97.09-1.91.47-2.73 1.1l-.22.16-.033.024C1.204 13.757.167 14.53.02 15.65c-.06.4-.01 1.03.53 1.69l.016.02ZM2 8.4c0 1.87 1.52 3.4 3.4 3.4.5 0 .9-.4.9-.9s-.4-.9-.9-.9c-.88 0-1.6-.72-1.6-1.6 0-.88.72-1.6 1.6-1.6.5 0 .9-.4.9-.9S5.9 5 5.4 5C3.52 5 2 6.53 2 8.4Zm17.77 9.5c0 .5.4.9.9.9l-.02-.01c1.39 0 2.29-1.1 2.58-1.46.53-.66.58-1.28.53-1.69-.14-1.134-1.199-1.911-1.84-2.382l-.01-.008-.21-.16a5.255 5.255 0 0 0-2.73-1.1.895.895 0 0 0-.98.82.9.9 0 0 0 .82.98c.63.06 1.25.31 1.8.73l.25.19c.35.25 1.08.79 1.13 1.16.01.04.02.13-.14.33-.58.72-.95.8-1.18.8-.5 0-.9.4-.9.9Zm-2.77-7c0 .5.4.9.9.9 1.88 0 3.4-1.53 3.4-3.4 0-1.87-1.52-3.4-3.4-3.4-.5 0-.9.4-.9.9s.4.9.9.9c.88 0 1.6.72 1.6 1.6 0 .88-.72 1.6-1.6 1.6-.5 0-.9.4-.9.9Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.07 20.8H8.71c-1.62 0-2.73-.92-3.43-1.61-.74-.73-.83-1.45-.77-1.92.168-1.345 1.638-2.221 2.628-2.81l.032-.02.33-.2a8.406 8.406 0 0 1 8.78 0l.33.2c.99.58 2.49 1.47 2.66 2.83.06.47-.03 1.19-.77 1.92-.7.69-1.82 1.61-3.43 1.61Zm-6.61-5.02-.403.24c-.492.293-1.699 1.01-1.757 1.48-.02.14.17.33.25.41.76.76 1.43 1.09 2.17 1.09h6.37c.74 0 1.4-.34 2.17-1.09.08-.08.26-.28.25-.41-.059-.47-1.265-1.188-1.758-1.48l-.402-.24a6.6 6.6 0 0 0-6.88 0h-.01Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default TeamIcon;