mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
13 lines
355 B
Lua
13 lines
355 B
Lua
-- Textarea field component
|
|
local function textarea(props)
|
|
return {
|
|
type = "Box",
|
|
children = {
|
|
props.label and { type = "Label", props = { text = props.label, htmlFor = props.name } } or nil,
|
|
{ type = "TextArea", props = { name = props.name, rows = props.rows or 4, placeholder = props.placeholder } }
|
|
}
|
|
}
|
|
end
|
|
|
|
return textarea
|