import React from 'react';

interface IconProps extends React.SVGProps<SVGSVGElement> {
  size?: number;
  color?: string;
}

const GyeNyame: React.FC<IconProps> = ({ size = 24, color = 'currentColor', ...props }) => (
  <svg
    width={size}
    height={size}
    viewBox="0 0 24 24"
    fill="none"
    stroke={color}
    strokeWidth="2"
    strokeLinecap="round"
    strokeLinejoin="round"
    xmlns="http://www.w3.org/2000/svg"
    {...props}
  >
    <path d="M12 2c-3 0-5 2-5 5s2 5 5 5 5-2 5-5-2-5-5-5z" />
    <path d="M8 8c-2 2-2 6 0 8l4-4 4 4c2-2 2-6 0-8" />
    <path d="M12 12v10" />
    <path d="M9 19h6" />
    <circle cx="12" cy="5" r="1" />
  </svg>
);

export default GyeNyame;

