@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 894 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LikeIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M3 11.444A2.444 2.444 0 0 1 5.444 9H6a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-.556A2.444 2.444 0 0 1 3 17.556zM21 12.931V17a4 4 0 0 1-4 4h-3.602A4.4 4.4 0 0 1 9 16.602v-6.107a4.5 4.5 0 0 1 .682-2.381L11 6l1.45-2.176a1.85 1.85 0 0 1 3.383 1.18l-.208 2.501A1.38 1.38 0 0 0 17 9h.4a3.6 3.6 0 0 1 3.6 3.6z"
}));
const ForwardRef = forwardRef(LikeIcon);
module.exports = ForwardRef;