const AddUserIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="29"
      height="22"
      viewBox="0 0 29 22"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path d="M24 9V1" stroke="white" strokeWidth="2" strokeLinecap="round" />
      <path d="M20 5H28" stroke="white" strokeWidth="2" strokeLinecap="round" />
      <ellipse
        cx="9.59207"
        cy="5.14288"
        rx="4.18582"
        ry="4.14288"
        stroke="white"
        strokeWidth="2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M17.962 20.3326C17.962 19.2445 17.7455 18.1671 17.3248 17.1618C16.904 16.1565 16.2874 15.2431 15.51 14.4737C14.7326 13.7043 13.8098 13.094 12.7941 12.6776C11.7784 12.2612 10.6898 12.0469 9.59038 12.0469C8.491 12.0469 7.40239 12.2612 6.3867 12.6776C5.371 13.094 4.44812 13.7043 3.67074 14.4737C2.89337 15.2431 2.27672 16.1565 1.856 17.1618C1.43529 18.1671 1.21875 19.2445 1.21875 20.3326"
        stroke="white"
        strokeWidth="2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};

export { AddUserIcon };
