UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.67 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledArrowUpFromSquareSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M7.86563 7.48595C8.28258 7.48595 8.69203 7.31204 8.97937 6.99892L10.5 5.33907V15C10.5 15.8297 11.1717 16.501 12 16.501C12.8283 16.501 13.5 15.8297 13.5 15V5.33907L15.0187 6.99798C15.315 7.32043 15.72 7.48454 16.1264 7.48454C16.9533 7.48454 17.625 6.8147 17.625 5.98407C17.625 5.62154 17.4947 5.25704 17.2308 4.96876L13.148 0.464541C12.8203 0.155259 12.4125 0 12 0C11.5875 0 11.1797 0.155259 10.8937 0.466181L6.81094 4.9704C6.54708 5.25878 6.41677 5.62337 6.41677 5.98572C6.33281 6.81564 7.04531 7.48595 7.86563 7.48595ZM21 4.50001H19.5V7.49626L21 7.50001V21H3V7.50001L4.5 7.49615V4.50001H3C1.34625 4.50001 0 5.84532 0 7.50001V21C0 22.6538 1.34625 24 3 24H21C22.6537 24 24 22.6538 24 21V7.50001C24 5.84532 22.6547 4.50001 21 4.50001Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpFromSquareSolid); const ArrowUpFromSquareSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowUpFromSquareSolid;