@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.3 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 Slack({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Slack",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11 6V3.5A2.5 2.5 0 1 0 8.5 6H11ZM1 9a2 2 0 0 0 2 2h6a2 2 0 0 0 0-4H3a2 2 0 0 0-2 2Zm11 8v2.5a2.5 2.5 0 1 0 2.5-2.5H12Zm10-3a2 2 0 0 0-2-2h-6a2 2 0 0 0 0 4h6a2 2 0 0 0 2-2Zm-5-3h2.5A2.5 2.5 0 1 0 17 8.5V11ZM14 1a2 2 0 0 0-2 2v6a2 2 0 0 0 4 0V3a2 2 0 0 0-2-2ZM6 12H3.5A2.5 2.5 0 1 0 6 14.5V12Zm1 8v-6a2 2 0 0 1 4 0v6a2 2 0 0 1-4 0Z",
shapeRendering: "geometricPrecision"
}));
}
Slack.displayName = 'Slack';
export default createBaseComponent(Slack);