UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.37 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 StyledBathRegular = ({ 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: "M22.875 12.0047H3.75V3.2513C3.75 2.8471 3.99609 2.48396 4.365 2.33161C4.74 2.17927 5.1675 2.2613 5.44875 2.54831L5.59697 2.69653C4.9875 3.96708 5.19844 5.48911 6.25312 6.58599L6.94875 7.28208C6.6705 7.71731 6.7012 8.29271 7.08159 8.67286C7.29844 8.89224 7.58906 9.00005 7.875 9.00005C8.16094 9.00005 8.45063 8.89017 8.67047 8.67047L13.1705 4.17047C13.6099 3.73102 13.6099 3.01922 13.1705 2.57953C12.9566 2.36569 12.6811 2.26228 12.4036 2.26238C12.1875 2.26238 11.9702 2.32491 11.7797 2.44669L11.0859 1.75083C9.98906 0.696611 8.46094 0.488486 7.19062 1.10114L7.12031 1.03177C6.39375 0.306096 5.38125 -0.107248 4.36125 0.0242175C2.67703 0.24183 1.5 1.65052 1.5 3.2513V12.0029L1.125 12.0047C0.503906 12.0047 0 12.5068 0 13.1279C0 13.749 0.503906 14.2538 1.125 14.2538H1.5V18.0019C1.5 19.2732 2.05078 20.4849 3 21.3343V22.8765C3 23.4985 3.50391 24 4.125 24C4.74609 24 5.25 23.4966 5.25 22.8755V22.4244C5.49609 22.4713 5.74781 22.4945 6 22.5004H18C18.252 22.4945 18.5039 22.4713 18.75 22.4244V22.8755C18.75 23.4985 19.2516 24 19.875 24C20.4984 24 21 23.4985 21 22.875V21.3329C21.9492 20.4835 22.5 19.2718 22.5 18.0005V14.2547H22.875C23.4961 14.2547 24 13.7499 24 13.1288C24 12.5077 23.4984 12.0047 22.875 12.0047ZM9.49219 3.34177L10.1545 4.00411L8.50312 5.65317L7.84219 4.99224C7.3875 4.53755 7.3875 3.79692 7.84219 3.34177C8.29688 2.88614 9.0375 2.88521 9.49219 3.34177ZM20.25 18C20.25 19.2418 19.2422 20.2496 18 20.2496H6C4.75781 20.2496 3.75 19.2422 3.75 18V14.2547H20.25V18Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBathRegular); const BathRegular = /*#__PURE__*/memo(ForwardRef); export default BathRegular;