9 lines
319 B
TypeScript
9 lines
319 B
TypeScript
import { ComponentDefaultProps } from '@chakra-ui/theme';
|
|
|
|
declare function withDefaultProps({ defaultProps: { colorScheme, variant, size }, components, }: {
|
|
defaultProps: ComponentDefaultProps;
|
|
components?: string[] | Record<string, any>;
|
|
}): (theme: Record<string, any>) => any;
|
|
|
|
export { withDefaultProps };
|