@semcore/icon
Version:
Semrush Icon Component
31 lines • 1.5 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Religion",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11 4a3 3 0 1 1-6 0C5 2.837 6.472 1.168 7.352.273A.897.897 0 0 1 8.641.273C9.523 1.167 11 2.838 11 3.999Zm-2.064-.118c.038.085.056.139.063.163a1 1 0 0 1-1.998 0c.007-.025.024-.079.063-.164.083-.181.22-.414.414-.688.159-.224.337-.45.52-.666.184.217.363.443.523.668.195.274.332.507.415.687Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 7a1 1 0 1 0 0 2v6a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V9a1 1 0 1 0 0-2H5Zm2 7V9h2v5H7Z",
shapeRendering: "geometricPrecision"
}));
}
Religion.displayName = 'Religion';
export default createBaseComponent(Religion);