geoview-core - v2.2.0
    Preparing search index...

    Variable DividerConst

    Divider: (props: DividerPropsExtend) => Element = DividerUI

    Type Declaration

      • (props: DividerPropsExtend): Element
      • Material-UI Divider component with orientation and growth options.

        Wraps Material-UI's Divider to provide flexible visual separation between content. Supports horizontal/vertical orientation with optional flex-grow behavior for layout spacing. All Material-UI Divider props are supported and passed through directly.

        Parameters

        Returns Element

        Divider component with theme-aware styling

        // Basic usage
        <Divider />

        // Vertical divider
        <Divider orientation="vertical" />

        // Growing divider
        <Divider grow />

        // With custom styling
        <Divider
        sx={{
        borderColor: 'primary.main',
        margin: 2
        }}
        />