@bigbinary/neeto-icons 1.9.9 → 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 +13 -1
- package/package.json +1 -1
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,7 +40,7 @@ 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
|
|
|
31
|
-
### Typeface
|
|
43
|
+
### Typeface logos
|
|
32
44
|
|
|
33
45
|
```javascript
|
|
34
46
|
import { Neeto } from "@bigbinary/neeto-icons/typeface-logos";
|