@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 499 B
TypeScript
import React, { HTMLAttributes, ReactNode } from 'react';
export type OnboardingModalProps = {
children?: ReactNode;
banner?: {
heading?: string;
description?: string;
imgSrc?: string;
imgComponent?: ReactNode;
};
withSimilac?: boolean;
withPortal?: boolean;
} & HTMLAttributes<HTMLDivElement>;
export declare const OnboardingModal: ({ children, withSimilac, banner, withPortal, ...rest }: OnboardingModalProps) => React.JSX.Element;