Skip to content

Commit

Permalink
test(test): test
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorrea97 committed Nov 13, 2023
1 parent 09f6cd7 commit 13a5fd6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export enum PoLoadiginIconSize {
export enum PoLoadingIconSize {
/** Extra small */
xs = 'xs',
/** Small */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, Input } from '@angular/core';

import { convertToBoolean, uuid } from '../../../utils/util';
import { PoLoadiginIconSize } from './po-loading-icon-size-enum';
import { PoLoadingIconSize } from './po-loading-icon-size-enum';

/**
* @docsPrivate
Expand Down Expand Up @@ -53,7 +53,7 @@ export class PoLoadingIconComponent {
* @default `md`
*/
@Input('p-size') set size(value: string) {
this._size = PoLoadiginIconSize[value] ? PoLoadiginIconSize[value] : PoLoadiginIconSize.md;
this._size = PoLoadingIconSize[value] ? PoLoadingIconSize[value] : PoLoadingIconSize.md;
}

get size(): string {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="po-loading">
<po-loading-icon></po-loading-icon>
<po-loading-icon p-size="lg"></po-loading-icon>
<span class="po-loading-label po-text-ellipsis" *ngIf="text">{{ text }}</span>
</div>

0 comments on commit 13a5fd6

Please sign in to comment.