range
Information
- Folder
src/components/elements/range
Files
Schema
Mocks
Template
// src/components/elements/range/range.twig
<input{{ attributes }}
class="Range {{ classes|join(" ") }}"
type="range"
{% if id %}id="{{ id }}"{% endif %}
{% if value is not empty %}value="{{ value }}"{% endif %}
{% if max %} max="{{ max }}"{% endif %}
{% if min %} min="{{ min }}"{% endif %}
{% if steps %} steps="{{ steps }}"{% endif %}
{% if disabled %} disabled{% endif %}
>