UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

7 lines (6 loc) 241 B
import type { ComponentType, ReactNode } from 'react'; type WithChildrenProps = { children?: ReactNode; }; declare function withChildren<T>(Component: ComponentType<T>): ComponentType<T & WithChildrenProps>; export default withChildren;