@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.86 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 Toxic({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Toxic",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.222 9.07c.142.238.062.542-.149.722a2.957 2.957 0 0 0-.983 1.667c-.056.275-.289.497-.57.483l-4.045-.201a.477.477 0 0 1-.46-.5c.071-1.179.403-2.105.985-3.141.578-1.029 1.185-1.709 2.15-2.39.227-.16.644-.084.788.155l2.284 3.206ZM17 5.8c-.677-.5-1.11-.161-1.252.065l-2.011 3.188c-.153.243-.068.562.155.743.513.418.883 1 1.028 1.667.055.254.261.46.521.468l4.028.106a.475.475 0 0 0 .495-.516C19.847 10.364 19.607 9.2 19 8.2c-.607-1.001-1.323-1.9-2-2.4Zm-3.31 9.19c-.128-.248-.437-.337-.702-.246a3.026 3.026 0 0 1-2.046-.025c-.263-.098-.574-.016-.71.23l-1.964 3.575a.477.477 0 0 0 .2.662 8.077 8.077 0 0 0 6.89.085.477.477 0 0 0 .215-.659l-1.882-3.621ZM14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11Zm-2 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z",
shapeRendering: "geometricPrecision"
}));
}
Toxic.displayName = 'Toxic';
export default createBaseComponent(Toxic);