@jedd-icons/react 0.0.2 → 0.0.3

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 ADDED
@@ -0,0 +1,33 @@
1
+ # @jedd-icons/react
2
+
3
+ Sharp, squared SVG icons as tree-shakeable React components.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @jedd-icons/react
9
+ # or
10
+ pnpm add @jedd-icons/react
11
+ # or
12
+ yarn add @jedd-icons/react
13
+ ```
14
+
15
+ > Requires React 17, 18, or 19 (declared as a peer dependency).
16
+
17
+ ## Usage
18
+
19
+ ```tsx
20
+ import { ArrowDownLeft } from "@jedd-icons/react";
21
+
22
+ <ArrowDownLeft />;
23
+ ```
24
+
25
+ Filled variants are available from `@jedd-icons/react/fill`.
26
+
27
+ ## Documentation
28
+
29
+ Browse the full icon gallery and docs at [jeddicons.com](https://jeddicons.com) · [jeddicons.com/docs](https://jeddicons.com/docs).
30
+
31
+ ## License
32
+
33
+ [MIT](https://github.com/jedd-labs/jedd-icons/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jedd-icons/react",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Jedd icons for React.",
5
5
  "license": "MIT",
6
6
  "author": "Marcello Novelli",