@protonradio/proton-ui 0.7.1 → 0.7.2

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.
package/dist/index.d.ts CHANGED
@@ -620,6 +620,14 @@ declare interface ThemeVariables {
620
620
  "--proton-color__secondary": string;
621
621
  }
622
622
 
623
+ export declare const Tombstone: ({ width, height, borderRadius, ...props }: TombstoneProps) => JSX_2.Element;
624
+
625
+ declare interface TombstoneProps {
626
+ width?: string;
627
+ height?: string;
628
+ borderRadius?: string;
629
+ }
630
+
623
631
  export declare function Tooltip({ children, arrow, ...props }: TooltipProps): JSX_2.Element;
624
632
 
625
633
  export declare interface TooltipProps extends Omit<TooltipProps_2, "children"> {