@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 933 B
JavaScript
const React = require("react");
function Flag03Icon({
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: "M4 13h15.587c.462 0 .694 0 .826-.097a.5.5 0 00.202-.357c.015-.163-.104-.361-.342-.758l-2.026-3.376c-.09-.15-.135-.225-.152-.305a.5.5 0 010-.214c.017-.08.062-.155.152-.305l2.026-3.376c.238-.397.357-.595.342-.758a.5.5 0 00-.202-.357C20.28 3 20.049 3 19.587 3H4v18"
}));
}
const ForwardRef = React.forwardRef(Flag03Icon);
module.exports = ForwardRef;