UNPKG

@ieltsrealtest/ui

Version:

Reusable UI components for IELTS Real Test platform, built with React and TypeScript.

13 lines (12 loc) 276 B
import React from "react"; interface DropdownMenuProps { items: { label: string; path: string; }[]; userName: string; avatar?: string; isDev?: boolean; } declare const DropdownMenu: React.FC<DropdownMenuProps>; export default DropdownMenu;