We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed44e3 commit 78e0326Copy full SHA for 78e0326
polaris-tokens/src/token-groups/font.ts
@@ -15,7 +15,17 @@ export type FontSizeScale =
15
| '700'
16
| FontSizeScaleExperimental;
17
18
-export type FontLineHeightScale = '1' | '2' | '3' | '4' | '5' | '6' | '7';
+type FontLineHeightScaleExperimental = Experimental<'075'>;
19
+
20
+export type FontLineHeightScale =
21
+ | '1'
22
+ | '2'
23
+ | '3'
24
+ | '4'
25
+ | '5'
26
+ | '6'
27
+ | '7'
28
+ | FontLineHeightScaleExperimental;
29
30
export type FontWeightAlias = 'regular' | 'medium' | 'semibold' | 'bold';
31
@@ -84,6 +94,9 @@ export const font: {
84
94
'font-weight-bold': {
85
95
value: '700',
86
96
},
97
+ 'font-line-height-075-experimental': {
98
+ value: '12px',
99
+ },
87
100
'font-line-height-1': {
88
101
value: '16px',
89
102
0 commit comments