@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.43 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TimeNight",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.436 1.166a1 1 0 0 1-.394 1.17c-1.015.665-1.733 1.916-1.733 3.206A4.163 4.163 0 0 0 10.477 9.7c1.27 0 2.479-.714 3.196-1.77a1 1 0 0 1 1.824.636c-.293 3.912-3.595 6.934-7.468 6.934C3.873 15.5.5 12.137.5 7.984.5 4.104 3.506.898 7.393.505a1 1 0 0 1 1.043.661ZM4.625 3.681C3.32 4.7 2.5 6.262 2.5 7.984A5.522 5.522 0 0 0 8.029 13.5c1.733 0 3.313-.83 4.328-2.13a5.556 5.556 0 0 1-1.88.33 6.163 6.163 0 0 1-6.168-6.158c0-.64.112-1.27.316-1.861Z",
shapeRendering: "geometricPrecision"
}));
}
TimeNight.displayName = 'TimeNight';
export default createBaseComponent(TimeNight);