Blame view

src/Select/Dropdown.html 616 Bytes
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
  <div>
      <div
          className={`ant-select-dropdown"
          ant-select-dropdown--single
          ant-select-dropdown-placement-bottomLeft
          ant-select-dropdown-hidden`}
          style="width: 200px; left: ${left}px; top: ${
      top + height + 2
  }px;"
      >
          <ul
              class="
                  ant-select-dropdown-menu
                  ant-select-dropdown-menu-root
                  ant-select-dropdown-menu-vertical
              "
          >
              <li class="ant-select-dropdown-menu-item">ABC</li>
              <li class="ant-select-dropdown-menu-item">EFG</li>
          </ul>
      </div>
  </div>