:SmallButton

Preview
type SmallButton = {
	Text: string?,
	Callback: ((...any) -> unknown)?
}

Example usage:

:SmallButton({
	Text = "Print",
	Callback = function(self)
		print("Hello world!")
	end
})

Theme colors:

Tag
Affects

ButtonsBg

Background color

Text

Text color

TextFont

Text fontface

TextSize

Text font size

Last updated