UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.6 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 StyledArrowUpRightFromSquareSolid = ({ 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: "M18 15C17.1717 15 16.5 15.6717 16.5 16.5V21H3V7.5H7.5C8.32828 7.5 9 6.82875 9 6C9 5.17125 8.32828 4.5 7.5 4.5H3C1.34297 4.5 0 5.84297 0 7.5V21C0 22.6566 1.34297 24 3 24H16.5C18.157 24 19.5 22.6566 19.5 21V16.5C19.5 15.6703 18.8297 15 18 15ZM23.5594 0.439078C23.2875 0.167719 22.9125 0 22.5 0H15C14.1717 0 13.5422 0.67125 13.5422 1.45781C13.5422 2.28609 14.2134 2.91563 15.0417 2.91563H18.9206L8.37656 13.6266C7.79062 14.2125 7.79062 15.1622 8.37656 15.7481C8.9625 16.3359 9.91406 16.3359 10.5 15.75L21 5.11875V9C21 9.82828 21.6717 10.4578 22.4578 10.4578C23.2439 10.4578 24 9.82969 24 9V1.45781C24 1.08563 23.8313 0.710625 23.5594 0.439078Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpRightFromSquareSolid); const ArrowUpRightFromSquareSolid = /*#__PURE__*/memo(ForwardRef); export default ArrowUpRightFromSquareSolid;