client/src/components/icons/commodities/palm-oil.tsx
import type { SVGAttributes } from 'react';
const PalmOilSVG = (props?: SVGAttributes<SVGSVGElement>) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<path d="M11.713 13.353a3.137 3.137 0 0 1-2.825 1.762 3.15 3.15 0 0 1-3.144-3.144c0-1.503 1.884-4.571 2.992-6.15a.181.181 0 0 1 .137-.077c.06 0 .106.03.137.076a32.77 32.77 0 0 1 1.655 2.628 4.03 4.03 0 0 1 .699-.304 27.214 27.214 0 0 0-1.716-2.75.929.929 0 0 0-.76-.394.95.95 0 0 0-.76.395C7.613 6.139 5 9.936 5 11.986a3.896 3.896 0 0 0 3.888 3.889 3.898 3.898 0 0 0 3.828-3.19c-.335.122-.669.35-1.003.668Z" />
<path d="M7.536 13.46a.374.374 0 0 1-.288-.137 2.14 2.14 0 0 1-.471-1.337c0-.273.091-.653.288-1.154a.37.37 0 0 1 .486-.213.37.37 0 0 1 .213.486c-.213.547-.243.79-.243.881 0 .32.106.623.304.866a.37.37 0 0 1-.289.608Zm9.524-3.63a4.15 4.15 0 0 1 1.442-.304c.198 0 .258-.273.076-.364-1.033-.486-2.202-.517-3.114-.167-.44-.76-1.275-1.352-2.217-1.58-.182-.046-.304.167-.182.319a4.5 4.5 0 0 1 .698 1.048c-1.169-.35-2.733.045-3.781 1.154-.122.137-.016.35.167.32 1.002-.153 1.837-.198 2.475-.062-1.032.334-1.853 1.428-2.02 2.75-.03.182.198.303.32.151.971-1.109 2.08-1.458 3.052-1.184-.926 1.944-1.412 4.784-1.595 6.333H10.65a.256.256 0 0 0-.258.258c0 .152.121.258.258.258h5.346a.256.256 0 0 0 .258-.258.256.256 0 0 0-.258-.258H14.31c-.121-1.488.046-4.131.775-5.923.926.243 1.625 1.184 1.883 2.658.03.182.289.227.365.045.5-1.139.425-2.475-.289-3.341.699.288 1.443.866 2.066 1.534.121.136.349.03.334-.152-.182-1.55-1.215-2.825-2.385-3.235Z" />
</svg>
);
};
export default PalmOilSVG;