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

    Variable SkeletonConst

    Skeleton: (props: SkeletonProps) => Element = SkeletonUI

    Type Declaration

      • (props: SkeletonProps): Element
      • Material-UI Skeleton component for loading state placeholders.

        Wraps Material-UI's Skeleton to provide animated placeholder elements while content loads. Supports multiple variants (text, circular, rectangular) and customizable dimensions. All Material-UI Skeleton props are supported and passed through directly.

        Parameters

        • props: SkeletonProps

          Skeleton configuration (see SkeletonProps)

        Returns Element

        Skeleton placeholder element with animation

        // Text skeleton with specific dimensions
        <Skeleton variant="text" width={200} height={20} />

        // Circular skeleton
        <Skeleton variant="circular" width={40} height={40} />

        // Rectangular skeleton with wave animation
        <Skeleton variant="rectangular" width="100%" height={118} animation="wave" />