Skip to content

Commit 5928748

Browse files
committed
fix(avatar): default size should be '' not 'md'
1 parent b253ef3 commit 5928748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/coreui-angular/src/lib/avatar/avatar.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class AvatarComponent {
3434
* Size the component small, large, or extra large.
3535
* @default 'md'
3636
*/
37-
readonly size: InputSignal<Omit<Sizes, 'xxl'>> = input<Omit<Sizes, 'xxl'>>('md');
37+
readonly size: InputSignal<Omit<Sizes, 'xxl'>> = input<Omit<Sizes, 'xxl'>>('');
3838

3939
/**
4040
* The alt attribute for the img element alternate text.

0 commit comments

Comments
 (0)