Dropdown

Dropdowns are small panels that open on demand. They let users access additional content and actions without cluttering the page.

Drop Menu

Use Combination of Dropdown and List to create a Drop Menu

  • Profile
  • Settings
  • Keyboard shortcuts
  • Company Profile
  • Team
  • TeamInvite colleagues
  • Log out
<NVDropdown Label="Options">
  <NVDropdownActivator>
     <NVButton Icon="dots-vertical" />
  </NVDropdownActivator>
  <ChildContent>
    <NVList Select>
      <NVListItem Stack GutterX="3">
        <NVIcon Small Name="user" />
        <span>Profile</span>
      </NVListItem>
      <NVListItem Stack GutterX="3">
        <NVIcon Small Name="settings" />
        <span>Settings</span>
      </NVListItem>
      <NVListItem Stack GutterX="3">
        <NVIcon Small Name="keyboard" />
        <span>Keyboard shortcuts</span>
      </NVListItem>
      <NVListItem Stack GutterX="3" Divider>
        <NVIcon Small Name="building" />
        <span>Company Profile</span>
      </NVListItem>
      <NVListItem Stack GutterX="3">
        <NVIcon Small Name="users" />
        <span>Team</span>
      </NVListItem>
      <NVListItem Stack GutterX="3">
        <NVIcon Small Name="user-plus" />
        <span>TeamInvite colleagues</span>
      </NVListItem>
      <NVListItem Stack GutterX="3" Divider TextColor="red-500" HoverBackgroundColor="red-500" HoverTextColor="white">
        <NVIcon Small Name="logout" />
        <span>Log out</span>
      </NVListItem>
    </NVList>
  </ChildContent>
</NVDropdown>
On this page