@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.72 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Language({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Language",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 3v1h4a1 1 0 1 1 0 2h-1.06c-.216 1.836-1.009 4.036-2.5 5.885.625.405 1.341.673 2.004.847a9.382 9.382 0 0 0 1.498.262l.101.007a1 1 0 0 1-.086 1.998l-.178-.012a11.372 11.372 0 0 1-1.842-.32c-.874-.23-1.97-.632-2.937-1.349-.967.717-2.063 1.12-2.937 1.348a11.37 11.37 0 0 1-1.842.321L2.043 15a1 1 0 1 1-.086-1.998l.1-.007a9.383 9.383 0 0 0 1.499-.262c.663-.174 1.38-.442 2.003-.847C4.07 10.035 3.276 7.836 3.061 6H2a1 1 0 1 1 0-2h4V3a1 1 0 1 1 2 0ZM5.078 6h3.844A9.902 9.902 0 0 1 7 10.482 9.902 9.902 0 0 1 5.078 6ZM18.731 10.317a.997.997 0 0 0-1.102-.246.997.997 0 0 0-.561.566l-3.997 9.991a1 1 0 0 0 1.857.743L15.877 19h4.246l.948 2.371a1 1 0 1 0 1.857-.743l-3.996-9.99a1.018 1.018 0 0 0-.201-.321ZM18 13.692 19.323 17h-2.646L18 13.692Z",
shapeRendering: "geometricPrecision"
}));
}
Language.displayName = 'Language';
export default createBaseComponent(Language);