@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 971 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const DislikeIcon = ({
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", {
d: "M15 6.444A2.444 2.444 0 0 1 17.444 4H18a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-.556A2.444 2.444 0 0 1 15 12.556z",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "M3 11.069V7a4 4 0 0 1 4-4h3.602A4.4 4.4 0 0 1 15 7.398v6.107a4.5 4.5 0 0 1-.682 2.381L13 18l-1.45 2.176a1.85 1.85 0 0 1-3.383-1.18l.208-2.501A1.38 1.38 0 0 0 7 15h-.4A3.6 3.6 0 0 1 3 11.4z"
}));
const ForwardRef = forwardRef(DislikeIcon);
module.exports = ForwardRef;