@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.26 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 RootWarning({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Warning",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11 14V9h2v5h-2Zm0 4v-2h2v2h-2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.899 1.54a1.018 1.018 0 0 0-1.798 0L1.129 20.387A1.1 1.1 0 0 0 2.108 22h19.784a1.1 1.1 0 0 0 .98-1.613L12.898 1.54ZM3.607 19.999 12 4.137 20.393 20H3.607Z",
shapeRendering: "geometricPrecision"
}));
}
RootWarning.displayName = 'Warning';
const Warning = createBaseComponent(RootWarning);
export { Warning as default };