@semcore/icon
Version:
Semrush Icon Component
29 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 Wristwatch({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Wristwatch",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9 6a1 1 0 0 0-2 0v2.414l1.793 1.793a1 1 0 0 0 1.414-1.414L9 7.586V6Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5.883 0a1 1 0 0 0-.992.876L4.62 3.042A5.994 5.994 0 0 0 2 8a5.994 5.994 0 0 0 2.62 4.958l.27 2.166a1 1 0 0 0 .993.876h4.234a1 1 0 0 0 .992-.876l.271-2.166A5.994 5.994 0 0 0 14 8a5.994 5.994 0 0 0-2.62-4.958L11.11.876A1 1 0 0 0 10.117 0H5.883ZM8 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z",
shapeRendering: "geometricPrecision"
}));
}
Wristwatch.displayName = 'Wristwatch';
export default createBaseComponent(Wristwatch);