@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.83 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 StyledUtensilsSolid = ({
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: "M11.3947 6.97343C11.54 7.56395 11.5447 8.18258 11.4182 8.77779C11.287 9.3355 11.0198 9.93539 10.6449 10.4134C9.96532 11.1867 9.11704 11.6788 8.09066 11.9132V22.1253C8.09066 22.6221 7.936 23.1002 7.58451 23.4517C7.23301 23.8032 6.75497 24 6.21601 24C5.7614 24 5.2843 23.8032 4.93234 23.4517C4.58084 23.1002 4.34135 22.6221 4.34135 22.1253V11.9132C3.39746 11.7257 2.507 11.2008 1.86681 10.4275C1.48672 9.94945 1.22141 9.39174 1.0914 8.79185C0.961395 8.19196 0.970182 7.57332 1.11708 6.97812L2.53278 0.587882C2.57261 0.407353 2.67806 0.24796 2.82851 0.140308C2.97848 0.032609 3.1636 -0.0157431 3.34732 0.00451724C3.5315 0.0245573 3.70209 0.112329 3.82582 0.250866C3.94955 0.389356 4.01704 0.568667 4.0161 0.754258V7.50302H4.83017L5.63112 0.562574C5.64986 0.409087 5.72391 0.267832 5.84108 0.165335C5.95356 0.0628847 6.10353 0.00627473 6.21601 0.00627473C6.41285 0.00627473 6.56282 0.0628847 6.6753 0.165335C6.79246 0.267832 6.82527 0.409087 6.8862 0.562574L7.68761 7.50302H8.4656V0.754258C8.4656 0.570073 8.57339 0.391887 8.65306 0.253584C8.81709 0.115281 8.98581 0.0266101 9.16859 0.00451724C9.35137 -0.0155791 9.49666 0.0334057 9.68881 0.141995C9.83878 0.250585 9.94189 0.411055 9.98407 0.592569L11.3947 6.97343ZM22.0053 22.1253C22.0053 22.6221 21.8085 23.1002 21.457 23.4517C21.1055 23.8032 20.6274 24 20.1306 24C19.6339 24 19.1558 23.8032 18.8043 23.4517C18.4528 23.1002 18.256 22.6221 18.256 22.1253V16.5014H17.4686C17.075 16.5014 16.6813 16.4217 16.3157 16.2717C15.9548 16.1171 15.6221 15.8968 15.3409 15.6156C15.0644 15.3344 14.8441 15.0016 14.652 14.6361C14.5442 14.2705 14.4692 13.8769 14.4692 13.4832L14.4645 8.14978C14.5067 6.42041 15.0269 4.72853 15.997 3.29817C16.9672 1.86546 18.3403 0.756601 19.9479 0.114016C20.1353 0.0231888 20.4212 -0.0106112 20.6649 0.0156011C20.9086 0.0418042 21.143 0.127185 21.3445 0.264316C21.546 0.401448 21.7147 0.586008 21.8272 0.80253C21.9444 1.01858 21.9631 1.25948 22.0053 1.50412V22.1253Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUtensilsSolid);
const UtensilsSolid = /*#__PURE__*/memo(ForwardRef);
export default UtensilsSolid;