feat(spinner): add size for ionic theme (#29699)

Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
This commit is contained in:
Maria Hutt
2024-07-09 12:44:44 -07:00
committed by GitHub
parent 0979172b61
commit 79a3fd00de
25 changed files with 223 additions and 8 deletions

View File

@ -1892,14 +1892,14 @@ export declare interface IonSkeletonText extends Components.IonSkeletonText {}
@ProxyCmp({
defineCustomElementFn: defineIonSpinner,
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'theme']
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme']
})
@Component({
selector: 'ion-spinner',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'theme'],
inputs: ['color', 'duration', 'mode', 'name', 'paused', 'size', 'theme'],
standalone: true
})
export class IonSpinner {