UNPKG

@astraicons/react

Version:

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

22 lines 840 B
import * as React from "react"; import { forwardRef } from "react"; const ArrowDownBorderIcon = ({ 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: "M17.966 11.755c.871-1.34 1.069-2.762.335-3.888-.71-1.09-2.114-1.617-3.794-1.617H9.495c-1.68 0-3.084.527-3.794 1.617-.734 1.126-.537 2.548.335 3.888l2.506 3.86c.878 1.35 2.116 2.135 3.459 2.135s2.58-.785 3.459-2.135z", clipRule: "evenodd" })); const ForwardRef = forwardRef(ArrowDownBorderIcon); export default ForwardRef;