@symbo.ls/default-config 2.10.276 → 2.10.282
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.
- package/package.json +5 -2
- package/src/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/default-config",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.282",
|
|
4
4
|
"source": "src/index.js",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@symbo.ls/feather-icons": "latest"
|
|
9
|
+
},
|
|
10
|
+
"gitHead": "692a639e7a8c1d298d452e0005afc36636db05fc"
|
|
8
11
|
}
|
package/src/index.js
CHANGED
|
@@ -6,6 +6,8 @@ import { TYPOGRAPHY } from './typography'
|
|
|
6
6
|
import { SPACING } from './spacing'
|
|
7
7
|
import { FONT, FONT_FAMILY } from './font'
|
|
8
8
|
|
|
9
|
+
import FEATHER_ICONS from '@symbo.ls/feather-icons'
|
|
10
|
+
|
|
9
11
|
export const DEFAULT_CONFIG = {
|
|
10
12
|
version: '0.0.1',
|
|
11
13
|
COLOR,
|
|
@@ -16,7 +18,7 @@ export const DEFAULT_CONFIG = {
|
|
|
16
18
|
FONT,
|
|
17
19
|
FONT_FAMILY,
|
|
18
20
|
TIMING: {},
|
|
19
|
-
ICONS:
|
|
21
|
+
ICONS: FEATHER_ICONS,
|
|
20
22
|
MEDIA: {},
|
|
21
23
|
DEVICES: {},
|
|
22
24
|
CASES: {},
|