Vizzuality/landgriffon

View on GitHub
client/src/components/icons/commodities/cocoa.tsx

Summary

Maintainability
A
2 hrs
Test Coverage
import type { SVGAttributes } from 'react';

const CocoaSVG = (props?: SVGAttributes<SVGSVGElement>) => {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="24"
      height="25"
      fill="currentColor"
      viewBox="0 0 24 25"
      {...props}
    >
      <path d="M15.15 7.15c-3.055-.371-6.125 1.136-7.869 3.876-1.742 2.737-1.773 6.105-.091 8.633 3.053.368 6.127-1.14 7.868-3.877 1.744-2.74 1.773-6.108.092-8.633Zm-2.617 9.514a1.483 1.483 0 0 1-1.96.495 1.425 1.425 0 0 1-.212.603 1.483 1.483 0 0 1-2.015.466l-.354-.216a1.42 1.42 0 0 1-.46-1.98c.12-.188.278-.339.458-.452a1.42 1.42 0 0 1-.406-1.942c.169-.266.41-.457.682-.568a1.42 1.42 0 0 1 .076-1.395 1.476 1.476 0 0 1 1.245-.68 1.431 1.431 0 0 1 .22-.85 1.483 1.483 0 0 1 1.959-.498c.024-.209.094-.414.213-.6a1.483 1.483 0 0 1 2.015-.467l.353.216a1.42 1.42 0 0 1 .001 2.43 1.42 1.42 0 0 1 .408 1.945c-.168.264-.41.455-.683.567.213.43.205.956-.075 1.396a1.483 1.483 0 0 1-1.245.68c.019.285-.05.583-.22.85ZM19.1 7.122l-1.417-.867a1.274 1.274 0 0 0-1.731.4l1.417.867a1.275 1.275 0 0 0 1.732-.4Zm-5.28-1.773 1.418.867a1.22 1.22 0 0 0-.395-1.701l-1.418-.867a1.222 1.222 0 0 0 .395 1.7Z" />
      <path d="m13.099 13.857-.708-.433a.635.635 0 0 0-.866.2.61.61 0 0 0 .197.85l.709.433a.638.638 0 0 0 .865-.2.608.608 0 0 0-.197-.85Zm-3.152-.472a.638.638 0 0 0 .865-.2.61.61 0 0 0-.197-.85l-.708-.433a.635.635 0 0 0-.866.2.61.61 0 0 0 .198.85l.708.433Zm2.685-1.505a.61.61 0 0 0 .197.85l.354.217a.638.638 0 0 0 .865-.2.61.61 0 0 0-.197-.85l-.354-.216a.633.633 0 0 0-.865.2Zm.239-1.545.355.217a.638.638 0 0 0 .864-.2.61.61 0 0 0-.197-.85l-.354-.216a.635.635 0 0 0-.865.2.61.61 0 0 0 .197.85Zm-3.406 6.139-.354-.217a.635.635 0 0 0-.865.2.61.61 0 0 0 .197.85l.354.216a.638.638 0 0 0 .865-.2.608.608 0 0 0-.197-.85Zm1.235-5.049.354.217a.638.638 0 0 0 .865-.2.61.61 0 0 0-.197-.85l-.354-.216a.635.635 0 0 0-.866.2.61.61 0 0 0 .198.85Zm.937 3.958-.354-.217a.635.635 0 0 0-.865.2.61.61 0 0 0 .197.85l.354.216a.638.638 0 0 0 .865-.2.608.608 0 0 0-.197-.85Zm-1.932-.455a.61.61 0 0 0-.197-.85l-.354-.216a.635.635 0 0 0-.865.2.61.61 0 0 0 .197.85l.354.216a.64.64 0 0 0 .865-.2Z" />
    </svg>
  );
};

export default CocoaSVG;