@commercelayer/app-elements 0.0.5 → 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,25 +0,0 @@
1
- export declare type StatusIconProps = {
2
- /**
3
- * CSS classes
4
- */
5
- className?: string;
6
- } & ({
7
- /**
8
- * A different icon will be displayed depending on the status. When status is `progress` we can also pass a `percentage` prop
9
- */
10
- status: 'success' | 'danger' | 'pending';
11
- } | {
12
- /**
13
- * A different icon will be displayed depending on the status. When status is `progress` we can also pass a `percentage` prop
14
- */
15
- status: 'progress';
16
- /**
17
- * Only used when `status` is progress. Accepts number from 0 to 100
18
- */
19
- percentage: number;
20
- });
21
- declare function StatusIcon({ className, ...props }: StatusIconProps): JSX.Element;
22
- declare namespace StatusIcon {
23
- var displayName: string;
24
- }
25
- export { StatusIcon };