summaryrefslogtreecommitdiffstatshomepage
path: root/core/themes/claro/js/checkbox.es6.js
blob: e051de5040c270add3148452e78deeeb62f9ceae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @file
 * Theme override for checkbox.
 */

(Drupal => {
  /**
   * Constructs a checkbox input element.
   *
   * @return {string}
   *   A string representing a DOM fragment.
   */
  Drupal.theme.checkbox = () =>
    '<input type="checkbox" class="form-checkbox form-boolean form-boolean--type-checkbox"/>';
})(Drupal);