@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledSuitcaseRegular = ({
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: "M21 4.5H18V3C18 1.34297 16.657 0 15 0H9C7.34531 0 6 1.34297 6 3V4.5H3C1.34297 4.5 0 5.84531 0 7.5V19.5C0 21.157 1.34297 22.5 3 22.5H21C22.657 22.5 24 21.157 24 19.5V7.5C24 5.84531 22.6547 4.5 21 4.5ZM8.25 3C8.25 2.58572 8.58581 2.25 9 2.25H15C15.4142 2.25 15.75 2.58572 15.75 3V4.5H8.25V3ZM17.25 6.75V20.25H6.75V6.75H17.25ZM2.25 19.5V7.5C2.25 7.08745 2.58745 6.75 3 6.75H4.5V20.25H3C2.5875 20.25 2.25 19.9125 2.25 19.5ZM21.75 19.5C21.75 19.9125 21.4125 20.25 21 20.25H19.5V6.75H21C21.4125 6.75 21.75 7.08745 21.75 7.5V19.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSuitcaseRegular);
const SuitcaseRegular = /*#__PURE__*/memo(ForwardRef);
export default SuitcaseRegular;