Skip to main content
Props for VerifyMfaInlineFlow component.

See

VerifyMfaInlineFlow

Properties

PropertyTypeDescription
children| ReactNode | (props: | { view: "verify"; Content: ReactNode; } | { view: "content"; Content: null; }) => ReactNodeThe content to display. Can be: - A ReactNode: Used as the protected content (shown after MFA verification) - A render function: Receives { view, Content } for full control over rendering When using a render function: - view is the current view (“verify” or “content”) - Content is the default UI for that view (MFA form for “verify”, null for “content”)
className?stringAdditional class name for the transition container.
animateHeight?booleanWhether to animate the height during transitions. Default true
autoFocus?booleanWhether to auto focus forms. Default true
transition?"fade" | "slide"The type of transition to use between views. - “slide”: Slides content left/right (default) - “fade”: Fades content in/out Default "slide"