Files
wdi-dashboard/node_modules/@chakra-ui/theme-utils/dist/theme-extensions/with-default-props.d.ts
2024-08-16 15:06:52 +05:30

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 };