symbols-react 1.0.7 → 1.0.8
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/LICENSE +15 -0
- package/README.md +21 -4
- package/package.json +15 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) for Symbols are held by Steven Sarmiento 2024 as part of Lassi (MIT).
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/README.md
CHANGED
|
@@ -19,13 +19,30 @@ yarn add symbols-react
|
|
|
19
19
|
|
|
20
20
|
After installation, you can import and use the icons in your React components:
|
|
21
21
|
```shell
|
|
22
|
-
import {
|
|
22
|
+
import { IconMangoFill, IconAppleLogo } from 'symbols-react';
|
|
23
23
|
|
|
24
24
|
function MyApp() {
|
|
25
25
|
return (
|
|
26
26
|
<div>
|
|
27
|
-
<
|
|
28
|
-
<
|
|
27
|
+
<IconMangoFill fill="black" />
|
|
28
|
+
<IconAppleLogo fill="black" />
|
|
29
|
+
</div>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Props, tailwind, style how you like:
|
|
35
|
+
```shell
|
|
36
|
+
import { IconMangoFill } from 'symbols-react';
|
|
37
|
+
|
|
38
|
+
function MyApp() {
|
|
39
|
+
return (
|
|
40
|
+
<div>
|
|
41
|
+
//Tailwind example
|
|
42
|
+
<IconMangoFill className="fill-black w-[24] h-[24]" />
|
|
43
|
+
|
|
44
|
+
//Props example
|
|
45
|
+
<IconMangoFill fill="black" width="24" height="24" />
|
|
29
46
|
</div>
|
|
30
47
|
);
|
|
31
48
|
}
|
|
@@ -37,4 +54,4 @@ Contributions are welcome! Please check out the [issues](https://github.com/stev
|
|
|
37
54
|
|
|
38
55
|
## License
|
|
39
56
|
|
|
40
|
-
This project is licensed under the ISC License - see the [LICENSE](LICENSE) file for
|
|
57
|
+
This project is licensed under the ISC License - see the [LICENSE](LICENSE) file for more legal bs.
|
package/package.json
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "symbols-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "S̶F̶ symbols for the web",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"icons",
|
|
7
|
+
"react",
|
|
8
|
+
"symbols",
|
|
9
|
+
"ui",
|
|
10
|
+
"sf symbols",
|
|
11
|
+
"web design",
|
|
12
|
+
"icon library",
|
|
13
|
+
"icon",
|
|
14
|
+
"svg",
|
|
15
|
+
"apple",
|
|
16
|
+
"vue",
|
|
17
|
+
"svelte"
|
|
18
|
+
],
|
|
5
19
|
"license": "ISC",
|
|
6
20
|
"homepage": "https://symbols.dev",
|
|
7
21
|
"bugs": {
|