Files
nomad/ui/app/templates/components/toggle.hbs
2023-08-10 17:27:29 -05:00

17 lines
321 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
{{! template-lint-disable }}
<input
data-test-input
type="checkbox"
checked={{this.isActive}}
disabled={{this.isDisabled}}
class="input"
onchange={{action this.onToggle}}
/>
<span data-test-toggler class="toggler"></span>
{{yield}}