@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.62 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 StyledArrowRightToBracketSolid = ({
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 1.5H16.5C15.6717 1.5 15 2.17172 15 3C15 3.82828 15.6717 4.5 16.5 4.5H19.5C20.3283 4.5 21 5.17172 21 6V18C21 18.8283 20.3283 19.5 19.5 19.5H16.5C15.6717 19.5 15 20.1717 15 21C15 21.8283 15.6717 22.5 16.5 22.5H19.5C21.9853 22.5 24 20.4853 24 18V6C24 3.51469 21.9844 1.5 19.5 1.5ZM16.0594 10.9406L10.0594 4.94063C9.47297 4.35422 8.52375 4.35516 7.93828 4.94063C7.35234 5.52656 7.35234 6.47578 7.93828 7.06172L11.3813 10.5H1.5C0.670781 10.5 0 11.1703 0 12C0 12.8297 0.670781 13.5 1.5 13.5H11.3813L7.94156 16.9397C7.35563 17.5256 7.35563 18.4748 7.94156 19.0608C8.5275 19.6467 9.47672 19.6467 10.0627 19.0608L16.0627 13.0608C16.6453 12.4734 16.6453 11.5266 16.0594 10.9406Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRightToBracketSolid);
const ArrowRightToBracketSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowRightToBracketSolid;