@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.25 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 ShareAlt({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ShareAlt",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M14 6a4 4 0 1 1 1.153 2.81L9.93 11.246a4.02 4.02 0 0 1-.057 1.761l5.1 2.379a4 4 0 1 1-.888 1.793l-5.188-2.42a4 4 0 1 1 .176-5.32l5.074-2.366A4.002 4.002 0 0 1 14 6Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM4 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
ShareAlt.displayName = 'ShareAlt';
export default createBaseComponent(ShareAlt);