@medely/fontawesome-common-types 0.0.1 → 0.1.0
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.txt +2 -2
- package/README.md +3 -3
- package/index.d.ts +4762 -34056
- package/package.json +3 -6
- package/attribution.js +0 -4
package/LICENSE.txt
CHANGED
|
@@ -23,7 +23,7 @@ as SVG and JS file types.
|
|
|
23
23
|
In the Font Awesome Free download, the SIL OFL license applies to all icons
|
|
24
24
|
packaged as web and desktop font files.
|
|
25
25
|
|
|
26
|
-
Copyright (c)
|
|
26
|
+
Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com)
|
|
27
27
|
with Reserved Font Name: "Font Awesome".
|
|
28
28
|
|
|
29
29
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
@@ -123,7 +123,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
|
123
123
|
In the Font Awesome Free download, the MIT license applies to all non-font and
|
|
124
124
|
non-icon files.
|
|
125
125
|
|
|
126
|
-
Copyright
|
|
126
|
+
Copyright 2024 Fonticons, Inc.
|
|
127
127
|
|
|
128
128
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
129
129
|
this software and associated documentation files (the "Software"), to deal in the
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @fortawesome/fontawesome-common-types - SVG with JavaScript
|
|
2
2
|
|
|
3
3
|
> "I came here to chew bubblegum and install Font Awesome 6 - and I'm all out of bubblegum"
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@fortawesome/fontawesome-common-types)
|
|
6
6
|
|
|
7
7
|
## What is this package?
|
|
8
8
|
|
|
@@ -17,7 +17,7 @@ your.ts
|
|
|
17
17
|
```
|
|
18
18
|
import {
|
|
19
19
|
IconName
|
|
20
|
-
} from
|
|
20
|
+
} from `@fortawesome/fontawesome-svg-core`
|
|
21
21
|
|
|
22
22
|
const myIcon: IconName = "..."
|
|
23
23
|
```
|