templates/universal/buttons/detail/layout.html.twig line 1

Open in your IDE?
  1. <button
  2.         type="button"
  3.         class="flex items-center justify-between px-2 py-2 leading-5 rounded-lg focus:outline-none focus:shadow-outline-gray transition-colors duration-150 text-gray-400 hover:text-gray-800 dark:text-gray-400 dark:hover:text-gray-200"
  4.         title="{{ title }}"
  5.         onClick="{{ onClick }}"
  6. >
  7.     <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
  8.         <path d="M10 12a2 2 0 100-4 2 2 0 000 4z" />
  9.         <path fill-rule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd" />
  10.     </svg>
  11. </button>