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 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
+ ![This is an alt text.](https://iconstack-pro-plugin.vercel.app/cover-tech-design-stack-icons.png "Tech Stack Icons Figma Plugin")
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
@@ -0,0 +1,9 @@
1
+ import { FC, CSSProperties } from "react";
2
+ interface StackIconProps {
3
+ name: string;
4
+ className?: string;
5
+ style?: CSSProperties;
6
+ grayscale?: boolean;
7
+ }
8
+ declare const StackIcon: FC<StackIconProps>;
9
+ export default StackIcon;