@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.85 kB
JavaScript
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 StyledArrowUpFromBracketRegular = ({
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: "M20.8792 14.9981C21.5004 14.9981 22.0044 15.5021 22.0044 16.1234V19.4991C22.0044 21.9849 19.9893 24 17.5034 24H5.50094C3.01511 24 1 21.9849 1 19.4991V16.1234C1 15.4998 1.50354 14.9981 2.12524 14.9981C2.74646 14.9981 3.25047 15.5021 3.25047 16.1234V19.4991C3.25047 20.7368 4.26318 21.7495 5.50094 21.7495H17.5034C18.7412 21.7495 19.7539 20.7368 19.7539 19.4991V16.1234C19.7539 15.4998 20.2556 14.9981 20.8792 14.9981ZM10.7333 0.30156L4.35695 6.26062C3.90123 6.72764 3.8806 7.44029 4.30678 7.89038C4.73165 8.3431 5.44374 8.36486 5.89665 7.93872L10.377 3.72514V15.3713C10.377 15.9968 10.8833 16.4984 11.5022 16.4984C12.1211 16.4984 12.6274 15.9944 12.6274 15.4154V3.72514L17.1077 7.94102C17.5605 8.36739 18.2724 8.3454 18.6976 7.89268C18.9006 7.67471 19.0038 7.39809 19.0038 7.12147C19.0038 6.82258 18.8851 6.52369 18.6492 6.30239L12.2729 0.343334C11.8398 -0.107228 11.1646 -0.107228 10.7333 0.30156Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpFromBracketRegular);
const ArrowUpFromBracketRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowUpFromBracketRegular;