finicon 1.0.0 → 1.0.2
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 +39 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/native/index.d.mts +798 -0
- package/dist/native/index.d.ts +798 -0
- package/dist/native/index.js +1 -0
- package/dist/native/index.mjs +1 -0
- package/package.json +20 -18
package/README.md
CHANGED
|
@@ -4,10 +4,48 @@ The leading icon library for fintech.
|
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- 🎨 Curated financial icons across stock, ticker, trade, fund, currency, asset, account, basic, community, and country
|
|
7
|
+
- 🎨 Curated financial icons across stock, ticker, trade, fund, currency, asset, account, basic, community, and country categories.
|
|
8
8
|
- 🎯 Customizable size, stroke width, and color
|
|
9
9
|
- 📥 Export as SVG, PNG, or copy as SVG/DataURL
|
|
10
10
|
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm install finicon
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pnpm add finicon
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
yarn add finicon
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
bun add finicon
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
### Web
|
|
32
|
+
```tsx
|
|
33
|
+
import { AccountBell1 } from "finicon";
|
|
34
|
+
|
|
35
|
+
export default function App() {
|
|
36
|
+
return <AccountBell1 color="red" width={48} height={48} strokeWidth={2} />;
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### React Native
|
|
41
|
+
```tsx
|
|
42
|
+
import { AccountBell1 } from "finicon/native";
|
|
43
|
+
|
|
44
|
+
export default function App() {
|
|
45
|
+
return <AccountBell1 color="red" width={48} height={48} strokeWidth={2} />;
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
11
49
|
## License
|
|
12
50
|
|
|
13
51
|
MIT
|