@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.46 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Wristwatch",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13 8.5a1 1 0 1 0-2 0v3.914l2.793 2.793a1 1 0 0 0 1.414-1.414L13 11.586V8.5Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.596 1a2 2 0 0 0-1.95 1.557l-.745 3.278A7.984 7.984 0 0 0 4 12a7.984 7.984 0 0 0 2.901 6.165l.745 3.278A2 2 0 0 0 9.596 23h4.807a2 2 0 0 0 1.95-1.557l.746-3.278A7.984 7.984 0 0 0 20 12a7.984 7.984 0 0 0-2.901-6.165l-.745-3.278A2 2 0 0 0 14.404 1H9.595ZM12 6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z",
shapeRendering: "geometricPrecision"
}));
}
RootWristwatch.displayName = 'Wristwatch';
const Wristwatch = createBaseComponent(RootWristwatch);
export { Wristwatch as default };