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 01:55, 29 April 2023 (separating out table so it can be used by multiple modules). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- Module:Standard icons
local p = {}

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

function p.getIconTable()
    return iconTable
end

return p