@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.44 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 RootWristwatch({
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"
}));
}
RootWristwatch.displayName = 'Wristwatch';
const Wristwatch = createBaseComponent(RootWristwatch);
export { Wristwatch as default };