@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.24 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 RootCut({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cut",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M23 18a4 4 0 1 1-6.142-3.379l-1.983-1.29-10.117 6.36a2 2 0 0 1-2.74-.602L2 19.063l10.84-7.057L2 4.95l.017-.026a2 2 0 0 1 2.74-.602l10.118 6.36 1.993-1.297a4 4 0 1 1 4.288-.015l.016.002-4.19 2.634 4.088 2.57A3.998 3.998 0 0 1 23 18Zm-2 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0-12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",
shapeRendering: "geometricPrecision"
}));
}
RootCut.displayName = 'Cut';
const Cut = createBaseComponent(RootCut);
export { Cut as default };