UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.76 kB
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 StyledCartFlatbedSuitcaseSolid = ({ 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.295 18.8C20.3288 18.9875 20.4037 19.19 20.4037 19.4C20.4037 20.3938 19.5975 21.2 18.6 21.2C17.6063 21.2 16.8038 20.3938 16.8038 19.4C16.8038 19.19 16.845 18.9875 16.8788 18.8H9.49125C9.55875 18.9875 9.6 19.19 9.6 19.4C9.6 20.3938 8.79375 21.2 7.8 21.2C6.80625 21.2 6 20.3938 6 19.4C6 19.19 6.04125 18.9875 6.10875 18.8H3.6C2.94 18.8 2.4 18.26 2.4 17.6V5C2.4 4.6685 2.1315 4.4 1.8 4.4H1.2C0.54 4.4 0 3.86 0 3.2C0 2.54 0.54 2 1.2 2H2.4C3.72 2 4.8 3.08 4.8 4.4V16.4H22.8C23.46 16.4 24 16.94 24 17.6C24 18.26 23.46 18.8 22.8 18.8H20.295ZM16.2 2C17.1938 2 18 2.80625 18 3.8V14H10.8V3.8C10.8 2.80625 11.6063 2 12.6 2H16.2ZM12.6 5.6H16.2V3.8H12.6V5.6ZM9.6 14H8.4C7.74 14 7.2 13.46 7.2 12.8V6.8C7.2 6.14 7.74 5.6 8.4 5.6H9.6V14ZM21.6 6.8V12.8C21.6 13.46 21.06 14 20.4 14H19.2V5.6H20.4C21.06 5.6 21.6 6.14 21.6 6.8Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledCartFlatbedSuitcaseSolid); const CartFlatbedSuitcaseSolid = /*#__PURE__*/memo(ForwardRef); export default CartFlatbedSuitcaseSolid;