@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 931 B
JavaScript
import * as React from "react";
function LikeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M22 17.333v-4.666a4 4 0 0 0-4-4h-.667c-.94 0-1.68-.806-1.597-1.744l.224-2.562a2.171 2.171 0 0 0-3.942-1.435l-1.685 2.407L8.9 7.524A5.5 5.5 0 0 0 8 10.537V12a3 3 0 0 0-3-3h-.111A2.89 2.89 0 0 0 2 11.889v7.222A2.89 2.89 0 0 0 4.889 22H5a3 3 0 0 0 3-3v-1.973A4.973 4.973 0 0 0 12.973 22h4.36A4.667 4.667 0 0 0 22 17.333",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(LikeIcon);
export default ForwardRef;