# Panel (next)

Continue to the next step with a button

# Screenshots

next

# Config

next:

	config:

		# UI
		ui:

			# Optional | Type: string | Default: null
			# Button tooltip text
			caption: "Go to next process step"

			# Required | Type: string | Default: null
			# Caption
			tooltip: "Go to next process step"

			# Optional | Type: string | Default: null
			# Button text color
			color: "text-white"

			# Optional | Type: string | Default: null
			# Button background color
			background: "bg-indigo-800"

			# Optional | Type: string | Default: null
			# Icon name to display inside button
			icon: "fa/s/home"

			# Optional | Type: string | Default: null
			# Icon color
			iconColor: "white"

			# Optional | Type: string | Default: before
			# Icon position before or after text
			iconPosition: "before"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34