@bigbinary/neeto-icons 1.9.8 → 1.9.10

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 CHANGED
@@ -20,6 +20,18 @@ Anywhere in your React file
20
20
  <Clock color="#1e1e20" size={24} />
21
21
  ```
22
22
 
23
+ ### Product logos
24
+
25
+ ```javascript
26
+ import { Neeto } from "@bigbinary/neeto-icons/logos";
27
+ ```
28
+
29
+ ### App icons
30
+
31
+ ```javascript
32
+ import { NeetoSocial } from "@bigbinary/neeto-icons/app-icons";
33
+ ```
34
+
23
35
  ### Props
24
36
 
25
37
  | Name | Type | Default | Description |
@@ -28,6 +40,25 @@ Anywhere in your React file
28
40
  | size | string, number | 24 | Value supplied to height and width attributes of SVG element. |
29
41
  | className | string | | Classes supplied to the SVG element. |
30
42
 
43
+ ### Typeface logos
44
+
45
+ ```javascript
46
+ import { Neeto } from "@bigbinary/neeto-icons/typeface-logos";
47
+ ```
48
+
49
+ Anywhere in your React file
50
+
51
+ ```jsx
52
+ <Neeto height={24} width={48} />
53
+ ```
54
+
55
+ | Name | Type | Default | Description |
56
+ | :-------- | :------------- | :----------- | :------------------------------------------------------------ |
57
+ | height | string, number | 20 | Value supplied to height attribute of SVG element. |
58
+ | width | string, number | auto | Value supplied to width attribute of SVG element. |
59
+ | className | string | | Classes supplied to the SVG element. |
60
+
61
+
31
62
  ### How it works
32
63
 
33
64
  - It uses a script (`build/generate.js`) to take all the `.svg` files from the `source` folder and converts them to React components that render the SVG icon.