Skip to content

Commit

Permalink
fix(kit): correct TuiProgressOptions size types (#8071)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlufy authored Jul 10, 2024
1 parent 39694bb commit 9be34d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/kit/components/progress/progress.options.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type {Provider} from '@angular/core';
import {tuiCreateToken, tuiProvideOptions} from '@taiga-ui/cdk/utils/miscellaneous';
import type {TuiSizeL, TuiSizeS} from '@taiga-ui/core/types';
import type {TuiSizeXXL, TuiSizeXXS} from '@taiga-ui/core/types';

export interface TuiProgressOptions {
readonly color: string | null;
readonly size: TuiSizeL | TuiSizeS;
readonly size: TuiSizeXXL | TuiSizeXXS;
}

export const TUI_PROGRESS_DEFAULT_OPTIONS: TuiProgressOptions = {
Expand Down

0 comments on commit 9be34d5

Please sign in to comment.