@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.19 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 StyledSuitcaseSolid = ({
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: "M0 6.75V20.25C0 21.45 1.05047 22.5 2.25 22.5H4.5V4.5H2.25C1.05047 4.5 0 5.55 0 6.75ZM15.75 0H8.25C7.05 0 6 1.05047 6 2.25V22.5H18V2.25C18 1.05047 16.95 0 15.75 0ZM15.75 4.5H8.25V2.25H15.75V4.5ZM21.75 4.5H19.5V22.5H21.75C22.9495 22.5 24 21.4495 24 20.25V6.75C24 5.55 22.95 4.5 21.75 4.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSuitcaseSolid);
const SuitcaseSolid = /*#__PURE__*/memo(ForwardRef);
export default SuitcaseSolid;