@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.07 kB
JavaScript
const React = require("react");
function Shield01Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11.302 21.615c.221.13.332.194.488.227.122.026.298.026.42 0 .156-.033.267-.098.488-.227C14.646 20.479 20 16.909 20 12V7.218c0-.8 0-1.2-.13-1.543a2 2 0 00-.548-.79c-.275-.242-.65-.383-1.398-.664l-5.362-2.01c-.208-.078-.312-.117-.419-.133a1 1 0 00-.286 0c-.107.016-.21.055-.419.133L6.076 4.22c-.748.281-1.122.422-1.398.665a2 2 0 00-.547.789C4 6.018 4 6.418 4 7.218V12c0 4.909 5.354 8.479 7.302 9.615z"
}));
}
const ForwardRef = React.forwardRef(Shield01Icon);
module.exports = ForwardRef;