@commercelayer/app-elements 0.0.4 → 0.0.6

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.
@@ -1,16 +0,0 @@
1
- export declare type StatusUI = 'success' | 'danger' | 'pending' | 'progress';
2
- export interface StatusIconProps {
3
- /**
4
- * A different icon will be displayed depending on the status. When status is `progress` we can also pass a `percentage` prop
5
- */
6
- status: StatusUI;
7
- /**
8
- * Only used when `status` is progress. Accepts number from 0 to 100
9
- */
10
- percentage?: number;
11
- }
12
- declare function StatusIcon({ status, percentage, ...rest }: StatusIconProps): JSX.Element;
13
- declare namespace StatusIcon {
14
- var displayName: string;
15
- }
16
- export { StatusIcon };