import React from 'react' const withDefaults = ( component: React.ComponentType

, defaultProps: DP ): React.ComponentType & Omit> => { type Props = Partial & Omit component.defaultProps = defaultProps as unknown as Partial

return component as unknown as React.ComponentType } export default withDefaults