@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 933 B
JavaScript
const React = require("react");
function DislikeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M16 4.889A2.89 2.89 0 0 1 18.889 2H19a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3h-.111A2.89 2.89 0 0 1 16 12.111V4.89ZM2 10.966v-4.3A4.667 4.667 0 0 1 6.667 2h4.36A4.973 4.973 0 0 1 16 6.973v6.49a5.5 5.5 0 0 1-.899 3.013l-1.434 2.19-1.685 2.408A2.171 2.171 0 0 1 8.04 19.64l.224-2.563a1.604 1.604 0 0 0-1.597-1.744H6a4 4 0 0 1-4-4z"
}));
}
const ForwardRef = React.forwardRef(DislikeIcon);
module.exports = ForwardRef;