mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
13 lines
323 B
Lua
13 lines
323 B
Lua
-- Email field component
|
|
local function email(props)
|
|
return {
|
|
type = "Box",
|
|
children = {
|
|
{ type = "Label", props = { text = props.label or "Email", htmlFor = props.name } },
|
|
{ type = "Input", props = { name = props.name, type = "email", placeholder = "you@example.com" } }
|
|
}
|
|
}
|
|
end
|
|
|
|
return email
|