@semcore/icon
Version:
Semrush Icon Component
33 lines • 1.68 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 Fashion({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Fashion",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("g", {
clipPath: "url(#a)"
}, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.002 4v1h1.106a1 1 0 0 1 .993.888l.888 7.888A2 2 0 0 1 13.002 16H2.998a2 2 0 0 1-1.987-2.224l.89-7.888A1 1 0 0 1 2.895 5h1.107V4a4 4 0 1 1 8 0Zm-2 0v1h-4V4a2 2 0 1 1 4 0ZM3.508 9.482 2.998 14h10.004l-.508-4.517c-1.1.93-2.705 1.517-4.492 1.517-1.789 0-3.395-.587-4.494-1.518ZM11.911 7h-7.82c.127.352.396.728.868 1.082.708.53 1.777.918 3.043.918 1.266 0 2.335-.387 3.042-.918.473-.354.741-.73.867-1.082Z",
shapeRendering: "geometricPrecision"
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
id: "a"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h16v16H0z",
shapeRendering: "geometricPrecision"
}))));
}
Fashion.displayName = 'Fashion';
export default createBaseComponent(Fashion);