mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
34 lines
867 B
TypeScript
34 lines
867 B
TypeScript
import usage from "./usage";
|
|
import dynamic from "./dynamic";
|
|
import disabledKeys from "./disabled-keys";
|
|
import action from "./action";
|
|
import variants from "./variants";
|
|
import singleSelection from "./single-selection";
|
|
import multipleSelection from "./multiple-selection";
|
|
import shortcut from "./shortcut";
|
|
import icons from "./icons";
|
|
import description from "./description";
|
|
import sections from "./sections";
|
|
import customTrigger from "./custom-trigger";
|
|
import backdrop from "./backdrop";
|
|
import customPopoverStyles from "./custom-popover-styles";
|
|
import customItemsStyles from "./custom-items-styles";
|
|
|
|
export const dropdownContent = {
|
|
usage,
|
|
dynamic,
|
|
disabledKeys,
|
|
action,
|
|
variants,
|
|
singleSelection,
|
|
multipleSelection,
|
|
shortcut,
|
|
icons,
|
|
description,
|
|
sections,
|
|
customTrigger,
|
|
backdrop,
|
|
customPopoverStyles,
|
|
customItemsStyles,
|
|
};
|