Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 708 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 708 Bytes

Dropdown Component

Pull request: #20

Usage
import { DropdownComponent } from '@rxdi/ui-kit/dropdown';

@Module({
  components: [DropdownComponent]
})
export class AppModule {}

Inside html

<rx-dropdown
  style="margin-right: 5px;"
  .menuItems=${[
    html`
      <a href="#" class="item">You need to setup your SSL certificate!</a>
    `,
    html`
      <a href="#" class="item">You need to setup your SSL certificate!</a>
    `,
    html`
      <a href="#" class="item">You need to setup your SSL certificate!</a>
    `
  ]}
>
  <div style="margin-right: 10px;margin-top: 3px;">
    ${notification}
  </div>
</rx-dropdown>