@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.4 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 Religion({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Religion",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M15 7.002A2.999 2.999 0 0 1 12 10c-1.657 0-3-1.342-3-2.998 0-1.106 1.34-3.271 2.228-4.586a.924.924 0 0 1 1.544 0C13.66 3.73 15 5.896 15 7.002Zm-2.002.015a1 1 0 0 1-1.997.01l.001-.01c.007-.03.028-.133.098-.324.098-.266.25-.596.45-.973.138-.263.291-.532.45-.798.159.266.312.535.45.798.2.377.352.707.45.973.07.191.091.294.098.324ZM9 10.005a1 1 0 1 0 0 2v9a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-9a1 1 0 1 0 0-2H9Zm2 10v-8h2v8h-2Z",
shapeRendering: "geometricPrecision"
}));
}
Religion.displayName = 'Religion';
export default createBaseComponent(Religion);