File

100%
<input type="file" id="upload_input_01" class="o-form__input o-form__input--hidden" required>
<label for="upload_input_01" class="o-form__label o-form__label--file c-button c-button--secondary">
        Upload file
        <span class="required">*</span>    </label>
<input type="file" id="{{ id }}" class="o-form__input o-form__input--hidden" {% if required %} required{% endif %}>
{% if label %}
    <label for="{{ id }}"
           class="o-form__label o-form__label--file c-button c-button--secondary">
        {{ label }}
        {% if required %}<span class="required">*</span>{% endif %}
    </label>
{% endif %}
{
  "label": "Upload file",
  "required": true,
  "additionalClasses": "c-button--secondary",
  "id": "upload_input_01"
}

There are no notes for this item.