@ukpc-lib/react 0.0.7 → 0.0.8

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,3 @@
1
+ /// <reference types="react" />
2
+ declare function IconDown(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
+ export default IconDown;
@@ -1,7 +1,8 @@
1
- /// <reference types="react" />
2
- type Props = {
3
- children: React.ReactNode;
1
+ import React, { PropsWithChildren } from 'react';
2
+ type OwnProps = {
4
3
  styles?: string[];
5
4
  };
6
- export declare function ShadowDomWrapper({ children, styles }: Props): import("react/jsx-runtime").JSX.Element;
5
+ type ElementProps = React.HTMLProps<HTMLElement>;
6
+ type Props = PropsWithChildren<OwnProps & ElementProps>;
7
+ export declare function ShadowDomWrapper({ children, styles, ...props }: Props): import("react/jsx-runtime").JSX.Element;
7
8
  export {};