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