You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
415 B
18 lines
415 B
12 months ago
|
{#
|
||
|
/**
|
||
|
* @file
|
||
|
* Theme override for the search form submit button.
|
||
|
*
|
||
|
* Available variables:
|
||
|
* - attributes: A list of HTML attributes for the input element.
|
||
|
* - children: Optional additional rendered elements.
|
||
|
*
|
||
|
* @see template_preprocess_input()
|
||
|
*/
|
||
|
#}
|
||
|
<button{{ attributes }}>
|
||
|
<span class="icon--search"></span>
|
||
|
<span class="visually-hidden">{{ attributes.value }}</span>
|
||
|
</button>
|
||
|
{{ children }}
|