@omnia/fx 8.0.273-dev → 8.0.274-dev

Sign up to get free protection for your applications and to get access to all the features.
@@ -50,6 +50,7 @@ export declare const cssRules: {
50
50
  fontSize: (fontSize: string | number, important?: boolean) => StylexType;
51
51
  fontWeight: (fontWeight: number) => StylexType;
52
52
  lineHeight: (lineHeight: string) => StylexType;
53
+ letterSpacing: (letterSpacing: string) => StylexType;
53
54
  textDecoration: (textDecoration: string, important?: boolean) => StylexType;
54
55
  background: (background: string, important?: boolean) => StylexType;
55
56
  opacity: (opacity: string | number) => StylexType;
@@ -149,6 +150,12 @@ export declare const cssRules: {
149
150
  "--lineHeight-sm": string;
150
151
  };
151
152
  };
153
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
154
+ class: string;
155
+ style: {
156
+ "--letterSpacing-sm": string;
157
+ };
158
+ };
152
159
  };
153
160
  md: {
154
161
  fontSize: (fontSize: string, important?: boolean) => {
@@ -169,6 +176,12 @@ export declare const cssRules: {
169
176
  "--lineHeight-md": string;
170
177
  };
171
178
  };
179
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
180
+ class: string;
181
+ style: {
182
+ "--letterSpacing-md": string;
183
+ };
184
+ };
172
185
  };
173
186
  lg: {
174
187
  fontSize: (fontSize: string, important?: boolean) => {
@@ -189,6 +202,12 @@ export declare const cssRules: {
189
202
  "--lineHeight-lg": string;
190
203
  };
191
204
  };
205
+ letterSpacing: (letterSpacing: string, important?: boolean) => {
206
+ class: string;
207
+ style: {
208
+ "--letterSpacing-lg": string;
209
+ };
210
+ };
192
211
  };
193
212
  };
194
213
  container: {