# Panel (process_delete)

Delete current process with a button

# Screenshots

process_delete

# Config

process_delete:

	config:

		# UI
		ui:

			# Optional | Type: string | Default: Delete process
			# Button caption
			caption: "Delete process"

			# 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