UNPKG

@rocket.chat/onboarding-ui

Version:

Set of components and functions for the onboarding experience on Rocket.Chat

14 lines 533 B
import type { ReactElement, ReactNode } from 'react'; import type { FormPageLayoutStyleProps } from '../Types'; type FormPageLayoutProps = { logo?: ReactNode; title?: ReactNode; subtitle?: ReactNode; description?: ReactNode; styleProps?: FormPageLayoutStyleProps; children: ReactNode; tag?: string; }; declare const FormPageLayoutOnboard: ({ title, subtitle, description, children, }: FormPageLayoutProps) => ReactElement; export default FormPageLayoutOnboard; //# sourceMappingURL=FormPageLayout.d.ts.map