@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.55 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 Cosmetics({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cosmetics",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 11a2.001 2.001 0 1 0-.002 4.002A2.001 2.001 0 0 0 12 11Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8.997 2v5h-1.58a1 1 0 0 0-.963.726l-1.262 4.417a4.995 4.995 0 0 0 .084 3.008l2.487 7.176a1 1 0 0 0 .946.673h6.582a1 1 0 0 0 .946-.673l2.488-7.176c.336-.97.365-2.02.083-3.008l-1.262-4.417A1 1 0 0 0 16.583 7h-1.58V2a1 1 0 0 0-1.001-1H9.998a1 1 0 0 0-1.001 1Zm2.002 1v4H13V3h-2.002Zm4.829 6 1.055 3.692c.17.592.152 1.223-.05 1.805L14.579 21H9.42l-2.254-6.503a2.997 2.997 0 0 1-.05-1.805L8.172 9h7.656Z",
shapeRendering: "geometricPrecision"
}));
}
Cosmetics.displayName = 'Cosmetics';
export default createBaseComponent(Cosmetics);