loupe input

This commit is contained in:
2025-05-23 15:20:44 +02:00
parent 119a6184f9
commit c9dd408193
3 changed files with 32 additions and 7 deletions
@@ -0,0 +1,17 @@
{#
/**
* @file
* Default theme implementation for an 'input' #type form element.
*
* Available variables:
* - attributes: A list of HTML attributes for the input element.
* - children: Optional additional rendered elements.
*
* @see template_preprocess_input()
*
* @ingroup themeable
*/
#}
<div class="input-wrapper">
<input{{ attributes }} />{{ children }}
</div>