UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.8 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 StyledBathSolid = ({ 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: "M1.5 18C1.5 19.3275 2.08547 20.5087 3 21.3323V23.25C3 23.6625 3.33562 24 3.75 24H5.25C5.6625 24 6 23.6625 6 23.25V22.5422H18V23.25C18 23.6642 18.3358 24 18.75 24H20.25C20.6642 24 21 23.6642 21 23.25V21.3328C21.9145 20.5092 22.5 19.328 22.5 18.0005V16.5H1.5V18ZM23.25 12H4.5V3.62109C4.49859 3.11484 5.20312 2.82328 5.55937 3.18187L6.20625 3.82781C5.79375 5.09063 6.06562 6.30469 6.75937 7.18125C6.46406 7.47656 6.45937 7.95937 6.75 8.25L7.28016 8.78016C7.57303 9.07303 8.04797 9.07303 8.34094 8.78016L13.2816 3.83953C13.5744 3.54666 13.5744 3.07172 13.2816 2.77875L12.7514 2.24859C12.4585 1.95572 11.9836 1.95572 11.6906 2.24859C10.8141 1.55906 9.59531 1.29141 8.32969 1.70672L7.68281 1.06125C7.00781 0.386719 6.075 0 5.12344 0C3.12469 0 1.5 1.62469 1.5 3.62109V12.0023L0.75 12C0.335812 12 0 12.3375 0 12.75V14.25C0 14.6625 0.335812 15 0.75 15H23.25C23.6642 15 24 14.6642 24 14.25V12.75C24 12.3375 23.6625 12 23.25 12Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBathSolid); const BathSolid = /*#__PURE__*/memo(ForwardRef); export default BathSolid;