Hex Core JS
    Preparing search index...

    Type Alias ColumnProps

    ColumnProps: {
        align?: LayoutAlignItems;
        id?: string;
        justify?: LayoutJustifyContent;
        overflow?: LayoutOverflow;
    } & Partial<GapProps & ClassNameProps & StyleProps & ChildrenProps>

    Type Declaration

    • Optionalalign?: LayoutAlignItems

      Alignment of the children along the horizontal axis.

    • Optionalid?: string

      HTML id of the element.

    • Optionaljustify?: LayoutJustifyContent

      Justification of the children along the vertical axis.

    • Optionaloverflow?: LayoutOverflow

      Tells the component how to handle possible overflow cases:

      • "default": No specific handling for overflow.
      • "wrap": Wrap overflowing children to the next column.
      • "auto": Auto scroll for overflowing children (must have constrained height to matter).
      • "scroll": Scroll for overflowing children (must have constrained height to matter).