gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
27 lines (24 loc) • 705 B
text/typescript
// Checkbox
export const HTML = `
<div>
<legend class="col-form-label"></legend>
<div class="row"></div>
</div>`.trim();
// Checkbox
export const HTMLCheckbox = `
<div class="form-check">
<input type="checkbox" class="form-check-input" />
<label class="form-check-label"></label>
</div>`.trim();
// Radio
export const HTMLRadio = `
<div class="form-check">
<input type="radio" class="form-check-input" />
<label class="form-check-label"></label>
</div>`.trim();
// Switch
export const HTMLSwitch = `
<div class="form-check form-switch">
<input type="checkbox" class="form-check-input" />
<label class="form-check-label"></label>
</div>`.trim();