Describes props for the Column component.
interface LkColumnProps extends React.HTMLAttributes<HTMLDivElement> {
alignItems?: "start" | "center" | "end" | "stretch";
justifyContent?: "start" | "center" | "end" | "space-between" | "space-around";
gap?: LkSizeUnit | "none";
wrapChildren?: boolean;
defaultChildBehavior?: "auto-grow" | "auto-shrink" | "ignoreFlexRules" | "ignoreIntrinsicSize";
children?: React.ReactNode;
}
Types with similar roles.