UNPKG

@hhgtech/hhg-components

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