@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.97 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 StyledUtensilsRegular = ({
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.625 3.34219C22.625 3.35297 22.625 3.36422 22.625 3.375V22.875C22.625 23.175 22.5078 23.4609 22.2547 23.6297C22.0859 23.8828 21.8 24 21.5 24C21.2 24 20.9141 23.8828 20.7031 23.6297C20.4922 23.4609 20.375 23.175 20.375 22.875V16.5H18.0875C17.6938 16.5 17.3 16.4203 16.9344 16.2703C16.5734 16.1156 16.2406 15.8953 15.9594 15.6141C15.6828 15.3328 15.4625 15 15.2703 14.6344C15.1625 14.2688 15.0875 13.875 15.0875 13.4813L15.125 8.14688C15.0828 6.41719 15.6453 4.725 16.6109 3.29437C17.5813 1.86141 18.9594 0.751875 20.5672 0.1095C20.7453 0.0372281 20.9328 4.6875e-05 21.125 1.40625e-05C21.5234 1.40625e-05 21.9031 0.158063 22.1844 0.439359C22.4656 0.720469 22.625 1.10203 22.625 1.5V3.34219ZM20.375 2.7225C19.4562 3.29672 18.6969 4.09641 18.1297 5.04375C17.6469 5.99531 17.3703 7.06406 17.375 8.14688L17.3375 13.5C17.3375 13.6969 17.4172 13.8891 17.5578 14.0297C17.6984 14.1703 17.8484 14.25 18.0875 14.25H20.3281L20.375 2.7225ZM12.8797 0.329484C13.1328 0.540469 13.25 0.826406 13.25 1.125V8.625C13.2078 9.71719 12.8141 10.7672 12.0406 11.5406C11.2672 12.3141 10.2172 12.7078 9.125 12.75H8.75V22.875C8.75 23.175 8.63281 23.4609 8.37969 23.6297C8.21094 23.8828 7.925 24 7.625 24C7.325 24 7.03906 23.8828 6.82812 23.6297C6.61719 23.4609 6.5 23.175 6.5 22.875V12.75H6.125C5.03141 12.7078 3.98234 12.3141 3.20891 11.5406C2.43547 10.7672 2.0008 9.71719 2 8.625V1.125C2 0.826406 2.11859 0.540469 2.32953 0.329484C2.54047 0.118547 2.82641 0 3.125 0C3.42359 0 3.70953 0.118547 3.92047 0.329484C4.13141 0.540469 4.25 0.826406 4.25 1.125V6.75H6.5V1.2C6.5 0.901406 6.61719 0.615469 6.82812 0.404484C7.03906 0.193547 7.325 0.075 7.625 0.075C7.925 0.075 8.21094 0.193547 8.37969 0.404484C8.63281 0.615469 8.75 0.901406 8.75 1.2V6.75H11V1.125C11 0.826406 11.1172 0.540469 11.3281 0.329484C11.5391 0.118547 11.825 0 12.125 0C12.425 0 12.7109 0.118547 12.8797 0.329484ZM10.2922 10.0734C10.6203 9.79688 10.8453 9.37969 10.925 9H4.325C4.40562 9.37969 4.62875 9.79688 4.95688 10.0734C5.285 10.3453 5.69797 10.4953 6.125 10.5H9.125C9.55156 10.4953 9.96406 10.3453 10.2922 10.0734Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUtensilsRegular);
const UtensilsRegular = /*#__PURE__*/memo(ForwardRef);
export default UtensilsRegular;