mainstack-design-system 0.0.9 → 0.1.1
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/README.md +5 -5
- package/build/mainstack-design-system.js +16305 -16305
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -12,19 +12,19 @@ To view the design system documentation, visit this [link](https://mainstack-des
|
|
|
12
12
|
|
|
13
13
|
## Components
|
|
14
14
|
|
|
15
|
-
Components can be used by importing from the `'mainstack-design-system
|
|
15
|
+
Components can be used by importing from the `'mainstack-design-system` directory. For example:
|
|
16
16
|
|
|
17
|
-
`import { Button } from 'mainstack-design-system
|
|
17
|
+
`import { Button } from 'mainstack-design-system';`
|
|
18
18
|
|
|
19
19
|
## Icons
|
|
20
20
|
|
|
21
|
-
Icons are imported from the `'mainstack-design-system
|
|
21
|
+
Icons are imported from the `'mainstack-design-system` directory. For example:
|
|
22
22
|
|
|
23
|
-
`import { ArrowRightIcon } from 'mainstack-design-system
|
|
23
|
+
`import { ArrowRightIcon } from 'mainstack-design-system';`
|
|
24
24
|
|
|
25
25
|
## Colors
|
|
26
26
|
|
|
27
|
-
Colors are imported from the `mainstack-design-system
|
|
27
|
+
Colors are imported from the `mainstack-design-system` directory. For example:
|
|
28
28
|
|
|
29
29
|
```
|
|
30
30
|
import {Colors} from "mainstack-design-system/src";
|