@hybr1d-tech/charizard 2.2.0 → 2.2.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/dist/hybr1d-ui.js +35 -0
- package/dist/hybr1d-ui.umd.cjs +6 -6
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -924,6 +924,18 @@ declare interface HeaderProps {
|
|
|
924
924
|
customStyle?: React.CSSProperties;
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
+
export declare function Helmet({ title, description, canonicalUrl, keywords, ogImage, site, children, }: HelmetProps): JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare interface HelmetProps {
|
|
930
|
+
title?: string;
|
|
931
|
+
description?: string;
|
|
932
|
+
canonicalUrl?: string;
|
|
933
|
+
keywords?: string;
|
|
934
|
+
ogImage?: string;
|
|
935
|
+
site?: string;
|
|
936
|
+
children?: React_2.ReactNode;
|
|
937
|
+
}
|
|
938
|
+
|
|
927
939
|
export declare type HexColor = `#${string}`;
|
|
928
940
|
|
|
929
941
|
/**
|