@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.24 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 from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootShareAlt({
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"
}));
}
RootShareAlt.displayName = 'ShareAlt';
const ShareAlt = createBaseComponent(RootShareAlt);
export { ShareAlt as default };