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