@cryptofi/core-ui 0.28.0 → 0.30.0
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/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +16 -4
- package/package.json +5 -7
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# InvestiFi Core UI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
InvestiFi's library of React components and UI utilities.
|
|
4
4
|
|
|
5
5
|
## Development
|
|
6
6
|
|
|
@@ -59,7 +59,7 @@ Run the command below to (re)generate React components from SVG files located in
|
|
|
59
59
|
yarn icons:gen
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
When adding a new icon, place the SVG file in the **svg-icons** directory, then regenerate icons and check-in the resulting changes.
|
|
62
|
+
When adding a new icon, place the SVG file in the **svg-icons** directory, then regenerate icons and check-in the resulting changes. When adding new icons, [SVGOMG](https://jakearchibald.github.io/svgomg/) can be used to optimize files and fix issues.
|
|
63
63
|
|
|
64
64
|
Following is an example of using an icon component in application code. Note that icons are named with the prefix `Icon` during generation and can be styled using Chakra style props.
|
|
65
65
|
|