mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
556 B
TypeScript
26 lines
556 B
TypeScript
import usage from "./usage";
|
|
import disabled from "./disabled";
|
|
import sizes from "./sizes";
|
|
import colors from "./colors";
|
|
import underline from "./underline";
|
|
import external from "./external";
|
|
import customAnchorIcon from "./custom-anchor-icon";
|
|
import block from "./block";
|
|
import nextjs from "./nextjs";
|
|
import customImpl from "./custom-impl";
|
|
import polymorphic from "./polymorphic";
|
|
|
|
export const linkContent = {
|
|
usage,
|
|
disabled,
|
|
sizes,
|
|
colors,
|
|
underline,
|
|
external,
|
|
customAnchorIcon,
|
|
block,
|
|
nextjs,
|
|
customImpl,
|
|
polymorphic,
|
|
};
|