Hide Checkout button based on specific customer tag

{% for tag in customer.tags %}

{% if tag contains ‘Sales’ %}
{% assign customerTags = tag %}
{% endif %}
{% endfor %}

{% if customerTags %}

{% endraw %}{{ 'cart.general.checkout' | t }}{% raw %}

{% endif %}

Something like this.