Rezi
    Preparing search index...

    Type Alias BoxProps

    BoxProps: Readonly<
        {
            border?: | "none"
            | "single"
            | "double"
            | "rounded"
            | "heavy"
            | "dashed"
            | "heavy-dashed";
            borderBottom?: boolean;
            borderLeft?: boolean;
            borderRight?: boolean;
            borderStyle?: TextStyle;
            borderStyleSides?: BoxBorderSideStyles;
            borderTop?: boolean;
            exitTransition?: TransitionSpec;
            gap?: SpacingValue;
            id?: string;
            inheritStyle?: TextStyle;
            key?: string;
            opacity?: number;
            overflow?: Overflow;
            pad?: SpacingValue;
            preset?: BoxPreset;
            scrollbarStyle?: TextStyle;
            scrollbarVariant?: "minimal"
            | "classic"
            | "modern"
            | "dots"
            | "thin";
            scrollX?: number;
            scrollY?: number;
            shadow?: BoxShadow;
            style?: TextStyle;
            theme?: ScopedThemeOverride;
            title?: string;
            titleAlign?: "left" | "center" | "right";
            transition?: TransitionSpec;
        } & SpacingProps & LayoutConstraints,
    >

    Props for box container. border defaults to "single".