require("strict")
local p =
local getArgs = require('Module:Arguments').getArgslocal format = mw.ustring.format
local function main(args) local style = args.style if style
'small' then return '40px' elseif style
'rdt' then return '17px' else return '24px' endend
function p._size(args) return main(args)end
function p.size(frame) local args = getArgs(frame) return p._size(args);end
return p