I would not consider asymmetric cipher a block cipher.
Let's do some fun and ask ChatGPT the mathematical definition of a block cipher:
A block cipher is a type of symmetric key cipher that operates on a fixed-size block of plaintext and produces a block of ciphertext of the same size. Mathematically, a block cipher can be defined as a deterministic, invertible function f that takes as input a plaintext block $P$ and a key $K$, and produces a ciphertext block $C$ as output, such that:
$$C = f(P, K)$$
The function $f$ is designed to be reversible, so that the original plaintext block $P$ can be recovered from the ciphertext block $C$ by applying the inverse function $f^{-1}$ using the same key $K$:
$$P = f^{-1}(C, K)$$
The function $f$ is typically implemented using a combination of mathematical operations such as bitwise XOR, modular addition, and substitution using lookup tables. The key $K$ is typically a bit string of a certain length, and it is used to control the transformation applied to the plaintext.
In general, a block cipher can be defined as a tuple $(P, C, K, f)$, where $P$ and $C$ are the sets of possible plaintext and ciphertext blocks, respectively, $K$ is the set of possible keys, and f is the transformation function.
This is rather well generated and seems to comply with the definition given in Wikipedia. Note that the definition presumes in advance that the cipher is symmetric and uses the same key. As such, the whole notion that an asymmetric cipher can be a block cipher falls down.
So why are these sources indicating that an asymmetric cipher is a block cipher? Well, the idea is that the block cipher takes a message $P$ and then generates a ciphertext block $C$ of a specific size. That still breaks the definition of a block cipher, see the first sentence of the ChatGPT answer that we included. It is however similar in the sense that the $P$ has a maximum size and that the size of $C$ is usually predefined.
What asymmetric primitives generally do not do is to create a key stream. Nor do they generally operate on a message of indefinite length. So in that sense they are at least more like a block cipher than a stream cipher.
In the end though, the idea that an asymmetric cipher is a block cipher is a fallacy. It is a piss-poor attempt to assign some of the properties of a block cipher to an asymmetric cipher. And in general, the whole idea that an asymmetric cipher is a block cipher creates more confusion than it is worth.
The problem is exuberated when block cipher modes of operation are considered. These generally operate on the strict definition of a block cipher and they generally do not apply to asymmetric ciphers.
The statement should just read that asymmetric ciphers only operate on messages up to a specific size, and usually generate a ciphertext of a predefined size.
If you want to study asymmetric ciphers further I would suggest to read the PKCS#1 v1.5 specification for encryption on how the message is padded, then enciphered using modular exponentiation with the public key and finally is deliberately encoded as a ciphertext with the same size as the key (i.e. the size of the modulus) in bits.
Oh, had too much fun answering this and forgot about the title. Asymmetric ciphers are not stream ciphers because they do not operate on a stream of plaintext; they generally operate on messages of a predefined size. If they do depends on the definition of the cipher.
The mathematical problems on which they are based, such as the RSA problem do not make them well suited to act as stream ciphers. A stream cipher generally generates a key stream generated from a symmetric key and XOR's this with the plaintext. This is incompatible with the notion that the key used for encryption is public; you'd need the same public key to recreate the key stream and reverse the operation.
That, however, doesn't make them block ciphers either, as established above.