@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 924 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const LikeIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M13.99 2.25a2.6 2.6 0 0 0-2.163 1.158L10.37 5.593 9.045 7.717a5.3 5.3 0 0 0-.618 1.425A3.74 3.74 0 0 0 6 8.25h-.556a3.194 3.194 0 0 0-3.194 3.194v6.112a3.194 3.194 0 0 0 3.194 3.194H6a3.74 3.74 0 0 0 2.99-1.487l.08.128a5.15 5.15 0 0 0 4.328 2.359H17A4.75 4.75 0 0 0 21.75 17v-4.4a4.35 4.35 0 0 0-4.35-4.35H17a.63.63 0 0 1-.628-.683l.209-2.502A2.6 2.6 0 0 0 13.99 2.25"
}));
const ForwardRef = forwardRef(LikeIcon);
export default ForwardRef;