@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.72 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 TimeDay({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TimeDay",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 0a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V1a1 1 0 0 0-1-1Zm0 20a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1ZM0 12a1 1 0 0 0 1 1h2a1 1 0 1 0 0-2H1a1 1 0 0 0-1 1Zm20 0a1 1 0 0 0 1 1h2a1 1 0 1 0 0-2h-2a1 1 0 0 0-1 1ZM3.515 4.929a1 1 0 0 1 1.414-1.414l1.414 1.414A1 1 0 1 1 4.93 6.343L3.515 4.93Zm14.142 14.142a1 1 0 1 1 1.414-1.414l1.414 1.414a1 1 0 0 1-1.414 1.414l-1.414-1.414Zm2.828-15.556a1 1 0 0 1 0 1.414l-1.414 1.414a1 1 0 0 1-1.414-1.414l1.414-1.414a1 1 0 0 1 1.414 0ZM6.343 17.657a1 1 0 0 1 0 1.414L4.93 20.485a1 1 0 0 1-1.414-1.414l1.414-1.414a1 1 0 0 1 1.414 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-2 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z",
shapeRendering: "geometricPrecision"
}));
}
TimeDay.displayName = 'TimeDay';
export default createBaseComponent(TimeDay);