mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
38 lines
895 B
TypeScript
38 lines
895 B
TypeScript
import usage from "./usage";
|
|
import sizes from "./sizes";
|
|
import radius from "./radius";
|
|
import disabled from "./disabled";
|
|
import bordered from "./bordered";
|
|
import colors from "./colors";
|
|
import fallbacks from "./fallbacks";
|
|
import customFallback from "./custom-fallback";
|
|
import group from "./group";
|
|
import groupDisabled from "./group-disabled";
|
|
import groupMax from "./group-max";
|
|
import groupTotal from "./group-total";
|
|
import groupGrid from "./group-grid";
|
|
import groupCustomCount from "./group-custom-count";
|
|
import custom from "./custom";
|
|
import customImpl from "./custom-impl";
|
|
import groupCustomImpl from "./group-custom-impl";
|
|
|
|
export const avatarContent = {
|
|
usage,
|
|
sizes,
|
|
radius,
|
|
colors,
|
|
disabled,
|
|
bordered,
|
|
fallbacks,
|
|
customFallback,
|
|
group,
|
|
groupMax,
|
|
groupTotal,
|
|
groupGrid,
|
|
groupDisabled,
|
|
groupCustomCount,
|
|
custom,
|
|
customImpl,
|
|
groupCustomImpl,
|
|
};
|