@sproutsocial/racine 8.0.0-beta-dark-mode.6 → 8.0.0-beta-dark-mode.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -250,8 +250,20 @@ export const fontWeights = {
|
|
|
250
250
|
extrabold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_EXTRA_BOLD,
|
|
251
251
|
};
|
|
252
252
|
|
|
253
|
+
export type TypeSpaceLiterals =
|
|
254
|
+
| 0
|
|
255
|
+
| 100
|
|
256
|
+
| 200
|
|
257
|
+
| 300
|
|
258
|
+
| 350
|
|
259
|
+
| 400
|
|
260
|
+
| 450
|
|
261
|
+
| 500
|
|
262
|
+
| 600
|
|
263
|
+
| string;
|
|
264
|
+
|
|
253
265
|
export type TypeSpace = {
|
|
254
|
-
[
|
|
266
|
+
[TypeSpaceLiterals]: string,
|
|
255
267
|
};
|
|
256
268
|
|
|
257
269
|
export const space: TypeSpace = {
|