UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

29 lines 1.19 kB
const React = require("react"); const { forwardRef } = require("react"); const Like1Icon = ({ 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", { strokeLinecap: "round", strokeLinejoin: "round", d: "M17.026 8.113c.624.713.974 1.68.974 2.688s-.35 1.974-.974 2.687l-3.187 3.642c-.488.557-1.15.87-1.839.87s-1.35-.313-1.838-.87l-3.188-3.642C6.35 12.775 6 11.808 6 10.801c0-1.008.35-1.975.974-2.688 1.3-1.484 3.405-1.484 4.704 0l.322.368.322-.368C12.945 7.4 13.792 7 14.674 7s1.728.4 2.352 1.113", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M12 3.9V3M12 21v-.9M3.9 12H3M21 12h-.9M6.496 17.4l-.795.795M18.195 4.8l-.795.795M6.496 5.595 5.701 4.8M18.195 18.195 17.4 17.4", opacity: 0.4 })); const ForwardRef = forwardRef(Like1Icon); module.exports = ForwardRef;