@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.47 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cosmetics",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.999 9a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M10.999 4V1a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v3h-.306a1 1 0 0 0-.937.65l-.94 2.517a5 5 0 0 0 .058 3.644l1.87 4.568A1 1 0 0 0 5.67 16h4.658a1 1 0 0 0 .925-.62l1.873-4.567a5 5 0 0 0 .057-3.648l-.941-2.515a1 1 0 0 0-.937-.65H11Zm-4-2v2h2V2h-2ZM5.387 6 4.69 7.866a3 3 0 0 0 .034 2.187L6.341 14h3.316l1.618-3.946a3 3 0 0 0 .034-2.189L10.612 6H5.387Z",
shapeRendering: "geometricPrecision"
}));
}
Cosmetics.displayName = 'Cosmetics';
export default createBaseComponent(Cosmetics);