The function extracts and returns all the capital letters from the input string. If there are no capital letters, it returns an empty string.

[CODE]: 
```python
def extract_capital_letters(s: str) -> str:
    return ''.join([c for c in s if c.isupper()])
```