@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.48 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 Event({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Event",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15.938 12.759a.213.213 0 0 0-.115-.36l-2.635-.45-1.25-2.337a.212.212 0 0 0-.375 0l-1.251 2.337-2.635.45a.213.213 0 0 0-.115.36l1.86 1.887-.38 2.61c-.025.169.15.297.303.222l2.405-1.165 2.405 1.165a.213.213 0 0 0 .303-.222l-.38-2.61 1.86-1.887Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 2a1 1 0 0 1 2 0v2h6V2a1 1 0 1 1 2 0v2h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h4V2Zm8 4v1a1 1 0 1 0 2 0V6h3v14H4V6h3v1a1 1 0 0 0 2 0V6h6Z",
shapeRendering: "geometricPrecision"
}));
}
Event.displayName = 'Event';
export default createBaseComponent(Event);