UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

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