@central-icons-react/all 0.0.10 → 0.0.11

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 +3 -1
  2. package/package.json +36 -36
package/README.md CHANGED
@@ -37,7 +37,7 @@ pnpm add @central-icons-react/all
37
37
 
38
38
  ## Usage
39
39
 
40
- You can use icons either by importing specific icons directly or using the generic `CentralIcon` component:
40
+ Icons can be imported individually to keep your bundle size minimal (recommended):
41
41
 
42
42
  ```jsx
43
43
  import { IconHome } from "@central-icons-react/round-filled-radius-0-stroke-1/IconHome";
@@ -47,6 +47,8 @@ function MyComponent() {
47
47
  }
48
48
  ```
49
49
 
50
+ Or you can import from the main entry point (not recommended to be used in production, returns async):
51
+
50
52
  ```jsx
51
53
  import { CentralIcon } from "@central-icons-react/all";
52
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react/all",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "sideEffects": false,
@@ -38,43 +38,43 @@
38
38
  "peerDependencies": {
39
39
  "react": ">=14.0.0 <= 19"
40
40
  },
41
- "dependencies": {
42
- "@central-icons-react/round-filled-radius-0-stroke-1.5": "0.0.8",
43
- "@central-icons-react/round-filled-radius-0-stroke-1": "0.0.8",
44
- "@central-icons-react/round-filled-radius-0-stroke-2": "0.0.8",
45
- "@central-icons-react/round-filled-radius-1-stroke-1.5": "0.0.8",
46
- "@central-icons-react/round-filled-radius-1-stroke-1": "0.0.8",
47
- "@central-icons-react/round-filled-radius-1-stroke-2": "0.0.8",
48
- "@central-icons-react/round-filled-radius-2-stroke-1.5": "0.0.8",
49
- "@central-icons-react/round-filled-radius-2-stroke-1": "0.0.8",
50
- "@central-icons-react/round-filled-radius-2-stroke-2": "0.0.8",
51
- "@central-icons-react/round-filled-radius-3-stroke-1.5": "0.0.8",
52
- "@central-icons-react/round-filled-radius-3-stroke-1": "0.0.8",
53
- "@central-icons-react/round-filled-radius-3-stroke-2": "0.0.8",
54
- "@central-icons-react/round-outlined-radius-0-stroke-1.5": "0.0.8",
55
- "@central-icons-react/round-outlined-radius-0-stroke-1": "0.0.8",
56
- "@central-icons-react/round-outlined-radius-0-stroke-2": "0.0.8",
57
- "@central-icons-react/round-outlined-radius-1-stroke-1.5": "0.0.8",
58
- "@central-icons-react/round-outlined-radius-1-stroke-1": "0.0.8",
59
- "@central-icons-react/round-outlined-radius-1-stroke-2": "0.0.8",
60
- "@central-icons-react/round-outlined-radius-2-stroke-1.5": "0.0.8",
61
- "@central-icons-react/round-outlined-radius-2-stroke-1": "0.0.8",
62
- "@central-icons-react/round-outlined-radius-2-stroke-2": "0.0.8",
63
- "@central-icons-react/round-outlined-radius-3-stroke-1.5": "0.0.8",
64
- "@central-icons-react/round-outlined-radius-3-stroke-1": "0.0.8",
65
- "@central-icons-react/round-outlined-radius-3-stroke-2": "0.0.8",
66
- "@central-icons-react/square-filled-radius-0-stroke-1.5": "0.0.8",
67
- "@central-icons-react/square-filled-radius-0-stroke-1": "0.0.8",
68
- "@central-icons-react/square-filled-radius-0-stroke-2": "0.0.8",
69
- "@central-icons-react/square-outlined-radius-0-stroke-1.5": "0.0.8",
70
- "@central-icons-react/square-outlined-radius-0-stroke-1": "0.0.8",
71
- "@central-icons-react/square-outlined-radius-0-stroke-2": "0.0.8"
72
- },
73
41
  "devDependencies": {
74
42
  "@types/node": "^22",
75
- "@types/react": "^19",
43
+ "@types/react": ">=14.0.0 <= 19",
44
+ "prettier": "^3",
76
45
  "tsup": "^8",
77
- "typescript": "^5",
78
- "prettier": "^3"
46
+ "typescript": "^5"
47
+ },
48
+ "dependencies": {
49
+ "@central-icons-react/round-filled-radius-0-stroke-1": "^0.0.8",
50
+ "@central-icons-react/round-filled-radius-0-stroke-1.5": "^0.0.8",
51
+ "@central-icons-react/round-filled-radius-0-stroke-2": "^0.0.8",
52
+ "@central-icons-react/round-filled-radius-1-stroke-1": "^0.0.8",
53
+ "@central-icons-react/round-filled-radius-1-stroke-1.5": "^0.0.8",
54
+ "@central-icons-react/round-filled-radius-1-stroke-2": "^0.0.8",
55
+ "@central-icons-react/round-filled-radius-2-stroke-1": "^0.0.8",
56
+ "@central-icons-react/round-filled-radius-2-stroke-1.5": "^0.0.8",
57
+ "@central-icons-react/round-filled-radius-2-stroke-2": "^0.0.8",
58
+ "@central-icons-react/round-filled-radius-3-stroke-1": "^0.0.8",
59
+ "@central-icons-react/round-filled-radius-3-stroke-1.5": "^0.0.8",
60
+ "@central-icons-react/round-filled-radius-3-stroke-2": "^0.0.8",
61
+ "@central-icons-react/round-outlined-radius-0-stroke-1": "^0.0.8",
62
+ "@central-icons-react/round-outlined-radius-0-stroke-1.5": "^0.0.8",
63
+ "@central-icons-react/round-outlined-radius-0-stroke-2": "^0.0.8",
64
+ "@central-icons-react/round-outlined-radius-1-stroke-1": "^0.0.8",
65
+ "@central-icons-react/round-outlined-radius-1-stroke-1.5": "^0.0.8",
66
+ "@central-icons-react/round-outlined-radius-1-stroke-2": "^0.0.8",
67
+ "@central-icons-react/round-outlined-radius-2-stroke-1": "^0.0.8",
68
+ "@central-icons-react/round-outlined-radius-2-stroke-1.5": "^0.0.8",
69
+ "@central-icons-react/round-outlined-radius-2-stroke-2": "^0.0.8",
70
+ "@central-icons-react/round-outlined-radius-3-stroke-1": "^0.0.8",
71
+ "@central-icons-react/round-outlined-radius-3-stroke-1.5": "^0.0.8",
72
+ "@central-icons-react/round-outlined-radius-3-stroke-2": "^0.0.8",
73
+ "@central-icons-react/square-filled-radius-0-stroke-1": "^0.0.8",
74
+ "@central-icons-react/square-filled-radius-0-stroke-1.5": "^0.0.8",
75
+ "@central-icons-react/square-filled-radius-0-stroke-2": "^0.0.8",
76
+ "@central-icons-react/square-outlined-radius-0-stroke-1": "^0.0.8",
77
+ "@central-icons-react/square-outlined-radius-0-stroke-1.5": "^0.0.8",
78
+ "@central-icons-react/square-outlined-radius-0-stroke-2": "^0.0.8"
79
79
  }
80
80
  }