@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 933 B
JavaScript
const React = require("react");
function LikeIcon({
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", {
d: "M2 11.889A2.89 2.89 0 0 1 4.889 9H5a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3h-.111A2.89 2.89 0 0 1 2 19.111V11.89ZM22 13.035v4.298A4.667 4.667 0 0 1 17.333 22h-4.36A4.973 4.973 0 0 1 8 17.027v-6.49a5.5 5.5 0 0 1 .899-3.013l1.434-2.19 1.685-2.408a2.171 2.171 0 0 1 3.942 1.435l-.224 2.562a1.604 1.604 0 0 0 1.597 1.744H18a4 4 0 0 1 4 4z"
}));
}
const ForwardRef = React.forwardRef(LikeIcon);
module.exports = ForwardRef;