Blame view

src/Select/Select.html 1.26 KB
3a3ecabe   Imshann   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <div className="ant-select ant-select-enabled" onClick={this.handleOpen.bind(this, $event)}>
      <div className="ant-select-selection ant-select-selection--single">
          <div className="ant-select-selection__rendered">
              <div className="ant-select-selection__placeholder" if="placeholder&&!state.value">{placeholder}</div>
              <div className="ant-select-selection-selected-value" if="state.label">{state.label}</div>
          </div>
          <span
              class="ant-select-arrow"
              unselectable="on"
              style="{'user-select': 'none'}"
          >
              <i class="anticon anticon-down ant-select-arrow-icon">
                  <svg
                      viewBox="64 64 896 896"
                      focusable="false"
                      data-icon="down"
                      width="1em"
                      height="1em"
                      fill="currentColor"
                  >
                      <path
                          d="M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"
                      ></path>
                  </svg>
              </i>
          </span>
      </div>
      <div hidden>{children}</div>
  </div>