mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
17 lines
288 B
Lua
17 lines
288 B
Lua
--- Druid input text component.
|
|
-- Carry on user text input
|
|
-- @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
|