{% if outlined is defined and outlined == true %}
<button data-invalid="false"
id="{% if buttonId is defined and buttonId != '' %}{{ buttonId }}{% else %}button{% endif %}"
type="submit"
{% if number is defined %} data-number="{{ number }}"{% endif %}
{% if isKyivstar is defined and isKyivstar == true %}
data-is-kyivstar="true"
{% else %}
data-is-kyivstar="false"
{% endif %}
{% if disableOnClick is not defined or disableOnClick == true %}onclick="this.form.submit(); this.disabled=true;"{% endif %}
class="js--handleClick drop-shadow-[0_7px_5px_rgba(0,0,0,0.25)] hover:drop-shadow-none w-full text-center py-[6px] block h-[52px] bg-transparent border rounded-[10px] focus:ring-4 focus:ring-blue-300 font-semibold text-[16px] focus:outline-none disabled:drop-shadow-none disabled:!border-[#E2E2E9] disabled:!text-[#909299]"
style="{{ inlineStyles(app.request.get('companyInner'), constant('App\\Constants\\SettingConstants::NOT_FILLED_BUTTON_STYLES')) }}"
>
{% if iconChek is defined %}
<div class="flex flex-row items-center justify-center">
<svg class="w-[16px] min-w-[16px] h-[20px] mr-[20px]" style="fill: {{ companyStyles.linkTextColor }}">
<use href="{{ asset('build/sprite.svg#check') }}"></use>
</svg>
{% if text is defined %}{{ text }}{% endif %}
</div>
{% else %}
{% if text is defined %}{{ text }}{% endif %}
{% endif %}
</button>
{% else %}
<button
data-invalid="false"
{% if number is defined %} data-number="{{ number }}"{% endif %}
{% if isKyivstar is defined and isKyivstar == true %}
data-is-kyivstar="true"
{% else %}
data-is-kyivstar="false"
{% endif %}
onclick="this.form.submit(); this.disabled=true;"
id="{% if buttonId is defined and buttonId != '' %}{{ buttonId }}{% else %}button{% endif %}"
type="{% if isSubmit is defined %}submit{% else %}button{% endif %}"
style="{{ inlineStyles(app.request.get('companyInner'), constant('App\\Constants\\SettingConstants::FILLED_BUTTON_STYLES')) }}"
{% if isDisabled is defined and isDisabled == true %}disabled{% endif %}
class="js--handleClick {% if height is defined %}min-h-[{{ height }}px]{% else %}min-h-[48px]{% endif %} drop-shadow-[0_7px_5px_rgba(0,0,0,0.25)] hover:drop-shadow-none transition ease-in-out duration-150 hover:!opacity-90 disabled:drop-shadow-none disabled:!bg-[#E2E2E9] disabled:!text-[#909299] w-full hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-semibold text-[16px] px-5 py-2.5 focus:outline-none"
>
{% if text is defined %}{{ text }}{% endif %}
</button>
{% endif %}