@sinco/react 1.1.1 → 1.1.2-rc.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/index.js +3674 -3590
- package/package.json +1 -1
- package/src/lib/Components/PageHeader.d.ts +2 -1
package/package.json
CHANGED
@@ -12,4 +12,5 @@ export declare function PageHeaderWraps({ item, color, variant, }: {
|
|
12
12
|
color: string;
|
13
13
|
variant: Variant;
|
14
14
|
}): JSX.Element;
|
15
|
-
export declare const
|
15
|
+
export declare const PageHeaderComponent: ({ title, subtitle, actions, buttonBack, fixed, }: PageheaderProperties) => JSX.Element;
|
16
|
+
export { PageHeaderComponent as PageHeader };
|