mirror of
https://github.com/Insality/druid
synced 2025-06-27 18:37:45 +02:00
16 lines
259 B
Lua
16 lines
259 B
Lua
--- Druid input text component
|
|
-- @local unimplemented
|
|
-- @module druid.input
|
|
|
|
local component = require("druid.component")
|
|
|
|
local M = component.create("input")
|
|
|
|
|
|
function M.init(self, node, callback, click_node)
|
|
self.style = self:get_style()
|
|
end
|
|
|
|
|
|
return M
|