glintly-ui 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -666,6 +666,22 @@ declare interface SearchBarProps {
666
666
 
667
667
  declare type ShadeKey = keyof ColorScale;
668
668
 
669
+ export declare const Skeleton: default_2.FC<SkeletonProps>;
670
+
671
+ declare interface SkeletonProps {
672
+ variant?: SkeletonVariant;
673
+ size?: SkeletonSize;
674
+ width?: string | number;
675
+ height?: string | number;
676
+ lines?: number;
677
+ animated?: boolean;
678
+ className?: string;
679
+ }
680
+
681
+ declare type SkeletonSize = "xs" | "sm" | "md" | "lg" | "xl";
682
+
683
+ declare type SkeletonVariant = "text" | "avatar" | "image" | "rectangular" | "circular";
684
+
669
685
  export declare const SortBar: default_2.FC<SortBarProps>;
670
686
 
671
687
  declare interface SortBarProps {