mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
36 lines
975 B
TypeScript
36 lines
975 B
TypeScript
import usage from "./usage";
|
|
import subtitle from "./subtitle";
|
|
import multiple from "./multiple";
|
|
import compact from "./compact";
|
|
import lightVariant from "./light-variant";
|
|
import shadowVariant from "./shadow-variant";
|
|
import splittedVariant from "./splitted-variant";
|
|
import borderedVariant from "./bordered-variant";
|
|
import defaultExpandedKeys from "./default-expanded-keys";
|
|
import disabledKeys from "./disabled-keys";
|
|
import startContent from "./start-content";
|
|
import indicator from "./indicator";
|
|
import indicatorFunction from "./indicator-function";
|
|
import customMotion from "./custom-motion";
|
|
import controlled from "./controlled";
|
|
import customStyles from "./custom-styles";
|
|
|
|
export const accordionContent = {
|
|
usage,
|
|
subtitle,
|
|
multiple,
|
|
compact,
|
|
lightVariant,
|
|
shadowVariant,
|
|
splittedVariant,
|
|
borderedVariant,
|
|
defaultExpandedKeys,
|
|
disabledKeys,
|
|
startContent,
|
|
indicator,
|
|
indicatorFunction,
|
|
customMotion,
|
|
controlled,
|
|
customStyles,
|
|
};
|