Jump to content

Module:Standard icons

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Harej (talk | contribs) at 02:49, 29 April 2023 (label table). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Module:Standard icons
local p = {}

local iconTable = {
    discuss = "Font Awesome 5 solid comment-dots.svg"
}

local labelTable = {
    discuss = "Discuss"
}

function p.getIconTable()
    return iconTable
end

function p.getLabelTable()
    return labelTable
end


return p