react-restyle-components 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/README.md +7 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,18 +13,13 @@ yarn add react-restyle-components
13
13
  ## Usage
14
14
 
15
15
  ```jsx
16
- import * as LibraryComponents from 'react-restyle-components';
17
-
18
- 1. Button
19
- <LibraryComponents.Atoms.Button
20
- size="medium"
21
- type="solid"
22
- onClick={() => {
23
- // action
24
- }}
25
- >
26
- Save
27
- </LibraryComponents.Atoms.Buttons.Button>
16
+ import {
17
+ List,
18
+ Form,
19
+ Buttons,
20
+ Svg,
21
+ Icons
22
+ } from "@/library/components"
28
23
  ```
29
24
 
30
25
  ### Outputs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-restyle-components",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "description": "Easy use restyle components",
6
6
  "types": "lib/index.d.ts",