+
{{ formattedDate }}
@@ -41,7 +52,7 @@
*ngIf="value === undefined"
animation="pulse"
[theme]="{
- height: '1.5rem',
+ height: size === 'large' ? '2.5rem' : '1.5rem',
width: '5rem'
}"
>
diff --git a/libs/ui/src/lib/value/value.component.ts b/libs/ui/src/lib/value/value.component.ts
index 7e7cd2e2c..e203d5615 100644
--- a/libs/ui/src/lib/value/value.component.ts
+++ b/libs/ui/src/lib/value/value.component.ts
@@ -24,7 +24,7 @@ export class ValueComponent implements OnChanges {
@Input() locale = '';
@Input() position = '';
@Input() precision: number | undefined;
- @Input() size = '';
+ @Input() size: 'large' | 'medium' | 'small' = 'small';
@Input() value: number | string = '';
public absoluteValue = 0;