@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.24 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ShareAlt",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9 4a3 3 0 1 1 .94 2.18L6.997 7.88a3.059 3.059 0 0 1-.014.433l2.83 1.634a3 3 0 1 1-.806 1.844L6.12 10.123a3 3 0 1 1 .121-4.117l2.785-1.608A3.027 3.027 0 0 1 9 4Zm3-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM3 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
ShareAlt.displayName = 'ShareAlt';
export default createBaseComponent(ShareAlt);