@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.37 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Event",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M10 1a1 1 0 1 1 2 0v1h3a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3V1a1 1 0 0 1 2 0v1h4V1ZM4 4a1 1 0 0 0 2 0h4a1 1 0 1 0 2 0h2v10H2V4h2Zm7.696 4.351a.186.186 0 0 0-.102-.315l-2.325-.393-1.104-2.045a.188.188 0 0 0-.33 0L6.73 7.643l-2.325.393a.186.186 0 0 0-.102.315l1.642 1.652-.335 2.283a.187.187 0 0 0 .267.195L8 11.461l2.122 1.02a.187.187 0 0 0 .267-.195l-.335-2.283 1.642-1.652Z",
shapeRendering: "geometricPrecision"
}));
}
Event.displayName = 'Event';
export default createBaseComponent(Event);