@inntechcorp/it-design 2.0.11 → 2.0.12

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.
@@ -0,0 +1,5 @@
1
+ import { ChildrenProps } from "types/ChildrenProps";
2
+ declare const H4: ({ children }: {
3
+ children: ChildrenProps;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default H4;
@@ -1,3 +1,4 @@
1
1
  export { default as H1 } from './H1';
2
2
  export { default as H2 } from './H2';
3
3
  export { default as H3 } from './H3';
4
+ export { default as H4 } from './H4';
@@ -2,4 +2,5 @@
2
2
  declare const H1Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
3
3
  declare const H2Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
4
4
  declare const H3Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
5
- export { H1Wrapper, H2Wrapper, H3Wrapper };
5
+ declare const H4Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
6
+ export { H1Wrapper, H2Wrapper, H3Wrapper, H4Wrapper };