type InputText = {
Value: string,
Placeholder: string?,
MultiLine: boolean?,
Label: string?,
Callback: ((string, ...any) -> unknown)?,
Clear: (InputText) -> InputText,
SetValue: (InputText, Value: string) -> InputText,
}
:InputText({
Placeholder = "Enter text here",
Label = "Input text (w/ hint)",
Value = "Hello world!"
})