Dropdown
A versatile dropdown menu with icon support.
Basic Dropdown
With Custom Trigger
With Icons
Right Aligned
Usage
import { Dropdown } from "@/components/dropdown" import { User, Settings, LogOut } from 'lucide-react' export default function MyComponent() { return ( <Dropdown trigger={<button>User Menu</button>} items={[ { label: "Profile", icon: <User className="h-4 w-4" />, onClick: () => console.log("Profile clicked") }, { label: "Settings", icon: <Settings className="h-4 w-4" />, onClick: () => console.log("Settings clicked") }, { label: "Logout", icon: <LogOut className="h-4 w-4" />, onClick: () => console.log("Logout clicked") }, ]} /> ) }
Props
Name
Type
Default
Description
trigger
ReactNode
Default button
Element that triggers the dropdown when clicked.
items
array
required
Array of item objects with label, onClick, icon, and disabled properties.
align
string
"left"
Alignment of the dropdown: "left" or "right".
className
string
undefined
Additional CSS classes to apply to the dropdown.