@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.7 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 PublicSafety({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "PublicSafety",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7 5.502a1 1 0 0 1 2 0v1h1a1 1 0 1 1 0 2H9v1a1 1 0 0 1-2 0v-1H6a1 1 0 1 1 0-2h1v-1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.81 2.877a.953.953 0 0 0-.532.702c-.187 1.143-.56 4.294.086 6.163.95 2.749 4.8 5.293 6.159 6.12a.91.91 0 0 0 .954 0c1.358-.827 5.209-3.371 6.159-6.12.646-1.87.273-5.02.087-6.163a.953.953 0 0 0-.534-.702L8.434.102a1 1 0 0 0-.868 0L1.81 2.877ZM3.17 4.44c-.069.516-.14 1.185-.162 1.887-.034 1.027.044 2.2.247 2.784.295.856 1.154 1.86 2.344 2.89A22.662 22.662 0 0 0 8 13.802a22.66 22.66 0 0 0 2.4-1.8c1.191-1.03 2.05-2.034 2.345-2.89.203-.585.28-1.757.248-2.784a18.924 18.924 0 0 0-.164-1.887L8 2.113 3.17 4.44Z",
shapeRendering: "geometricPrecision"
}));
}
PublicSafety.displayName = 'PublicSafety';
export default createBaseComponent(PublicSafety);