UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 393 B
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;