geoview-core
    Preparing search index...

    Variable SkeletonConst

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

    Type Declaration

      • (props: SkeletonProps): Element
      • Create a customized Material UI Skeleton component.

        Parameters

        • props: SkeletonProps

          All valid Material-UI Skeleton props

        Returns Element

        The Skeleton component

        // Basic usage
        <Skeleton />

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

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

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