geoview-core
    Preparing search index...

    Variable DividerConst

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

    Type Declaration

      • (props: DividerPropsExtend): Element
      • Create a customized Material UI Divider component.

        Parameters

        Returns Element

        The Divider component

        // Basic usage
        <Divider />

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

        // Growing divider
        <Divider grow />

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