client/src/components/icons/commodities/rubber.tsx
import type { SVGAttributes } from 'react';
const RubberSVG = (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="M10.905 5.604a.257.257 0 0 1 .335.154.265.265 0 0 1-.153.339l-2.057.78c.003.16.004.323.005.492l1.87-.71a.257.257 0 0 1 .335.154.266.266 0 0 1-.153.34L9.04 7.93l.002.492 1.864-.709a.257.257 0 0 1 .335.155.266.266 0 0 1-.153.339l-2.048.777c0 .241-.002.49-.004.74a.77.77 0 0 1 .855.221c.068.079.12.17.152.268.137.408.5.625 1.078.947.6.335 1.343.748 1.687 1.62l.039.06.3.529h.834c-.236-4.434-.04-9.016-.036-9.09a.267.267 0 0 0-.068-.19.26.26 0 0 0-.181-.087c-.145-.003-4.343-.005-4.467 0a.258.258 0 0 0-.235.172.267.267 0 0 0-.016.102c.001.031.027.817.047 2.042l1.88-.715ZM14.299 17c-.418.215-.88.327-1.349.327-1.634 0-2.977-1.333-3.124-3.1a.801.801 0 0 1 .204-.602.781.781 0 0 1 .575-.256h.586l.086-.15c-.16-.244-.459-.419-.91-.67-.447-.248-.967-.538-1.36-1.02-.08 3.442-.33 7.191-.991 9.004a.267.267 0 0 0 .124.325c.037.02.078.03.12.03h6.644a.258.258 0 0 0 .22-.121.266.266 0 0 0 .017-.253c-.38-.833-.65-2.078-.842-3.514Z" />
<path d="M12.393 13.106a.234.234 0 0 0-.044-.057 2.03 2.03 0 0 0-.723-.952c-.53-.406-1.197-.622-1.68-1.093a1.532 1.532 0 0 1-.397-.621.263.263 0 0 0-.132-.15.257.257 0 0 0-.347.119.267.267 0 0 0-.015.2 2 2 0 0 0 .335.615c.423.534 1.064.806 1.628 1.15l.008.005c.385.237.698.498.839.921l-.373.654h-.887a.26.26 0 0 0-.247.179.265.265 0 0 0-.013.107c.124 1.492 1.244 2.616 2.605 2.616 1.36 0 2.48-1.124 2.604-2.616a.267.267 0 0 0-.155-.263.26.26 0 0 0-.104-.023h-2.45l-.452-.791Zm-.45 1.055.225-.396.226.396a.266.266 0 0 1-.096.36.258.258 0 0 1-.355-.096.266.266 0 0 1 0-.264Zm3.053.264c-.207 1.07-1.046 1.847-2.046 1.847-1 0-1.84-.776-2.046-1.847h.495a.785.785 0 0 0 .77.66.773.773 0 0 0 .675-.396.802.802 0 0 0 .094-.264h2.058Z" />
</svg>
);
};
export default RubberSVG;