@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.62 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 StyledToiletSolid = ({
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.25 2.25C22.6625 2.25 23 1.91016 23 1.5V0.75C23 0.339844 22.6625 0 22.25 0H2.75C2.33984 0 2 0.339844 2 0.75V1.5C2 1.91016 2.33984 2.25 2.75 2.25H3.5V9.68906C2.55406 10.3687 2 11.1141 2 12C2 14.8584 3.56 17.4 5.94219 19.05L5.02391 22.0669C4.77313 23.0297 5.49359 24 6.50141 24H18.4967C19.5045 24 20.2255 23.0273 19.932 22.0664L19.0156 19.05C21.4391 17.4 23 14.8172 23 12C23 11.1544 22.4459 10.3664 21.5 9.69094V2.25H22.25ZM6.5 3.375C6.5 3.17016 6.67016 3 6.875 3H9.125C9.33125 3 9.5 3.17016 9.5 3.375V4.125C9.5 4.33031 9.33125 4.5 9.125 4.5H6.875C6.67016 4.5 6.5 4.33031 6.5 4.125V3.375ZM12.5 13.5C8.35625 13.5 5 12.8297 5 12C5 11.1717 8.35766 10.5 12.5 10.5C16.6423 10.5 20 11.1717 20 12C20 12.8297 16.6438 13.5 12.5 13.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledToiletSolid);
const ToiletSolid = /*#__PURE__*/memo(ForwardRef);
export default ToiletSolid;