@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.71 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootTimeDay({
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"
}));
}
RootTimeDay.displayName = 'TimeDay';
const TimeDay = createBaseComponent(RootTimeDay);
export { TimeDay as default };