UNPKG

@nex-ui/utils

Version:

Utility functions for React components.

8 lines (6 loc) 180 B
interface Props { [key: string]: any; } type PropsArg = Props | null | undefined; declare function mergeProps<T extends PropsArg[]>(...args: T): Props; export { mergeProps };