You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Whether to automatically mark the Flow started (i.e. in progress) when the Flow is eligible to be shown.
15
+
* You will need to call `flow.start()` or `step.start()` from the parent component if you set this to `false`. Most components should not need to override this behavior.
16
+
*
17
+
* Defaults to `true`.
18
+
*/
19
+
autoStart?: boolean
20
+
/**
21
+
* Optional component to wrap the child components in, e.g. `as={Dialog}` will render the Flow in a modal Dialog. Defaults to `Box`.
22
+
*/
23
+
as?: React.ElementType
24
+
/**
25
+
* Emotion CSS prop to apply to the component. See [Theming documentation](https://docs.frigade.com/v2/sdk/styling/css-overrides) for more information.
0 commit comments