UNPKG

@astraicons/react

Version:

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

22 lines 833 B
import * as React from "react"; import { forwardRef } from "react"; const ArrowUpBorderIcon = ({ 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 12.245c.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.86C9.42 7.035 10.658 6.25 12 6.25s2.58.785 3.459 2.135z", clipRule: "evenodd" })); const ForwardRef = forwardRef(ArrowUpBorderIcon); export default ForwardRef;