UNPKG

@discostudioteam/react-code-blocks

Version:

Modified rajinwonderland's modification of Atlaskit's Code Block!

13 lines (10 loc) 305 B
import React from 'react'; const withDefaults = <P, DP>( component: React.ComponentType<P>, defaultProps: DP ) => { type Props = Partial<DP> & Omit<P, keyof DP>; component.defaultProps = defaultProps; return component as React.ComponentType<Props>; }; export default withDefaults;