@forcir/logo-element 0.1.0 → 0.1.1
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/package.json +1 -1
- package/src/index.d.ts +1 -0
- package/src/react.d.ts +4 -3
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
package/src/react.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* React JSX typings for @forcir/logo-element.
|
|
3
|
-
*
|
|
4
|
-
* the logo elements in React + TypeScript so <forcir-logo /> etc. are valid and typed.
|
|
3
|
+
* Included automatically via the package's main types so <forcir-logo /> etc. are valid in React + TypeScript.
|
|
5
4
|
* Requires @types/react in your project.
|
|
6
5
|
*/
|
|
7
6
|
/// <reference types="react" />
|
|
8
7
|
|
|
9
|
-
import type { ForcirBrandmarkElement
|
|
8
|
+
import type { ForcirBrandmarkElement } from "./forcir-brandmark.js";
|
|
9
|
+
import type { ForcirLogoElement } from "./forcir-logo.js";
|
|
10
|
+
import type { ForcirWordmarkElement } from "./forcir-wordmark.js";
|
|
10
11
|
|
|
11
12
|
declare global {
|
|
12
13
|
namespace JSX {
|