@nomercyicons/react
Version:
24 lines • 1.13 kB
JavaScript
const React = require("react");
function PrincipleIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 36 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "nonzero",
d: "M2.098 46.83a3.667 3.667 0 001.603-3.03c0-2.03-1.655-3.676-3.697-3.678L0 17.888C0 8.008 8.059 0 18 0s18 8.009 18 17.888c0 9.879-7.89 17.888-17.832 17.888-3.159 0-5.72-2.545-5.72-5.684 0-3.14 2.561-5.684 5.72-5.684 3.624 0 6.393-2.92 6.393-6.52 0-3.601-2.938-6.52-6.561-6.52-3.623 0-6.56 2.919-6.56 6.519l.003 24.429c.001 5.508-6.043 7.013-9.345 4.514zm16.07-13.06c2.044 0 3.701-1.647 3.701-3.678 0-2.032-1.657-3.678-3.7-3.678-2.045 0-3.702 1.646-3.702 3.678 0 2.03 1.657 3.677 3.701 3.677z"
}));
}
const ForwardRef = React.forwardRef(PrincipleIcon);
module.exports = ForwardRef;