UNPKG

@astraicons/react

Version:

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

22 lines 784 B
import * as React from "react"; import { forwardRef } from "react"; const ChevronDownIcon = ({ 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", { fillRule: "evenodd", d: "M5.47 8.47a.75.75 0 0 0 0 1.06l4.586 4.586a2.75 2.75 0 0 0 3.889 0L18.53 9.53a.75.75 0 0 0-1.06-1.06l-4.586 4.586a1.25 1.25 0 0 1-1.768 0L6.53 8.47a.75.75 0 0 0-1.06 0", clipRule: "evenodd" })); const ForwardRef = forwardRef(ChevronDownIcon); export default ForwardRef;