@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.43 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 Crown({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Crown",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.812 2.416a1 1 0 0 0-1.626.003L6.683 8.723 3.447 7.106A1 1 0 0 0 2.03 8.243l1.81 7.242A2 2 0 0 0 5.78 17h12.44a2 2 0 0 0 1.94-1.515l1.81-7.242a1 1 0 0 0-1.42-1.136l-3.206 1.615-4.532-6.306Zm-4.998 8.165 4.189-5.864 4.216 5.867a1 1 0 0 0 1.262.309l2.02-1.017L18.218 15H5.781L4.498 9.867l2.055 1.027a1 1 0 0 0 1.26-.313Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 19a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H6Z",
shapeRendering: "geometricPrecision"
}));
}
Crown.displayName = 'Crown';
export default createBaseComponent(Crown);