@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 DislikeIcon({
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: "M2 6.667v4.666a4 4 0 0 0 4 4h.667c.94 0 1.68.807 1.597 1.744L8.04 19.64a2.171 2.171 0 0 0 3.942 1.434l1.685-2.407 1.434-2.191A5.5 5.5 0 0 0 16 13.463V12.11A2.89 2.89 0 0 0 18.889 15H19a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3h-.111A2.89 2.89 0 0 0 16 4.889v2.084A4.973 4.973 0 0 0 11.027 2h-4.36A4.667 4.667 0 0 0 2 6.667",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(DislikeIcon);
export default ForwardRef;