Usage Example:
<%= rui_dropdown(
text: "Select an option",
color: :primary,
variant: :solid,
size: :md,
shape: :rounded,
width: :md,
placement: :bottom,
trigger: :click,
disabled: false,
icon: "chevron-down",
avatar: "https://ui-avatars.com/api/?name=Example+User&background=3B82F6&color=fff",
items: [
{ text: "Dashboard", value: "1", icon: "house" },
{ text: "Profile", value: "2", icon: "user" },
{ text: "Settings", value: "3", icon: "cog" },
{ text: "Logout", value: "4", color: :danger, icon: "log-out" }
]
) %>