@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 393 B
TypeScript
import React from 'react';
import { ContainerProps } from '@mantine/core';
export type OnboardingUIProps = {
heading: string;
description: React.ReactNode;
imgSrc?: string;
hiddenLogo?: boolean;
} & ContainerProps;
export declare const OnboardingUI: ({ heading, description, children, className, imgSrc, hiddenLogo, ...rest }: OnboardingUIProps) => React.JSX.Element;