@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 380 B
TypeScript
/// <reference types="react" />
import { VarianStyle } from "./index.types";
export type BaseProps = {
isPregTool?: boolean;
variant?: VarianStyle;
hasBodyScroll?: boolean;
};
export type CardWrapperContextType = {
classes: Record<string, string>;
} & BaseProps;
export declare const CardWrapperContext: import("react").Context<CardWrapperContextType>;