UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.04 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 StyledArrowUpFromSquareRegular = ({ 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: "M19.5 7.49533L19.125 7.4876C18.5039 7.4876 18 7.99151 18 8.61354C18 9.2351 18.5039 9.73948 19.125 9.73948H19.5C19.9142 9.73948 20.25 10.0755 20.25 10.4899V20.9993C20.25 21.4138 19.9142 21.7498 19.5 21.7498H4.5C4.08581 21.7498 3.75 21.4137 3.75 20.9993V10.4906C3.75 10.0762 4.08581 9.74017 4.5 9.74017H4.875C5.49609 9.74017 6 9.23626 6 8.61423C6 7.9922 5.49609 7.48829 4.875 7.48829L4.5 7.49533C2.84297 7.49533 1.5 8.83173 1.5 10.4897V20.9991C1.5 22.6547 2.84297 24 4.5 24H19.5C21.157 24 22.5 22.6556 22.5 20.9981V10.4906C22.5 8.83126 21.1547 7.49533 19.5 7.49533ZM7.5 7.11564C7.80328 7.11564 8.10516 6.99311 8.32594 6.75226L10.875 3.98814V14.9944C10.875 15.616 11.3789 16.1203 12 16.1203C12.6211 16.1203 13.125 15.616 13.125 14.9944V3.98814L15.6741 6.75142C15.8953 6.99376 16.1953 7.11095 16.5 7.11095C17.1202 7.11095 17.625 6.60611 17.625 5.98361C17.625 5.71032 17.5262 5.43798 17.3261 5.22142L12.8261 0.341728C12.6141 0.115088 12.3047 0 12 0C11.6953 0 11.3859 0.115088 11.175 0.345244L6.675 5.22493C6.47344 5.4422 6.33281 5.71407 6.33281 5.98595C6.33281 6.61407 6.88594 7.11564 7.5 7.11564Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpFromSquareRegular); const ArrowUpFromSquareRegular = /*#__PURE__*/memo(ForwardRef); export default ArrowUpFromSquareRegular;