UNPKG

@astraicons/react

Version:

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

20 lines 910 B
import * as React from "react"; import { forwardRef } from "react"; const DislikeIcon = ({ 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: "M10.01 21.75a2.6 2.6 0 0 0 2.163-1.158l1.457-2.185 1.325-2.124c.233-.374.417-.774.549-1.19.538.412 1.21.657 1.94.657H18A3.75 3.75 0 0 0 21.75 12V7A3.75 3.75 0 0 0 18 3.25h-.556a3.19 3.19 0 0 0-2.562 1.287 5.15 5.15 0 0 0-4.28-2.287H7A4.75 4.75 0 0 0 2.25 7v4.4a4.35 4.35 0 0 0 4.35 4.35H7a.63.63 0 0 1 .628.683l-.208 2.502a2.6 2.6 0 0 0 2.59 2.815" })); const ForwardRef = forwardRef(DislikeIcon); export default ForwardRef;