najwer23morsels 0.4.1 → 0.4.2

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 +33 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,6 +11,30 @@ The npm package najwer23morsels allows you to style its React UI components usin
11
11
  5. Tree shaking
12
12
  6. Your own custom CSS classes
13
13
 
14
+ # Install
15
+
16
+ ```js
17
+ yarn add najwer23morsels --dev
18
+ ```
19
+
20
+ ```js
21
+ npm install najwer23morsels --save-dev
22
+ ```
23
+
24
+ # Example
25
+
26
+ ```typescript
27
+ import { TextBox } from "najwer23morsels/lib/textbox";
28
+
29
+ export const Example = () => {
30
+ return (
31
+ <TextBox color="grey" mobileSize={20} desktopSize={20}>
32
+ Hello!
33
+ </TextBox>
34
+ );
35
+ }
36
+ ```
37
+
14
38
  ### Global css variables available
15
39
 
16
40
  ```CSS
@@ -33,3 +57,12 @@ The npm package najwer23morsels allows you to style its React UI components usin
33
57
  --najwer23morselsSliderArrowsColor: black;
34
58
  }
35
59
  ```
60
+
61
+ # Let's connect!
62
+
63
+ [![dev.to badge](https://img.shields.io/badge/-Portfolio-%239F2B68?style=flat&logo=GoogleChrome&logoColor=white)](https://najwer23.github.io/)
64
+ [![dev.to badge](https://img.shields.io/badge/-Résumé-%23017745?style=flat&logo=AdobeAcrobatReader&logoColor=white)](https://najwer23.github.io/resume/)
65
+ [![twitter badge](https://img.shields.io/badge/-najwer23-%231FA1F1?style=flat&logo=x&logoColor=white)](https://twitter.com/najwer23)
66
+ [![dev.to badge](https://img.shields.io/badge/-najwer23-%230177B5?style=flat&logo=linkedin)](https://www.linkedin.com/in/najwer23)
67
+ [![dev.to badge](https://img.shields.io/badge/-najwer23-%23ffffff?style=flat&logo=Leetcode)](https://leetcode.com/najwer23/)
68
+ [![dev.to badge](https://img.shields.io/badge/-najwer23-%23cb3837?style=flat&logo=Npm)](https://www.npmjs.com/~najwer23)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "najwer23morsels",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./lib/index.mjs",
6
6
  "types": "./lib/index.d.ts",