@nomercyicons/react
Version:
45 lines • 1.65 kB
JavaScript
const React = require("react");
function MedicationLiquidTwoToneIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
fill: "currentColor",
viewBox: "0 0 24 24",
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: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("g", {
opacity: 0.3
}, /*#__PURE__*/React.createElement("use", {
overflow: "visible",
xlinkHref: "#SVGID_1_"
}), /*#__PURE__*/React.createElement("path", {
d: "M4 19h10V8H4v11zm1-7h2.5V9.5h3V12H13v3h-2.5v2.5h-3V15H5v-3z",
clipPath: "url(#SVGID_2_)"
})), /*#__PURE__*/React.createElement("path", {
d: "M3 3h12v2H3zM14 6H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2m0 13H4V8h10v11z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 17.5h3V15H13v-3h-2.5V9.5h-3V12H5v3h2.5z"
}), /*#__PURE__*/React.createElement("ellipse", {
cx: 20,
cy: 10,
opacity: 0.3,
rx: 1,
ry: 2
}), /*#__PURE__*/React.createElement("path", {
d: "M20 6c-1.68 0-3 1.76-3 4 0 1.77.83 3.22 2 3.76V20c0 .55.45 1 1 1s1-.45 1-1v-6.24c1.17-.54 2-1.99 2-3.76 0-2.24-1.32-4-3-4zm0 6c-.41 0-1-.78-1-2s.59-2 1-2 1 .78 1 2-.59 2-1 2z"
}));
}
const ForwardRef = React.forwardRef(MedicationLiquidTwoToneIcon);
module.exports = ForwardRef;