@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.44 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 TimeNight({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TimeNight",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.924 1.618a1 1 0 0 1-.303 1.166c-1.64 1.3-2.767 3.25-2.767 5.418a6.944 6.944 0 0 0 6.944 6.944c2.167 0 4.118-1.128 5.418-2.767a1 1 0 0 1 1.778.734C22.369 18.598 17.72 23 12.035 23 5.941 23 1 18.058 1 11.964 1 6.28 5.403 1.63 10.887 1.006a1 1 0 0 1 1.037.612ZM8.031 3.915C5.065 5.41 3 8.46 3 11.964A9.036 9.036 0 0 0 12.035 21c3.505 0 6.554-2.064 8.05-5.031a8.494 8.494 0 0 1-4.287 1.177 8.944 8.944 0 0 1-8.944-8.944c0-1.571.444-3.027 1.177-4.287Z",
shapeRendering: "geometricPrecision"
}));
}
TimeNight.displayName = 'TimeNight';
export default createBaseComponent(TimeNight);