This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/templates/webform-horizontal-rule.html.twig
2018-11-23 12:29:20 +00:00

21 lines
426 B
Twig

{#
/**
* @file
* Default theme implementation of a Webform horizontal_rule element.
*
* Available variables:
* - attributes: HTML attributes for the horizontal_rule element.
*
* @see template_preprocess_webform_horizontal_rule()
*
* @ingroup themeable
*/
#}
{{ attach_library('webform/webform.element.horizontal_rule') }}
{%
set classes = [
'webform-horizontal-rule',
]
%}
<hr{{ attributes.addClass(classes) }} />