mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
628 B
TypeScript
26 lines
628 B
TypeScript
import usage from "./usage";
|
|
import sizes from "./sizes";
|
|
import colors from "./colors";
|
|
import disabled from "./disabled";
|
|
import radius from "./radius";
|
|
import indeterminate from "./indeterminate";
|
|
import lineThrough from "./line-through";
|
|
import customCheckIcon from "./custom-check-icon";
|
|
import controlled from "./controlled";
|
|
import customStyles from "./custom-styles";
|
|
import customImplementation from "./custom-implementation";
|
|
|
|
export const checkboxContent = {
|
|
usage,
|
|
sizes,
|
|
colors,
|
|
disabled,
|
|
radius,
|
|
indeterminate,
|
|
lineThrough,
|
|
customCheckIcon,
|
|
controlled,
|
|
customStyles,
|
|
customImplementation,
|
|
};
|