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 03:15, 29 April 2023 (moving out labels). 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 = {
    ["frequent-domain"] = "Font Awesome 5 solid chart-line.svg",
    ["prohibited-domain"] = "Font Awesome 5 solid ban.svg",
    ["new-domain"] = "Font Awesome 5 solid asterisk.svg",
    ["flagged-domain"] = "Font Awesome 5 solid exclamation-circle.svg",
    alert = "Font Awesome 5 solid exclamation-circle.svg",
    discuss = "Font Awesome 5 solid comments.svg",
    info = "Font Awesome 5 solid info-circle.svg",
}

function p.getIconTable()
    return iconTable
end

return p