@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.59 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 FeaturedImage({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "FeaturedImage",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9.5 7.998a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6.466 22.843a1 1 0 0 1-.3-1.382L9.036 17H3a1 1 0 1 1 0-2V3a1 1 0 0 1 0-2h18a1 1 0 1 1 0 2v12a1 1 0 1 1 0 2h-6.027l2.866 4.457a1 1 0 1 1-1.682 1.082l-3.425-5.325a.999.999 0 0 1-.104-.214h-1.217a1.12 1.12 0 0 1-.03.05l-3.533 5.493a1 1 0 0 1-1.382.3ZM19 10.14V3H5v8.296l1.663-1.454a2 2 0 0 1 2.679.04l.893.831 3.39-3.145a2 2 0 0 1 2.752.03L19 10.139ZM5 13.954l2.98-2.607 1.437 1.337a1.2 1.2 0 0 0 1.634 0l3.934-3.65L19 12.924V15H5v-1.046Z",
shapeRendering: "geometricPrecision"
}));
}
FeaturedImage.displayName = 'FeaturedImage';
export default createBaseComponent(FeaturedImage);