@scaleflex/icons
Version:
SVG icons as React components
25 lines • 2.45 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var LanguagesOutline = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "LanguagesOutline",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M42.6691 7.33038C40.3533 5.00301 37.5998 3.15703 34.5673 1.89883C31.5348 0.640634 28.2832 -0.00488983 25 -0.000527352C11.2143 -0.000527352 0 11.2152 0 24.9995C0 38.7837 11.2143 49.9995 25 49.9995C38.7857 49.9995 50 38.7852 50 24.9995C50.0047 21.7162 49.3593 18.4646 48.1011 15.432C46.8429 12.3994 44.9967 9.64594 42.6691 7.33038ZM32.9694 4.8916C36.6189 6.33707 39.8065 8.74793 42.191 11.866C44.5755 14.9841 46.067 18.692 46.5058 22.5928L46.5889 23.3216H35.9475L35.9373 22.6759C35.8511 16.8368 34.5551 11.0791 32.1312 5.76624L31.4577 4.28373L32.9694 4.8916ZM25 3.35224C28.2959 3.35224 32.1429 11.103 32.6064 22.6409L32.6341 23.3231H17.3659L17.3936 22.6409C17.8571 11.103 21.7055 3.35224 25 3.35224ZM3.49417 22.5942C3.93302 18.6935 5.42453 14.9856 7.809 11.8675C10.1935 8.74939 13.3811 6.33853 17.0306 4.89306L18.5437 4.29102L17.8703 5.77352C15.4462 11.0863 14.1502 16.8441 14.0641 22.6831L14.0539 23.3289H3.41254L3.49417 22.5942ZM17.0306 45.1088C13.3811 43.6633 10.1935 41.2525 7.809 38.1344C5.42453 35.0163 3.93302 31.3084 3.49417 27.4076L3.41108 26.6788H14.0525L14.0627 27.3245C14.1488 33.1636 15.4448 38.9214 17.8688 44.2342L18.5423 45.7167L17.0306 45.1088ZM25 46.6467C21.7041 46.6467 17.8571 38.896 17.3936 27.3581L17.3659 26.6759H32.6341L32.6064 27.3581C32.1429 38.896 28.2959 46.6467 25 46.6467ZM46.5058 27.4047C46.067 31.3054 44.5755 35.0134 42.191 38.1315C39.8065 41.2496 36.6189 43.6604 32.9694 45.1059L31.4563 45.7079L32.1297 44.2254C34.5536 38.9126 35.8496 33.1548 35.9359 27.3158L35.9461 26.67H46.5875L46.5058 27.4047Z",
fill: color
}));
});
export default LanguagesOutline;