templates/shared/ui/backButton/backButtonWeb.html.twig line 1

Open in your IDE?
  1. <div class="w-fit">
  2.     <a id="backButton"
  3.        class="text-[#1B2028] items-center text-left cursor-pointer hover:opacity-60 ease-in-out duration-150 text-[18px] font-semibold flex flex-row gap-[16px] w-fit"
  4.        style="{{ inlineStyles(app.request.get('companyInner'), constant('App\\Constants\\SettingConstants::BACK_BUTTON_STYLES')) }}"
  5.     >
  6.         <svg class="w-[36px] h-[36px] p-[10px] border rounded-[50%]" style="fill: {{ companyStyles.buttonColor }}; border-color: {{ companyStyles.buttonColor }}">
  7.             <use href="{{ asset('build/sprite.svg#arr_white') }}"></use>
  8.         </svg>
  9.         <span>{% trans from 'mail' %}Назад{% endtrans %}</span>
  10. </a>
  11. </div>