mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:48:45 +08:00
19 lines
518 B
Handlebars
19 lines
518 B
Handlebars
<label class="wizard-container__label">
|
|
<Input
|
|
@type="checkbox"
|
|
disabled={{this.field.disabled}}
|
|
class="wizard-container__checkbox"
|
|
@checked={{this.field.value}}
|
|
/>
|
|
<span class="wizard-container__checkbox-slider"></span>
|
|
{{#if this.field.icon}}
|
|
{{d-icon this.field.icon}}
|
|
{{/if}}
|
|
<span class="wizard-container__checkbox-label">
|
|
{{this.field.placeholder}}
|
|
</span>
|
|
<PluginOutlet
|
|
@name="below-wizard-checkbox"
|
|
@outletArgs={{hash disabled=this.field.disabled}}
|
|
/>
|
|
</label> |