const DollarIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="19"
      height="38"
      viewBox="0 0 19 38"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M1.00682 23.6619C0.847489 29.1588 3.47644 31.6285 9.29201 31.7878C15.5059 31.8675 18.2942 29.0792 17.9755 23.7416C17.4975 19.121 13.0363 17.926 9.53101 17.448C5.70707 16.0937 1.64414 15.4564 1.64414 9.87983C1.64414 6.05589 4.19343 3.58627 9.53101 3.66593C14.3109 3.66593 17.2585 5.65757 17.1789 10.3578"
        stroke="currentColor"
        strokeWidth="2"
      />
      <path d="M9.37109 0V37.4427V0Z" fill="currentColor" />
      <path d="M9.37109 0V37.4427" stroke="currentColor" strokeWidth="2" />
    </svg>
  );
};
export { DollarIcon };
