Skip to content

Commit 3c5afb3

Browse files
committed
fix(spinner): add missing token
1 parent 7e1f630 commit 3c5afb3

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

core/src/components/spinner/spinner.interfaces.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ export type IonSpinnerRecipe = {
6060
};
6161
};
6262

63+
dots?: {
64+
stroke?: {
65+
width?: string;
66+
};
67+
};
68+
6369
// Sizes
6470
size?: {
6571
[K in SpinnerSize]?: IonSpinnerSizeDefinition;

core/src/themes/ionic/default.tokens.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,12 @@ export const defaultTheme: DefaultTheme = {
305305
},
306306
},
307307

308+
dots: {
309+
stroke: {
310+
width: 'var(--ion-scaling-0)',
311+
},
312+
},
313+
308314
// Sizes
309315
size: {
310316
xsmall: {

core/src/themes/ios/default.tokens.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,12 @@ export const defaultTheme: DefaultTheme = {
444444
},
445445
},
446446

447+
dots: {
448+
stroke: {
449+
width: 'var(--ion-scaling-0)',
450+
},
451+
},
452+
447453
// Sizes
448454
size: {
449455
xsmall: {

core/src/themes/md/default.tokens.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,12 @@ export const defaultTheme: DefaultTheme = {
441441
},
442442
},
443443

444+
dots: {
445+
stroke: {
446+
width: 'var(--ion-scaling-0)',
447+
},
448+
},
449+
444450
// Sizes
445451
size: {
446452
xsmall: {

0 commit comments

Comments
 (0)