@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.36 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Slack",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 2.5A1.5 1.5 0 1 0 5.5 4H7V2.5Zm0 4A1.5 1.5 0 0 0 5.5 5h-4a1.5 1.5 0 0 0 0 3h4A1.5 1.5 0 0 0 7 6.5ZM13.5 8A1.5 1.5 0 1 0 12 6.5V8h1.5Zm-4 0A1.5 1.5 0 0 0 11 6.5v-4a1.5 1.5 0 0 0-3 0v4A1.5 1.5 0 0 0 9.5 8ZM8 14.5A1.5 1.5 0 1 0 9.5 13H8v1.5Zm0-4A1.5 1.5 0 0 0 9.5 12h4a1.5 1.5 0 0 0 0-3h-4A1.5 1.5 0 0 0 8 10.5ZM1.5 9A1.5 1.5 0 1 0 3 10.5V9H1.5ZM7 10.5v4a1.5 1.5 0 0 1-3 0v-4a1.5 1.5 0 0 1 3 0Z",
shapeRendering: "geometricPrecision"
}));
}
Slack.displayName = 'Slack';
export default createBaseComponent(Slack);