@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.7 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 StyledArrowRightFromBracketRegular = ({
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: "M9 21.375C9 21.9984 8.49844 22.5 7.875 22.5H4.5C2.01469 22.5 0 20.4853 0 18V6C0 3.51469 2.01469 1.5 4.5 1.5H7.875C8.49844 1.5 9 2.00344 9 2.625C9 3.24609 8.49844 3.75 7.875 3.75H4.5C3.2625 3.75 2.25 4.7625 2.25 6V18C2.25 19.2375 3.2625 20.25 4.5 20.25H7.875C8.49844 20.25 9 20.7516 9 21.375ZM23.6953 11.2313L17.7375 4.85625C17.3112 4.40212 16.5994 4.38188 16.148 4.80792C15.6953 5.2327 15.6736 5.94464 16.0996 6.39745L20.2687 10.875H8.58281C8.00156 10.875 7.5 11.3813 7.5 12C7.5 12.6187 8.00391 13.125 8.58281 13.125H20.2266L16.0116 17.6044C15.5853 18.057 15.6073 18.7687 16.0599 19.1939C16.3219 19.3969 16.5984 19.5 16.8328 19.5C17.1316 19.5 17.4305 19.3814 17.6517 19.1455L23.6095 12.7705C24.1031 12.3375 24.1031 11.6625 23.6953 11.2313Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRightFromBracketRegular);
const ArrowRightFromBracketRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowRightFromBracketRegular;