tech-stack-icons 1.0.1
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 +42 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +5576 -0
- package/package.json +36 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Tech Stack Icons
|
|
2
|
+
|
|
3
|
+
An icon set of the most used frameworks and technologies for web and app development
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install tech-stack-icons
|
|
11
|
+
# or
|
|
12
|
+
pnpm add tech-stack-icons
|
|
13
|
+
# or
|
|
14
|
+
yarn add tech-stack-icons
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import StackIcon from "tech-stack-icons"; // You can also use any another import name
|
|
19
|
+
|
|
20
|
+
<StackIcon name="nextjs" />;
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Component properties
|
|
24
|
+
|
|
25
|
+
| Property | Type | Description |
|
|
26
|
+
| :---------- | :-------------- | :----------- |
|
|
27
|
+
| `name` | `string` | **Required** |
|
|
28
|
+
| `className` | `string` | _optional_ |
|
|
29
|
+
| `style` | `CSSProperties` | _optional_ |
|
|
30
|
+
| `grayscale` | `boolean` | _optional_ |
|
|
31
|
+
|
|
32
|
+
**Do you want to use it in your designs?**
|
|
33
|
+
|
|
34
|
+
Download the [**Figma plugin**](https://www.figma.com/community/plugin/1292847256216210035/iconstack-pro)
|
|
35
|
+
|
|
36
|
+
### ORIGINAL SVG
|
|
37
|
+
|
|
38
|
+
✓ 150+ Icons
|
|
39
|
+
|
|
40
|
+
✓ Light mode
|
|
41
|
+
|
|
42
|
+
✓ Grayscale
|
package/dist/index.d.ts
ADDED