ui_suite_daisyui-4.0.x-dev/components/step/step.twig
components/step/step.twig
{% set attributes = attributes.addClass('step') %}
{% if variant %}
{% set attributes = (variant != 'default') ? attributes.addClass('step-' ~ variant) : attributes %}
{% endif %}
{% if empty_data_content %}
{% set attributes = attributes.setAttribute('data-content', '') %}
{% elseif data_content %}
{% set attributes = attributes.setAttribute('data-content', data_content) %}
{% endif %}
<li {{ attributes }}>
{% if text %}
{{ text }}
{% endif %}
</li>
