From 8cc59af68e60b24b798a2f141d68096e8bd8f0b2 Mon Sep 17 00:00:00 2001 From: "Lucas F." Date: Tue, 10 Dec 2024 19:29:04 -0300 Subject: [PATCH] initial --- .neoconf.json | 20 + .stylua.toml | 7 + README.md | 34 + after/ftplugin/lua.lua | 4 + init.lua | 19 + lazy-lock.json | 76 + lua/.editorconfig | 3 + lua/community.lua | 12 + lua/helpers.lua | 163 + lua/lazy_setup.lua | 32 + lua/plugins/astrocore.lua | 89 + lua/plugins/astrolsp.lua | 99 + lua/plugins/astroui.lua | 31 + lua/plugins/dadbod.lua | 10 + lua/plugins/dial.lua | 57 + lua/plugins/django.lua | 8 + lua/plugins/mappings.lua | 133 + lua/plugins/mason.lua | 56 + lua/plugins/neotree.lua | 152 + lua/plugins/none-ls.lua | 24 + lua/plugins/treesitter.lua | 31 + lua/plugins/user.lua | 252 + lua/polish.lua | 18 + lua/snippets/bootstrap.json | 13673 ++++++++ lua/snippets/django-python.json | 512 + lua/snippets/django.json | 231 + lua/snippets/dripicons.json | 1395 + lua/snippets/golang.json | 122 + lua/snippets/hero_outline.json | 1457 + lua/snippets/hero_solid.json | 1457 + lua/snippets/material.json | 52131 ++++++++++++++++++++++++++++++ lua/snippets/md.json | 20 + lua/snippets/package.json | 55 + lua/snippets/python.json | 13 + lua/snippets/sql.json | 25 + neovim.yml | 6 + selene.toml | 8 + 37 files changed, 72435 insertions(+) create mode 100644 .neoconf.json create mode 100644 .stylua.toml create mode 100644 README.md create mode 100644 after/ftplugin/lua.lua create mode 100644 init.lua create mode 100644 lazy-lock.json create mode 100644 lua/.editorconfig create mode 100644 lua/community.lua create mode 100644 lua/helpers.lua create mode 100644 lua/lazy_setup.lua create mode 100644 lua/plugins/astrocore.lua create mode 100644 lua/plugins/astrolsp.lua create mode 100644 lua/plugins/astroui.lua create mode 100644 lua/plugins/dadbod.lua create mode 100644 lua/plugins/dial.lua create mode 100644 lua/plugins/django.lua create mode 100644 lua/plugins/mappings.lua create mode 100644 lua/plugins/mason.lua create mode 100644 lua/plugins/neotree.lua create mode 100644 lua/plugins/none-ls.lua create mode 100644 lua/plugins/treesitter.lua create mode 100644 lua/plugins/user.lua create mode 100644 lua/polish.lua create mode 100644 lua/snippets/bootstrap.json create mode 100755 lua/snippets/django-python.json create mode 100755 lua/snippets/django.json create mode 100644 lua/snippets/dripicons.json create mode 100644 lua/snippets/golang.json create mode 100644 lua/snippets/hero_outline.json create mode 100644 lua/snippets/hero_solid.json create mode 100644 lua/snippets/material.json create mode 100644 lua/snippets/md.json create mode 100755 lua/snippets/package.json create mode 100644 lua/snippets/python.json create mode 100644 lua/snippets/sql.json create mode 100644 neovim.yml create mode 100644 selene.toml diff --git a/.neoconf.json b/.neoconf.json new file mode 100644 index 0000000..2d7a81f --- /dev/null +++ b/.neoconf.json @@ -0,0 +1,20 @@ +{ + "neodev": { + "library": { + "enabled": true, + "plugins": true + } + }, + "neoconf": { + "plugins": { + "lua_ls": { + "enabled": true + } + } + }, + "lspconfig": { + "lua_ls": { + "Lua.format.enable": false + } + } +} diff --git a/.stylua.toml b/.stylua.toml new file mode 100644 index 0000000..bfcffff --- /dev/null +++ b/.stylua.toml @@ -0,0 +1,7 @@ +column_width = 120 +line_endings = "Unix" +indent_type = "Spaces" +indent_width = 2 +quote_style = "AutoPreferDouble" +call_parentheses = "None" +collapse_simple_statement = "Always" diff --git a/README.md b/README.md new file mode 100644 index 0000000..754773f --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# AstroNvim Template + +**NOTE:** This is for AstroNvim v4+ + +A template for getting started with [AstroNvim](https://github.com/AstroNvim/AstroNvim) + +## 🛠️ Installation + +#### Make a backup of your current nvim and shared folder + +```shell +mv ~/.config/nvim ~/.config/nvim.bak +mv ~/.local/share/nvim ~/.local/share/nvim.bak +mv ~/.local/state/nvim ~/.local/state/nvim.bak +mv ~/.cache/nvim ~/.cache/nvim.bak +``` + +#### Create a new user repository from this template + +Press the "Use this template" button above to create a new repository to store your user configuration. + +You can also just clone this repository directly if you do not want to track your user configuration in GitHub. + +#### Clone the repository + +```shell +git clone https://git.lucasf.dev/public/kurunvim.git ~/.config/nvim +``` + +#### Start Neovim + +```shell +nvim +``` diff --git a/after/ftplugin/lua.lua b/after/ftplugin/lua.lua new file mode 100644 index 0000000..7181352 --- /dev/null +++ b/after/ftplugin/lua.lua @@ -0,0 +1,4 @@ +local set = vim.opt_local + +set.shiftwidth = 2 + diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..2ce1cdd --- /dev/null +++ b/init.lua @@ -0,0 +1,19 @@ +-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution +-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk. +local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim" +if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then + -- stylua: ignore + vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) +end +vim.opt.rtp:prepend(lazypath) + +-- validate that lazy is available +if not pcall(require, "lazy") then + -- stylua: ignore + vim.api.nvim_echo({ { ("Unable to load lazy from: %s\n"):format(lazypath), "ErrorMsg" }, { "Press any key to exit...", "MoreMsg" } }, true, {}) + vim.fn.getchar() + vim.cmd.quit() +end + +require "lazy_setup" +require "polish" diff --git a/lazy-lock.json b/lazy-lock.json new file mode 100644 index 0000000..dc08c7a --- /dev/null +++ b/lazy-lock.json @@ -0,0 +1,76 @@ +{ + "AstroNvim": { "branch": "main", "commit": "c82ef216d0776b19cd7229fb916c4b30fbe3484c" }, + "Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" }, + "FixCursorHold.nvim": { "branch": "master", "commit": "1900f89dc17c603eec29960f57c00bd9ae696495" }, + "LuaSnip": { "branch": "master", "commit": "03c8e67eb7293c404845b3982db895d59c0d1538" }, + "aerial.nvim": { "branch": "master", "commit": "9c29a1a66eb31384888e413e510ba72496e06770" }, + "alpha-nvim": { "branch": "main", "commit": "de72250e054e5e691b9736ee30db72c65d560771" }, + "astrocore": { "branch": "main", "commit": "0fcaac66d115948605c14eaf45a41d3923eaafeb" }, + "astrolsp": { "branch": "main", "commit": "2f6b0a4059775a1dac011d2944dd41fd4a8fe7a8" }, + "astrotheme": { "branch": "main", "commit": "e612ee356bbf42dc28f181cb966730ed3befb1ab" }, + "astroui": { "branch": "main", "commit": "58c4130bd15c28827eab19dcc20fb9483bf5cad8" }, + "better-escape.nvim": { "branch": "master", "commit": "199dcc2643dec5d8dbdab4ec672cf405224dcb3b" }, + "cloak.nvim": { "branch": "main", "commit": "648aca6d33ec011dc3166e7af3b38820d01a71e4" }, + "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, + "cmp-dap": { "branch": "master", "commit": "ea92773e84c0ad3288c3bc5e452ac91559669087" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, + "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, + "cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" }, + "dial.nvim": { "branch": "master", "commit": "46b4375e84e8eb771129bff6b2b1e47746601ef9" }, + "diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" }, + "django.nvim": { "branch": "master", "commit": "5931cb012f7bcbed7935cb69f70e608acda1ff4b" }, + "dressing.nvim": { "branch": "master", "commit": "43b8f74e0b1e3f41e51f640f8efa3bcd401cea0d" }, + "emmet-vim": { "branch": "master", "commit": "6c511a8d7d2863066f32e25543e2bb99d505172c" }, + "friendly-snippets": { "branch": "main", "commit": "de8fce94985873666bd9712ea3e49ee17aadb1ed" }, + "gitsigns.nvim": { "branch": "main", "commit": "0b04035bb7b3c83e999b9676e2fb46fd0aa9f910" }, + "guess-indent.nvim": { "branch": "main", "commit": "6cd61f7a600bb756e558627cd2e740302c58e32d" }, + "heirline.nvim": { "branch": "master", "commit": "cc359b628266cb9a84b2d71c883f2b99e16473a0" }, + "indent-blankline.nvim": { "branch": "master", "commit": "7871a88056f7144defca9c931e311a3134c5d509" }, + "lazy.nvim": { "branch": "main", "commit": "7c493713bc2cb392706866eeba53aaef6c8e9fc6" }, + "lazydev.nvim": { "branch": "main", "commit": "f59bd14a852ca43db38e3662395354cb2a9b13e0" }, + "lspkind.nvim": { "branch": "master", "commit": "a700f1436d4a938b1a1a93c9962dc796afbaef4d" }, + "luvit-meta": { "branch": "main", "commit": "57d464c4acb5c2e66bd4145060f5dc9e96a7bbb7" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "43894adcf10bb1190c2184bd7c1750e8ea2b3dce" }, + "mason-null-ls.nvim": { "branch": "main", "commit": "2b8433f76598397fcc97318d410e0c4f7a4bea6a" }, + "mason-nvim-dap.nvim": { "branch": "main", "commit": "8b9363d83b5d779813cdd2819b8308651cec2a09" }, + "mason.nvim": { "branch": "main", "commit": "c43eeb5614a09dc17c03a7fb49de2e05de203924" }, + "mini.bufremove": { "branch": "main", "commit": "1ee294a97e091d3cf967974df622c0d887890dc2" }, + "neo-tree.nvim": { "branch": "main", "commit": "a77af2e764c5ed4038d27d1c463fa49cd4794e07" }, + "neoconf.nvim": { "branch": "main", "commit": "24db302fe23c4c07233e4b9d79ebe1dd2d3c975b" }, + "neotest": { "branch": "master", "commit": "6d3d22cdad49999ef774ebe1bc250a4994038964" }, + "neotest-python": { "branch": "master", "commit": "a2861ab3c9a0bf75a56b11835c2bfc8270f5be7e" }, + "none-ls.nvim": { "branch": "main", "commit": "1f2bf17eddfdd45aed254b6922c6c68b933dba9e" }, + "nui.nvim": { "branch": "main", "commit": "a0fd35fcbb4cb479366f1dc5f20145fd718a3733" }, + "nvim-autopairs": { "branch": "master", "commit": "b464658e9b880f463b9f7e6ccddd93fb0013f559" }, + "nvim-cmp": { "branch": "main", "commit": "be7bd4c5f860c79da97af3a26d489af50babfd4b" }, + "nvim-colorizer.lua": { "branch": "master", "commit": "4acf88d31b3a7a1a7f31e9c30bf2b23c6313abdb" }, + "nvim-dap": { "branch": "master", "commit": "cc92b054720a96170eca6bd9bdedd43d2b0a7a8a" }, + "nvim-dap-ui": { "branch": "master", "commit": "ffa89839f97bad360e78428d5c740fdad9a0ff02" }, + "nvim-dap-virtual-text": { "branch": "master", "commit": "76d80c3d171224315b61c006502a1e30c213a9ab" }, + "nvim-lspconfig": { "branch": "master", "commit": "dafd61d6533bd90ecf6e2a3a972298fdddc74d82" }, + "nvim-nio": { "branch": "master", "commit": "a428f309119086dc78dd4b19306d2d67be884eee" }, + "nvim-notify": { "branch": "master", "commit": "fbef5d32be8466dd76544a257d3f3dce20082a07" }, + "nvim-tabletops": { "branch": "master", "commit": "746b7c7812a2c5bfb5c358fe9d54666eb091cb56" }, + "nvim-treesitter": { "branch": "master", "commit": "7930b5f983c37bb07c9af27274334a7adcb3e5af" }, + "nvim-treesitter-textobjects": { "branch": "master", "commit": "ad8f0a472148c3e0ae9851e26a722ee4e29b1595" }, + "nvim-ts-autotag": { "branch": "main", "commit": "e239a560f338be31337e7abc3ee42515daf23f5e" }, + "nvim-ts-context-commentstring": { "branch": "main", "commit": "9c74db656c3d0b1c4392fc89a016b1910539e7c0" }, + "nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" }, + "nvim-web-devicons": { "branch": "master", "commit": "f09be61d05bebcba85bb47be1931322d51b95644" }, + "nvim-window-picker": { "branch": "main", "commit": "41cfaa428577c53552200a404ae9b3a0b5719706" }, + "plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" }, + "promise-async": { "branch": "main", "commit": "38a4575da9497326badd3995e768b4ccf0bb153e" }, + "resession.nvim": { "branch": "master", "commit": "cc819b0489938d03e4f3532a583354f0287c015b" }, + "smart-splits.nvim": { "branch": "master", "commit": "00fba7a0e912a8d82da91a3b6b11d641fa500bd8" }, + "telescope-fzf-native.nvim": { "branch": "main", "commit": "cf48d4dfce44e0b9a2e19a008d6ec6ea6f01a83b" }, + "telescope.nvim": { "branch": "master", "commit": "85922dde3767e01d42a08e750a773effbffaea3e" }, + "todo-comments.nvim": { "branch": "main", "commit": "ae0a2afb47cf7395dc400e5dc4e05274bf4fb9e0" }, + "toggleterm.nvim": { "branch": "main", "commit": "022ff5594acccc8d90d2e46dc43994f7722ebdf7" }, + "trouble.nvim": { "branch": "main", "commit": "46cf952fc115f4c2b98d4e208ed1e2dce08c9bf6" }, + "undotree": { "branch": "master", "commit": "78b5241191852ffa9bb5da5ff2ee033160798c3b" }, + "vim-dadbod": { "branch": "master", "commit": "fe5a55e92b2dded7c404006147ef97fb073d8b1b" }, + "vim-dadbod-ui": { "branch": "master", "commit": "7f89265a84fc003ccfa500fd99b9fea9db2c75c7" }, + "vim-illuminate": { "branch": "master", "commit": "5eeb7951fc630682c322e88a9bbdae5c224ff0aa" }, + "vim-test": { "branch": "master", "commit": "8872ec0f788af934386b2aef0cd28a5c2b923146" }, + "which-key.nvim": { "branch": "main", "commit": "9b365a6428a9633e3eeb34dbef1b791511c54f70" } +} diff --git a/lua/.editorconfig b/lua/.editorconfig new file mode 100644 index 0000000..9a6cc75 --- /dev/null +++ b/lua/.editorconfig @@ -0,0 +1,3 @@ +[*.lua] +indent_style = space +indent_size = 2 diff --git a/lua/community.lua b/lua/community.lua new file mode 100644 index 0000000..c842899 --- /dev/null +++ b/lua/community.lua @@ -0,0 +1,12 @@ +if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE + +-- AstroCommunity: import any community modules here +-- We import this file in `lazy_setup.lua` before the `plugins/` folder. +-- This guarantees that the specs are processed before any user plugins. + +---@type LazySpec +return { + "AstroNvim/astrocommunity", + { import = "astrocommunity.pack.lua" }, + -- import/override with your plugins folder +} diff --git a/lua/helpers.lua b/lua/helpers.lua new file mode 100644 index 0000000..c6d301f --- /dev/null +++ b/lua/helpers.lua @@ -0,0 +1,163 @@ +local tele_status_ok, _ = pcall(require, "telescope") +if not tele_status_ok then return end + +local plen_status_ok, _ = pcall(require, "plenary") +if not plen_status_ok then return end + +local term_status_ok, _ = pcall(require, "toggleterm") +if not term_status_ok then return end + +local M = {} +M.terminals = {} + +local utils = require "telescope.utils" +local pickers = require "telescope.pickers" +local finders = require "telescope.finders" +local make_entry = require "telescope.make_entry" +local conf = require("telescope.config").values +local Path = require "plenary.path" +local toggleterm = require "toggleterm" +local terms = require "toggleterm.terminal" + +local function GetBaseDir(filePath) + local sep = Path.path.sep + if filePath:sub(1, #sep) == sep then + return "" + else + return filePath:sub(1, string.find(filePath, sep)) + end +end + +local function file_exists(name) + local f = io.open(name, "r") + if f ~= nil then + io.close(f) + return true + else + return false + end +end + +function GetBaseName(filePath) + if filePath:sub(-1) == Path.path.sep then filePath = filePath:sub(1, -2) end + local pos = string.find(filePath, Path.path.sep) + while pos ~= nil do + filePath = string.sub(filePath, pos + 1) + pos = string.find(filePath, Path.path.sep) + end + return filePath +end + +local function buf_in_cwd(bufname, cwd) + if cwd:sub(-1) ~= Path.path.sep then cwd = cwd .. Path.path.sep end + local bufname_prefix = bufname:sub(1, #cwd) + return bufname_prefix == cwd +end + +M.oldfiles = function(opts) + local current_buffer = vim.api.nvim_get_current_buf() + local current_file = vim.api.nvim_buf_get_name(current_buffer) + local results = {} + + for _, buffer in ipairs(vim.split(vim.fn.execute ":buffers! t", "\n")) do + local match = tonumber(string.match(buffer, "%s*(%d+)")) + local open_by_lsp = string.match(buffer, "line 0$") + if match and not open_by_lsp then + local file = vim.api.nvim_buf_get_name(match) + if vim.loop.fs_stat(file) and match ~= current_buffer then table.insert(results, file) end + end + end + + for _, file in ipairs(vim.v.oldfiles) do + local file_stat = vim.loop.fs_stat(file) + if file_stat and file_stat.type == "file" and not vim.tbl_contains(results, file) and file ~= current_file then + if GetBaseName(file) ~= ".env" then table.insert(results, file) end + end + end + + local cwd = vim.loop.cwd() + cwd = cwd .. utils.get_separator() + results = vim.tbl_filter(function(file) return buf_in_cwd(file, cwd) end, results) + + pickers + .new(opts, { + prompt_title = "Oldfiles from " .. GetBaseName(cwd), + finder = finders.new_table { + results = results, + entry_maker = make_entry.gen_from_file(opts), + }, + sorter = conf.file_sorter(opts), + previewer = conf.file_previewer(opts), + }) + :find() +end + +function M.select_terminal() + local terminals = terms.get_all() + if #terminals > 0 then + vim.ui.select(terminals, { + prompt = "Please select a terminal to open (or focus): ", + format_item = function(term) return term.id .. ": " .. term:_display_name() end, + }, function(term) + if not term then return end + if term:is_open() then + term:focus() + else + term:open() + end + end) + end +end + +function M.toggle_term() + if #terms.get_all() > 0 then terms.get_last_focused():toggle() end +end + +function M.term_horizontal() + local term, _ = terms.get_or_create_term(8, "horizontal", "horizontal") + term:toggle(8, "horizontal") +end + +function M.term_vertical() + local term, _ = terms.get_or_create_term(9, "vertical", "vertical") + term:toggle(80, "vertical") +end + +function M.term_float() + local term, _ = terms.get_or_create_term(11, "float", "float") + term:toggle(0, "float") +end + +function M.openMDfile(executable) + local file = vim.api.nvim_buf_get_name(0) + if executable then M.MDexecutable = executable end + vim.api.nvim_command("terminal flatpak run " .. M.MDexecutable .. " " .. file) +end + +function M.compile_sass() + local term_num = 12 + local term = terms.get(term_num, true) + local dist = "dist/css" + local file_name = "compile_at" + + if file_exists(file_name) then + local file_ = io.open(file_name, "r") + + if file_ ~= nil then + dist = file_:read() + file_:close() + end + end + + local cmd = "node ~/.local/lib/node_modules/sass/sass.js --watch sass:" .. dist .. " -s compressed --no-source-map" + + if term then + term:toggle() + else + toggleterm.exec(cmd, term_num, 100, ".", "float", "compile_sass") + end +end + +return M + +-- vim: ts=4 sts=4 sw=4 expandtab diff --git a/lua/lazy_setup.lua b/lua/lazy_setup.lua new file mode 100644 index 0000000..8a19892 --- /dev/null +++ b/lua/lazy_setup.lua @@ -0,0 +1,32 @@ +require("lazy").setup({ + { + "AstroNvim/AstroNvim", + version = "^4", -- Remove version tracking to elect for nightly AstroNvim + import = "astronvim.plugins", + opts = { -- AstroNvim options must be set here with the `import` key + mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up + maplocalleader = ",", -- This ensures the localleader key must be configured before Lazy is set up + icons_enabled = true, -- Set to false to disable icons (if no Nerd Font is available) + pin_plugins = nil, -- Default will pin plugins when tracking `version` of AstroNvim, set to true/false to override + update_notifications = true, -- Enable/disable notification about running `:Lazy update` twice to update pinned plugins + }, + }, + { import = "community" }, + { import = "plugins" }, +} --[[@as LazySpec]], { + -- Configure any other `lazy.nvim` configuration options here + install = { colorscheme = { "astrotheme", "habamax" } }, + ui = { backdrop = 100 }, + performance = { + rtp = { + -- disable some rtp plugins, add more to your liking + disabled_plugins = { + "gzip", + "netrwPlugin", + "tarPlugin", + "tohtml", + "zipPlugin", + }, + }, + }, +} --[[@as LazyConfig]]) diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua new file mode 100644 index 0000000..d8bcafb --- /dev/null +++ b/lua/plugins/astrocore.lua @@ -0,0 +1,89 @@ +local listchars = function() vim.opt.listchars:append "space:⋅" end + +---@type LazySpec +return { + "AstroNvim/astrocore", + ---@type AstroCoreOpts + opts = { + features = { + large_buf = { size = 1024 * 256, lines = 10000 }, -- set global limits for large files for disabling features like treesitter + autopairs = true, -- enable autopairs at start + cmp = true, -- enable completion at start + diagnostics_mode = 3, -- diagnostic mode on start (0 = off, 1 = no signs/virtual text, 2 = no virtual text, 3 = on) + highlighturl = true, -- highlight URLs at start + notifications = true, -- enable notifications at start + }, + diagnostics = { + virtual_text = true, + underline = true, + }, + options = { + opt = { -- vim.opt. + relativenumber = true, -- sets vim.opt.relativenumber + number = true, -- sets vim.opt.number + spell = false, -- sets vim.opt.spell + signcolumn = "yes", -- sets vim.opt.signcolumn to yes + wrap = false, -- sets vim.opt.wrap + rnu = true, + autoindent = true, + list = true, + timeoutlen = 100, + updatetime = 50, + tabstop = 4, + softtabstop = 4, + shiftwidth = 4, + }, + g = { -- vim.g. + autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled) + cmp_enabled = true, -- enable completion at start + autopairs_enabled = true, -- enable autopairs at start + diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) + icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) + ui_notifications_enabled = true, -- disable notifications when toggling UI elements + }, + listchars(), -- comment this line if you don't want to render dots for empty spaces + }, + mappings = { + -- first key is the mode + n = { + -- navigate buffer tabs + ["]b"] = { function() require("astrocore.buffer").nav(vim.v.count1) end, desc = "Next buffer" }, + ["[b"] = { function() require("astrocore.buffer").nav(-vim.v.count1) end, desc = "Previous buffer" }, + ["bd"] = { + function() + require("astroui.status.heirline").buffer_picker( + function(bufnr) require("astrocore.buffer").close(bufnr) end + ) + end, + desc = "Close buffer from tabline", + }, + + }, + }, + autocmds = { + set_templ_to_format = { + { + event = { "BufEnter" }, + desc = "Set templ filetype to format", + pattern = "*.templ", + callback = function() vim.bo.filetype = "templ" end, + }, + }, + set_html_to_format = { + { + event = { "BufReadPost" }, + desc = "Set html filetype to htmldjango format", + pattern = "*.html", + callback = function() vim.bo.filetype = "htmldjango" end, + }, + }, + highlight_yank = { + { + event = { "TextYankPost" }, + desc = "Highlight on yank", + callback = function() vim.highlight.on_yank() end, + } + }, + }, + }, +} diff --git a/lua/plugins/astrolsp.lua b/lua/plugins/astrolsp.lua new file mode 100644 index 0000000..86997d5 --- /dev/null +++ b/lua/plugins/astrolsp.lua @@ -0,0 +1,99 @@ +---@type LazySpec +return { + "AstroNvim/astrolsp", + ---@type AstroLSPOpts + opts = { + -- Configuration table of features provided by AstroLSP + features = { + autoformat = true, -- enable or disable auto formatting on start + codelens = true, -- enable/disable codelens refresh on start + inlay_hints = false, -- enable/disable inlay hints on start + semantic_tokens = true, -- enable/disable semantic token highlighting + }, + -- customize lsp formatting options + formatting = { + -- control auto formatting on save + format_on_save = { + enabled = true, -- enable or disable format on save globally + allow_filetypes = { -- enable format on save for specified filetypes only + "go", + "python", + "rust", + }, + ignore_filetypes = { -- disable format on save for specified filetypes + -- "python", + "htmldjango", + "html", + }, + }, + disabled = { -- disable formatting capabilities for the listed language servers + -- disable lua_ls formatting capability if you want to use StyLua to format your lua code + -- "lua_ls", + }, + timeout_ms = 10000, -- default format timeout + -- filter = function(client) -- fully override the default formatting function + -- return true + -- end + }, + -- enable servers that you already have installed without mason + servers = { + -- "pyright" + }, + -- customize language server configuration options passed to `lspconfig` + ---@diagnostic disable: missing-fields + config = { + -- clangd = { capabilities = { offsetEncoding = "utf-8" } }, + }, + -- customize how language servers are attached + handlers = { + -- a function without a key is simply the default handler, functions take two parameters, the server name and the configured options table for that server + -- function(server, opts) require("lspconfig")[server].setup(opts) end + + -- the key is the server that is being setup with `lspconfig` + -- rust_analyzer = false, -- setting a handler to false will disable the set up of that language server + -- pyright = function(_, opts) require("lspconfig").pyright.setup(opts) end -- or a custom handler function can be passed + }, + autocmds = { + lsp_document_highlight = { + cond = "textDocument/documentHighlight", + { + event = { "CursorHold", "CursorHoldI" }, + desc = "Document Highlighting", + callback = function() vim.lsp.buf.document_highlight() end, + }, + { + event = { "CursorMoved", "CursorMovedI", "BufLeave" }, + desc = "Document Highlighting Clear", + callback = function() vim.lsp.buf.clear_references() end, + }, + }, + lsp_codelens_refresh = { + cond = "textDocument/codeLens", + { + event = { "InsertLeave", "BufEnter" }, + desc = "Refresh codelens (buffer)", + callback = function(args) + if require("astrolsp").config.features.codelens then vim.lsp.codelens.refresh { bufnr = args.buf } end + end, + }, + }, + }, + mappings = { + n = { + gD = { + function() vim.lsp.buf.declaration() end, + desc = "Declaration of current symbol", + cond = "textDocument/declaration", + }, + ["uY"] = { + function() require("astrolsp.toggles").buffer_semantic_tokens() end, + desc = "Toggle LSP semantic highlight (buffer)", + cond = function(client) + return client.supports_method "textDocument/semanticTokens/full" and vim.lsp.semantic_tokens ~= nil + end, + }, + }, + }, + on_attach = function(client, bufnr) end, + }, +} diff --git a/lua/plugins/astroui.lua b/lua/plugins/astroui.lua new file mode 100644 index 0000000..f173c84 --- /dev/null +++ b/lua/plugins/astroui.lua @@ -0,0 +1,31 @@ +return { + "AstroNvim/astroui", + ---@type AstroUIOpts + opts = { + -- change colorscheme + colorscheme = "astrodark", + -- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes + highlights = { + init = { -- this table overrides highlights in all themes + -- Normal = { bg = "#000000" }, + }, + astrodark = { -- a table of overrides/changes when applying the astrotheme theme + -- Normal = { bg = "#000000" }, + }, + }, + -- Icons can be configured throughout the interface + icons = { + -- configure the loading of the lsp in the status line + LSPLoading1 = "⠋", + LSPLoading2 = "⠙", + LSPLoading3 = "⠹", + LSPLoading4 = "⠸", + LSPLoading5 = "⠼", + LSPLoading6 = "⠴", + LSPLoading7 = "⠦", + LSPLoading8 = "⠧", + LSPLoading9 = "⠇", + LSPLoading10 = "⠏", + }, + }, +} diff --git a/lua/plugins/dadbod.lua b/lua/plugins/dadbod.lua new file mode 100644 index 0000000..4695e12 --- /dev/null +++ b/lua/plugins/dadbod.lua @@ -0,0 +1,10 @@ +return { + "kristijanhusak/vim-dadbod-ui", + dependencies = { + { "tpope/vim-dadbod", lazy = true }, + -- { "kristijanhusak/vim-dadbod-completion", lazy = true }, + }, + init = function() + vim.g.db_ui_use_nerd_fonts = 1 + end, +} diff --git a/lua/plugins/dial.lua b/lua/plugins/dial.lua new file mode 100644 index 0000000..08403e2 --- /dev/null +++ b/lua/plugins/dial.lua @@ -0,0 +1,57 @@ +return { + { + "monaqa/dial.nvim", + config = function() + local augend = require "dial.augend" + require("dial.config").augends:register_group { + default = { + augend.constant.new { + elements = { "and", "or" }, + word = true, + cyclic = true, + }, + augend.constant.new { + elements = { "true", "false" }, + word = true, + cyclic = true, + }, + augend.constant.new { + elements = { "True", "False" }, + word = true, + cyclic = true, + }, + augend.constant.new { + elements = { "&&", "||" }, + word = false, + cyclic = true, + }, + augend.constant.new { + elements = { "&", "|" }, + word = false, + cyclic = true, + }, + augend.constant.new { + elements = { "y/n", "n/y" }, + word = false, + cyclic = true, + }, + augend.constant.new { + elements = { "yes", "no" }, + word = false, + cyclic = true, + }, + augend.constant.new { + elements = { "get", "post", "put", "patch", "delete" }, + word = false, + cyclic = true, + }, + augend.constant.new { + elements = { "GET", "POST", "PUT", "PATCH", "DELETE" }, + word = false, + cyclic = true, + }, + }, + } + end, + }, +} diff --git a/lua/plugins/django.lua b/lua/plugins/django.lua new file mode 100644 index 0000000..650be7d --- /dev/null +++ b/lua/plugins/django.lua @@ -0,0 +1,8 @@ +return { + { + "https://git.lucasf.dev/public/django.nvim", + config = function() + local django = require("django").setup() + end + } +} diff --git a/lua/plugins/mappings.lua b/lua/plugins/mappings.lua new file mode 100644 index 0000000..ab245bf --- /dev/null +++ b/lua/plugins/mappings.lua @@ -0,0 +1,133 @@ +local astro = require "astrocore" + +return { + { + "AstroNvim/astrocore", + ---@type AstroCoreOpts + opts = { + mappings = { + n = { + --essentials + ["d"] = { "_d" }, + [""] = { "" }, + [""] = { "" }, + ["G"] = { "Gzz" }, + [""] = { "ggVG", desc = "select all" }, + ["W"] = { "w", desc = "Save" }, + [""] = { "ciw", desc = "replace word" }, + [""] = { "cc", desc = "replace line" }, + [""] = { "viw", desc = "select word" }, + [""] = { "viwy", desc = "copy word" }, + [""] = { "viwpgvy", desc = "replace word by copied word" }, + [""] = { require("dial.map").inc_normal(), desc = "dial increment" }, + [""] = { ":m .+1==" }, + [""] = { ":m .-2==" }, + [""] = { "op" }, + [""] = { "0v$y", desc = "copy entire row" }, + [""] = { "tabNext", desc = "move to next Tab" }, + [""] = { "tabprevious", desc = "move to previous Tab" }, + [""] = { "cnext", desc = "next quickfix" }, + ["fl"] = { function() require('helpers').oldfiles({}) end, desc = "find oldfiles" }, + --git + ["gy"] = { "DiffviewFileHistory %", desc = "Git file diff history" }, + ["gY"] = { "DiffviewFileHistory", desc = "Git diff history" }, + --tabs + [""] = { function() require("astrocore.buffer").nav(vim.v.count1) end, desc = "Next buffer" }, + [""] = { function() require("astrocore.buffer").nav(-vim.v.count1) end, desc = "Previous buffer" }, + ["bt"] = { "tabclose", desc = "Close tab" }, + --window moviment + [""] = { "h", desc = "Go to left window" }, + [""] = { "l", desc = "Go to right window" }, + [""] = { "j", desc = "Go to lower window" }, + [""] = { "k", desc = "Go to upper window" }, + -- split window + ["|"] = { "v", desc = "Vertical Split" }, + ["\\"] = { "s", desc = "Horizontal Split" }, + --terminals get or create + -- [""] = { "ToggleTerm" }, + [""] = { function() require("helpers").toggle_term() end, desc = "Toggle Terminal" }, + [""] = { function() require("helpers").select_terminal() end, desc = "List All opened terminals" }, + [""] = { + function() require("helpers").term_horizontal() end, + desc = "Horizontal Terminal", + }, + [""] = { + function() require("helpers").term_vertical() end, + desc = "Vertical Terminal", + }, + [""] = { + function() require("helpers").term_float() end, + desc = "Float Terminal", + }, + --buffers + ["b"] = { name = "Buffers" }, + ["bn"] = { "tabnew", desc = "New tab" }, + -- navigate buffer tabs with `H` and `L` + L = { function() require("astrocore.buffer").nav(vim.v.count1) end, desc = "Next buffer" }, + H = { function() require("astrocore.buffer").nav(-vim.v.count1) end, desc = "Previous buffer" }, + ["bD"] = { + function() + require("astroui.status.heirline").buffer_picker( + function(bufnr) require("astrocore.buffer").close(bufnr) end + ) + end, + desc = "Pick to close", + }, + --user extra commands + ["kd"] = {desc =" Database commands"}, + ["kdu"] = {"DBUIToggle",desc ="Toggle ui"}, + ["kda"] = {"DBUIAddConnection",desc ="Add connection"}, + ["k"] = { desc = " User extra commands" }, + ["kr"] = { "lua require('helpers').openMDfile()", desc = "Open md file in glow" }, + ["km"] = { + "lua require('helpers').openMDfile(\"com.github.marktext.marktext\")", + desc = "Open md file in MarkText", + }, + ["kj"] = { "set ft=htmldjango", desc = "set ft=htmldjango" }, + ["kh"] = { "set ft=html", desc = "set ft=html" }, + ["kt"] = { "set ft=templ", desc = "set ft=templ" }, + ["ke"] = {"redir! > error_messages | silent messages | redir END | edit!", desc = "Create error_messages file with vim messages"}, + --terminal compile sass to css + ["ts"] = { + function() require("helpers").compile_sass() end, + desc = "compile sass to css.", + }, + --python test + ["T"] = { desc = "󰌠 Tests" }, + ["Tr"] = { "lua require('neotest').run.run()", desc = "Run test" }, + ["Tf"] = { "lua require('neotest').run.run(vim.fn.expand('%'))", desc = "Run test expand" }, + ["Td"] = { "lua require('neotest').run.run({strategy = 'dap'})", desc = "Run test dap" }, + ["Ts"] = { "lua require('neotest').summary.toggle()", desc = "Toggle test summary" }, + ["Tp"] = { "lua require('neotest').output_panel.toggle()", desc = "Toggle output panel" }, + --trouble + ["xx"] = { function() require("trouble").toggle() end, desc = "Trouble toggle" }, + ["xw"] = { + function() require("trouble").toggle "workspace_diagnostics" end, + desc = "Trouble Workspace", + }, + ["xd"] = { + function() require("trouble").toggle "document_diagnostics" end, + desc = "Trouble Document", + }, + ["xq"] = { function() require("trouble").toggle "quickfix" end, desc = "Trouble Quickfix" }, + ["xl"] = { function() require("trouble").toggle "loclist" end, desc = "Trouble Location" }, + ["gR"] = { function() require("trouble").toggle "lsp_references" end, desc = "Trouble LSP References" }, + }, + t = { + [""] = { "ToggleTerm" }, + }, + v = { + [""] = { "ciw", desc = "select word" }, + ["<"] = { ""] = { ">gv" }, + ["p"] = { "pgvy" }, + ["d"] = { "_d" }, + }, + x = { + [""] = { ":m '>+1gv-gv" }, + [""] = { ":m '<-2gv-gv" }, + }, + }, + }, + }, +} diff --git a/lua/plugins/mason.lua b/lua/plugins/mason.lua new file mode 100644 index 0000000..7941d19 --- /dev/null +++ b/lua/plugins/mason.lua @@ -0,0 +1,56 @@ +---@type LazySpec +return { + { + "neovim/nvim-lspconfig", + config = function() + require("lspconfig").pyright.setup { + settings = { + python = { + analysis = { + autoSearchPaths = true, + diagnosticMode = "workspace", + useLibraryCodeForTypes = true, + typeCheckingMode = "off", + }, + }, + }, + } + end, + }, + { + "williamboman/mason-lspconfig.nvim", + opts = { + ensure_installed = { + "lua_ls", + "pyright", + "html", + "jsonls", + "cssls", + "gopls", + "bashls", + "tailwindcss", + "templ", + }, + }, + }, + { + "jay-babu/mason-null-ls.nvim", + opts = { + ensure_installed = { + "prettier", + "stylua", + "djlint", + "isort", + "black", + }, + }, + }, + { + "jay-babu/mason-nvim-dap.nvim", + opts = { + ensure_installed = { + "python", + }, + }, + }, +} diff --git a/lua/plugins/neotree.lua b/lua/plugins/neotree.lua new file mode 100644 index 0000000..f804e49 --- /dev/null +++ b/lua/plugins/neotree.lua @@ -0,0 +1,152 @@ +local get_icon = require("astroui").get_icon + +return { + "nvim-neo-tree/neo-tree.nvim", + dependencies = { "MunifTanjim/nui.nvim" }, + cmd = "Neotree", + opts = { + auto_clean_after_session_restore = true, + close_if_last_window = false, + source_selector = { + winbar = false, + content_layout = "center", + }, + default_component_configs = { + indent = { + indent_size = 2, + padding = 1, -- extra padding on left hand side + with_markers = true, + indent_marker = "│", + last_indent_marker = "└", + highlight = "NeoTreeIndentMarker", + with_expanders = nil, -- if nil and file nesting is enabled, will enable expanders + expander_collapsed = "", + expander_expanded = "", + expander_highlight = "NeoTreeExpander", + }, + modified = { symbol = get_icon "FileModified" }, + name = { + trailing_slash = false, + use_git_status_colors = true, + highlight = "NeoTreeFileName", + }, + git_status = { + symbols = { + added = get_icon "GitAdd", + deleted = get_icon "GitDelete", + modified = get_icon "GitChange", + renamed = get_icon "GitRenamed", + untracked = "", + ignored = get_icon "GitIgnored", + unstaged = get_icon "GitUnstaged", + staged = get_icon "GitStaged", + conflict = get_icon "GitConflict", + }, + }, + }, + window = { + width = 35, + mappings = { + [""] = false, -- disable space until we figure out which-key disabling + ["[b"] = "prev_source", + ["]b"] = "next_source", + o = "open", + O = "system_open", + h = "parent_or_close", + l = "child_or_open", + Y = "copy_selector", + }, + }, + filesystem = { + filtered_items = { + visible = true, -- when true, they will just be displayed differently than normal items + hide_dotfiles = false, + hide_gitignored = false, + hide_hidden = false, -- only works on Windows for hidden files/directories + hide_by_name = { + --"node_modules" + }, + hide_by_pattern = { -- uses glob style patterns + --"*.meta", + --"*/src/*/tsconfig.json", + "*_templ.go", + }, + always_show = { -- remains visible even if other settings would normally hide it + --".gitignored", + }, + never_show = { -- remains hidden even if visible is toggled to true, this overrides always_show + --".DS_Store", + --"thumbs.db" + }, + never_show_by_pattern = { -- uses glob style patterns + --".null-ls_*", + }, + }, + follow_current_file = { + enabled = true, + }, + hijack_netrw_behavior = "open_current", + use_libuv_file_watcher = true, + commands = { + delete = function(state) + local tree = state.tree + local node = tree:get_node() + local log = require "neo-tree.log" + local inputs = require "neo-tree.ui.inputs" + + local msg = string.format("Are you sure you want to delete '%s'?", node.name) + local do_delete_ = function(confirmed) + if not confirmed then return end + vim.fn.system { "gio", "trash", node.path } + end + + if node.type == "file" or node.type == "directory" then + inputs.confirm(msg, do_delete_) + else + log.warn "The `delete` command can only be used on files and directories" + end + end, + delete_visual = function(state, selected_nodes) + local paths_to_delete = {} + local inputs = require "neo-tree.ui.inputs" + + for _, node_to_delete in pairs(selected_nodes) do + if node_to_delete.type == "file" or node_to_delete.type == "directory" then + table.insert(paths_to_delete, node_to_delete.path) + end + end + + local msg = "Are you sure you want to delete " .. #paths_to_delete .. " items?" + local do_delete_ = function(confirmed) + if not confirmed then return end + for _, path in pairs(paths_to_delete) do + vim.fn.system { "gio", "trash", path } + end + end + inputs.confirm(msg, do_delete_) + end, + }, + }, + buffers = { + follow_current_file = { + enabled = true, + }, -- This will find and focus the file in the active buffer every + -- time the current file is changed while the tree is open. + group_empty_dirs = true, -- when true, empty folders will be grouped together + show_unloaded = true, + window = { + mappings = { + ["bd"] = "buffer_delete", + [""] = "navigate_up", + ["."] = "set_root", + }, + }, + }, + event_handlers = { + { + event = "neo_tree_buffer_enter", + handler = function(_) vim.opt_local.signcolumn = "auto" end, + }, + }, + }, +} diff --git a/lua/plugins/none-ls.lua b/lua/plugins/none-ls.lua new file mode 100644 index 0000000..2b0ed18 --- /dev/null +++ b/lua/plugins/none-ls.lua @@ -0,0 +1,24 @@ +if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE + +-- Customize None-ls sources + +---@type LazySpec +return { + "nvimtools/none-ls.nvim", + opts = function(_, opts) + -- opts variable is the default configuration table for the setup function call + -- local null_ls = require "null-ls" + + -- Check supported formatters and linters + -- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins/formatting + -- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics + + -- Only insert new sources, do not replace the existing ones + -- (If you wish to replace, use `opts.sources = {}` instead of the `list_insert_unique` function) + opts.sources = require("astrocore").list_insert_unique(opts.sources, { + -- Set a formatter + -- null_ls.builtins.formatting.stylua, + -- null_ls.builtins.formatting.prettier, + }) + end, +} diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..905f871 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,31 @@ +---@type LazySpec +return { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "lua", + "vim", + "python", + "comment", + "dockerfile", + "bash", + "css", + "scss", + "gitcommit", + "gitignore", + "gitattributes", + "html", + "htmldjango", + "javascript", + "json", + "markdown", + "mermaid", + "sql", + "toml", + "vim", + "yaml", + "go", + "templ", + }, + }, +} diff --git a/lua/plugins/user.lua b/lua/plugins/user.lua new file mode 100644 index 0000000..4244aec --- /dev/null +++ b/lua/plugins/user.lua @@ -0,0 +1,252 @@ +---@type LazySpec +return { + { + "goolord/alpha-nvim", + opts = function(_, opts) + opts.section.header.val = { + + " .-=*##%%+=* **+@@%%#+-: ", + " -%@@@@@@@%++--: ---++#@@@@@@@@+ ", + " *@@@@@@@@@@@@@@@%- =%@@@@@@@@@@@@@@@* ", + " .@@@@@@@@#@@@@@@@@#. .#@@@@@@@@#@@@@@@@@: ", + " =@@@@@@%=-*@@@%%@@@- -@@@%%@@@*-=#@@@@@@* ", + " %@@@@@%-+--*%+--*@@+ +@@*=-=%*--+=*@@@@@@. ", + " -@@@@@@--*+-------+#* *%+-------=*--#@@@@@= ", + " +@@@%=---++--------=- ==--------++----#@@@# ", + " #@@------=+---------.=---------+=------@@% ", + " #@--------+--------=---------+=-------%%. ", + " +*----=+**#=------=--------#**++----+* ", + " -#+-------==-----=------=+-------=#= ", + " +%=------=+----------==-------## ", + " -%+------=*---.:---+=------=@= ", + " : :-----*-. .-*=----:. .. ", + " ..:::::.-: .-.:::::.. ", + " ", + "██╗ ██╗██╗ ██╗██████╗ ██╗ ██╗███╗ ██╗██╗ ██╗██╗███╗ ███╗", + "██║ ██╔╝██║ ██║██╔══██╗██║ ██║████╗ ██║██║ ██║██║████╗ ████║", + "█████╔╝ ██║ ██║██████╔╝██║ ██║██╔██╗ ██║██║ ██║██║██╔████╔██║", + "██╔═██╗ ██║ ██║██╔══██╗██║ ██║██║╚██╗██║╚██╗ ██╔╝██║██║╚██╔╝██║", + "██║ ██╗╚██████╔╝██║ ██║╚██████╔╝██║ ╚████║ ╚████╔╝ ██║██║ ╚═╝ ██║", + "╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═══╝ ╚═╝╚═╝ ╚═╝", + } + return opts + end, + }, + { + "L3MON4D3/LuaSnip", + config = function(plugin, opts) + require "astronvim.plugins.configs.luasnip"(plugin, opts) + local luasnip = require "luasnip" + luasnip.filetype_extend("javascript", { "javascriptreact" }) + require("luasnip.loaders.from_lua").lazy_load() + require("luasnip.loaders.from_vscode").lazy_load { + paths = vim.fn.stdpath "config" .. "/lua/snippets", + } + require("luasnip.loaders.from_snipmate").lazy_load() + end, + }, + { + "windwp/nvim-autopairs", + config = function(plugin, opts) + require "astronvim.plugins.configs.nvim-autopairs"(plugin, opts) + local npairs = require "nvim-autopairs" + local Rule = require "nvim-autopairs.rule" + local cond = require "nvim-autopairs.conds" + npairs.add_rules( + { + Rule("$", "$", { "tex", "latex" }) + -- don't add a pair if the next character is % + :with_pair(cond.not_after_regex "%%") + -- don't add a pair if the previous character is xxx + :with_pair( + cond.not_before_regex("xxx", 3) + ) + -- don't move right when repeat character + :with_move(cond.none()) + -- don't delete if the next character is xx + :with_del(cond.not_after_regex "xx") + -- disable adding a newline when you press + :with_cr(cond.none()), + }, + -- disable for .vim files, but it work for another filetypes + Rule("a", "a", "-vim") + ) + end, + }, + { + "jay-babu/mason-nvim-dap.nvim", + dependencies = { "nvim-dap" }, + opts = function(_, opts) + local venv_path = os.getenv "VIRTUAL_ENV" or os.getenv "CONDA_PREFIX" + require "astronvim." + opts.ensure_installed = require("astrocore").extend_tbl(opts.ensure_installed, { + "python", + "stylua", + "delve", + }) + opts.handlers = { + function(config) + require("mason-nvim-dap").default_setup(config) + end, + python = function(config) + config.adapters = { + type = "executable", + command = vim.fn.exepath "debugpy-adapter", + } + config.configurations = { + { + type = "python", + request = "launch", + name = "Python: Django", + program = "${workspaceFolder}/manage.py", + pythonPath = venv_path and (venv_path .. "/bin/python") or nil, + console = "integratedTerminal", + args = { "runserver", "--noreload", "--nothreading" }, + django = true, + justMyCode = false, + }, + { + type = "python", + request = "launch", + name = "Python: Launch file", + program = "${file}", + pythonPath = venv_path and (venv_path .. "/bin/python") or nil, + console = "integratedTerminal", + }, + { + type = "python", + request = "launch", + name = "Python: Launch package", + program = "${workspaceFolder}/main.py", + pythonPath = venv_path and (venv_path .. "/bin/python") or nil, + console = "integratedTerminal", + }, + } + require("mason-nvim-dap").default_setup(config) -- don't forget this! + end, + } + end, + }, + { + "mattn/emmet-vim", + lazy = false, + }, + { + "vim-test/vim-test", + }, + { + "nvim-neotest/neotest", + dependencies = { + "vim-test/vim-test", + "nvim-lua/plenary.nvim", + "nvim-treesitter/nvim-treesitter", + "antoinemadec/FixCursorHold.nvim", + "nvim-neotest/neotest-python", + }, + opts = function(_, opts) + local venv_path = os.getenv "VIRTUAL_ENV" or os.getenv "CONDA_PREFIX" + opts.adapters = { + require "neotest-python" { + dap = { + justMyCode = false, + program = "${workspaceFolder}/manage.py", + python = venv_path and (venv_path .. "/bin/python") or nil, + args = { "test" }, + }, + runner = "pytest", + is_test_file = function(file_path) + if file_path:match "tests.py" or file_path:match "test_.+.py$" or file_path:match "^.+_tests.py$" then + return file_path + end + end, + }, + } + end, + keys = { + { + "", + function() require("neotest").summary.toggle() end, + desc = "Toggle test summary", + }, + }, + }, + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = function(_, opts) + opts.keywords = { + FIX = { + icon = " ", -- icon used for the sign, and in search results + color = "error", -- can be a hex color, or a named color (see below) + alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords + }, + TODO = { icon = " ", color = "info" }, + HACK = { icon = " ", color = "warning" }, + WARN = { icon = " ", color = "warning", alt = { "XXX" } }, + PERF = { icon = "󰑮 ", alt = { "OPTIM", "PERFORMANCE", "OPTIMIZE" } }, + NOTE = { icon = "󱝿 ", color = "hint", alt = { "NOTE" } }, + TEST = { icon = "󰙨 ", color = "test", alt = { "TESTING", "PASSED", "FAILED" } }, + } + opts.signs = true + opts.sign_priority = 8 + opts.merge_keywords = true + opts.pattern = [[(KEYWORDS):]] + return opts + end, + keys = { + { "xt", "TodoTrouble", desc = "Todo (Trouble)" }, + }, + }, + { "ralismark/nvim-tabletops", lazy = false }, + { "sindrets/diffview.nvim", lazy = false }, + { "theHamsta/nvim-dap-virtual-text" }, + { + "laytan/cloak.nvim", + lazy = false, + opts = { + enabled = true, + cloak_character = "🔐", + highlight_group = "Comment", + cloak_length = 1, + try_all_patterns = true, + patterns = { + { + + file_pattern = ".env*", + cloak_pattern = "=.+", + replace = nil, + }, + }, + }, + }, + { + "Exafunction/codeium.vim", + enabled=false, + event = "BufEnter", + config = function() + vim.keymap.set("i", "", function() return vim.fn["codeium#Accept"]() end, { expr = true, silent = true }) + vim.keymap.set( + "i", + "", + function() return vim.fn["codeium#CycleCompletions"](1) end, + { expr = true, silent = true } + ) + vim.keymap.set( + "i", + "", + function() return vim.fn["codeium#CycleCompletions"](-1) end, + { expr = true, silent = true } + ) + vim.keymap.set("i", "", function() return vim.fn["codeium#Clear"]() end, { expr = true, silent = true }) + end, + }, + { + "folke/trouble.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + opts = {}, + }, + { + "mbbill/undotree", + config = function() vim.keymap.set("n", "ku", vim.cmd.UndotreeToggle) end, + } +} diff --git a/lua/polish.lua b/lua/polish.lua new file mode 100644 index 0000000..5b65b7d --- /dev/null +++ b/lua/polish.lua @@ -0,0 +1,18 @@ +if true then return end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE + +-- This will run last in the setup process and is a good place to configure +-- things like custom filetypes. This is just pure lua so anything that doesn't +-- fit in the normal config locations above can go here + +-- Set up custom filetypes +vim.filetype.add { + extension = { + foo = "fooscript", + }, + filename = { + ["Foofile"] = "fooscript", + }, + pattern = { + ["~/%.config/foo/.*"] = "fooscript", + }, +} diff --git a/lua/snippets/bootstrap.json b/lua/snippets/bootstrap.json new file mode 100644 index 0000000..0e2f331 --- /dev/null +++ b/lua/snippets/bootstrap.json @@ -0,0 +1,13673 @@ +{ + "_0_circle": { + "prefix": "svg.bootstrap._0_circle", + "description": "SVG bootstrap - _0_circle", + "body": [ + "{% svg bootstrap _0_circle %}" + ] + }, + "_0_circle_fill": { + "prefix": "svg.bootstrap._0_circle_fill", + "description": "SVG bootstrap - _0_circle_fill", + "body": [ + "{% svg bootstrap _0_circle_fill %}" + ] + }, + "_0_square": { + "prefix": "svg.bootstrap._0_square", + "description": "SVG bootstrap - _0_square", + "body": [ + "{% svg bootstrap _0_square %}" + ] + }, + "_0_square_fill": { + "prefix": "svg.bootstrap._0_square_fill", + "description": "SVG bootstrap - _0_square_fill", + "body": [ + "{% svg bootstrap _0_square_fill %}" + ] + }, + "_123": { + "prefix": "svg.bootstrap._123", + "description": "SVG bootstrap - _123", + "body": [ + "{% svg bootstrap _123 %}" + ] + }, + "_1_circle": { + "prefix": "svg.bootstrap._1_circle", + "description": "SVG bootstrap - _1_circle", + "body": [ + "{% svg bootstrap _1_circle %}" + ] + }, + "_1_circle_fill": { + "prefix": "svg.bootstrap._1_circle_fill", + "description": "SVG bootstrap - _1_circle_fill", + "body": [ + "{% svg bootstrap _1_circle_fill %}" + ] + }, + "_1_square": { + "prefix": "svg.bootstrap._1_square", + "description": "SVG bootstrap - _1_square", + "body": [ + "{% svg bootstrap _1_square %}" + ] + }, + "_1_square_fill": { + "prefix": "svg.bootstrap._1_square_fill", + "description": "SVG bootstrap - _1_square_fill", + "body": [ + "{% svg bootstrap _1_square_fill %}" + ] + }, + "_2_circle": { + "prefix": "svg.bootstrap._2_circle", + "description": "SVG bootstrap - _2_circle", + "body": [ + "{% svg bootstrap _2_circle %}" + ] + }, + "_2_circle_fill": { + "prefix": "svg.bootstrap._2_circle_fill", + "description": "SVG bootstrap - _2_circle_fill", + "body": [ + "{% svg bootstrap _2_circle_fill %}" + ] + }, + "_2_square": { + "prefix": "svg.bootstrap._2_square", + "description": "SVG bootstrap - _2_square", + "body": [ + "{% svg bootstrap _2_square %}" + ] + }, + "_2_square_fill": { + "prefix": "svg.bootstrap._2_square_fill", + "description": "SVG bootstrap - _2_square_fill", + "body": [ + "{% svg bootstrap _2_square_fill %}" + ] + }, + "_3_circle": { + "prefix": "svg.bootstrap._3_circle", + "description": "SVG bootstrap - _3_circle", + "body": [ + "{% svg bootstrap _3_circle %}" + ] + }, + "_3_circle_fill": { + "prefix": "svg.bootstrap._3_circle_fill", + "description": "SVG bootstrap - _3_circle_fill", + "body": [ + "{% svg bootstrap _3_circle_fill %}" + ] + }, + "_3_square": { + "prefix": "svg.bootstrap._3_square", + "description": "SVG bootstrap - _3_square", + "body": [ + "{% svg bootstrap _3_square %}" + ] + }, + "_3_square_fill": { + "prefix": "svg.bootstrap._3_square_fill", + "description": "SVG bootstrap - _3_square_fill", + "body": [ + "{% svg bootstrap _3_square_fill %}" + ] + }, + "_4_circle": { + "prefix": "svg.bootstrap._4_circle", + "description": "SVG bootstrap - _4_circle", + "body": [ + "{% svg bootstrap _4_circle %}" + ] + }, + "_4_circle_fill": { + "prefix": "svg.bootstrap._4_circle_fill", + "description": "SVG bootstrap - _4_circle_fill", + "body": [ + "{% svg bootstrap _4_circle_fill %}" + ] + }, + "_4_square": { + "prefix": "svg.bootstrap._4_square", + "description": "SVG bootstrap - _4_square", + "body": [ + "{% svg bootstrap _4_square %}" + ] + }, + "_4_square_fill": { + "prefix": "svg.bootstrap._4_square_fill", + "description": "SVG bootstrap - _4_square_fill", + "body": [ + "{% svg bootstrap _4_square_fill %}" + ] + }, + "_5_circle": { + "prefix": "svg.bootstrap._5_circle", + "description": "SVG bootstrap - _5_circle", + "body": [ + "{% svg bootstrap _5_circle %}" + ] + }, + "_5_circle_fill": { + "prefix": "svg.bootstrap._5_circle_fill", + "description": "SVG bootstrap - _5_circle_fill", + "body": [ + "{% svg bootstrap _5_circle_fill %}" + ] + }, + "_5_square": { + "prefix": "svg.bootstrap._5_square", + "description": "SVG bootstrap - _5_square", + "body": [ + "{% svg bootstrap _5_square %}" + ] + }, + "_5_square_fill": { + "prefix": "svg.bootstrap._5_square_fill", + "description": "SVG bootstrap - _5_square_fill", + "body": [ + "{% svg bootstrap _5_square_fill %}" + ] + }, + "_6_circle": { + "prefix": "svg.bootstrap._6_circle", + "description": "SVG bootstrap - _6_circle", + "body": [ + "{% svg bootstrap _6_circle %}" + ] + }, + "_6_circle_fill": { + "prefix": "svg.bootstrap._6_circle_fill", + "description": "SVG bootstrap - _6_circle_fill", + "body": [ + "{% svg bootstrap _6_circle_fill %}" + ] + }, + "_6_square": { + "prefix": "svg.bootstrap._6_square", + "description": "SVG bootstrap - _6_square", + "body": [ + "{% svg bootstrap _6_square %}" + ] + }, + "_6_square_fill": { + "prefix": "svg.bootstrap._6_square_fill", + "description": "SVG bootstrap - _6_square_fill", + "body": [ + "{% svg bootstrap _6_square_fill %}" + ] + }, + "_7_circle": { + "prefix": "svg.bootstrap._7_circle", + "description": "SVG bootstrap - _7_circle", + "body": [ + "{% svg bootstrap _7_circle %}" + ] + }, + "_7_circle_fill": { + "prefix": "svg.bootstrap._7_circle_fill", + "description": "SVG bootstrap - _7_circle_fill", + "body": [ + "{% svg bootstrap _7_circle_fill %}" + ] + }, + "_7_square": { + "prefix": "svg.bootstrap._7_square", + "description": "SVG bootstrap - _7_square", + "body": [ + "{% svg bootstrap _7_square %}" + ] + }, + "_7_square_fill": { + "prefix": "svg.bootstrap._7_square_fill", + "description": "SVG bootstrap - _7_square_fill", + "body": [ + "{% svg bootstrap _7_square_fill %}" + ] + }, + "_8_circle": { + "prefix": "svg.bootstrap._8_circle", + "description": "SVG bootstrap - _8_circle", + "body": [ + "{% svg bootstrap _8_circle %}" + ] + }, + "_8_circle_fill": { + "prefix": "svg.bootstrap._8_circle_fill", + "description": "SVG bootstrap - _8_circle_fill", + "body": [ + "{% svg bootstrap _8_circle_fill %}" + ] + }, + "_8_square": { + "prefix": "svg.bootstrap._8_square", + "description": "SVG bootstrap - _8_square", + "body": [ + "{% svg bootstrap _8_square %}" + ] + }, + "_8_square_fill": { + "prefix": "svg.bootstrap._8_square_fill", + "description": "SVG bootstrap - _8_square_fill", + "body": [ + "{% svg bootstrap _8_square_fill %}" + ] + }, + "_9_circle": { + "prefix": "svg.bootstrap._9_circle", + "description": "SVG bootstrap - _9_circle", + "body": [ + "{% svg bootstrap _9_circle %}" + ] + }, + "_9_circle_fill": { + "prefix": "svg.bootstrap._9_circle_fill", + "description": "SVG bootstrap - _9_circle_fill", + "body": [ + "{% svg bootstrap _9_circle_fill %}" + ] + }, + "_9_square": { + "prefix": "svg.bootstrap._9_square", + "description": "SVG bootstrap - _9_square", + "body": [ + "{% svg bootstrap _9_square %}" + ] + }, + "_9_square_fill": { + "prefix": "svg.bootstrap._9_square_fill", + "description": "SVG bootstrap - _9_square_fill", + "body": [ + "{% svg bootstrap _9_square_fill %}" + ] + }, + "_pass": { + "prefix": "svg.bootstrap._pass", + "description": "SVG bootstrap - _pass", + "body": [ + "{% svg bootstrap _pass %}" + ] + }, + "activity": { + "prefix": "svg.bootstrap.activity", + "description": "SVG bootstrap - activity", + "body": [ + "{% svg bootstrap activity %}" + ] + }, + "airplane": { + "prefix": "svg.bootstrap.airplane", + "description": "SVG bootstrap - airplane", + "body": [ + "{% svg bootstrap airplane %}" + ] + }, + "airplane_engines": { + "prefix": "svg.bootstrap.airplane_engines", + "description": "SVG bootstrap - airplane_engines", + "body": [ + "{% svg bootstrap airplane_engines %}" + ] + }, + "airplane_engines_fill": { + "prefix": "svg.bootstrap.airplane_engines_fill", + "description": "SVG bootstrap - airplane_engines_fill", + "body": [ + "{% svg bootstrap airplane_engines_fill %}" + ] + }, + "airplane_fill": { + "prefix": "svg.bootstrap.airplane_fill", + "description": "SVG bootstrap - airplane_fill", + "body": [ + "{% svg bootstrap airplane_fill %}" + ] + }, + "alarm": { + "prefix": "svg.bootstrap.alarm", + "description": "SVG bootstrap - alarm", + "body": [ + "{% svg bootstrap alarm %}" + ] + }, + "alarm_fill": { + "prefix": "svg.bootstrap.alarm_fill", + "description": "SVG bootstrap - alarm_fill", + "body": [ + "{% svg bootstrap alarm_fill %}" + ] + }, + "alexa": { + "prefix": "svg.bootstrap.alexa", + "description": "SVG bootstrap - alexa", + "body": [ + "{% svg bootstrap alexa %}" + ] + }, + "align_bottom": { + "prefix": "svg.bootstrap.align_bottom", + "description": "SVG bootstrap - align_bottom", + "body": [ + "{% svg bootstrap align_bottom %}" + ] + }, + "align_center": { + "prefix": "svg.bootstrap.align_center", + "description": "SVG bootstrap - align_center", + "body": [ + "{% svg bootstrap align_center %}" + ] + }, + "align_end": { + "prefix": "svg.bootstrap.align_end", + "description": "SVG bootstrap - align_end", + "body": [ + "{% svg bootstrap align_end %}" + ] + }, + "align_middle": { + "prefix": "svg.bootstrap.align_middle", + "description": "SVG bootstrap - align_middle", + "body": [ + "{% svg bootstrap align_middle %}" + ] + }, + "align_start": { + "prefix": "svg.bootstrap.align_start", + "description": "SVG bootstrap - align_start", + "body": [ + "{% svg bootstrap align_start %}" + ] + }, + "align_top": { + "prefix": "svg.bootstrap.align_top", + "description": "SVG bootstrap - align_top", + "body": [ + "{% svg bootstrap align_top %}" + ] + }, + "alipay": { + "prefix": "svg.bootstrap.alipay", + "description": "SVG bootstrap - alipay", + "body": [ + "{% svg bootstrap alipay %}" + ] + }, + "alt": { + "prefix": "svg.bootstrap.alt", + "description": "SVG bootstrap - alt", + "body": [ + "{% svg bootstrap alt %}" + ] + }, + "amd": { + "prefix": "svg.bootstrap.amd", + "description": "SVG bootstrap - amd", + "body": [ + "{% svg bootstrap amd %}" + ] + }, + "android": { + "prefix": "svg.bootstrap.android", + "description": "SVG bootstrap - android", + "body": [ + "{% svg bootstrap android %}" + ] + }, + "android2": { + "prefix": "svg.bootstrap.android2", + "description": "SVG bootstrap - android2", + "body": [ + "{% svg bootstrap android2 %}" + ] + }, + "app": { + "prefix": "svg.bootstrap.app", + "description": "SVG bootstrap - app", + "body": [ + "{% svg bootstrap app %}" + ] + }, + "app_indicator": { + "prefix": "svg.bootstrap.app_indicator", + "description": "SVG bootstrap - app_indicator", + "body": [ + "{% svg bootstrap app_indicator %}" + ] + }, + "apple": { + "prefix": "svg.bootstrap.apple", + "description": "SVG bootstrap - apple", + "body": [ + "{% svg bootstrap apple %}" + ] + }, + "archive": { + "prefix": "svg.bootstrap.archive", + "description": "SVG bootstrap - archive", + "body": [ + "{% svg bootstrap archive %}" + ] + }, + "archive_fill": { + "prefix": "svg.bootstrap.archive_fill", + "description": "SVG bootstrap - archive_fill", + "body": [ + "{% svg bootstrap archive_fill %}" + ] + }, + "arrow_90deg_down": { + "prefix": "svg.bootstrap.arrow_90deg_down", + "description": "SVG bootstrap - arrow_90deg_down", + "body": [ + "{% svg bootstrap arrow_90deg_down %}" + ] + }, + "arrow_90deg_left": { + "prefix": "svg.bootstrap.arrow_90deg_left", + "description": "SVG bootstrap - arrow_90deg_left", + "body": [ + "{% svg bootstrap arrow_90deg_left %}" + ] + }, + "arrow_90deg_right": { + "prefix": "svg.bootstrap.arrow_90deg_right", + "description": "SVG bootstrap - arrow_90deg_right", + "body": [ + "{% svg bootstrap arrow_90deg_right %}" + ] + }, + "arrow_90deg_up": { + "prefix": "svg.bootstrap.arrow_90deg_up", + "description": "SVG bootstrap - arrow_90deg_up", + "body": [ + "{% svg bootstrap arrow_90deg_up %}" + ] + }, + "arrow_bar_down": { + "prefix": "svg.bootstrap.arrow_bar_down", + "description": "SVG bootstrap - arrow_bar_down", + "body": [ + "{% svg bootstrap arrow_bar_down %}" + ] + }, + "arrow_bar_left": { + "prefix": "svg.bootstrap.arrow_bar_left", + "description": "SVG bootstrap - arrow_bar_left", + "body": [ + "{% svg bootstrap arrow_bar_left %}" + ] + }, + "arrow_bar_right": { + "prefix": "svg.bootstrap.arrow_bar_right", + "description": "SVG bootstrap - arrow_bar_right", + "body": [ + "{% svg bootstrap arrow_bar_right %}" + ] + }, + "arrow_bar_up": { + "prefix": "svg.bootstrap.arrow_bar_up", + "description": "SVG bootstrap - arrow_bar_up", + "body": [ + "{% svg bootstrap arrow_bar_up %}" + ] + }, + "arrow_clockwise": { + "prefix": "svg.bootstrap.arrow_clockwise", + "description": "SVG bootstrap - arrow_clockwise", + "body": [ + "{% svg bootstrap arrow_clockwise %}" + ] + }, + "arrow_counterclockwise": { + "prefix": "svg.bootstrap.arrow_counterclockwise", + "description": "SVG bootstrap - arrow_counterclockwise", + "body": [ + "{% svg bootstrap arrow_counterclockwise %}" + ] + }, + "arrow_down": { + "prefix": "svg.bootstrap.arrow_down", + "description": "SVG bootstrap - arrow_down", + "body": [ + "{% svg bootstrap arrow_down %}" + ] + }, + "arrow_down_circle": { + "prefix": "svg.bootstrap.arrow_down_circle", + "description": "SVG bootstrap - arrow_down_circle", + "body": [ + "{% svg bootstrap arrow_down_circle %}" + ] + }, + "arrow_down_circle_fill": { + "prefix": "svg.bootstrap.arrow_down_circle_fill", + "description": "SVG bootstrap - arrow_down_circle_fill", + "body": [ + "{% svg bootstrap arrow_down_circle_fill %}" + ] + }, + "arrow_down_left": { + "prefix": "svg.bootstrap.arrow_down_left", + "description": "SVG bootstrap - arrow_down_left", + "body": [ + "{% svg bootstrap arrow_down_left %}" + ] + }, + "arrow_down_left_circle": { + "prefix": "svg.bootstrap.arrow_down_left_circle", + "description": "SVG bootstrap - arrow_down_left_circle", + "body": [ + "{% svg bootstrap arrow_down_left_circle %}" + ] + }, + "arrow_down_left_circle_fill": { + "prefix": "svg.bootstrap.arrow_down_left_circle_fill", + "description": "SVG bootstrap - arrow_down_left_circle_fill", + "body": [ + "{% svg bootstrap arrow_down_left_circle_fill %}" + ] + }, + "arrow_down_left_square": { + "prefix": "svg.bootstrap.arrow_down_left_square", + "description": "SVG bootstrap - arrow_down_left_square", + "body": [ + "{% svg bootstrap arrow_down_left_square %}" + ] + }, + "arrow_down_left_square_fill": { + "prefix": "svg.bootstrap.arrow_down_left_square_fill", + "description": "SVG bootstrap - arrow_down_left_square_fill", + "body": [ + "{% svg bootstrap arrow_down_left_square_fill %}" + ] + }, + "arrow_down_right": { + "prefix": "svg.bootstrap.arrow_down_right", + "description": "SVG bootstrap - arrow_down_right", + "body": [ + "{% svg bootstrap arrow_down_right %}" + ] + }, + "arrow_down_right_circle": { + "prefix": "svg.bootstrap.arrow_down_right_circle", + "description": "SVG bootstrap - arrow_down_right_circle", + "body": [ + "{% svg bootstrap arrow_down_right_circle %}" + ] + }, + "arrow_down_right_circle_fill": { + "prefix": "svg.bootstrap.arrow_down_right_circle_fill", + "description": "SVG bootstrap - arrow_down_right_circle_fill", + "body": [ + "{% svg bootstrap arrow_down_right_circle_fill %}" + ] + }, + "arrow_down_right_square": { + "prefix": "svg.bootstrap.arrow_down_right_square", + "description": "SVG bootstrap - arrow_down_right_square", + "body": [ + "{% svg bootstrap arrow_down_right_square %}" + ] + }, + "arrow_down_right_square_fill": { + "prefix": "svg.bootstrap.arrow_down_right_square_fill", + "description": "SVG bootstrap - arrow_down_right_square_fill", + "body": [ + "{% svg bootstrap arrow_down_right_square_fill %}" + ] + }, + "arrow_down_short": { + "prefix": "svg.bootstrap.arrow_down_short", + "description": "SVG bootstrap - arrow_down_short", + "body": [ + "{% svg bootstrap arrow_down_short %}" + ] + }, + "arrow_down_square": { + "prefix": "svg.bootstrap.arrow_down_square", + "description": "SVG bootstrap - arrow_down_square", + "body": [ + "{% svg bootstrap arrow_down_square %}" + ] + }, + "arrow_down_square_fill": { + "prefix": "svg.bootstrap.arrow_down_square_fill", + "description": "SVG bootstrap - arrow_down_square_fill", + "body": [ + "{% svg bootstrap arrow_down_square_fill %}" + ] + }, + "arrow_down_up": { + "prefix": "svg.bootstrap.arrow_down_up", + "description": "SVG bootstrap - arrow_down_up", + "body": [ + "{% svg bootstrap arrow_down_up %}" + ] + }, + "arrow_left": { + "prefix": "svg.bootstrap.arrow_left", + "description": "SVG bootstrap - arrow_left", + "body": [ + "{% svg bootstrap arrow_left %}" + ] + }, + "arrow_left_circle": { + "prefix": "svg.bootstrap.arrow_left_circle", + "description": "SVG bootstrap - arrow_left_circle", + "body": [ + "{% svg bootstrap arrow_left_circle %}" + ] + }, + "arrow_left_circle_fill": { + "prefix": "svg.bootstrap.arrow_left_circle_fill", + "description": "SVG bootstrap - arrow_left_circle_fill", + "body": [ + "{% svg bootstrap arrow_left_circle_fill %}" + ] + }, + "arrow_left_right": { + "prefix": "svg.bootstrap.arrow_left_right", + "description": "SVG bootstrap - arrow_left_right", + "body": [ + "{% svg bootstrap arrow_left_right %}" + ] + }, + "arrow_left_short": { + "prefix": "svg.bootstrap.arrow_left_short", + "description": "SVG bootstrap - arrow_left_short", + "body": [ + "{% svg bootstrap arrow_left_short %}" + ] + }, + "arrow_left_square": { + "prefix": "svg.bootstrap.arrow_left_square", + "description": "SVG bootstrap - arrow_left_square", + "body": [ + "{% svg bootstrap arrow_left_square %}" + ] + }, + "arrow_left_square_fill": { + "prefix": "svg.bootstrap.arrow_left_square_fill", + "description": "SVG bootstrap - arrow_left_square_fill", + "body": [ + "{% svg bootstrap arrow_left_square_fill %}" + ] + }, + "arrow_repeat": { + "prefix": "svg.bootstrap.arrow_repeat", + "description": "SVG bootstrap - arrow_repeat", + "body": [ + "{% svg bootstrap arrow_repeat %}" + ] + }, + "arrow_return_left": { + "prefix": "svg.bootstrap.arrow_return_left", + "description": "SVG bootstrap - arrow_return_left", + "body": [ + "{% svg bootstrap arrow_return_left %}" + ] + }, + "arrow_return_right": { + "prefix": "svg.bootstrap.arrow_return_right", + "description": "SVG bootstrap - arrow_return_right", + "body": [ + "{% svg bootstrap arrow_return_right %}" + ] + }, + "arrow_right": { + "prefix": "svg.bootstrap.arrow_right", + "description": "SVG bootstrap - arrow_right", + "body": [ + "{% svg bootstrap arrow_right %}" + ] + }, + "arrow_right_circle": { + "prefix": "svg.bootstrap.arrow_right_circle", + "description": "SVG bootstrap - arrow_right_circle", + "body": [ + "{% svg bootstrap arrow_right_circle %}" + ] + }, + "arrow_right_circle_fill": { + "prefix": "svg.bootstrap.arrow_right_circle_fill", + "description": "SVG bootstrap - arrow_right_circle_fill", + "body": [ + "{% svg bootstrap arrow_right_circle_fill %}" + ] + }, + "arrow_right_short": { + "prefix": "svg.bootstrap.arrow_right_short", + "description": "SVG bootstrap - arrow_right_short", + "body": [ + "{% svg bootstrap arrow_right_short %}" + ] + }, + "arrow_right_square": { + "prefix": "svg.bootstrap.arrow_right_square", + "description": "SVG bootstrap - arrow_right_square", + "body": [ + "{% svg bootstrap arrow_right_square %}" + ] + }, + "arrow_right_square_fill": { + "prefix": "svg.bootstrap.arrow_right_square_fill", + "description": "SVG bootstrap - arrow_right_square_fill", + "body": [ + "{% svg bootstrap arrow_right_square_fill %}" + ] + }, + "arrow_through_heart": { + "prefix": "svg.bootstrap.arrow_through_heart", + "description": "SVG bootstrap - arrow_through_heart", + "body": [ + "{% svg bootstrap arrow_through_heart %}" + ] + }, + "arrow_through_heart_fill": { + "prefix": "svg.bootstrap.arrow_through_heart_fill", + "description": "SVG bootstrap - arrow_through_heart_fill", + "body": [ + "{% svg bootstrap arrow_through_heart_fill %}" + ] + }, + "arrow_up": { + "prefix": "svg.bootstrap.arrow_up", + "description": "SVG bootstrap - arrow_up", + "body": [ + "{% svg bootstrap arrow_up %}" + ] + }, + "arrow_up_circle": { + "prefix": "svg.bootstrap.arrow_up_circle", + "description": "SVG bootstrap - arrow_up_circle", + "body": [ + "{% svg bootstrap arrow_up_circle %}" + ] + }, + "arrow_up_circle_fill": { + "prefix": "svg.bootstrap.arrow_up_circle_fill", + "description": "SVG bootstrap - arrow_up_circle_fill", + "body": [ + "{% svg bootstrap arrow_up_circle_fill %}" + ] + }, + "arrow_up_left": { + "prefix": "svg.bootstrap.arrow_up_left", + "description": "SVG bootstrap - arrow_up_left", + "body": [ + "{% svg bootstrap arrow_up_left %}" + ] + }, + "arrow_up_left_circle": { + "prefix": "svg.bootstrap.arrow_up_left_circle", + "description": "SVG bootstrap - arrow_up_left_circle", + "body": [ + "{% svg bootstrap arrow_up_left_circle %}" + ] + }, + "arrow_up_left_circle_fill": { + "prefix": "svg.bootstrap.arrow_up_left_circle_fill", + "description": "SVG bootstrap - arrow_up_left_circle_fill", + "body": [ + "{% svg bootstrap arrow_up_left_circle_fill %}" + ] + }, + "arrow_up_left_square": { + "prefix": "svg.bootstrap.arrow_up_left_square", + "description": "SVG bootstrap - arrow_up_left_square", + "body": [ + "{% svg bootstrap arrow_up_left_square %}" + ] + }, + "arrow_up_left_square_fill": { + "prefix": "svg.bootstrap.arrow_up_left_square_fill", + "description": "SVG bootstrap - arrow_up_left_square_fill", + "body": [ + "{% svg bootstrap arrow_up_left_square_fill %}" + ] + }, + "arrow_up_right": { + "prefix": "svg.bootstrap.arrow_up_right", + "description": "SVG bootstrap - arrow_up_right", + "body": [ + "{% svg bootstrap arrow_up_right %}" + ] + }, + "arrow_up_right_circle": { + "prefix": "svg.bootstrap.arrow_up_right_circle", + "description": "SVG bootstrap - arrow_up_right_circle", + "body": [ + "{% svg bootstrap arrow_up_right_circle %}" + ] + }, + "arrow_up_right_circle_fill": { + "prefix": "svg.bootstrap.arrow_up_right_circle_fill", + "description": "SVG bootstrap - arrow_up_right_circle_fill", + "body": [ + "{% svg bootstrap arrow_up_right_circle_fill %}" + ] + }, + "arrow_up_right_square": { + "prefix": "svg.bootstrap.arrow_up_right_square", + "description": "SVG bootstrap - arrow_up_right_square", + "body": [ + "{% svg bootstrap arrow_up_right_square %}" + ] + }, + "arrow_up_right_square_fill": { + "prefix": "svg.bootstrap.arrow_up_right_square_fill", + "description": "SVG bootstrap - arrow_up_right_square_fill", + "body": [ + "{% svg bootstrap arrow_up_right_square_fill %}" + ] + }, + "arrow_up_short": { + "prefix": "svg.bootstrap.arrow_up_short", + "description": "SVG bootstrap - arrow_up_short", + "body": [ + "{% svg bootstrap arrow_up_short %}" + ] + }, + "arrow_up_square": { + "prefix": "svg.bootstrap.arrow_up_square", + "description": "SVG bootstrap - arrow_up_square", + "body": [ + "{% svg bootstrap arrow_up_square %}" + ] + }, + "arrow_up_square_fill": { + "prefix": "svg.bootstrap.arrow_up_square_fill", + "description": "SVG bootstrap - arrow_up_square_fill", + "body": [ + "{% svg bootstrap arrow_up_square_fill %}" + ] + }, + "arrows_angle_contract": { + "prefix": "svg.bootstrap.arrows_angle_contract", + "description": "SVG bootstrap - arrows_angle_contract", + "body": [ + "{% svg bootstrap arrows_angle_contract %}" + ] + }, + "arrows_angle_expand": { + "prefix": "svg.bootstrap.arrows_angle_expand", + "description": "SVG bootstrap - arrows_angle_expand", + "body": [ + "{% svg bootstrap arrows_angle_expand %}" + ] + }, + "arrows_collapse": { + "prefix": "svg.bootstrap.arrows_collapse", + "description": "SVG bootstrap - arrows_collapse", + "body": [ + "{% svg bootstrap arrows_collapse %}" + ] + }, + "arrows_expand": { + "prefix": "svg.bootstrap.arrows_expand", + "description": "SVG bootstrap - arrows_expand", + "body": [ + "{% svg bootstrap arrows_expand %}" + ] + }, + "arrows_fullscreen": { + "prefix": "svg.bootstrap.arrows_fullscreen", + "description": "SVG bootstrap - arrows_fullscreen", + "body": [ + "{% svg bootstrap arrows_fullscreen %}" + ] + }, + "arrows_move": { + "prefix": "svg.bootstrap.arrows_move", + "description": "SVG bootstrap - arrows_move", + "body": [ + "{% svg bootstrap arrows_move %}" + ] + }, + "aspect_ratio": { + "prefix": "svg.bootstrap.aspect_ratio", + "description": "SVG bootstrap - aspect_ratio", + "body": [ + "{% svg bootstrap aspect_ratio %}" + ] + }, + "aspect_ratio_fill": { + "prefix": "svg.bootstrap.aspect_ratio_fill", + "description": "SVG bootstrap - aspect_ratio_fill", + "body": [ + "{% svg bootstrap aspect_ratio_fill %}" + ] + }, + "asterisk": { + "prefix": "svg.bootstrap.asterisk", + "description": "SVG bootstrap - asterisk", + "body": [ + "{% svg bootstrap asterisk %}" + ] + }, + "at": { + "prefix": "svg.bootstrap.at", + "description": "SVG bootstrap - at", + "body": [ + "{% svg bootstrap at %}" + ] + }, + "award": { + "prefix": "svg.bootstrap.award", + "description": "SVG bootstrap - award", + "body": [ + "{% svg bootstrap award %}" + ] + }, + "award_fill": { + "prefix": "svg.bootstrap.award_fill", + "description": "SVG bootstrap - award_fill", + "body": [ + "{% svg bootstrap award_fill %}" + ] + }, + "back": { + "prefix": "svg.bootstrap.back", + "description": "SVG bootstrap - back", + "body": [ + "{% svg bootstrap back %}" + ] + }, + "backspace": { + "prefix": "svg.bootstrap.backspace", + "description": "SVG bootstrap - backspace", + "body": [ + "{% svg bootstrap backspace %}" + ] + }, + "backspace_fill": { + "prefix": "svg.bootstrap.backspace_fill", + "description": "SVG bootstrap - backspace_fill", + "body": [ + "{% svg bootstrap backspace_fill %}" + ] + }, + "backspace_reverse": { + "prefix": "svg.bootstrap.backspace_reverse", + "description": "SVG bootstrap - backspace_reverse", + "body": [ + "{% svg bootstrap backspace_reverse %}" + ] + }, + "backspace_reverse_fill": { + "prefix": "svg.bootstrap.backspace_reverse_fill", + "description": "SVG bootstrap - backspace_reverse_fill", + "body": [ + "{% svg bootstrap backspace_reverse_fill %}" + ] + }, + "badge_3d": { + "prefix": "svg.bootstrap.badge_3d", + "description": "SVG bootstrap - badge_3d", + "body": [ + "{% svg bootstrap badge_3d %}" + ] + }, + "badge_3d_fill": { + "prefix": "svg.bootstrap.badge_3d_fill", + "description": "SVG bootstrap - badge_3d_fill", + "body": [ + "{% svg bootstrap badge_3d_fill %}" + ] + }, + "badge_4k": { + "prefix": "svg.bootstrap.badge_4k", + "description": "SVG bootstrap - badge_4k", + "body": [ + "{% svg bootstrap badge_4k %}" + ] + }, + "badge_4k_fill": { + "prefix": "svg.bootstrap.badge_4k_fill", + "description": "SVG bootstrap - badge_4k_fill", + "body": [ + "{% svg bootstrap badge_4k_fill %}" + ] + }, + "badge_8k": { + "prefix": "svg.bootstrap.badge_8k", + "description": "SVG bootstrap - badge_8k", + "body": [ + "{% svg bootstrap badge_8k %}" + ] + }, + "badge_8k_fill": { + "prefix": "svg.bootstrap.badge_8k_fill", + "description": "SVG bootstrap - badge_8k_fill", + "body": [ + "{% svg bootstrap badge_8k_fill %}" + ] + }, + "badge_ad": { + "prefix": "svg.bootstrap.badge_ad", + "description": "SVG bootstrap - badge_ad", + "body": [ + "{% svg bootstrap badge_ad %}" + ] + }, + "badge_ad_fill": { + "prefix": "svg.bootstrap.badge_ad_fill", + "description": "SVG bootstrap - badge_ad_fill", + "body": [ + "{% svg bootstrap badge_ad_fill %}" + ] + }, + "badge_ar": { + "prefix": "svg.bootstrap.badge_ar", + "description": "SVG bootstrap - badge_ar", + "body": [ + "{% svg bootstrap badge_ar %}" + ] + }, + "badge_ar_fill": { + "prefix": "svg.bootstrap.badge_ar_fill", + "description": "SVG bootstrap - badge_ar_fill", + "body": [ + "{% svg bootstrap badge_ar_fill %}" + ] + }, + "badge_cc": { + "prefix": "svg.bootstrap.badge_cc", + "description": "SVG bootstrap - badge_cc", + "body": [ + "{% svg bootstrap badge_cc %}" + ] + }, + "badge_cc_fill": { + "prefix": "svg.bootstrap.badge_cc_fill", + "description": "SVG bootstrap - badge_cc_fill", + "body": [ + "{% svg bootstrap badge_cc_fill %}" + ] + }, + "badge_hd": { + "prefix": "svg.bootstrap.badge_hd", + "description": "SVG bootstrap - badge_hd", + "body": [ + "{% svg bootstrap badge_hd %}" + ] + }, + "badge_hd_fill": { + "prefix": "svg.bootstrap.badge_hd_fill", + "description": "SVG bootstrap - badge_hd_fill", + "body": [ + "{% svg bootstrap badge_hd_fill %}" + ] + }, + "badge_sd": { + "prefix": "svg.bootstrap.badge_sd", + "description": "SVG bootstrap - badge_sd", + "body": [ + "{% svg bootstrap badge_sd %}" + ] + }, + "badge_sd_fill": { + "prefix": "svg.bootstrap.badge_sd_fill", + "description": "SVG bootstrap - badge_sd_fill", + "body": [ + "{% svg bootstrap badge_sd_fill %}" + ] + }, + "badge_tm": { + "prefix": "svg.bootstrap.badge_tm", + "description": "SVG bootstrap - badge_tm", + "body": [ + "{% svg bootstrap badge_tm %}" + ] + }, + "badge_tm_fill": { + "prefix": "svg.bootstrap.badge_tm_fill", + "description": "SVG bootstrap - badge_tm_fill", + "body": [ + "{% svg bootstrap badge_tm_fill %}" + ] + }, + "badge_vo": { + "prefix": "svg.bootstrap.badge_vo", + "description": "SVG bootstrap - badge_vo", + "body": [ + "{% svg bootstrap badge_vo %}" + ] + }, + "badge_vo_fill": { + "prefix": "svg.bootstrap.badge_vo_fill", + "description": "SVG bootstrap - badge_vo_fill", + "body": [ + "{% svg bootstrap badge_vo_fill %}" + ] + }, + "badge_vr": { + "prefix": "svg.bootstrap.badge_vr", + "description": "SVG bootstrap - badge_vr", + "body": [ + "{% svg bootstrap badge_vr %}" + ] + }, + "badge_vr_fill": { + "prefix": "svg.bootstrap.badge_vr_fill", + "description": "SVG bootstrap - badge_vr_fill", + "body": [ + "{% svg bootstrap badge_vr_fill %}" + ] + }, + "badge_wc": { + "prefix": "svg.bootstrap.badge_wc", + "description": "SVG bootstrap - badge_wc", + "body": [ + "{% svg bootstrap badge_wc %}" + ] + }, + "badge_wc_fill": { + "prefix": "svg.bootstrap.badge_wc_fill", + "description": "SVG bootstrap - badge_wc_fill", + "body": [ + "{% svg bootstrap badge_wc_fill %}" + ] + }, + "bag": { + "prefix": "svg.bootstrap.bag", + "description": "SVG bootstrap - bag", + "body": [ + "{% svg bootstrap bag %}" + ] + }, + "bag_check": { + "prefix": "svg.bootstrap.bag_check", + "description": "SVG bootstrap - bag_check", + "body": [ + "{% svg bootstrap bag_check %}" + ] + }, + "bag_check_fill": { + "prefix": "svg.bootstrap.bag_check_fill", + "description": "SVG bootstrap - bag_check_fill", + "body": [ + "{% svg bootstrap bag_check_fill %}" + ] + }, + "bag_dash": { + "prefix": "svg.bootstrap.bag_dash", + "description": "SVG bootstrap - bag_dash", + "body": [ + "{% svg bootstrap bag_dash %}" + ] + }, + "bag_dash_fill": { + "prefix": "svg.bootstrap.bag_dash_fill", + "description": "SVG bootstrap - bag_dash_fill", + "body": [ + "{% svg bootstrap bag_dash_fill %}" + ] + }, + "bag_fill": { + "prefix": "svg.bootstrap.bag_fill", + "description": "SVG bootstrap - bag_fill", + "body": [ + "{% svg bootstrap bag_fill %}" + ] + }, + "bag_heart": { + "prefix": "svg.bootstrap.bag_heart", + "description": "SVG bootstrap - bag_heart", + "body": [ + "{% svg bootstrap bag_heart %}" + ] + }, + "bag_heart_fill": { + "prefix": "svg.bootstrap.bag_heart_fill", + "description": "SVG bootstrap - bag_heart_fill", + "body": [ + "{% svg bootstrap bag_heart_fill %}" + ] + }, + "bag_plus": { + "prefix": "svg.bootstrap.bag_plus", + "description": "SVG bootstrap - bag_plus", + "body": [ + "{% svg bootstrap bag_plus %}" + ] + }, + "bag_plus_fill": { + "prefix": "svg.bootstrap.bag_plus_fill", + "description": "SVG bootstrap - bag_plus_fill", + "body": [ + "{% svg bootstrap bag_plus_fill %}" + ] + }, + "bag_x": { + "prefix": "svg.bootstrap.bag_x", + "description": "SVG bootstrap - bag_x", + "body": [ + "{% svg bootstrap bag_x %}" + ] + }, + "bag_x_fill": { + "prefix": "svg.bootstrap.bag_x_fill", + "description": "SVG bootstrap - bag_x_fill", + "body": [ + "{% svg bootstrap bag_x_fill %}" + ] + }, + "balloon": { + "prefix": "svg.bootstrap.balloon", + "description": "SVG bootstrap - balloon", + "body": [ + "{% svg bootstrap balloon %}" + ] + }, + "balloon_fill": { + "prefix": "svg.bootstrap.balloon_fill", + "description": "SVG bootstrap - balloon_fill", + "body": [ + "{% svg bootstrap balloon_fill %}" + ] + }, + "balloon_heart": { + "prefix": "svg.bootstrap.balloon_heart", + "description": "SVG bootstrap - balloon_heart", + "body": [ + "{% svg bootstrap balloon_heart %}" + ] + }, + "balloon_heart_fill": { + "prefix": "svg.bootstrap.balloon_heart_fill", + "description": "SVG bootstrap - balloon_heart_fill", + "body": [ + "{% svg bootstrap balloon_heart_fill %}" + ] + }, + "bandaid": { + "prefix": "svg.bootstrap.bandaid", + "description": "SVG bootstrap - bandaid", + "body": [ + "{% svg bootstrap bandaid %}" + ] + }, + "bandaid_fill": { + "prefix": "svg.bootstrap.bandaid_fill", + "description": "SVG bootstrap - bandaid_fill", + "body": [ + "{% svg bootstrap bandaid_fill %}" + ] + }, + "bank": { + "prefix": "svg.bootstrap.bank", + "description": "SVG bootstrap - bank", + "body": [ + "{% svg bootstrap bank %}" + ] + }, + "bank2": { + "prefix": "svg.bootstrap.bank2", + "description": "SVG bootstrap - bank2", + "body": [ + "{% svg bootstrap bank2 %}" + ] + }, + "bar_chart": { + "prefix": "svg.bootstrap.bar_chart", + "description": "SVG bootstrap - bar_chart", + "body": [ + "{% svg bootstrap bar_chart %}" + ] + }, + "bar_chart_fill": { + "prefix": "svg.bootstrap.bar_chart_fill", + "description": "SVG bootstrap - bar_chart_fill", + "body": [ + "{% svg bootstrap bar_chart_fill %}" + ] + }, + "bar_chart_line": { + "prefix": "svg.bootstrap.bar_chart_line", + "description": "SVG bootstrap - bar_chart_line", + "body": [ + "{% svg bootstrap bar_chart_line %}" + ] + }, + "bar_chart_line_fill": { + "prefix": "svg.bootstrap.bar_chart_line_fill", + "description": "SVG bootstrap - bar_chart_line_fill", + "body": [ + "{% svg bootstrap bar_chart_line_fill %}" + ] + }, + "bar_chart_steps": { + "prefix": "svg.bootstrap.bar_chart_steps", + "description": "SVG bootstrap - bar_chart_steps", + "body": [ + "{% svg bootstrap bar_chart_steps %}" + ] + }, + "basket": { + "prefix": "svg.bootstrap.basket", + "description": "SVG bootstrap - basket", + "body": [ + "{% svg bootstrap basket %}" + ] + }, + "basket2": { + "prefix": "svg.bootstrap.basket2", + "description": "SVG bootstrap - basket2", + "body": [ + "{% svg bootstrap basket2 %}" + ] + }, + "basket2_fill": { + "prefix": "svg.bootstrap.basket2_fill", + "description": "SVG bootstrap - basket2_fill", + "body": [ + "{% svg bootstrap basket2_fill %}" + ] + }, + "basket3": { + "prefix": "svg.bootstrap.basket3", + "description": "SVG bootstrap - basket3", + "body": [ + "{% svg bootstrap basket3 %}" + ] + }, + "basket3_fill": { + "prefix": "svg.bootstrap.basket3_fill", + "description": "SVG bootstrap - basket3_fill", + "body": [ + "{% svg bootstrap basket3_fill %}" + ] + }, + "basket_fill": { + "prefix": "svg.bootstrap.basket_fill", + "description": "SVG bootstrap - basket_fill", + "body": [ + "{% svg bootstrap basket_fill %}" + ] + }, + "battery": { + "prefix": "svg.bootstrap.battery", + "description": "SVG bootstrap - battery", + "body": [ + "{% svg bootstrap battery %}" + ] + }, + "battery_charging": { + "prefix": "svg.bootstrap.battery_charging", + "description": "SVG bootstrap - battery_charging", + "body": [ + "{% svg bootstrap battery_charging %}" + ] + }, + "battery_full": { + "prefix": "svg.bootstrap.battery_full", + "description": "SVG bootstrap - battery_full", + "body": [ + "{% svg bootstrap battery_full %}" + ] + }, + "battery_half": { + "prefix": "svg.bootstrap.battery_half", + "description": "SVG bootstrap - battery_half", + "body": [ + "{% svg bootstrap battery_half %}" + ] + }, + "behance": { + "prefix": "svg.bootstrap.behance", + "description": "SVG bootstrap - behance", + "body": [ + "{% svg bootstrap behance %}" + ] + }, + "bell": { + "prefix": "svg.bootstrap.bell", + "description": "SVG bootstrap - bell", + "body": [ + "{% svg bootstrap bell %}" + ] + }, + "bell_fill": { + "prefix": "svg.bootstrap.bell_fill", + "description": "SVG bootstrap - bell_fill", + "body": [ + "{% svg bootstrap bell_fill %}" + ] + }, + "bell_slash": { + "prefix": "svg.bootstrap.bell_slash", + "description": "SVG bootstrap - bell_slash", + "body": [ + "{% svg bootstrap bell_slash %}" + ] + }, + "bell_slash_fill": { + "prefix": "svg.bootstrap.bell_slash_fill", + "description": "SVG bootstrap - bell_slash_fill", + "body": [ + "{% svg bootstrap bell_slash_fill %}" + ] + }, + "bezier": { + "prefix": "svg.bootstrap.bezier", + "description": "SVG bootstrap - bezier", + "body": [ + "{% svg bootstrap bezier %}" + ] + }, + "bezier2": { + "prefix": "svg.bootstrap.bezier2", + "description": "SVG bootstrap - bezier2", + "body": [ + "{% svg bootstrap bezier2 %}" + ] + }, + "bicycle": { + "prefix": "svg.bootstrap.bicycle", + "description": "SVG bootstrap - bicycle", + "body": [ + "{% svg bootstrap bicycle %}" + ] + }, + "binoculars": { + "prefix": "svg.bootstrap.binoculars", + "description": "SVG bootstrap - binoculars", + "body": [ + "{% svg bootstrap binoculars %}" + ] + }, + "binoculars_fill": { + "prefix": "svg.bootstrap.binoculars_fill", + "description": "SVG bootstrap - binoculars_fill", + "body": [ + "{% svg bootstrap binoculars_fill %}" + ] + }, + "blockquote_left": { + "prefix": "svg.bootstrap.blockquote_left", + "description": "SVG bootstrap - blockquote_left", + "body": [ + "{% svg bootstrap blockquote_left %}" + ] + }, + "blockquote_right": { + "prefix": "svg.bootstrap.blockquote_right", + "description": "SVG bootstrap - blockquote_right", + "body": [ + "{% svg bootstrap blockquote_right %}" + ] + }, + "bluetooth": { + "prefix": "svg.bootstrap.bluetooth", + "description": "SVG bootstrap - bluetooth", + "body": [ + "{% svg bootstrap bluetooth %}" + ] + }, + "body_text": { + "prefix": "svg.bootstrap.body_text", + "description": "SVG bootstrap - body_text", + "body": [ + "{% svg bootstrap body_text %}" + ] + }, + "book": { + "prefix": "svg.bootstrap.book", + "description": "SVG bootstrap - book", + "body": [ + "{% svg bootstrap book %}" + ] + }, + "book_fill": { + "prefix": "svg.bootstrap.book_fill", + "description": "SVG bootstrap - book_fill", + "body": [ + "{% svg bootstrap book_fill %}" + ] + }, + "book_half": { + "prefix": "svg.bootstrap.book_half", + "description": "SVG bootstrap - book_half", + "body": [ + "{% svg bootstrap book_half %}" + ] + }, + "bookmark": { + "prefix": "svg.bootstrap.bookmark", + "description": "SVG bootstrap - bookmark", + "body": [ + "{% svg bootstrap bookmark %}" + ] + }, + "bookmark_check": { + "prefix": "svg.bootstrap.bookmark_check", + "description": "SVG bootstrap - bookmark_check", + "body": [ + "{% svg bootstrap bookmark_check %}" + ] + }, + "bookmark_check_fill": { + "prefix": "svg.bootstrap.bookmark_check_fill", + "description": "SVG bootstrap - bookmark_check_fill", + "body": [ + "{% svg bootstrap bookmark_check_fill %}" + ] + }, + "bookmark_dash": { + "prefix": "svg.bootstrap.bookmark_dash", + "description": "SVG bootstrap - bookmark_dash", + "body": [ + "{% svg bootstrap bookmark_dash %}" + ] + }, + "bookmark_dash_fill": { + "prefix": "svg.bootstrap.bookmark_dash_fill", + "description": "SVG bootstrap - bookmark_dash_fill", + "body": [ + "{% svg bootstrap bookmark_dash_fill %}" + ] + }, + "bookmark_fill": { + "prefix": "svg.bootstrap.bookmark_fill", + "description": "SVG bootstrap - bookmark_fill", + "body": [ + "{% svg bootstrap bookmark_fill %}" + ] + }, + "bookmark_heart": { + "prefix": "svg.bootstrap.bookmark_heart", + "description": "SVG bootstrap - bookmark_heart", + "body": [ + "{% svg bootstrap bookmark_heart %}" + ] + }, + "bookmark_heart_fill": { + "prefix": "svg.bootstrap.bookmark_heart_fill", + "description": "SVG bootstrap - bookmark_heart_fill", + "body": [ + "{% svg bootstrap bookmark_heart_fill %}" + ] + }, + "bookmark_plus": { + "prefix": "svg.bootstrap.bookmark_plus", + "description": "SVG bootstrap - bookmark_plus", + "body": [ + "{% svg bootstrap bookmark_plus %}" + ] + }, + "bookmark_plus_fill": { + "prefix": "svg.bootstrap.bookmark_plus_fill", + "description": "SVG bootstrap - bookmark_plus_fill", + "body": [ + "{% svg bootstrap bookmark_plus_fill %}" + ] + }, + "bookmark_star": { + "prefix": "svg.bootstrap.bookmark_star", + "description": "SVG bootstrap - bookmark_star", + "body": [ + "{% svg bootstrap bookmark_star %}" + ] + }, + "bookmark_star_fill": { + "prefix": "svg.bootstrap.bookmark_star_fill", + "description": "SVG bootstrap - bookmark_star_fill", + "body": [ + "{% svg bootstrap bookmark_star_fill %}" + ] + }, + "bookmark_x": { + "prefix": "svg.bootstrap.bookmark_x", + "description": "SVG bootstrap - bookmark_x", + "body": [ + "{% svg bootstrap bookmark_x %}" + ] + }, + "bookmark_x_fill": { + "prefix": "svg.bootstrap.bookmark_x_fill", + "description": "SVG bootstrap - bookmark_x_fill", + "body": [ + "{% svg bootstrap bookmark_x_fill %}" + ] + }, + "bookmarks": { + "prefix": "svg.bootstrap.bookmarks", + "description": "SVG bootstrap - bookmarks", + "body": [ + "{% svg bootstrap bookmarks %}" + ] + }, + "bookmarks_fill": { + "prefix": "svg.bootstrap.bookmarks_fill", + "description": "SVG bootstrap - bookmarks_fill", + "body": [ + "{% svg bootstrap bookmarks_fill %}" + ] + }, + "bookshelf": { + "prefix": "svg.bootstrap.bookshelf", + "description": "SVG bootstrap - bookshelf", + "body": [ + "{% svg bootstrap bookshelf %}" + ] + }, + "boombox": { + "prefix": "svg.bootstrap.boombox", + "description": "SVG bootstrap - boombox", + "body": [ + "{% svg bootstrap boombox %}" + ] + }, + "boombox_fill": { + "prefix": "svg.bootstrap.boombox_fill", + "description": "SVG bootstrap - boombox_fill", + "body": [ + "{% svg bootstrap boombox_fill %}" + ] + }, + "bootstrap": { + "prefix": "svg.bootstrap.bootstrap", + "description": "SVG bootstrap - bootstrap", + "body": [ + "{% svg bootstrap bootstrap %}" + ] + }, + "bootstrap_fill": { + "prefix": "svg.bootstrap.bootstrap_fill", + "description": "SVG bootstrap - bootstrap_fill", + "body": [ + "{% svg bootstrap bootstrap_fill %}" + ] + }, + "bootstrap_reboot": { + "prefix": "svg.bootstrap.bootstrap_reboot", + "description": "SVG bootstrap - bootstrap_reboot", + "body": [ + "{% svg bootstrap bootstrap_reboot %}" + ] + }, + "border": { + "prefix": "svg.bootstrap.border", + "description": "SVG bootstrap - border", + "body": [ + "{% svg bootstrap border %}" + ] + }, + "border_all": { + "prefix": "svg.bootstrap.border_all", + "description": "SVG bootstrap - border_all", + "body": [ + "{% svg bootstrap border_all %}" + ] + }, + "border_bottom": { + "prefix": "svg.bootstrap.border_bottom", + "description": "SVG bootstrap - border_bottom", + "body": [ + "{% svg bootstrap border_bottom %}" + ] + }, + "border_center": { + "prefix": "svg.bootstrap.border_center", + "description": "SVG bootstrap - border_center", + "body": [ + "{% svg bootstrap border_center %}" + ] + }, + "border_inner": { + "prefix": "svg.bootstrap.border_inner", + "description": "SVG bootstrap - border_inner", + "body": [ + "{% svg bootstrap border_inner %}" + ] + }, + "border_left": { + "prefix": "svg.bootstrap.border_left", + "description": "SVG bootstrap - border_left", + "body": [ + "{% svg bootstrap border_left %}" + ] + }, + "border_middle": { + "prefix": "svg.bootstrap.border_middle", + "description": "SVG bootstrap - border_middle", + "body": [ + "{% svg bootstrap border_middle %}" + ] + }, + "border_outer": { + "prefix": "svg.bootstrap.border_outer", + "description": "SVG bootstrap - border_outer", + "body": [ + "{% svg bootstrap border_outer %}" + ] + }, + "border_right": { + "prefix": "svg.bootstrap.border_right", + "description": "SVG bootstrap - border_right", + "body": [ + "{% svg bootstrap border_right %}" + ] + }, + "border_style": { + "prefix": "svg.bootstrap.border_style", + "description": "SVG bootstrap - border_style", + "body": [ + "{% svg bootstrap border_style %}" + ] + }, + "border_top": { + "prefix": "svg.bootstrap.border_top", + "description": "SVG bootstrap - border_top", + "body": [ + "{% svg bootstrap border_top %}" + ] + }, + "border_width": { + "prefix": "svg.bootstrap.border_width", + "description": "SVG bootstrap - border_width", + "body": [ + "{% svg bootstrap border_width %}" + ] + }, + "bounding_box": { + "prefix": "svg.bootstrap.bounding_box", + "description": "SVG bootstrap - bounding_box", + "body": [ + "{% svg bootstrap bounding_box %}" + ] + }, + "bounding_box_circles": { + "prefix": "svg.bootstrap.bounding_box_circles", + "description": "SVG bootstrap - bounding_box_circles", + "body": [ + "{% svg bootstrap bounding_box_circles %}" + ] + }, + "box": { + "prefix": "svg.bootstrap.box", + "description": "SVG bootstrap - box", + "body": [ + "{% svg bootstrap box %}" + ] + }, + "box2": { + "prefix": "svg.bootstrap.box2", + "description": "SVG bootstrap - box2", + "body": [ + "{% svg bootstrap box2 %}" + ] + }, + "box2_fill": { + "prefix": "svg.bootstrap.box2_fill", + "description": "SVG bootstrap - box2_fill", + "body": [ + "{% svg bootstrap box2_fill %}" + ] + }, + "box2_heart": { + "prefix": "svg.bootstrap.box2_heart", + "description": "SVG bootstrap - box2_heart", + "body": [ + "{% svg bootstrap box2_heart %}" + ] + }, + "box2_heart_fill": { + "prefix": "svg.bootstrap.box2_heart_fill", + "description": "SVG bootstrap - box2_heart_fill", + "body": [ + "{% svg bootstrap box2_heart_fill %}" + ] + }, + "box_arrow_down": { + "prefix": "svg.bootstrap.box_arrow_down", + "description": "SVG bootstrap - box_arrow_down", + "body": [ + "{% svg bootstrap box_arrow_down %}" + ] + }, + "box_arrow_down_left": { + "prefix": "svg.bootstrap.box_arrow_down_left", + "description": "SVG bootstrap - box_arrow_down_left", + "body": [ + "{% svg bootstrap box_arrow_down_left %}" + ] + }, + "box_arrow_down_right": { + "prefix": "svg.bootstrap.box_arrow_down_right", + "description": "SVG bootstrap - box_arrow_down_right", + "body": [ + "{% svg bootstrap box_arrow_down_right %}" + ] + }, + "box_arrow_in_down": { + "prefix": "svg.bootstrap.box_arrow_in_down", + "description": "SVG bootstrap - box_arrow_in_down", + "body": [ + "{% svg bootstrap box_arrow_in_down %}" + ] + }, + "box_arrow_in_down_left": { + "prefix": "svg.bootstrap.box_arrow_in_down_left", + "description": "SVG bootstrap - box_arrow_in_down_left", + "body": [ + "{% svg bootstrap box_arrow_in_down_left %}" + ] + }, + "box_arrow_in_down_right": { + "prefix": "svg.bootstrap.box_arrow_in_down_right", + "description": "SVG bootstrap - box_arrow_in_down_right", + "body": [ + "{% svg bootstrap box_arrow_in_down_right %}" + ] + }, + "box_arrow_in_left": { + "prefix": "svg.bootstrap.box_arrow_in_left", + "description": "SVG bootstrap - box_arrow_in_left", + "body": [ + "{% svg bootstrap box_arrow_in_left %}" + ] + }, + "box_arrow_in_right": { + "prefix": "svg.bootstrap.box_arrow_in_right", + "description": "SVG bootstrap - box_arrow_in_right", + "body": [ + "{% svg bootstrap box_arrow_in_right %}" + ] + }, + "box_arrow_in_up": { + "prefix": "svg.bootstrap.box_arrow_in_up", + "description": "SVG bootstrap - box_arrow_in_up", + "body": [ + "{% svg bootstrap box_arrow_in_up %}" + ] + }, + "box_arrow_in_up_left": { + "prefix": "svg.bootstrap.box_arrow_in_up_left", + "description": "SVG bootstrap - box_arrow_in_up_left", + "body": [ + "{% svg bootstrap box_arrow_in_up_left %}" + ] + }, + "box_arrow_in_up_right": { + "prefix": "svg.bootstrap.box_arrow_in_up_right", + "description": "SVG bootstrap - box_arrow_in_up_right", + "body": [ + "{% svg bootstrap box_arrow_in_up_right %}" + ] + }, + "box_arrow_left": { + "prefix": "svg.bootstrap.box_arrow_left", + "description": "SVG bootstrap - box_arrow_left", + "body": [ + "{% svg bootstrap box_arrow_left %}" + ] + }, + "box_arrow_right": { + "prefix": "svg.bootstrap.box_arrow_right", + "description": "SVG bootstrap - box_arrow_right", + "body": [ + "{% svg bootstrap box_arrow_right %}" + ] + }, + "box_arrow_up": { + "prefix": "svg.bootstrap.box_arrow_up", + "description": "SVG bootstrap - box_arrow_up", + "body": [ + "{% svg bootstrap box_arrow_up %}" + ] + }, + "box_arrow_up_left": { + "prefix": "svg.bootstrap.box_arrow_up_left", + "description": "SVG bootstrap - box_arrow_up_left", + "body": [ + "{% svg bootstrap box_arrow_up_left %}" + ] + }, + "box_arrow_up_right": { + "prefix": "svg.bootstrap.box_arrow_up_right", + "description": "SVG bootstrap - box_arrow_up_right", + "body": [ + "{% svg bootstrap box_arrow_up_right %}" + ] + }, + "box_fill": { + "prefix": "svg.bootstrap.box_fill", + "description": "SVG bootstrap - box_fill", + "body": [ + "{% svg bootstrap box_fill %}" + ] + }, + "box_seam": { + "prefix": "svg.bootstrap.box_seam", + "description": "SVG bootstrap - box_seam", + "body": [ + "{% svg bootstrap box_seam %}" + ] + }, + "box_seam_fill": { + "prefix": "svg.bootstrap.box_seam_fill", + "description": "SVG bootstrap - box_seam_fill", + "body": [ + "{% svg bootstrap box_seam_fill %}" + ] + }, + "boxes": { + "prefix": "svg.bootstrap.boxes", + "description": "SVG bootstrap - boxes", + "body": [ + "{% svg bootstrap boxes %}" + ] + }, + "braces": { + "prefix": "svg.bootstrap.braces", + "description": "SVG bootstrap - braces", + "body": [ + "{% svg bootstrap braces %}" + ] + }, + "braces_asterisk": { + "prefix": "svg.bootstrap.braces_asterisk", + "description": "SVG bootstrap - braces_asterisk", + "body": [ + "{% svg bootstrap braces_asterisk %}" + ] + }, + "bricks": { + "prefix": "svg.bootstrap.bricks", + "description": "SVG bootstrap - bricks", + "body": [ + "{% svg bootstrap bricks %}" + ] + }, + "briefcase": { + "prefix": "svg.bootstrap.briefcase", + "description": "SVG bootstrap - briefcase", + "body": [ + "{% svg bootstrap briefcase %}" + ] + }, + "briefcase_fill": { + "prefix": "svg.bootstrap.briefcase_fill", + "description": "SVG bootstrap - briefcase_fill", + "body": [ + "{% svg bootstrap briefcase_fill %}" + ] + }, + "brightness_alt_high": { + "prefix": "svg.bootstrap.brightness_alt_high", + "description": "SVG bootstrap - brightness_alt_high", + "body": [ + "{% svg bootstrap brightness_alt_high %}" + ] + }, + "brightness_alt_high_fill": { + "prefix": "svg.bootstrap.brightness_alt_high_fill", + "description": "SVG bootstrap - brightness_alt_high_fill", + "body": [ + "{% svg bootstrap brightness_alt_high_fill %}" + ] + }, + "brightness_alt_low": { + "prefix": "svg.bootstrap.brightness_alt_low", + "description": "SVG bootstrap - brightness_alt_low", + "body": [ + "{% svg bootstrap brightness_alt_low %}" + ] + }, + "brightness_alt_low_fill": { + "prefix": "svg.bootstrap.brightness_alt_low_fill", + "description": "SVG bootstrap - brightness_alt_low_fill", + "body": [ + "{% svg bootstrap brightness_alt_low_fill %}" + ] + }, + "brightness_high": { + "prefix": "svg.bootstrap.brightness_high", + "description": "SVG bootstrap - brightness_high", + "body": [ + "{% svg bootstrap brightness_high %}" + ] + }, + "brightness_high_fill": { + "prefix": "svg.bootstrap.brightness_high_fill", + "description": "SVG bootstrap - brightness_high_fill", + "body": [ + "{% svg bootstrap brightness_high_fill %}" + ] + }, + "brightness_low": { + "prefix": "svg.bootstrap.brightness_low", + "description": "SVG bootstrap - brightness_low", + "body": [ + "{% svg bootstrap brightness_low %}" + ] + }, + "brightness_low_fill": { + "prefix": "svg.bootstrap.brightness_low_fill", + "description": "SVG bootstrap - brightness_low_fill", + "body": [ + "{% svg bootstrap brightness_low_fill %}" + ] + }, + "broadcast": { + "prefix": "svg.bootstrap.broadcast", + "description": "SVG bootstrap - broadcast", + "body": [ + "{% svg bootstrap broadcast %}" + ] + }, + "broadcast_pin": { + "prefix": "svg.bootstrap.broadcast_pin", + "description": "SVG bootstrap - broadcast_pin", + "body": [ + "{% svg bootstrap broadcast_pin %}" + ] + }, + "browser_chrome": { + "prefix": "svg.bootstrap.browser_chrome", + "description": "SVG bootstrap - browser_chrome", + "body": [ + "{% svg bootstrap browser_chrome %}" + ] + }, + "browser_edge": { + "prefix": "svg.bootstrap.browser_edge", + "description": "SVG bootstrap - browser_edge", + "body": [ + "{% svg bootstrap browser_edge %}" + ] + }, + "browser_firefox": { + "prefix": "svg.bootstrap.browser_firefox", + "description": "SVG bootstrap - browser_firefox", + "body": [ + "{% svg bootstrap browser_firefox %}" + ] + }, + "browser_safari": { + "prefix": "svg.bootstrap.browser_safari", + "description": "SVG bootstrap - browser_safari", + "body": [ + "{% svg bootstrap browser_safari %}" + ] + }, + "brush": { + "prefix": "svg.bootstrap.brush", + "description": "SVG bootstrap - brush", + "body": [ + "{% svg bootstrap brush %}" + ] + }, + "brush_fill": { + "prefix": "svg.bootstrap.brush_fill", + "description": "SVG bootstrap - brush_fill", + "body": [ + "{% svg bootstrap brush_fill %}" + ] + }, + "bucket": { + "prefix": "svg.bootstrap.bucket", + "description": "SVG bootstrap - bucket", + "body": [ + "{% svg bootstrap bucket %}" + ] + }, + "bucket_fill": { + "prefix": "svg.bootstrap.bucket_fill", + "description": "SVG bootstrap - bucket_fill", + "body": [ + "{% svg bootstrap bucket_fill %}" + ] + }, + "bug": { + "prefix": "svg.bootstrap.bug", + "description": "SVG bootstrap - bug", + "body": [ + "{% svg bootstrap bug %}" + ] + }, + "bug_fill": { + "prefix": "svg.bootstrap.bug_fill", + "description": "SVG bootstrap - bug_fill", + "body": [ + "{% svg bootstrap bug_fill %}" + ] + }, + "building": { + "prefix": "svg.bootstrap.building", + "description": "SVG bootstrap - building", + "body": [ + "{% svg bootstrap building %}" + ] + }, + "building_add": { + "prefix": "svg.bootstrap.building_add", + "description": "SVG bootstrap - building_add", + "body": [ + "{% svg bootstrap building_add %}" + ] + }, + "building_check": { + "prefix": "svg.bootstrap.building_check", + "description": "SVG bootstrap - building_check", + "body": [ + "{% svg bootstrap building_check %}" + ] + }, + "building_dash": { + "prefix": "svg.bootstrap.building_dash", + "description": "SVG bootstrap - building_dash", + "body": [ + "{% svg bootstrap building_dash %}" + ] + }, + "building_down": { + "prefix": "svg.bootstrap.building_down", + "description": "SVG bootstrap - building_down", + "body": [ + "{% svg bootstrap building_down %}" + ] + }, + "building_exclamation": { + "prefix": "svg.bootstrap.building_exclamation", + "description": "SVG bootstrap - building_exclamation", + "body": [ + "{% svg bootstrap building_exclamation %}" + ] + }, + "building_fill": { + "prefix": "svg.bootstrap.building_fill", + "description": "SVG bootstrap - building_fill", + "body": [ + "{% svg bootstrap building_fill %}" + ] + }, + "building_fill_add": { + "prefix": "svg.bootstrap.building_fill_add", + "description": "SVG bootstrap - building_fill_add", + "body": [ + "{% svg bootstrap building_fill_add %}" + ] + }, + "building_fill_check": { + "prefix": "svg.bootstrap.building_fill_check", + "description": "SVG bootstrap - building_fill_check", + "body": [ + "{% svg bootstrap building_fill_check %}" + ] + }, + "building_fill_dash": { + "prefix": "svg.bootstrap.building_fill_dash", + "description": "SVG bootstrap - building_fill_dash", + "body": [ + "{% svg bootstrap building_fill_dash %}" + ] + }, + "building_fill_down": { + "prefix": "svg.bootstrap.building_fill_down", + "description": "SVG bootstrap - building_fill_down", + "body": [ + "{% svg bootstrap building_fill_down %}" + ] + }, + "building_fill_exclamation": { + "prefix": "svg.bootstrap.building_fill_exclamation", + "description": "SVG bootstrap - building_fill_exclamation", + "body": [ + "{% svg bootstrap building_fill_exclamation %}" + ] + }, + "building_fill_gear": { + "prefix": "svg.bootstrap.building_fill_gear", + "description": "SVG bootstrap - building_fill_gear", + "body": [ + "{% svg bootstrap building_fill_gear %}" + ] + }, + "building_fill_lock": { + "prefix": "svg.bootstrap.building_fill_lock", + "description": "SVG bootstrap - building_fill_lock", + "body": [ + "{% svg bootstrap building_fill_lock %}" + ] + }, + "building_fill_slash": { + "prefix": "svg.bootstrap.building_fill_slash", + "description": "SVG bootstrap - building_fill_slash", + "body": [ + "{% svg bootstrap building_fill_slash %}" + ] + }, + "building_fill_up": { + "prefix": "svg.bootstrap.building_fill_up", + "description": "SVG bootstrap - building_fill_up", + "body": [ + "{% svg bootstrap building_fill_up %}" + ] + }, + "building_fill_x": { + "prefix": "svg.bootstrap.building_fill_x", + "description": "SVG bootstrap - building_fill_x", + "body": [ + "{% svg bootstrap building_fill_x %}" + ] + }, + "building_gear": { + "prefix": "svg.bootstrap.building_gear", + "description": "SVG bootstrap - building_gear", + "body": [ + "{% svg bootstrap building_gear %}" + ] + }, + "building_lock": { + "prefix": "svg.bootstrap.building_lock", + "description": "SVG bootstrap - building_lock", + "body": [ + "{% svg bootstrap building_lock %}" + ] + }, + "building_slash": { + "prefix": "svg.bootstrap.building_slash", + "description": "SVG bootstrap - building_slash", + "body": [ + "{% svg bootstrap building_slash %}" + ] + }, + "building_up": { + "prefix": "svg.bootstrap.building_up", + "description": "SVG bootstrap - building_up", + "body": [ + "{% svg bootstrap building_up %}" + ] + }, + "building_x": { + "prefix": "svg.bootstrap.building_x", + "description": "SVG bootstrap - building_x", + "body": [ + "{% svg bootstrap building_x %}" + ] + }, + "buildings": { + "prefix": "svg.bootstrap.buildings", + "description": "SVG bootstrap - buildings", + "body": [ + "{% svg bootstrap buildings %}" + ] + }, + "buildings_fill": { + "prefix": "svg.bootstrap.buildings_fill", + "description": "SVG bootstrap - buildings_fill", + "body": [ + "{% svg bootstrap buildings_fill %}" + ] + }, + "bullseye": { + "prefix": "svg.bootstrap.bullseye", + "description": "SVG bootstrap - bullseye", + "body": [ + "{% svg bootstrap bullseye %}" + ] + }, + "bus_front": { + "prefix": "svg.bootstrap.bus_front", + "description": "SVG bootstrap - bus_front", + "body": [ + "{% svg bootstrap bus_front %}" + ] + }, + "bus_front_fill": { + "prefix": "svg.bootstrap.bus_front_fill", + "description": "SVG bootstrap - bus_front_fill", + "body": [ + "{% svg bootstrap bus_front_fill %}" + ] + }, + "c_circle": { + "prefix": "svg.bootstrap.c_circle", + "description": "SVG bootstrap - c_circle", + "body": [ + "{% svg bootstrap c_circle %}" + ] + }, + "c_circle_fill": { + "prefix": "svg.bootstrap.c_circle_fill", + "description": "SVG bootstrap - c_circle_fill", + "body": [ + "{% svg bootstrap c_circle_fill %}" + ] + }, + "c_square": { + "prefix": "svg.bootstrap.c_square", + "description": "SVG bootstrap - c_square", + "body": [ + "{% svg bootstrap c_square %}" + ] + }, + "c_square_fill": { + "prefix": "svg.bootstrap.c_square_fill", + "description": "SVG bootstrap - c_square_fill", + "body": [ + "{% svg bootstrap c_square_fill %}" + ] + }, + "calculator": { + "prefix": "svg.bootstrap.calculator", + "description": "SVG bootstrap - calculator", + "body": [ + "{% svg bootstrap calculator %}" + ] + }, + "calculator_fill": { + "prefix": "svg.bootstrap.calculator_fill", + "description": "SVG bootstrap - calculator_fill", + "body": [ + "{% svg bootstrap calculator_fill %}" + ] + }, + "calendar": { + "prefix": "svg.bootstrap.calendar", + "description": "SVG bootstrap - calendar", + "body": [ + "{% svg bootstrap calendar %}" + ] + }, + "calendar2": { + "prefix": "svg.bootstrap.calendar2", + "description": "SVG bootstrap - calendar2", + "body": [ + "{% svg bootstrap calendar2 %}" + ] + }, + "calendar2_check": { + "prefix": "svg.bootstrap.calendar2_check", + "description": "SVG bootstrap - calendar2_check", + "body": [ + "{% svg bootstrap calendar2_check %}" + ] + }, + "calendar2_check_fill": { + "prefix": "svg.bootstrap.calendar2_check_fill", + "description": "SVG bootstrap - calendar2_check_fill", + "body": [ + "{% svg bootstrap calendar2_check_fill %}" + ] + }, + "calendar2_date": { + "prefix": "svg.bootstrap.calendar2_date", + "description": "SVG bootstrap - calendar2_date", + "body": [ + "{% svg bootstrap calendar2_date %}" + ] + }, + "calendar2_date_fill": { + "prefix": "svg.bootstrap.calendar2_date_fill", + "description": "SVG bootstrap - calendar2_date_fill", + "body": [ + "{% svg bootstrap calendar2_date_fill %}" + ] + }, + "calendar2_day": { + "prefix": "svg.bootstrap.calendar2_day", + "description": "SVG bootstrap - calendar2_day", + "body": [ + "{% svg bootstrap calendar2_day %}" + ] + }, + "calendar2_day_fill": { + "prefix": "svg.bootstrap.calendar2_day_fill", + "description": "SVG bootstrap - calendar2_day_fill", + "body": [ + "{% svg bootstrap calendar2_day_fill %}" + ] + }, + "calendar2_event": { + "prefix": "svg.bootstrap.calendar2_event", + "description": "SVG bootstrap - calendar2_event", + "body": [ + "{% svg bootstrap calendar2_event %}" + ] + }, + "calendar2_event_fill": { + "prefix": "svg.bootstrap.calendar2_event_fill", + "description": "SVG bootstrap - calendar2_event_fill", + "body": [ + "{% svg bootstrap calendar2_event_fill %}" + ] + }, + "calendar2_fill": { + "prefix": "svg.bootstrap.calendar2_fill", + "description": "SVG bootstrap - calendar2_fill", + "body": [ + "{% svg bootstrap calendar2_fill %}" + ] + }, + "calendar2_heart": { + "prefix": "svg.bootstrap.calendar2_heart", + "description": "SVG bootstrap - calendar2_heart", + "body": [ + "{% svg bootstrap calendar2_heart %}" + ] + }, + "calendar2_heart_fill": { + "prefix": "svg.bootstrap.calendar2_heart_fill", + "description": "SVG bootstrap - calendar2_heart_fill", + "body": [ + "{% svg bootstrap calendar2_heart_fill %}" + ] + }, + "calendar2_minus": { + "prefix": "svg.bootstrap.calendar2_minus", + "description": "SVG bootstrap - calendar2_minus", + "body": [ + "{% svg bootstrap calendar2_minus %}" + ] + }, + "calendar2_minus_fill": { + "prefix": "svg.bootstrap.calendar2_minus_fill", + "description": "SVG bootstrap - calendar2_minus_fill", + "body": [ + "{% svg bootstrap calendar2_minus_fill %}" + ] + }, + "calendar2_month": { + "prefix": "svg.bootstrap.calendar2_month", + "description": "SVG bootstrap - calendar2_month", + "body": [ + "{% svg bootstrap calendar2_month %}" + ] + }, + "calendar2_month_fill": { + "prefix": "svg.bootstrap.calendar2_month_fill", + "description": "SVG bootstrap - calendar2_month_fill", + "body": [ + "{% svg bootstrap calendar2_month_fill %}" + ] + }, + "calendar2_plus": { + "prefix": "svg.bootstrap.calendar2_plus", + "description": "SVG bootstrap - calendar2_plus", + "body": [ + "{% svg bootstrap calendar2_plus %}" + ] + }, + "calendar2_plus_fill": { + "prefix": "svg.bootstrap.calendar2_plus_fill", + "description": "SVG bootstrap - calendar2_plus_fill", + "body": [ + "{% svg bootstrap calendar2_plus_fill %}" + ] + }, + "calendar2_range": { + "prefix": "svg.bootstrap.calendar2_range", + "description": "SVG bootstrap - calendar2_range", + "body": [ + "{% svg bootstrap calendar2_range %}" + ] + }, + "calendar2_range_fill": { + "prefix": "svg.bootstrap.calendar2_range_fill", + "description": "SVG bootstrap - calendar2_range_fill", + "body": [ + "{% svg bootstrap calendar2_range_fill %}" + ] + }, + "calendar2_week": { + "prefix": "svg.bootstrap.calendar2_week", + "description": "SVG bootstrap - calendar2_week", + "body": [ + "{% svg bootstrap calendar2_week %}" + ] + }, + "calendar2_week_fill": { + "prefix": "svg.bootstrap.calendar2_week_fill", + "description": "SVG bootstrap - calendar2_week_fill", + "body": [ + "{% svg bootstrap calendar2_week_fill %}" + ] + }, + "calendar2_x": { + "prefix": "svg.bootstrap.calendar2_x", + "description": "SVG bootstrap - calendar2_x", + "body": [ + "{% svg bootstrap calendar2_x %}" + ] + }, + "calendar2_x_fill": { + "prefix": "svg.bootstrap.calendar2_x_fill", + "description": "SVG bootstrap - calendar2_x_fill", + "body": [ + "{% svg bootstrap calendar2_x_fill %}" + ] + }, + "calendar3": { + "prefix": "svg.bootstrap.calendar3", + "description": "SVG bootstrap - calendar3", + "body": [ + "{% svg bootstrap calendar3 %}" + ] + }, + "calendar3_event": { + "prefix": "svg.bootstrap.calendar3_event", + "description": "SVG bootstrap - calendar3_event", + "body": [ + "{% svg bootstrap calendar3_event %}" + ] + }, + "calendar3_event_fill": { + "prefix": "svg.bootstrap.calendar3_event_fill", + "description": "SVG bootstrap - calendar3_event_fill", + "body": [ + "{% svg bootstrap calendar3_event_fill %}" + ] + }, + "calendar3_fill": { + "prefix": "svg.bootstrap.calendar3_fill", + "description": "SVG bootstrap - calendar3_fill", + "body": [ + "{% svg bootstrap calendar3_fill %}" + ] + }, + "calendar3_range": { + "prefix": "svg.bootstrap.calendar3_range", + "description": "SVG bootstrap - calendar3_range", + "body": [ + "{% svg bootstrap calendar3_range %}" + ] + }, + "calendar3_range_fill": { + "prefix": "svg.bootstrap.calendar3_range_fill", + "description": "SVG bootstrap - calendar3_range_fill", + "body": [ + "{% svg bootstrap calendar3_range_fill %}" + ] + }, + "calendar3_week": { + "prefix": "svg.bootstrap.calendar3_week", + "description": "SVG bootstrap - calendar3_week", + "body": [ + "{% svg bootstrap calendar3_week %}" + ] + }, + "calendar3_week_fill": { + "prefix": "svg.bootstrap.calendar3_week_fill", + "description": "SVG bootstrap - calendar3_week_fill", + "body": [ + "{% svg bootstrap calendar3_week_fill %}" + ] + }, + "calendar4": { + "prefix": "svg.bootstrap.calendar4", + "description": "SVG bootstrap - calendar4", + "body": [ + "{% svg bootstrap calendar4 %}" + ] + }, + "calendar4_event": { + "prefix": "svg.bootstrap.calendar4_event", + "description": "SVG bootstrap - calendar4_event", + "body": [ + "{% svg bootstrap calendar4_event %}" + ] + }, + "calendar4_range": { + "prefix": "svg.bootstrap.calendar4_range", + "description": "SVG bootstrap - calendar4_range", + "body": [ + "{% svg bootstrap calendar4_range %}" + ] + }, + "calendar4_week": { + "prefix": "svg.bootstrap.calendar4_week", + "description": "SVG bootstrap - calendar4_week", + "body": [ + "{% svg bootstrap calendar4_week %}" + ] + }, + "calendar_check": { + "prefix": "svg.bootstrap.calendar_check", + "description": "SVG bootstrap - calendar_check", + "body": [ + "{% svg bootstrap calendar_check %}" + ] + }, + "calendar_check_fill": { + "prefix": "svg.bootstrap.calendar_check_fill", + "description": "SVG bootstrap - calendar_check_fill", + "body": [ + "{% svg bootstrap calendar_check_fill %}" + ] + }, + "calendar_date": { + "prefix": "svg.bootstrap.calendar_date", + "description": "SVG bootstrap - calendar_date", + "body": [ + "{% svg bootstrap calendar_date %}" + ] + }, + "calendar_date_fill": { + "prefix": "svg.bootstrap.calendar_date_fill", + "description": "SVG bootstrap - calendar_date_fill", + "body": [ + "{% svg bootstrap calendar_date_fill %}" + ] + }, + "calendar_day": { + "prefix": "svg.bootstrap.calendar_day", + "description": "SVG bootstrap - calendar_day", + "body": [ + "{% svg bootstrap calendar_day %}" + ] + }, + "calendar_day_fill": { + "prefix": "svg.bootstrap.calendar_day_fill", + "description": "SVG bootstrap - calendar_day_fill", + "body": [ + "{% svg bootstrap calendar_day_fill %}" + ] + }, + "calendar_event": { + "prefix": "svg.bootstrap.calendar_event", + "description": "SVG bootstrap - calendar_event", + "body": [ + "{% svg bootstrap calendar_event %}" + ] + }, + "calendar_event_fill": { + "prefix": "svg.bootstrap.calendar_event_fill", + "description": "SVG bootstrap - calendar_event_fill", + "body": [ + "{% svg bootstrap calendar_event_fill %}" + ] + }, + "calendar_fill": { + "prefix": "svg.bootstrap.calendar_fill", + "description": "SVG bootstrap - calendar_fill", + "body": [ + "{% svg bootstrap calendar_fill %}" + ] + }, + "calendar_heart": { + "prefix": "svg.bootstrap.calendar_heart", + "description": "SVG bootstrap - calendar_heart", + "body": [ + "{% svg bootstrap calendar_heart %}" + ] + }, + "calendar_heart_fill": { + "prefix": "svg.bootstrap.calendar_heart_fill", + "description": "SVG bootstrap - calendar_heart_fill", + "body": [ + "{% svg bootstrap calendar_heart_fill %}" + ] + }, + "calendar_minus": { + "prefix": "svg.bootstrap.calendar_minus", + "description": "SVG bootstrap - calendar_minus", + "body": [ + "{% svg bootstrap calendar_minus %}" + ] + }, + "calendar_minus_fill": { + "prefix": "svg.bootstrap.calendar_minus_fill", + "description": "SVG bootstrap - calendar_minus_fill", + "body": [ + "{% svg bootstrap calendar_minus_fill %}" + ] + }, + "calendar_month": { + "prefix": "svg.bootstrap.calendar_month", + "description": "SVG bootstrap - calendar_month", + "body": [ + "{% svg bootstrap calendar_month %}" + ] + }, + "calendar_month_fill": { + "prefix": "svg.bootstrap.calendar_month_fill", + "description": "SVG bootstrap - calendar_month_fill", + "body": [ + "{% svg bootstrap calendar_month_fill %}" + ] + }, + "calendar_plus": { + "prefix": "svg.bootstrap.calendar_plus", + "description": "SVG bootstrap - calendar_plus", + "body": [ + "{% svg bootstrap calendar_plus %}" + ] + }, + "calendar_plus_fill": { + "prefix": "svg.bootstrap.calendar_plus_fill", + "description": "SVG bootstrap - calendar_plus_fill", + "body": [ + "{% svg bootstrap calendar_plus_fill %}" + ] + }, + "calendar_range": { + "prefix": "svg.bootstrap.calendar_range", + "description": "SVG bootstrap - calendar_range", + "body": [ + "{% svg bootstrap calendar_range %}" + ] + }, + "calendar_range_fill": { + "prefix": "svg.bootstrap.calendar_range_fill", + "description": "SVG bootstrap - calendar_range_fill", + "body": [ + "{% svg bootstrap calendar_range_fill %}" + ] + }, + "calendar_week": { + "prefix": "svg.bootstrap.calendar_week", + "description": "SVG bootstrap - calendar_week", + "body": [ + "{% svg bootstrap calendar_week %}" + ] + }, + "calendar_week_fill": { + "prefix": "svg.bootstrap.calendar_week_fill", + "description": "SVG bootstrap - calendar_week_fill", + "body": [ + "{% svg bootstrap calendar_week_fill %}" + ] + }, + "calendar_x": { + "prefix": "svg.bootstrap.calendar_x", + "description": "SVG bootstrap - calendar_x", + "body": [ + "{% svg bootstrap calendar_x %}" + ] + }, + "calendar_x_fill": { + "prefix": "svg.bootstrap.calendar_x_fill", + "description": "SVG bootstrap - calendar_x_fill", + "body": [ + "{% svg bootstrap calendar_x_fill %}" + ] + }, + "camera": { + "prefix": "svg.bootstrap.camera", + "description": "SVG bootstrap - camera", + "body": [ + "{% svg bootstrap camera %}" + ] + }, + "camera2": { + "prefix": "svg.bootstrap.camera2", + "description": "SVG bootstrap - camera2", + "body": [ + "{% svg bootstrap camera2 %}" + ] + }, + "camera_fill": { + "prefix": "svg.bootstrap.camera_fill", + "description": "SVG bootstrap - camera_fill", + "body": [ + "{% svg bootstrap camera_fill %}" + ] + }, + "camera_reels": { + "prefix": "svg.bootstrap.camera_reels", + "description": "SVG bootstrap - camera_reels", + "body": [ + "{% svg bootstrap camera_reels %}" + ] + }, + "camera_reels_fill": { + "prefix": "svg.bootstrap.camera_reels_fill", + "description": "SVG bootstrap - camera_reels_fill", + "body": [ + "{% svg bootstrap camera_reels_fill %}" + ] + }, + "camera_video": { + "prefix": "svg.bootstrap.camera_video", + "description": "SVG bootstrap - camera_video", + "body": [ + "{% svg bootstrap camera_video %}" + ] + }, + "camera_video_fill": { + "prefix": "svg.bootstrap.camera_video_fill", + "description": "SVG bootstrap - camera_video_fill", + "body": [ + "{% svg bootstrap camera_video_fill %}" + ] + }, + "camera_video_off": { + "prefix": "svg.bootstrap.camera_video_off", + "description": "SVG bootstrap - camera_video_off", + "body": [ + "{% svg bootstrap camera_video_off %}" + ] + }, + "camera_video_off_fill": { + "prefix": "svg.bootstrap.camera_video_off_fill", + "description": "SVG bootstrap - camera_video_off_fill", + "body": [ + "{% svg bootstrap camera_video_off_fill %}" + ] + }, + "capslock": { + "prefix": "svg.bootstrap.capslock", + "description": "SVG bootstrap - capslock", + "body": [ + "{% svg bootstrap capslock %}" + ] + }, + "capslock_fill": { + "prefix": "svg.bootstrap.capslock_fill", + "description": "SVG bootstrap - capslock_fill", + "body": [ + "{% svg bootstrap capslock_fill %}" + ] + }, + "capsule": { + "prefix": "svg.bootstrap.capsule", + "description": "SVG bootstrap - capsule", + "body": [ + "{% svg bootstrap capsule %}" + ] + }, + "capsule_pill": { + "prefix": "svg.bootstrap.capsule_pill", + "description": "SVG bootstrap - capsule_pill", + "body": [ + "{% svg bootstrap capsule_pill %}" + ] + }, + "car_front": { + "prefix": "svg.bootstrap.car_front", + "description": "SVG bootstrap - car_front", + "body": [ + "{% svg bootstrap car_front %}" + ] + }, + "car_front_fill": { + "prefix": "svg.bootstrap.car_front_fill", + "description": "SVG bootstrap - car_front_fill", + "body": [ + "{% svg bootstrap car_front_fill %}" + ] + }, + "card_checklist": { + "prefix": "svg.bootstrap.card_checklist", + "description": "SVG bootstrap - card_checklist", + "body": [ + "{% svg bootstrap card_checklist %}" + ] + }, + "card_heading": { + "prefix": "svg.bootstrap.card_heading", + "description": "SVG bootstrap - card_heading", + "body": [ + "{% svg bootstrap card_heading %}" + ] + }, + "card_image": { + "prefix": "svg.bootstrap.card_image", + "description": "SVG bootstrap - card_image", + "body": [ + "{% svg bootstrap card_image %}" + ] + }, + "card_list": { + "prefix": "svg.bootstrap.card_list", + "description": "SVG bootstrap - card_list", + "body": [ + "{% svg bootstrap card_list %}" + ] + }, + "card_text": { + "prefix": "svg.bootstrap.card_text", + "description": "SVG bootstrap - card_text", + "body": [ + "{% svg bootstrap card_text %}" + ] + }, + "caret_down": { + "prefix": "svg.bootstrap.caret_down", + "description": "SVG bootstrap - caret_down", + "body": [ + "{% svg bootstrap caret_down %}" + ] + }, + "caret_down_fill": { + "prefix": "svg.bootstrap.caret_down_fill", + "description": "SVG bootstrap - caret_down_fill", + "body": [ + "{% svg bootstrap caret_down_fill %}" + ] + }, + "caret_down_square": { + "prefix": "svg.bootstrap.caret_down_square", + "description": "SVG bootstrap - caret_down_square", + "body": [ + "{% svg bootstrap caret_down_square %}" + ] + }, + "caret_down_square_fill": { + "prefix": "svg.bootstrap.caret_down_square_fill", + "description": "SVG bootstrap - caret_down_square_fill", + "body": [ + "{% svg bootstrap caret_down_square_fill %}" + ] + }, + "caret_left": { + "prefix": "svg.bootstrap.caret_left", + "description": "SVG bootstrap - caret_left", + "body": [ + "{% svg bootstrap caret_left %}" + ] + }, + "caret_left_fill": { + "prefix": "svg.bootstrap.caret_left_fill", + "description": "SVG bootstrap - caret_left_fill", + "body": [ + "{% svg bootstrap caret_left_fill %}" + ] + }, + "caret_left_square": { + "prefix": "svg.bootstrap.caret_left_square", + "description": "SVG bootstrap - caret_left_square", + "body": [ + "{% svg bootstrap caret_left_square %}" + ] + }, + "caret_left_square_fill": { + "prefix": "svg.bootstrap.caret_left_square_fill", + "description": "SVG bootstrap - caret_left_square_fill", + "body": [ + "{% svg bootstrap caret_left_square_fill %}" + ] + }, + "caret_right": { + "prefix": "svg.bootstrap.caret_right", + "description": "SVG bootstrap - caret_right", + "body": [ + "{% svg bootstrap caret_right %}" + ] + }, + "caret_right_fill": { + "prefix": "svg.bootstrap.caret_right_fill", + "description": "SVG bootstrap - caret_right_fill", + "body": [ + "{% svg bootstrap caret_right_fill %}" + ] + }, + "caret_right_square": { + "prefix": "svg.bootstrap.caret_right_square", + "description": "SVG bootstrap - caret_right_square", + "body": [ + "{% svg bootstrap caret_right_square %}" + ] + }, + "caret_right_square_fill": { + "prefix": "svg.bootstrap.caret_right_square_fill", + "description": "SVG bootstrap - caret_right_square_fill", + "body": [ + "{% svg bootstrap caret_right_square_fill %}" + ] + }, + "caret_up": { + "prefix": "svg.bootstrap.caret_up", + "description": "SVG bootstrap - caret_up", + "body": [ + "{% svg bootstrap caret_up %}" + ] + }, + "caret_up_fill": { + "prefix": "svg.bootstrap.caret_up_fill", + "description": "SVG bootstrap - caret_up_fill", + "body": [ + "{% svg bootstrap caret_up_fill %}" + ] + }, + "caret_up_square": { + "prefix": "svg.bootstrap.caret_up_square", + "description": "SVG bootstrap - caret_up_square", + "body": [ + "{% svg bootstrap caret_up_square %}" + ] + }, + "caret_up_square_fill": { + "prefix": "svg.bootstrap.caret_up_square_fill", + "description": "SVG bootstrap - caret_up_square_fill", + "body": [ + "{% svg bootstrap caret_up_square_fill %}" + ] + }, + "cart": { + "prefix": "svg.bootstrap.cart", + "description": "SVG bootstrap - cart", + "body": [ + "{% svg bootstrap cart %}" + ] + }, + "cart2": { + "prefix": "svg.bootstrap.cart2", + "description": "SVG bootstrap - cart2", + "body": [ + "{% svg bootstrap cart2 %}" + ] + }, + "cart3": { + "prefix": "svg.bootstrap.cart3", + "description": "SVG bootstrap - cart3", + "body": [ + "{% svg bootstrap cart3 %}" + ] + }, + "cart4": { + "prefix": "svg.bootstrap.cart4", + "description": "SVG bootstrap - cart4", + "body": [ + "{% svg bootstrap cart4 %}" + ] + }, + "cart_check": { + "prefix": "svg.bootstrap.cart_check", + "description": "SVG bootstrap - cart_check", + "body": [ + "{% svg bootstrap cart_check %}" + ] + }, + "cart_check_fill": { + "prefix": "svg.bootstrap.cart_check_fill", + "description": "SVG bootstrap - cart_check_fill", + "body": [ + "{% svg bootstrap cart_check_fill %}" + ] + }, + "cart_dash": { + "prefix": "svg.bootstrap.cart_dash", + "description": "SVG bootstrap - cart_dash", + "body": [ + "{% svg bootstrap cart_dash %}" + ] + }, + "cart_dash_fill": { + "prefix": "svg.bootstrap.cart_dash_fill", + "description": "SVG bootstrap - cart_dash_fill", + "body": [ + "{% svg bootstrap cart_dash_fill %}" + ] + }, + "cart_fill": { + "prefix": "svg.bootstrap.cart_fill", + "description": "SVG bootstrap - cart_fill", + "body": [ + "{% svg bootstrap cart_fill %}" + ] + }, + "cart_plus": { + "prefix": "svg.bootstrap.cart_plus", + "description": "SVG bootstrap - cart_plus", + "body": [ + "{% svg bootstrap cart_plus %}" + ] + }, + "cart_plus_fill": { + "prefix": "svg.bootstrap.cart_plus_fill", + "description": "SVG bootstrap - cart_plus_fill", + "body": [ + "{% svg bootstrap cart_plus_fill %}" + ] + }, + "cart_x": { + "prefix": "svg.bootstrap.cart_x", + "description": "SVG bootstrap - cart_x", + "body": [ + "{% svg bootstrap cart_x %}" + ] + }, + "cart_x_fill": { + "prefix": "svg.bootstrap.cart_x_fill", + "description": "SVG bootstrap - cart_x_fill", + "body": [ + "{% svg bootstrap cart_x_fill %}" + ] + }, + "cash": { + "prefix": "svg.bootstrap.cash", + "description": "SVG bootstrap - cash", + "body": [ + "{% svg bootstrap cash %}" + ] + }, + "cash_coin": { + "prefix": "svg.bootstrap.cash_coin", + "description": "SVG bootstrap - cash_coin", + "body": [ + "{% svg bootstrap cash_coin %}" + ] + }, + "cash_stack": { + "prefix": "svg.bootstrap.cash_stack", + "description": "SVG bootstrap - cash_stack", + "body": [ + "{% svg bootstrap cash_stack %}" + ] + }, + "cassette": { + "prefix": "svg.bootstrap.cassette", + "description": "SVG bootstrap - cassette", + "body": [ + "{% svg bootstrap cassette %}" + ] + }, + "cassette_fill": { + "prefix": "svg.bootstrap.cassette_fill", + "description": "SVG bootstrap - cassette_fill", + "body": [ + "{% svg bootstrap cassette_fill %}" + ] + }, + "cast": { + "prefix": "svg.bootstrap.cast", + "description": "SVG bootstrap - cast", + "body": [ + "{% svg bootstrap cast %}" + ] + }, + "cc_circle": { + "prefix": "svg.bootstrap.cc_circle", + "description": "SVG bootstrap - cc_circle", + "body": [ + "{% svg bootstrap cc_circle %}" + ] + }, + "cc_circle_fill": { + "prefix": "svg.bootstrap.cc_circle_fill", + "description": "SVG bootstrap - cc_circle_fill", + "body": [ + "{% svg bootstrap cc_circle_fill %}" + ] + }, + "cc_square": { + "prefix": "svg.bootstrap.cc_square", + "description": "SVG bootstrap - cc_square", + "body": [ + "{% svg bootstrap cc_square %}" + ] + }, + "cc_square_fill": { + "prefix": "svg.bootstrap.cc_square_fill", + "description": "SVG bootstrap - cc_square_fill", + "body": [ + "{% svg bootstrap cc_square_fill %}" + ] + }, + "chat": { + "prefix": "svg.bootstrap.chat", + "description": "SVG bootstrap - chat", + "body": [ + "{% svg bootstrap chat %}" + ] + }, + "chat_dots": { + "prefix": "svg.bootstrap.chat_dots", + "description": "SVG bootstrap - chat_dots", + "body": [ + "{% svg bootstrap chat_dots %}" + ] + }, + "chat_dots_fill": { + "prefix": "svg.bootstrap.chat_dots_fill", + "description": "SVG bootstrap - chat_dots_fill", + "body": [ + "{% svg bootstrap chat_dots_fill %}" + ] + }, + "chat_fill": { + "prefix": "svg.bootstrap.chat_fill", + "description": "SVG bootstrap - chat_fill", + "body": [ + "{% svg bootstrap chat_fill %}" + ] + }, + "chat_heart": { + "prefix": "svg.bootstrap.chat_heart", + "description": "SVG bootstrap - chat_heart", + "body": [ + "{% svg bootstrap chat_heart %}" + ] + }, + "chat_heart_fill": { + "prefix": "svg.bootstrap.chat_heart_fill", + "description": "SVG bootstrap - chat_heart_fill", + "body": [ + "{% svg bootstrap chat_heart_fill %}" + ] + }, + "chat_left": { + "prefix": "svg.bootstrap.chat_left", + "description": "SVG bootstrap - chat_left", + "body": [ + "{% svg bootstrap chat_left %}" + ] + }, + "chat_left_dots": { + "prefix": "svg.bootstrap.chat_left_dots", + "description": "SVG bootstrap - chat_left_dots", + "body": [ + "{% svg bootstrap chat_left_dots %}" + ] + }, + "chat_left_dots_fill": { + "prefix": "svg.bootstrap.chat_left_dots_fill", + "description": "SVG bootstrap - chat_left_dots_fill", + "body": [ + "{% svg bootstrap chat_left_dots_fill %}" + ] + }, + "chat_left_fill": { + "prefix": "svg.bootstrap.chat_left_fill", + "description": "SVG bootstrap - chat_left_fill", + "body": [ + "{% svg bootstrap chat_left_fill %}" + ] + }, + "chat_left_heart": { + "prefix": "svg.bootstrap.chat_left_heart", + "description": "SVG bootstrap - chat_left_heart", + "body": [ + "{% svg bootstrap chat_left_heart %}" + ] + }, + "chat_left_heart_fill": { + "prefix": "svg.bootstrap.chat_left_heart_fill", + "description": "SVG bootstrap - chat_left_heart_fill", + "body": [ + "{% svg bootstrap chat_left_heart_fill %}" + ] + }, + "chat_left_quote": { + "prefix": "svg.bootstrap.chat_left_quote", + "description": "SVG bootstrap - chat_left_quote", + "body": [ + "{% svg bootstrap chat_left_quote %}" + ] + }, + "chat_left_quote_fill": { + "prefix": "svg.bootstrap.chat_left_quote_fill", + "description": "SVG bootstrap - chat_left_quote_fill", + "body": [ + "{% svg bootstrap chat_left_quote_fill %}" + ] + }, + "chat_left_text": { + "prefix": "svg.bootstrap.chat_left_text", + "description": "SVG bootstrap - chat_left_text", + "body": [ + "{% svg bootstrap chat_left_text %}" + ] + }, + "chat_left_text_fill": { + "prefix": "svg.bootstrap.chat_left_text_fill", + "description": "SVG bootstrap - chat_left_text_fill", + "body": [ + "{% svg bootstrap chat_left_text_fill %}" + ] + }, + "chat_quote": { + "prefix": "svg.bootstrap.chat_quote", + "description": "SVG bootstrap - chat_quote", + "body": [ + "{% svg bootstrap chat_quote %}" + ] + }, + "chat_quote_fill": { + "prefix": "svg.bootstrap.chat_quote_fill", + "description": "SVG bootstrap - chat_quote_fill", + "body": [ + "{% svg bootstrap chat_quote_fill %}" + ] + }, + "chat_right": { + "prefix": "svg.bootstrap.chat_right", + "description": "SVG bootstrap - chat_right", + "body": [ + "{% svg bootstrap chat_right %}" + ] + }, + "chat_right_dots": { + "prefix": "svg.bootstrap.chat_right_dots", + "description": "SVG bootstrap - chat_right_dots", + "body": [ + "{% svg bootstrap chat_right_dots %}" + ] + }, + "chat_right_dots_fill": { + "prefix": "svg.bootstrap.chat_right_dots_fill", + "description": "SVG bootstrap - chat_right_dots_fill", + "body": [ + "{% svg bootstrap chat_right_dots_fill %}" + ] + }, + "chat_right_fill": { + "prefix": "svg.bootstrap.chat_right_fill", + "description": "SVG bootstrap - chat_right_fill", + "body": [ + "{% svg bootstrap chat_right_fill %}" + ] + }, + "chat_right_heart": { + "prefix": "svg.bootstrap.chat_right_heart", + "description": "SVG bootstrap - chat_right_heart", + "body": [ + "{% svg bootstrap chat_right_heart %}" + ] + }, + "chat_right_heart_fill": { + "prefix": "svg.bootstrap.chat_right_heart_fill", + "description": "SVG bootstrap - chat_right_heart_fill", + "body": [ + "{% svg bootstrap chat_right_heart_fill %}" + ] + }, + "chat_right_quote": { + "prefix": "svg.bootstrap.chat_right_quote", + "description": "SVG bootstrap - chat_right_quote", + "body": [ + "{% svg bootstrap chat_right_quote %}" + ] + }, + "chat_right_quote_fill": { + "prefix": "svg.bootstrap.chat_right_quote_fill", + "description": "SVG bootstrap - chat_right_quote_fill", + "body": [ + "{% svg bootstrap chat_right_quote_fill %}" + ] + }, + "chat_right_text": { + "prefix": "svg.bootstrap.chat_right_text", + "description": "SVG bootstrap - chat_right_text", + "body": [ + "{% svg bootstrap chat_right_text %}" + ] + }, + "chat_right_text_fill": { + "prefix": "svg.bootstrap.chat_right_text_fill", + "description": "SVG bootstrap - chat_right_text_fill", + "body": [ + "{% svg bootstrap chat_right_text_fill %}" + ] + }, + "chat_square": { + "prefix": "svg.bootstrap.chat_square", + "description": "SVG bootstrap - chat_square", + "body": [ + "{% svg bootstrap chat_square %}" + ] + }, + "chat_square_dots": { + "prefix": "svg.bootstrap.chat_square_dots", + "description": "SVG bootstrap - chat_square_dots", + "body": [ + "{% svg bootstrap chat_square_dots %}" + ] + }, + "chat_square_dots_fill": { + "prefix": "svg.bootstrap.chat_square_dots_fill", + "description": "SVG bootstrap - chat_square_dots_fill", + "body": [ + "{% svg bootstrap chat_square_dots_fill %}" + ] + }, + "chat_square_fill": { + "prefix": "svg.bootstrap.chat_square_fill", + "description": "SVG bootstrap - chat_square_fill", + "body": [ + "{% svg bootstrap chat_square_fill %}" + ] + }, + "chat_square_heart": { + "prefix": "svg.bootstrap.chat_square_heart", + "description": "SVG bootstrap - chat_square_heart", + "body": [ + "{% svg bootstrap chat_square_heart %}" + ] + }, + "chat_square_heart_fill": { + "prefix": "svg.bootstrap.chat_square_heart_fill", + "description": "SVG bootstrap - chat_square_heart_fill", + "body": [ + "{% svg bootstrap chat_square_heart_fill %}" + ] + }, + "chat_square_quote": { + "prefix": "svg.bootstrap.chat_square_quote", + "description": "SVG bootstrap - chat_square_quote", + "body": [ + "{% svg bootstrap chat_square_quote %}" + ] + }, + "chat_square_quote_fill": { + "prefix": "svg.bootstrap.chat_square_quote_fill", + "description": "SVG bootstrap - chat_square_quote_fill", + "body": [ + "{% svg bootstrap chat_square_quote_fill %}" + ] + }, + "chat_square_text": { + "prefix": "svg.bootstrap.chat_square_text", + "description": "SVG bootstrap - chat_square_text", + "body": [ + "{% svg bootstrap chat_square_text %}" + ] + }, + "chat_square_text_fill": { + "prefix": "svg.bootstrap.chat_square_text_fill", + "description": "SVG bootstrap - chat_square_text_fill", + "body": [ + "{% svg bootstrap chat_square_text_fill %}" + ] + }, + "chat_text": { + "prefix": "svg.bootstrap.chat_text", + "description": "SVG bootstrap - chat_text", + "body": [ + "{% svg bootstrap chat_text %}" + ] + }, + "chat_text_fill": { + "prefix": "svg.bootstrap.chat_text_fill", + "description": "SVG bootstrap - chat_text_fill", + "body": [ + "{% svg bootstrap chat_text_fill %}" + ] + }, + "check": { + "prefix": "svg.bootstrap.check", + "description": "SVG bootstrap - check", + "body": [ + "{% svg bootstrap check %}" + ] + }, + "check2": { + "prefix": "svg.bootstrap.check2", + "description": "SVG bootstrap - check2", + "body": [ + "{% svg bootstrap check2 %}" + ] + }, + "check2_all": { + "prefix": "svg.bootstrap.check2_all", + "description": "SVG bootstrap - check2_all", + "body": [ + "{% svg bootstrap check2_all %}" + ] + }, + "check2_circle": { + "prefix": "svg.bootstrap.check2_circle", + "description": "SVG bootstrap - check2_circle", + "body": [ + "{% svg bootstrap check2_circle %}" + ] + }, + "check2_square": { + "prefix": "svg.bootstrap.check2_square", + "description": "SVG bootstrap - check2_square", + "body": [ + "{% svg bootstrap check2_square %}" + ] + }, + "check_all": { + "prefix": "svg.bootstrap.check_all", + "description": "SVG bootstrap - check_all", + "body": [ + "{% svg bootstrap check_all %}" + ] + }, + "check_circle": { + "prefix": "svg.bootstrap.check_circle", + "description": "SVG bootstrap - check_circle", + "body": [ + "{% svg bootstrap check_circle %}" + ] + }, + "check_circle_fill": { + "prefix": "svg.bootstrap.check_circle_fill", + "description": "SVG bootstrap - check_circle_fill", + "body": [ + "{% svg bootstrap check_circle_fill %}" + ] + }, + "check_lg": { + "prefix": "svg.bootstrap.check_lg", + "description": "SVG bootstrap - check_lg", + "body": [ + "{% svg bootstrap check_lg %}" + ] + }, + "check_square": { + "prefix": "svg.bootstrap.check_square", + "description": "SVG bootstrap - check_square", + "body": [ + "{% svg bootstrap check_square %}" + ] + }, + "check_square_fill": { + "prefix": "svg.bootstrap.check_square_fill", + "description": "SVG bootstrap - check_square_fill", + "body": [ + "{% svg bootstrap check_square_fill %}" + ] + }, + "chevron_bar_contract": { + "prefix": "svg.bootstrap.chevron_bar_contract", + "description": "SVG bootstrap - chevron_bar_contract", + "body": [ + "{% svg bootstrap chevron_bar_contract %}" + ] + }, + "chevron_bar_down": { + "prefix": "svg.bootstrap.chevron_bar_down", + "description": "SVG bootstrap - chevron_bar_down", + "body": [ + "{% svg bootstrap chevron_bar_down %}" + ] + }, + "chevron_bar_expand": { + "prefix": "svg.bootstrap.chevron_bar_expand", + "description": "SVG bootstrap - chevron_bar_expand", + "body": [ + "{% svg bootstrap chevron_bar_expand %}" + ] + }, + "chevron_bar_left": { + "prefix": "svg.bootstrap.chevron_bar_left", + "description": "SVG bootstrap - chevron_bar_left", + "body": [ + "{% svg bootstrap chevron_bar_left %}" + ] + }, + "chevron_bar_right": { + "prefix": "svg.bootstrap.chevron_bar_right", + "description": "SVG bootstrap - chevron_bar_right", + "body": [ + "{% svg bootstrap chevron_bar_right %}" + ] + }, + "chevron_bar_up": { + "prefix": "svg.bootstrap.chevron_bar_up", + "description": "SVG bootstrap - chevron_bar_up", + "body": [ + "{% svg bootstrap chevron_bar_up %}" + ] + }, + "chevron_compact_down": { + "prefix": "svg.bootstrap.chevron_compact_down", + "description": "SVG bootstrap - chevron_compact_down", + "body": [ + "{% svg bootstrap chevron_compact_down %}" + ] + }, + "chevron_compact_left": { + "prefix": "svg.bootstrap.chevron_compact_left", + "description": "SVG bootstrap - chevron_compact_left", + "body": [ + "{% svg bootstrap chevron_compact_left %}" + ] + }, + "chevron_compact_right": { + "prefix": "svg.bootstrap.chevron_compact_right", + "description": "SVG bootstrap - chevron_compact_right", + "body": [ + "{% svg bootstrap chevron_compact_right %}" + ] + }, + "chevron_compact_up": { + "prefix": "svg.bootstrap.chevron_compact_up", + "description": "SVG bootstrap - chevron_compact_up", + "body": [ + "{% svg bootstrap chevron_compact_up %}" + ] + }, + "chevron_contract": { + "prefix": "svg.bootstrap.chevron_contract", + "description": "SVG bootstrap - chevron_contract", + "body": [ + "{% svg bootstrap chevron_contract %}" + ] + }, + "chevron_double_down": { + "prefix": "svg.bootstrap.chevron_double_down", + "description": "SVG bootstrap - chevron_double_down", + "body": [ + "{% svg bootstrap chevron_double_down %}" + ] + }, + "chevron_double_left": { + "prefix": "svg.bootstrap.chevron_double_left", + "description": "SVG bootstrap - chevron_double_left", + "body": [ + "{% svg bootstrap chevron_double_left %}" + ] + }, + "chevron_double_right": { + "prefix": "svg.bootstrap.chevron_double_right", + "description": "SVG bootstrap - chevron_double_right", + "body": [ + "{% svg bootstrap chevron_double_right %}" + ] + }, + "chevron_double_up": { + "prefix": "svg.bootstrap.chevron_double_up", + "description": "SVG bootstrap - chevron_double_up", + "body": [ + "{% svg bootstrap chevron_double_up %}" + ] + }, + "chevron_down": { + "prefix": "svg.bootstrap.chevron_down", + "description": "SVG bootstrap - chevron_down", + "body": [ + "{% svg bootstrap chevron_down %}" + ] + }, + "chevron_expand": { + "prefix": "svg.bootstrap.chevron_expand", + "description": "SVG bootstrap - chevron_expand", + "body": [ + "{% svg bootstrap chevron_expand %}" + ] + }, + "chevron_left": { + "prefix": "svg.bootstrap.chevron_left", + "description": "SVG bootstrap - chevron_left", + "body": [ + "{% svg bootstrap chevron_left %}" + ] + }, + "chevron_right": { + "prefix": "svg.bootstrap.chevron_right", + "description": "SVG bootstrap - chevron_right", + "body": [ + "{% svg bootstrap chevron_right %}" + ] + }, + "chevron_up": { + "prefix": "svg.bootstrap.chevron_up", + "description": "SVG bootstrap - chevron_up", + "body": [ + "{% svg bootstrap chevron_up %}" + ] + }, + "circle": { + "prefix": "svg.bootstrap.circle", + "description": "SVG bootstrap - circle", + "body": [ + "{% svg bootstrap circle %}" + ] + }, + "circle_fill": { + "prefix": "svg.bootstrap.circle_fill", + "description": "SVG bootstrap - circle_fill", + "body": [ + "{% svg bootstrap circle_fill %}" + ] + }, + "circle_half": { + "prefix": "svg.bootstrap.circle_half", + "description": "SVG bootstrap - circle_half", + "body": [ + "{% svg bootstrap circle_half %}" + ] + }, + "circle_square": { + "prefix": "svg.bootstrap.circle_square", + "description": "SVG bootstrap - circle_square", + "body": [ + "{% svg bootstrap circle_square %}" + ] + }, + "clipboard": { + "prefix": "svg.bootstrap.clipboard", + "description": "SVG bootstrap - clipboard", + "body": [ + "{% svg bootstrap clipboard %}" + ] + }, + "clipboard2": { + "prefix": "svg.bootstrap.clipboard2", + "description": "SVG bootstrap - clipboard2", + "body": [ + "{% svg bootstrap clipboard2 %}" + ] + }, + "clipboard2_check": { + "prefix": "svg.bootstrap.clipboard2_check", + "description": "SVG bootstrap - clipboard2_check", + "body": [ + "{% svg bootstrap clipboard2_check %}" + ] + }, + "clipboard2_check_fill": { + "prefix": "svg.bootstrap.clipboard2_check_fill", + "description": "SVG bootstrap - clipboard2_check_fill", + "body": [ + "{% svg bootstrap clipboard2_check_fill %}" + ] + }, + "clipboard2_data": { + "prefix": "svg.bootstrap.clipboard2_data", + "description": "SVG bootstrap - clipboard2_data", + "body": [ + "{% svg bootstrap clipboard2_data %}" + ] + }, + "clipboard2_data_fill": { + "prefix": "svg.bootstrap.clipboard2_data_fill", + "description": "SVG bootstrap - clipboard2_data_fill", + "body": [ + "{% svg bootstrap clipboard2_data_fill %}" + ] + }, + "clipboard2_fill": { + "prefix": "svg.bootstrap.clipboard2_fill", + "description": "SVG bootstrap - clipboard2_fill", + "body": [ + "{% svg bootstrap clipboard2_fill %}" + ] + }, + "clipboard2_heart": { + "prefix": "svg.bootstrap.clipboard2_heart", + "description": "SVG bootstrap - clipboard2_heart", + "body": [ + "{% svg bootstrap clipboard2_heart %}" + ] + }, + "clipboard2_heart_fill": { + "prefix": "svg.bootstrap.clipboard2_heart_fill", + "description": "SVG bootstrap - clipboard2_heart_fill", + "body": [ + "{% svg bootstrap clipboard2_heart_fill %}" + ] + }, + "clipboard2_minus": { + "prefix": "svg.bootstrap.clipboard2_minus", + "description": "SVG bootstrap - clipboard2_minus", + "body": [ + "{% svg bootstrap clipboard2_minus %}" + ] + }, + "clipboard2_minus_fill": { + "prefix": "svg.bootstrap.clipboard2_minus_fill", + "description": "SVG bootstrap - clipboard2_minus_fill", + "body": [ + "{% svg bootstrap clipboard2_minus_fill %}" + ] + }, + "clipboard2_plus": { + "prefix": "svg.bootstrap.clipboard2_plus", + "description": "SVG bootstrap - clipboard2_plus", + "body": [ + "{% svg bootstrap clipboard2_plus %}" + ] + }, + "clipboard2_plus_fill": { + "prefix": "svg.bootstrap.clipboard2_plus_fill", + "description": "SVG bootstrap - clipboard2_plus_fill", + "body": [ + "{% svg bootstrap clipboard2_plus_fill %}" + ] + }, + "clipboard2_pulse": { + "prefix": "svg.bootstrap.clipboard2_pulse", + "description": "SVG bootstrap - clipboard2_pulse", + "body": [ + "{% svg bootstrap clipboard2_pulse %}" + ] + }, + "clipboard2_pulse_fill": { + "prefix": "svg.bootstrap.clipboard2_pulse_fill", + "description": "SVG bootstrap - clipboard2_pulse_fill", + "body": [ + "{% svg bootstrap clipboard2_pulse_fill %}" + ] + }, + "clipboard2_x": { + "prefix": "svg.bootstrap.clipboard2_x", + "description": "SVG bootstrap - clipboard2_x", + "body": [ + "{% svg bootstrap clipboard2_x %}" + ] + }, + "clipboard2_x_fill": { + "prefix": "svg.bootstrap.clipboard2_x_fill", + "description": "SVG bootstrap - clipboard2_x_fill", + "body": [ + "{% svg bootstrap clipboard2_x_fill %}" + ] + }, + "clipboard_check": { + "prefix": "svg.bootstrap.clipboard_check", + "description": "SVG bootstrap - clipboard_check", + "body": [ + "{% svg bootstrap clipboard_check %}" + ] + }, + "clipboard_check_fill": { + "prefix": "svg.bootstrap.clipboard_check_fill", + "description": "SVG bootstrap - clipboard_check_fill", + "body": [ + "{% svg bootstrap clipboard_check_fill %}" + ] + }, + "clipboard_data": { + "prefix": "svg.bootstrap.clipboard_data", + "description": "SVG bootstrap - clipboard_data", + "body": [ + "{% svg bootstrap clipboard_data %}" + ] + }, + "clipboard_data_fill": { + "prefix": "svg.bootstrap.clipboard_data_fill", + "description": "SVG bootstrap - clipboard_data_fill", + "body": [ + "{% svg bootstrap clipboard_data_fill %}" + ] + }, + "clipboard_fill": { + "prefix": "svg.bootstrap.clipboard_fill", + "description": "SVG bootstrap - clipboard_fill", + "body": [ + "{% svg bootstrap clipboard_fill %}" + ] + }, + "clipboard_heart": { + "prefix": "svg.bootstrap.clipboard_heart", + "description": "SVG bootstrap - clipboard_heart", + "body": [ + "{% svg bootstrap clipboard_heart %}" + ] + }, + "clipboard_heart_fill": { + "prefix": "svg.bootstrap.clipboard_heart_fill", + "description": "SVG bootstrap - clipboard_heart_fill", + "body": [ + "{% svg bootstrap clipboard_heart_fill %}" + ] + }, + "clipboard_minus": { + "prefix": "svg.bootstrap.clipboard_minus", + "description": "SVG bootstrap - clipboard_minus", + "body": [ + "{% svg bootstrap clipboard_minus %}" + ] + }, + "clipboard_minus_fill": { + "prefix": "svg.bootstrap.clipboard_minus_fill", + "description": "SVG bootstrap - clipboard_minus_fill", + "body": [ + "{% svg bootstrap clipboard_minus_fill %}" + ] + }, + "clipboard_plus": { + "prefix": "svg.bootstrap.clipboard_plus", + "description": "SVG bootstrap - clipboard_plus", + "body": [ + "{% svg bootstrap clipboard_plus %}" + ] + }, + "clipboard_plus_fill": { + "prefix": "svg.bootstrap.clipboard_plus_fill", + "description": "SVG bootstrap - clipboard_plus_fill", + "body": [ + "{% svg bootstrap clipboard_plus_fill %}" + ] + }, + "clipboard_pulse": { + "prefix": "svg.bootstrap.clipboard_pulse", + "description": "SVG bootstrap - clipboard_pulse", + "body": [ + "{% svg bootstrap clipboard_pulse %}" + ] + }, + "clipboard_x": { + "prefix": "svg.bootstrap.clipboard_x", + "description": "SVG bootstrap - clipboard_x", + "body": [ + "{% svg bootstrap clipboard_x %}" + ] + }, + "clipboard_x_fill": { + "prefix": "svg.bootstrap.clipboard_x_fill", + "description": "SVG bootstrap - clipboard_x_fill", + "body": [ + "{% svg bootstrap clipboard_x_fill %}" + ] + }, + "clock": { + "prefix": "svg.bootstrap.clock", + "description": "SVG bootstrap - clock", + "body": [ + "{% svg bootstrap clock %}" + ] + }, + "clock_fill": { + "prefix": "svg.bootstrap.clock_fill", + "description": "SVG bootstrap - clock_fill", + "body": [ + "{% svg bootstrap clock_fill %}" + ] + }, + "clock_history": { + "prefix": "svg.bootstrap.clock_history", + "description": "SVG bootstrap - clock_history", + "body": [ + "{% svg bootstrap clock_history %}" + ] + }, + "cloud": { + "prefix": "svg.bootstrap.cloud", + "description": "SVG bootstrap - cloud", + "body": [ + "{% svg bootstrap cloud %}" + ] + }, + "cloud_arrow_down": { + "prefix": "svg.bootstrap.cloud_arrow_down", + "description": "SVG bootstrap - cloud_arrow_down", + "body": [ + "{% svg bootstrap cloud_arrow_down %}" + ] + }, + "cloud_arrow_down_fill": { + "prefix": "svg.bootstrap.cloud_arrow_down_fill", + "description": "SVG bootstrap - cloud_arrow_down_fill", + "body": [ + "{% svg bootstrap cloud_arrow_down_fill %}" + ] + }, + "cloud_arrow_up": { + "prefix": "svg.bootstrap.cloud_arrow_up", + "description": "SVG bootstrap - cloud_arrow_up", + "body": [ + "{% svg bootstrap cloud_arrow_up %}" + ] + }, + "cloud_arrow_up_fill": { + "prefix": "svg.bootstrap.cloud_arrow_up_fill", + "description": "SVG bootstrap - cloud_arrow_up_fill", + "body": [ + "{% svg bootstrap cloud_arrow_up_fill %}" + ] + }, + "cloud_check": { + "prefix": "svg.bootstrap.cloud_check", + "description": "SVG bootstrap - cloud_check", + "body": [ + "{% svg bootstrap cloud_check %}" + ] + }, + "cloud_check_fill": { + "prefix": "svg.bootstrap.cloud_check_fill", + "description": "SVG bootstrap - cloud_check_fill", + "body": [ + "{% svg bootstrap cloud_check_fill %}" + ] + }, + "cloud_download": { + "prefix": "svg.bootstrap.cloud_download", + "description": "SVG bootstrap - cloud_download", + "body": [ + "{% svg bootstrap cloud_download %}" + ] + }, + "cloud_download_fill": { + "prefix": "svg.bootstrap.cloud_download_fill", + "description": "SVG bootstrap - cloud_download_fill", + "body": [ + "{% svg bootstrap cloud_download_fill %}" + ] + }, + "cloud_drizzle": { + "prefix": "svg.bootstrap.cloud_drizzle", + "description": "SVG bootstrap - cloud_drizzle", + "body": [ + "{% svg bootstrap cloud_drizzle %}" + ] + }, + "cloud_drizzle_fill": { + "prefix": "svg.bootstrap.cloud_drizzle_fill", + "description": "SVG bootstrap - cloud_drizzle_fill", + "body": [ + "{% svg bootstrap cloud_drizzle_fill %}" + ] + }, + "cloud_fill": { + "prefix": "svg.bootstrap.cloud_fill", + "description": "SVG bootstrap - cloud_fill", + "body": [ + "{% svg bootstrap cloud_fill %}" + ] + }, + "cloud_fog": { + "prefix": "svg.bootstrap.cloud_fog", + "description": "SVG bootstrap - cloud_fog", + "body": [ + "{% svg bootstrap cloud_fog %}" + ] + }, + "cloud_fog2": { + "prefix": "svg.bootstrap.cloud_fog2", + "description": "SVG bootstrap - cloud_fog2", + "body": [ + "{% svg bootstrap cloud_fog2 %}" + ] + }, + "cloud_fog2_fill": { + "prefix": "svg.bootstrap.cloud_fog2_fill", + "description": "SVG bootstrap - cloud_fog2_fill", + "body": [ + "{% svg bootstrap cloud_fog2_fill %}" + ] + }, + "cloud_fog_fill": { + "prefix": "svg.bootstrap.cloud_fog_fill", + "description": "SVG bootstrap - cloud_fog_fill", + "body": [ + "{% svg bootstrap cloud_fog_fill %}" + ] + }, + "cloud_hail": { + "prefix": "svg.bootstrap.cloud_hail", + "description": "SVG bootstrap - cloud_hail", + "body": [ + "{% svg bootstrap cloud_hail %}" + ] + }, + "cloud_hail_fill": { + "prefix": "svg.bootstrap.cloud_hail_fill", + "description": "SVG bootstrap - cloud_hail_fill", + "body": [ + "{% svg bootstrap cloud_hail_fill %}" + ] + }, + "cloud_haze": { + "prefix": "svg.bootstrap.cloud_haze", + "description": "SVG bootstrap - cloud_haze", + "body": [ + "{% svg bootstrap cloud_haze %}" + ] + }, + "cloud_haze2": { + "prefix": "svg.bootstrap.cloud_haze2", + "description": "SVG bootstrap - cloud_haze2", + "body": [ + "{% svg bootstrap cloud_haze2 %}" + ] + }, + "cloud_haze2_fill": { + "prefix": "svg.bootstrap.cloud_haze2_fill", + "description": "SVG bootstrap - cloud_haze2_fill", + "body": [ + "{% svg bootstrap cloud_haze2_fill %}" + ] + }, + "cloud_haze_fill": { + "prefix": "svg.bootstrap.cloud_haze_fill", + "description": "SVG bootstrap - cloud_haze_fill", + "body": [ + "{% svg bootstrap cloud_haze_fill %}" + ] + }, + "cloud_lightning": { + "prefix": "svg.bootstrap.cloud_lightning", + "description": "SVG bootstrap - cloud_lightning", + "body": [ + "{% svg bootstrap cloud_lightning %}" + ] + }, + "cloud_lightning_fill": { + "prefix": "svg.bootstrap.cloud_lightning_fill", + "description": "SVG bootstrap - cloud_lightning_fill", + "body": [ + "{% svg bootstrap cloud_lightning_fill %}" + ] + }, + "cloud_lightning_rain": { + "prefix": "svg.bootstrap.cloud_lightning_rain", + "description": "SVG bootstrap - cloud_lightning_rain", + "body": [ + "{% svg bootstrap cloud_lightning_rain %}" + ] + }, + "cloud_lightning_rain_fill": { + "prefix": "svg.bootstrap.cloud_lightning_rain_fill", + "description": "SVG bootstrap - cloud_lightning_rain_fill", + "body": [ + "{% svg bootstrap cloud_lightning_rain_fill %}" + ] + }, + "cloud_minus": { + "prefix": "svg.bootstrap.cloud_minus", + "description": "SVG bootstrap - cloud_minus", + "body": [ + "{% svg bootstrap cloud_minus %}" + ] + }, + "cloud_minus_fill": { + "prefix": "svg.bootstrap.cloud_minus_fill", + "description": "SVG bootstrap - cloud_minus_fill", + "body": [ + "{% svg bootstrap cloud_minus_fill %}" + ] + }, + "cloud_moon": { + "prefix": "svg.bootstrap.cloud_moon", + "description": "SVG bootstrap - cloud_moon", + "body": [ + "{% svg bootstrap cloud_moon %}" + ] + }, + "cloud_moon_fill": { + "prefix": "svg.bootstrap.cloud_moon_fill", + "description": "SVG bootstrap - cloud_moon_fill", + "body": [ + "{% svg bootstrap cloud_moon_fill %}" + ] + }, + "cloud_plus": { + "prefix": "svg.bootstrap.cloud_plus", + "description": "SVG bootstrap - cloud_plus", + "body": [ + "{% svg bootstrap cloud_plus %}" + ] + }, + "cloud_plus_fill": { + "prefix": "svg.bootstrap.cloud_plus_fill", + "description": "SVG bootstrap - cloud_plus_fill", + "body": [ + "{% svg bootstrap cloud_plus_fill %}" + ] + }, + "cloud_rain": { + "prefix": "svg.bootstrap.cloud_rain", + "description": "SVG bootstrap - cloud_rain", + "body": [ + "{% svg bootstrap cloud_rain %}" + ] + }, + "cloud_rain_fill": { + "prefix": "svg.bootstrap.cloud_rain_fill", + "description": "SVG bootstrap - cloud_rain_fill", + "body": [ + "{% svg bootstrap cloud_rain_fill %}" + ] + }, + "cloud_rain_heavy": { + "prefix": "svg.bootstrap.cloud_rain_heavy", + "description": "SVG bootstrap - cloud_rain_heavy", + "body": [ + "{% svg bootstrap cloud_rain_heavy %}" + ] + }, + "cloud_rain_heavy_fill": { + "prefix": "svg.bootstrap.cloud_rain_heavy_fill", + "description": "SVG bootstrap - cloud_rain_heavy_fill", + "body": [ + "{% svg bootstrap cloud_rain_heavy_fill %}" + ] + }, + "cloud_slash": { + "prefix": "svg.bootstrap.cloud_slash", + "description": "SVG bootstrap - cloud_slash", + "body": [ + "{% svg bootstrap cloud_slash %}" + ] + }, + "cloud_slash_fill": { + "prefix": "svg.bootstrap.cloud_slash_fill", + "description": "SVG bootstrap - cloud_slash_fill", + "body": [ + "{% svg bootstrap cloud_slash_fill %}" + ] + }, + "cloud_sleet": { + "prefix": "svg.bootstrap.cloud_sleet", + "description": "SVG bootstrap - cloud_sleet", + "body": [ + "{% svg bootstrap cloud_sleet %}" + ] + }, + "cloud_sleet_fill": { + "prefix": "svg.bootstrap.cloud_sleet_fill", + "description": "SVG bootstrap - cloud_sleet_fill", + "body": [ + "{% svg bootstrap cloud_sleet_fill %}" + ] + }, + "cloud_snow": { + "prefix": "svg.bootstrap.cloud_snow", + "description": "SVG bootstrap - cloud_snow", + "body": [ + "{% svg bootstrap cloud_snow %}" + ] + }, + "cloud_snow_fill": { + "prefix": "svg.bootstrap.cloud_snow_fill", + "description": "SVG bootstrap - cloud_snow_fill", + "body": [ + "{% svg bootstrap cloud_snow_fill %}" + ] + }, + "cloud_sun": { + "prefix": "svg.bootstrap.cloud_sun", + "description": "SVG bootstrap - cloud_sun", + "body": [ + "{% svg bootstrap cloud_sun %}" + ] + }, + "cloud_sun_fill": { + "prefix": "svg.bootstrap.cloud_sun_fill", + "description": "SVG bootstrap - cloud_sun_fill", + "body": [ + "{% svg bootstrap cloud_sun_fill %}" + ] + }, + "cloud_upload": { + "prefix": "svg.bootstrap.cloud_upload", + "description": "SVG bootstrap - cloud_upload", + "body": [ + "{% svg bootstrap cloud_upload %}" + ] + }, + "cloud_upload_fill": { + "prefix": "svg.bootstrap.cloud_upload_fill", + "description": "SVG bootstrap - cloud_upload_fill", + "body": [ + "{% svg bootstrap cloud_upload_fill %}" + ] + }, + "clouds": { + "prefix": "svg.bootstrap.clouds", + "description": "SVG bootstrap - clouds", + "body": [ + "{% svg bootstrap clouds %}" + ] + }, + "clouds_fill": { + "prefix": "svg.bootstrap.clouds_fill", + "description": "SVG bootstrap - clouds_fill", + "body": [ + "{% svg bootstrap clouds_fill %}" + ] + }, + "cloudy": { + "prefix": "svg.bootstrap.cloudy", + "description": "SVG bootstrap - cloudy", + "body": [ + "{% svg bootstrap cloudy %}" + ] + }, + "cloudy_fill": { + "prefix": "svg.bootstrap.cloudy_fill", + "description": "SVG bootstrap - cloudy_fill", + "body": [ + "{% svg bootstrap cloudy_fill %}" + ] + }, + "code": { + "prefix": "svg.bootstrap.code", + "description": "SVG bootstrap - code", + "body": [ + "{% svg bootstrap code %}" + ] + }, + "code_slash": { + "prefix": "svg.bootstrap.code_slash", + "description": "SVG bootstrap - code_slash", + "body": [ + "{% svg bootstrap code_slash %}" + ] + }, + "code_square": { + "prefix": "svg.bootstrap.code_square", + "description": "SVG bootstrap - code_square", + "body": [ + "{% svg bootstrap code_square %}" + ] + }, + "coin": { + "prefix": "svg.bootstrap.coin", + "description": "SVG bootstrap - coin", + "body": [ + "{% svg bootstrap coin %}" + ] + }, + "collection": { + "prefix": "svg.bootstrap.collection", + "description": "SVG bootstrap - collection", + "body": [ + "{% svg bootstrap collection %}" + ] + }, + "collection_fill": { + "prefix": "svg.bootstrap.collection_fill", + "description": "SVG bootstrap - collection_fill", + "body": [ + "{% svg bootstrap collection_fill %}" + ] + }, + "collection_play": { + "prefix": "svg.bootstrap.collection_play", + "description": "SVG bootstrap - collection_play", + "body": [ + "{% svg bootstrap collection_play %}" + ] + }, + "collection_play_fill": { + "prefix": "svg.bootstrap.collection_play_fill", + "description": "SVG bootstrap - collection_play_fill", + "body": [ + "{% svg bootstrap collection_play_fill %}" + ] + }, + "columns": { + "prefix": "svg.bootstrap.columns", + "description": "SVG bootstrap - columns", + "body": [ + "{% svg bootstrap columns %}" + ] + }, + "columns_gap": { + "prefix": "svg.bootstrap.columns_gap", + "description": "SVG bootstrap - columns_gap", + "body": [ + "{% svg bootstrap columns_gap %}" + ] + }, + "command": { + "prefix": "svg.bootstrap.command", + "description": "SVG bootstrap - command", + "body": [ + "{% svg bootstrap command %}" + ] + }, + "compass": { + "prefix": "svg.bootstrap.compass", + "description": "SVG bootstrap - compass", + "body": [ + "{% svg bootstrap compass %}" + ] + }, + "compass_fill": { + "prefix": "svg.bootstrap.compass_fill", + "description": "SVG bootstrap - compass_fill", + "body": [ + "{% svg bootstrap compass_fill %}" + ] + }, + "cone": { + "prefix": "svg.bootstrap.cone", + "description": "SVG bootstrap - cone", + "body": [ + "{% svg bootstrap cone %}" + ] + }, + "cone_striped": { + "prefix": "svg.bootstrap.cone_striped", + "description": "SVG bootstrap - cone_striped", + "body": [ + "{% svg bootstrap cone_striped %}" + ] + }, + "controller": { + "prefix": "svg.bootstrap.controller", + "description": "SVG bootstrap - controller", + "body": [ + "{% svg bootstrap controller %}" + ] + }, + "cpu": { + "prefix": "svg.bootstrap.cpu", + "description": "SVG bootstrap - cpu", + "body": [ + "{% svg bootstrap cpu %}" + ] + }, + "cpu_fill": { + "prefix": "svg.bootstrap.cpu_fill", + "description": "SVG bootstrap - cpu_fill", + "body": [ + "{% svg bootstrap cpu_fill %}" + ] + }, + "credit_card": { + "prefix": "svg.bootstrap.credit_card", + "description": "SVG bootstrap - credit_card", + "body": [ + "{% svg bootstrap credit_card %}" + ] + }, + "credit_card_2_back": { + "prefix": "svg.bootstrap.credit_card_2_back", + "description": "SVG bootstrap - credit_card_2_back", + "body": [ + "{% svg bootstrap credit_card_2_back %}" + ] + }, + "credit_card_2_back_fill": { + "prefix": "svg.bootstrap.credit_card_2_back_fill", + "description": "SVG bootstrap - credit_card_2_back_fill", + "body": [ + "{% svg bootstrap credit_card_2_back_fill %}" + ] + }, + "credit_card_2_front": { + "prefix": "svg.bootstrap.credit_card_2_front", + "description": "SVG bootstrap - credit_card_2_front", + "body": [ + "{% svg bootstrap credit_card_2_front %}" + ] + }, + "credit_card_2_front_fill": { + "prefix": "svg.bootstrap.credit_card_2_front_fill", + "description": "SVG bootstrap - credit_card_2_front_fill", + "body": [ + "{% svg bootstrap credit_card_2_front_fill %}" + ] + }, + "credit_card_fill": { + "prefix": "svg.bootstrap.credit_card_fill", + "description": "SVG bootstrap - credit_card_fill", + "body": [ + "{% svg bootstrap credit_card_fill %}" + ] + }, + "crop": { + "prefix": "svg.bootstrap.crop", + "description": "SVG bootstrap - crop", + "body": [ + "{% svg bootstrap crop %}" + ] + }, + "cup": { + "prefix": "svg.bootstrap.cup", + "description": "SVG bootstrap - cup", + "body": [ + "{% svg bootstrap cup %}" + ] + }, + "cup_fill": { + "prefix": "svg.bootstrap.cup_fill", + "description": "SVG bootstrap - cup_fill", + "body": [ + "{% svg bootstrap cup_fill %}" + ] + }, + "cup_hot": { + "prefix": "svg.bootstrap.cup_hot", + "description": "SVG bootstrap - cup_hot", + "body": [ + "{% svg bootstrap cup_hot %}" + ] + }, + "cup_hot_fill": { + "prefix": "svg.bootstrap.cup_hot_fill", + "description": "SVG bootstrap - cup_hot_fill", + "body": [ + "{% svg bootstrap cup_hot_fill %}" + ] + }, + "cup_straw": { + "prefix": "svg.bootstrap.cup_straw", + "description": "SVG bootstrap - cup_straw", + "body": [ + "{% svg bootstrap cup_straw %}" + ] + }, + "currency_bitcoin": { + "prefix": "svg.bootstrap.currency_bitcoin", + "description": "SVG bootstrap - currency_bitcoin", + "body": [ + "{% svg bootstrap currency_bitcoin %}" + ] + }, + "currency_dollar": { + "prefix": "svg.bootstrap.currency_dollar", + "description": "SVG bootstrap - currency_dollar", + "body": [ + "{% svg bootstrap currency_dollar %}" + ] + }, + "currency_euro": { + "prefix": "svg.bootstrap.currency_euro", + "description": "SVG bootstrap - currency_euro", + "body": [ + "{% svg bootstrap currency_euro %}" + ] + }, + "currency_exchange": { + "prefix": "svg.bootstrap.currency_exchange", + "description": "SVG bootstrap - currency_exchange", + "body": [ + "{% svg bootstrap currency_exchange %}" + ] + }, + "currency_pound": { + "prefix": "svg.bootstrap.currency_pound", + "description": "SVG bootstrap - currency_pound", + "body": [ + "{% svg bootstrap currency_pound %}" + ] + }, + "currency_rupee": { + "prefix": "svg.bootstrap.currency_rupee", + "description": "SVG bootstrap - currency_rupee", + "body": [ + "{% svg bootstrap currency_rupee %}" + ] + }, + "currency_yen": { + "prefix": "svg.bootstrap.currency_yen", + "description": "SVG bootstrap - currency_yen", + "body": [ + "{% svg bootstrap currency_yen %}" + ] + }, + "cursor": { + "prefix": "svg.bootstrap.cursor", + "description": "SVG bootstrap - cursor", + "body": [ + "{% svg bootstrap cursor %}" + ] + }, + "cursor_fill": { + "prefix": "svg.bootstrap.cursor_fill", + "description": "SVG bootstrap - cursor_fill", + "body": [ + "{% svg bootstrap cursor_fill %}" + ] + }, + "cursor_text": { + "prefix": "svg.bootstrap.cursor_text", + "description": "SVG bootstrap - cursor_text", + "body": [ + "{% svg bootstrap cursor_text %}" + ] + }, + "dash": { + "prefix": "svg.bootstrap.dash", + "description": "SVG bootstrap - dash", + "body": [ + "{% svg bootstrap dash %}" + ] + }, + "dash_circle": { + "prefix": "svg.bootstrap.dash_circle", + "description": "SVG bootstrap - dash_circle", + "body": [ + "{% svg bootstrap dash_circle %}" + ] + }, + "dash_circle_dotted": { + "prefix": "svg.bootstrap.dash_circle_dotted", + "description": "SVG bootstrap - dash_circle_dotted", + "body": [ + "{% svg bootstrap dash_circle_dotted %}" + ] + }, + "dash_circle_fill": { + "prefix": "svg.bootstrap.dash_circle_fill", + "description": "SVG bootstrap - dash_circle_fill", + "body": [ + "{% svg bootstrap dash_circle_fill %}" + ] + }, + "dash_lg": { + "prefix": "svg.bootstrap.dash_lg", + "description": "SVG bootstrap - dash_lg", + "body": [ + "{% svg bootstrap dash_lg %}" + ] + }, + "dash_square": { + "prefix": "svg.bootstrap.dash_square", + "description": "SVG bootstrap - dash_square", + "body": [ + "{% svg bootstrap dash_square %}" + ] + }, + "dash_square_dotted": { + "prefix": "svg.bootstrap.dash_square_dotted", + "description": "SVG bootstrap - dash_square_dotted", + "body": [ + "{% svg bootstrap dash_square_dotted %}" + ] + }, + "dash_square_fill": { + "prefix": "svg.bootstrap.dash_square_fill", + "description": "SVG bootstrap - dash_square_fill", + "body": [ + "{% svg bootstrap dash_square_fill %}" + ] + }, + "database": { + "prefix": "svg.bootstrap.database", + "description": "SVG bootstrap - database", + "body": [ + "{% svg bootstrap database %}" + ] + }, + "database_add": { + "prefix": "svg.bootstrap.database_add", + "description": "SVG bootstrap - database_add", + "body": [ + "{% svg bootstrap database_add %}" + ] + }, + "database_check": { + "prefix": "svg.bootstrap.database_check", + "description": "SVG bootstrap - database_check", + "body": [ + "{% svg bootstrap database_check %}" + ] + }, + "database_dash": { + "prefix": "svg.bootstrap.database_dash", + "description": "SVG bootstrap - database_dash", + "body": [ + "{% svg bootstrap database_dash %}" + ] + }, + "database_down": { + "prefix": "svg.bootstrap.database_down", + "description": "SVG bootstrap - database_down", + "body": [ + "{% svg bootstrap database_down %}" + ] + }, + "database_exclamation": { + "prefix": "svg.bootstrap.database_exclamation", + "description": "SVG bootstrap - database_exclamation", + "body": [ + "{% svg bootstrap database_exclamation %}" + ] + }, + "database_fill": { + "prefix": "svg.bootstrap.database_fill", + "description": "SVG bootstrap - database_fill", + "body": [ + "{% svg bootstrap database_fill %}" + ] + }, + "database_fill_add": { + "prefix": "svg.bootstrap.database_fill_add", + "description": "SVG bootstrap - database_fill_add", + "body": [ + "{% svg bootstrap database_fill_add %}" + ] + }, + "database_fill_check": { + "prefix": "svg.bootstrap.database_fill_check", + "description": "SVG bootstrap - database_fill_check", + "body": [ + "{% svg bootstrap database_fill_check %}" + ] + }, + "database_fill_dash": { + "prefix": "svg.bootstrap.database_fill_dash", + "description": "SVG bootstrap - database_fill_dash", + "body": [ + "{% svg bootstrap database_fill_dash %}" + ] + }, + "database_fill_down": { + "prefix": "svg.bootstrap.database_fill_down", + "description": "SVG bootstrap - database_fill_down", + "body": [ + "{% svg bootstrap database_fill_down %}" + ] + }, + "database_fill_exclamation": { + "prefix": "svg.bootstrap.database_fill_exclamation", + "description": "SVG bootstrap - database_fill_exclamation", + "body": [ + "{% svg bootstrap database_fill_exclamation %}" + ] + }, + "database_fill_gear": { + "prefix": "svg.bootstrap.database_fill_gear", + "description": "SVG bootstrap - database_fill_gear", + "body": [ + "{% svg bootstrap database_fill_gear %}" + ] + }, + "database_fill_lock": { + "prefix": "svg.bootstrap.database_fill_lock", + "description": "SVG bootstrap - database_fill_lock", + "body": [ + "{% svg bootstrap database_fill_lock %}" + ] + }, + "database_fill_slash": { + "prefix": "svg.bootstrap.database_fill_slash", + "description": "SVG bootstrap - database_fill_slash", + "body": [ + "{% svg bootstrap database_fill_slash %}" + ] + }, + "database_fill_up": { + "prefix": "svg.bootstrap.database_fill_up", + "description": "SVG bootstrap - database_fill_up", + "body": [ + "{% svg bootstrap database_fill_up %}" + ] + }, + "database_fill_x": { + "prefix": "svg.bootstrap.database_fill_x", + "description": "SVG bootstrap - database_fill_x", + "body": [ + "{% svg bootstrap database_fill_x %}" + ] + }, + "database_gear": { + "prefix": "svg.bootstrap.database_gear", + "description": "SVG bootstrap - database_gear", + "body": [ + "{% svg bootstrap database_gear %}" + ] + }, + "database_lock": { + "prefix": "svg.bootstrap.database_lock", + "description": "SVG bootstrap - database_lock", + "body": [ + "{% svg bootstrap database_lock %}" + ] + }, + "database_slash": { + "prefix": "svg.bootstrap.database_slash", + "description": "SVG bootstrap - database_slash", + "body": [ + "{% svg bootstrap database_slash %}" + ] + }, + "database_up": { + "prefix": "svg.bootstrap.database_up", + "description": "SVG bootstrap - database_up", + "body": [ + "{% svg bootstrap database_up %}" + ] + }, + "database_x": { + "prefix": "svg.bootstrap.database_x", + "description": "SVG bootstrap - database_x", + "body": [ + "{% svg bootstrap database_x %}" + ] + }, + "device_hdd": { + "prefix": "svg.bootstrap.device_hdd", + "description": "SVG bootstrap - device_hdd", + "body": [ + "{% svg bootstrap device_hdd %}" + ] + }, + "device_hdd_fill": { + "prefix": "svg.bootstrap.device_hdd_fill", + "description": "SVG bootstrap - device_hdd_fill", + "body": [ + "{% svg bootstrap device_hdd_fill %}" + ] + }, + "device_ssd": { + "prefix": "svg.bootstrap.device_ssd", + "description": "SVG bootstrap - device_ssd", + "body": [ + "{% svg bootstrap device_ssd %}" + ] + }, + "device_ssd_fill": { + "prefix": "svg.bootstrap.device_ssd_fill", + "description": "SVG bootstrap - device_ssd_fill", + "body": [ + "{% svg bootstrap device_ssd_fill %}" + ] + }, + "diagram_2": { + "prefix": "svg.bootstrap.diagram_2", + "description": "SVG bootstrap - diagram_2", + "body": [ + "{% svg bootstrap diagram_2 %}" + ] + }, + "diagram_2_fill": { + "prefix": "svg.bootstrap.diagram_2_fill", + "description": "SVG bootstrap - diagram_2_fill", + "body": [ + "{% svg bootstrap diagram_2_fill %}" + ] + }, + "diagram_3": { + "prefix": "svg.bootstrap.diagram_3", + "description": "SVG bootstrap - diagram_3", + "body": [ + "{% svg bootstrap diagram_3 %}" + ] + }, + "diagram_3_fill": { + "prefix": "svg.bootstrap.diagram_3_fill", + "description": "SVG bootstrap - diagram_3_fill", + "body": [ + "{% svg bootstrap diagram_3_fill %}" + ] + }, + "diamond": { + "prefix": "svg.bootstrap.diamond", + "description": "SVG bootstrap - diamond", + "body": [ + "{% svg bootstrap diamond %}" + ] + }, + "diamond_fill": { + "prefix": "svg.bootstrap.diamond_fill", + "description": "SVG bootstrap - diamond_fill", + "body": [ + "{% svg bootstrap diamond_fill %}" + ] + }, + "diamond_half": { + "prefix": "svg.bootstrap.diamond_half", + "description": "SVG bootstrap - diamond_half", + "body": [ + "{% svg bootstrap diamond_half %}" + ] + }, + "dice_1": { + "prefix": "svg.bootstrap.dice_1", + "description": "SVG bootstrap - dice_1", + "body": [ + "{% svg bootstrap dice_1 %}" + ] + }, + "dice_1_fill": { + "prefix": "svg.bootstrap.dice_1_fill", + "description": "SVG bootstrap - dice_1_fill", + "body": [ + "{% svg bootstrap dice_1_fill %}" + ] + }, + "dice_2": { + "prefix": "svg.bootstrap.dice_2", + "description": "SVG bootstrap - dice_2", + "body": [ + "{% svg bootstrap dice_2 %}" + ] + }, + "dice_2_fill": { + "prefix": "svg.bootstrap.dice_2_fill", + "description": "SVG bootstrap - dice_2_fill", + "body": [ + "{% svg bootstrap dice_2_fill %}" + ] + }, + "dice_3": { + "prefix": "svg.bootstrap.dice_3", + "description": "SVG bootstrap - dice_3", + "body": [ + "{% svg bootstrap dice_3 %}" + ] + }, + "dice_3_fill": { + "prefix": "svg.bootstrap.dice_3_fill", + "description": "SVG bootstrap - dice_3_fill", + "body": [ + "{% svg bootstrap dice_3_fill %}" + ] + }, + "dice_4": { + "prefix": "svg.bootstrap.dice_4", + "description": "SVG bootstrap - dice_4", + "body": [ + "{% svg bootstrap dice_4 %}" + ] + }, + "dice_4_fill": { + "prefix": "svg.bootstrap.dice_4_fill", + "description": "SVG bootstrap - dice_4_fill", + "body": [ + "{% svg bootstrap dice_4_fill %}" + ] + }, + "dice_5": { + "prefix": "svg.bootstrap.dice_5", + "description": "SVG bootstrap - dice_5", + "body": [ + "{% svg bootstrap dice_5 %}" + ] + }, + "dice_5_fill": { + "prefix": "svg.bootstrap.dice_5_fill", + "description": "SVG bootstrap - dice_5_fill", + "body": [ + "{% svg bootstrap dice_5_fill %}" + ] + }, + "dice_6": { + "prefix": "svg.bootstrap.dice_6", + "description": "SVG bootstrap - dice_6", + "body": [ + "{% svg bootstrap dice_6 %}" + ] + }, + "dice_6_fill": { + "prefix": "svg.bootstrap.dice_6_fill", + "description": "SVG bootstrap - dice_6_fill", + "body": [ + "{% svg bootstrap dice_6_fill %}" + ] + }, + "disc": { + "prefix": "svg.bootstrap.disc", + "description": "SVG bootstrap - disc", + "body": [ + "{% svg bootstrap disc %}" + ] + }, + "disc_fill": { + "prefix": "svg.bootstrap.disc_fill", + "description": "SVG bootstrap - disc_fill", + "body": [ + "{% svg bootstrap disc_fill %}" + ] + }, + "discord": { + "prefix": "svg.bootstrap.discord", + "description": "SVG bootstrap - discord", + "body": [ + "{% svg bootstrap discord %}" + ] + }, + "display": { + "prefix": "svg.bootstrap.display", + "description": "SVG bootstrap - display", + "body": [ + "{% svg bootstrap display %}" + ] + }, + "display_fill": { + "prefix": "svg.bootstrap.display_fill", + "description": "SVG bootstrap - display_fill", + "body": [ + "{% svg bootstrap display_fill %}" + ] + }, + "displayport": { + "prefix": "svg.bootstrap.displayport", + "description": "SVG bootstrap - displayport", + "body": [ + "{% svg bootstrap displayport %}" + ] + }, + "displayport_fill": { + "prefix": "svg.bootstrap.displayport_fill", + "description": "SVG bootstrap - displayport_fill", + "body": [ + "{% svg bootstrap displayport_fill %}" + ] + }, + "distribute_horizontal": { + "prefix": "svg.bootstrap.distribute_horizontal", + "description": "SVG bootstrap - distribute_horizontal", + "body": [ + "{% svg bootstrap distribute_horizontal %}" + ] + }, + "distribute_vertical": { + "prefix": "svg.bootstrap.distribute_vertical", + "description": "SVG bootstrap - distribute_vertical", + "body": [ + "{% svg bootstrap distribute_vertical %}" + ] + }, + "door_closed": { + "prefix": "svg.bootstrap.door_closed", + "description": "SVG bootstrap - door_closed", + "body": [ + "{% svg bootstrap door_closed %}" + ] + }, + "door_closed_fill": { + "prefix": "svg.bootstrap.door_closed_fill", + "description": "SVG bootstrap - door_closed_fill", + "body": [ + "{% svg bootstrap door_closed_fill %}" + ] + }, + "door_open": { + "prefix": "svg.bootstrap.door_open", + "description": "SVG bootstrap - door_open", + "body": [ + "{% svg bootstrap door_open %}" + ] + }, + "door_open_fill": { + "prefix": "svg.bootstrap.door_open_fill", + "description": "SVG bootstrap - door_open_fill", + "body": [ + "{% svg bootstrap door_open_fill %}" + ] + }, + "dot": { + "prefix": "svg.bootstrap.dot", + "description": "SVG bootstrap - dot", + "body": [ + "{% svg bootstrap dot %}" + ] + }, + "download": { + "prefix": "svg.bootstrap.download", + "description": "SVG bootstrap - download", + "body": [ + "{% svg bootstrap download %}" + ] + }, + "dpad": { + "prefix": "svg.bootstrap.dpad", + "description": "SVG bootstrap - dpad", + "body": [ + "{% svg bootstrap dpad %}" + ] + }, + "dpad_fill": { + "prefix": "svg.bootstrap.dpad_fill", + "description": "SVG bootstrap - dpad_fill", + "body": [ + "{% svg bootstrap dpad_fill %}" + ] + }, + "dribbble": { + "prefix": "svg.bootstrap.dribbble", + "description": "SVG bootstrap - dribbble", + "body": [ + "{% svg bootstrap dribbble %}" + ] + }, + "dropbox": { + "prefix": "svg.bootstrap.dropbox", + "description": "SVG bootstrap - dropbox", + "body": [ + "{% svg bootstrap dropbox %}" + ] + }, + "droplet": { + "prefix": "svg.bootstrap.droplet", + "description": "SVG bootstrap - droplet", + "body": [ + "{% svg bootstrap droplet %}" + ] + }, + "droplet_fill": { + "prefix": "svg.bootstrap.droplet_fill", + "description": "SVG bootstrap - droplet_fill", + "body": [ + "{% svg bootstrap droplet_fill %}" + ] + }, + "droplet_half": { + "prefix": "svg.bootstrap.droplet_half", + "description": "SVG bootstrap - droplet_half", + "body": [ + "{% svg bootstrap droplet_half %}" + ] + }, + "ear": { + "prefix": "svg.bootstrap.ear", + "description": "SVG bootstrap - ear", + "body": [ + "{% svg bootstrap ear %}" + ] + }, + "ear_fill": { + "prefix": "svg.bootstrap.ear_fill", + "description": "SVG bootstrap - ear_fill", + "body": [ + "{% svg bootstrap ear_fill %}" + ] + }, + "earbuds": { + "prefix": "svg.bootstrap.earbuds", + "description": "SVG bootstrap - earbuds", + "body": [ + "{% svg bootstrap earbuds %}" + ] + }, + "easel": { + "prefix": "svg.bootstrap.easel", + "description": "SVG bootstrap - easel", + "body": [ + "{% svg bootstrap easel %}" + ] + }, + "easel2": { + "prefix": "svg.bootstrap.easel2", + "description": "SVG bootstrap - easel2", + "body": [ + "{% svg bootstrap easel2 %}" + ] + }, + "easel2_fill": { + "prefix": "svg.bootstrap.easel2_fill", + "description": "SVG bootstrap - easel2_fill", + "body": [ + "{% svg bootstrap easel2_fill %}" + ] + }, + "easel3": { + "prefix": "svg.bootstrap.easel3", + "description": "SVG bootstrap - easel3", + "body": [ + "{% svg bootstrap easel3 %}" + ] + }, + "easel3_fill": { + "prefix": "svg.bootstrap.easel3_fill", + "description": "SVG bootstrap - easel3_fill", + "body": [ + "{% svg bootstrap easel3_fill %}" + ] + }, + "easel_fill": { + "prefix": "svg.bootstrap.easel_fill", + "description": "SVG bootstrap - easel_fill", + "body": [ + "{% svg bootstrap easel_fill %}" + ] + }, + "egg": { + "prefix": "svg.bootstrap.egg", + "description": "SVG bootstrap - egg", + "body": [ + "{% svg bootstrap egg %}" + ] + }, + "egg_fill": { + "prefix": "svg.bootstrap.egg_fill", + "description": "SVG bootstrap - egg_fill", + "body": [ + "{% svg bootstrap egg_fill %}" + ] + }, + "egg_fried": { + "prefix": "svg.bootstrap.egg_fried", + "description": "SVG bootstrap - egg_fried", + "body": [ + "{% svg bootstrap egg_fried %}" + ] + }, + "eject": { + "prefix": "svg.bootstrap.eject", + "description": "SVG bootstrap - eject", + "body": [ + "{% svg bootstrap eject %}" + ] + }, + "eject_fill": { + "prefix": "svg.bootstrap.eject_fill", + "description": "SVG bootstrap - eject_fill", + "body": [ + "{% svg bootstrap eject_fill %}" + ] + }, + "emoji_angry": { + "prefix": "svg.bootstrap.emoji_angry", + "description": "SVG bootstrap - emoji_angry", + "body": [ + "{% svg bootstrap emoji_angry %}" + ] + }, + "emoji_angry_fill": { + "prefix": "svg.bootstrap.emoji_angry_fill", + "description": "SVG bootstrap - emoji_angry_fill", + "body": [ + "{% svg bootstrap emoji_angry_fill %}" + ] + }, + "emoji_dizzy": { + "prefix": "svg.bootstrap.emoji_dizzy", + "description": "SVG bootstrap - emoji_dizzy", + "body": [ + "{% svg bootstrap emoji_dizzy %}" + ] + }, + "emoji_dizzy_fill": { + "prefix": "svg.bootstrap.emoji_dizzy_fill", + "description": "SVG bootstrap - emoji_dizzy_fill", + "body": [ + "{% svg bootstrap emoji_dizzy_fill %}" + ] + }, + "emoji_expressionless": { + "prefix": "svg.bootstrap.emoji_expressionless", + "description": "SVG bootstrap - emoji_expressionless", + "body": [ + "{% svg bootstrap emoji_expressionless %}" + ] + }, + "emoji_expressionless_fill": { + "prefix": "svg.bootstrap.emoji_expressionless_fill", + "description": "SVG bootstrap - emoji_expressionless_fill", + "body": [ + "{% svg bootstrap emoji_expressionless_fill %}" + ] + }, + "emoji_frown": { + "prefix": "svg.bootstrap.emoji_frown", + "description": "SVG bootstrap - emoji_frown", + "body": [ + "{% svg bootstrap emoji_frown %}" + ] + }, + "emoji_frown_fill": { + "prefix": "svg.bootstrap.emoji_frown_fill", + "description": "SVG bootstrap - emoji_frown_fill", + "body": [ + "{% svg bootstrap emoji_frown_fill %}" + ] + }, + "emoji_heart_eyes": { + "prefix": "svg.bootstrap.emoji_heart_eyes", + "description": "SVG bootstrap - emoji_heart_eyes", + "body": [ + "{% svg bootstrap emoji_heart_eyes %}" + ] + }, + "emoji_heart_eyes_fill": { + "prefix": "svg.bootstrap.emoji_heart_eyes_fill", + "description": "SVG bootstrap - emoji_heart_eyes_fill", + "body": [ + "{% svg bootstrap emoji_heart_eyes_fill %}" + ] + }, + "emoji_kiss": { + "prefix": "svg.bootstrap.emoji_kiss", + "description": "SVG bootstrap - emoji_kiss", + "body": [ + "{% svg bootstrap emoji_kiss %}" + ] + }, + "emoji_kiss_fill": { + "prefix": "svg.bootstrap.emoji_kiss_fill", + "description": "SVG bootstrap - emoji_kiss_fill", + "body": [ + "{% svg bootstrap emoji_kiss_fill %}" + ] + }, + "emoji_laughing": { + "prefix": "svg.bootstrap.emoji_laughing", + "description": "SVG bootstrap - emoji_laughing", + "body": [ + "{% svg bootstrap emoji_laughing %}" + ] + }, + "emoji_laughing_fill": { + "prefix": "svg.bootstrap.emoji_laughing_fill", + "description": "SVG bootstrap - emoji_laughing_fill", + "body": [ + "{% svg bootstrap emoji_laughing_fill %}" + ] + }, + "emoji_neutral": { + "prefix": "svg.bootstrap.emoji_neutral", + "description": "SVG bootstrap - emoji_neutral", + "body": [ + "{% svg bootstrap emoji_neutral %}" + ] + }, + "emoji_neutral_fill": { + "prefix": "svg.bootstrap.emoji_neutral_fill", + "description": "SVG bootstrap - emoji_neutral_fill", + "body": [ + "{% svg bootstrap emoji_neutral_fill %}" + ] + }, + "emoji_smile": { + "prefix": "svg.bootstrap.emoji_smile", + "description": "SVG bootstrap - emoji_smile", + "body": [ + "{% svg bootstrap emoji_smile %}" + ] + }, + "emoji_smile_fill": { + "prefix": "svg.bootstrap.emoji_smile_fill", + "description": "SVG bootstrap - emoji_smile_fill", + "body": [ + "{% svg bootstrap emoji_smile_fill %}" + ] + }, + "emoji_smile_upside_down": { + "prefix": "svg.bootstrap.emoji_smile_upside_down", + "description": "SVG bootstrap - emoji_smile_upside_down", + "body": [ + "{% svg bootstrap emoji_smile_upside_down %}" + ] + }, + "emoji_smile_upside_down_fill": { + "prefix": "svg.bootstrap.emoji_smile_upside_down_fill", + "description": "SVG bootstrap - emoji_smile_upside_down_fill", + "body": [ + "{% svg bootstrap emoji_smile_upside_down_fill %}" + ] + }, + "emoji_sunglasses": { + "prefix": "svg.bootstrap.emoji_sunglasses", + "description": "SVG bootstrap - emoji_sunglasses", + "body": [ + "{% svg bootstrap emoji_sunglasses %}" + ] + }, + "emoji_sunglasses_fill": { + "prefix": "svg.bootstrap.emoji_sunglasses_fill", + "description": "SVG bootstrap - emoji_sunglasses_fill", + "body": [ + "{% svg bootstrap emoji_sunglasses_fill %}" + ] + }, + "emoji_wink": { + "prefix": "svg.bootstrap.emoji_wink", + "description": "SVG bootstrap - emoji_wink", + "body": [ + "{% svg bootstrap emoji_wink %}" + ] + }, + "emoji_wink_fill": { + "prefix": "svg.bootstrap.emoji_wink_fill", + "description": "SVG bootstrap - emoji_wink_fill", + "body": [ + "{% svg bootstrap emoji_wink_fill %}" + ] + }, + "envelope": { + "prefix": "svg.bootstrap.envelope", + "description": "SVG bootstrap - envelope", + "body": [ + "{% svg bootstrap envelope %}" + ] + }, + "envelope_at": { + "prefix": "svg.bootstrap.envelope_at", + "description": "SVG bootstrap - envelope_at", + "body": [ + "{% svg bootstrap envelope_at %}" + ] + }, + "envelope_at_fill": { + "prefix": "svg.bootstrap.envelope_at_fill", + "description": "SVG bootstrap - envelope_at_fill", + "body": [ + "{% svg bootstrap envelope_at_fill %}" + ] + }, + "envelope_check": { + "prefix": "svg.bootstrap.envelope_check", + "description": "SVG bootstrap - envelope_check", + "body": [ + "{% svg bootstrap envelope_check %}" + ] + }, + "envelope_check_fill": { + "prefix": "svg.bootstrap.envelope_check_fill", + "description": "SVG bootstrap - envelope_check_fill", + "body": [ + "{% svg bootstrap envelope_check_fill %}" + ] + }, + "envelope_dash": { + "prefix": "svg.bootstrap.envelope_dash", + "description": "SVG bootstrap - envelope_dash", + "body": [ + "{% svg bootstrap envelope_dash %}" + ] + }, + "envelope_dash_fill": { + "prefix": "svg.bootstrap.envelope_dash_fill", + "description": "SVG bootstrap - envelope_dash_fill", + "body": [ + "{% svg bootstrap envelope_dash_fill %}" + ] + }, + "envelope_exclamation": { + "prefix": "svg.bootstrap.envelope_exclamation", + "description": "SVG bootstrap - envelope_exclamation", + "body": [ + "{% svg bootstrap envelope_exclamation %}" + ] + }, + "envelope_exclamation_fill": { + "prefix": "svg.bootstrap.envelope_exclamation_fill", + "description": "SVG bootstrap - envelope_exclamation_fill", + "body": [ + "{% svg bootstrap envelope_exclamation_fill %}" + ] + }, + "envelope_fill": { + "prefix": "svg.bootstrap.envelope_fill", + "description": "SVG bootstrap - envelope_fill", + "body": [ + "{% svg bootstrap envelope_fill %}" + ] + }, + "envelope_heart": { + "prefix": "svg.bootstrap.envelope_heart", + "description": "SVG bootstrap - envelope_heart", + "body": [ + "{% svg bootstrap envelope_heart %}" + ] + }, + "envelope_heart_fill": { + "prefix": "svg.bootstrap.envelope_heart_fill", + "description": "SVG bootstrap - envelope_heart_fill", + "body": [ + "{% svg bootstrap envelope_heart_fill %}" + ] + }, + "envelope_open": { + "prefix": "svg.bootstrap.envelope_open", + "description": "SVG bootstrap - envelope_open", + "body": [ + "{% svg bootstrap envelope_open %}" + ] + }, + "envelope_open_fill": { + "prefix": "svg.bootstrap.envelope_open_fill", + "description": "SVG bootstrap - envelope_open_fill", + "body": [ + "{% svg bootstrap envelope_open_fill %}" + ] + }, + "envelope_open_heart": { + "prefix": "svg.bootstrap.envelope_open_heart", + "description": "SVG bootstrap - envelope_open_heart", + "body": [ + "{% svg bootstrap envelope_open_heart %}" + ] + }, + "envelope_open_heart_fill": { + "prefix": "svg.bootstrap.envelope_open_heart_fill", + "description": "SVG bootstrap - envelope_open_heart_fill", + "body": [ + "{% svg bootstrap envelope_open_heart_fill %}" + ] + }, + "envelope_paper": { + "prefix": "svg.bootstrap.envelope_paper", + "description": "SVG bootstrap - envelope_paper", + "body": [ + "{% svg bootstrap envelope_paper %}" + ] + }, + "envelope_paper_fill": { + "prefix": "svg.bootstrap.envelope_paper_fill", + "description": "SVG bootstrap - envelope_paper_fill", + "body": [ + "{% svg bootstrap envelope_paper_fill %}" + ] + }, + "envelope_paper_heart": { + "prefix": "svg.bootstrap.envelope_paper_heart", + "description": "SVG bootstrap - envelope_paper_heart", + "body": [ + "{% svg bootstrap envelope_paper_heart %}" + ] + }, + "envelope_paper_heart_fill": { + "prefix": "svg.bootstrap.envelope_paper_heart_fill", + "description": "SVG bootstrap - envelope_paper_heart_fill", + "body": [ + "{% svg bootstrap envelope_paper_heart_fill %}" + ] + }, + "envelope_plus": { + "prefix": "svg.bootstrap.envelope_plus", + "description": "SVG bootstrap - envelope_plus", + "body": [ + "{% svg bootstrap envelope_plus %}" + ] + }, + "envelope_plus_fill": { + "prefix": "svg.bootstrap.envelope_plus_fill", + "description": "SVG bootstrap - envelope_plus_fill", + "body": [ + "{% svg bootstrap envelope_plus_fill %}" + ] + }, + "envelope_slash": { + "prefix": "svg.bootstrap.envelope_slash", + "description": "SVG bootstrap - envelope_slash", + "body": [ + "{% svg bootstrap envelope_slash %}" + ] + }, + "envelope_slash_fill": { + "prefix": "svg.bootstrap.envelope_slash_fill", + "description": "SVG bootstrap - envelope_slash_fill", + "body": [ + "{% svg bootstrap envelope_slash_fill %}" + ] + }, + "envelope_x": { + "prefix": "svg.bootstrap.envelope_x", + "description": "SVG bootstrap - envelope_x", + "body": [ + "{% svg bootstrap envelope_x %}" + ] + }, + "envelope_x_fill": { + "prefix": "svg.bootstrap.envelope_x_fill", + "description": "SVG bootstrap - envelope_x_fill", + "body": [ + "{% svg bootstrap envelope_x_fill %}" + ] + }, + "eraser": { + "prefix": "svg.bootstrap.eraser", + "description": "SVG bootstrap - eraser", + "body": [ + "{% svg bootstrap eraser %}" + ] + }, + "eraser_fill": { + "prefix": "svg.bootstrap.eraser_fill", + "description": "SVG bootstrap - eraser_fill", + "body": [ + "{% svg bootstrap eraser_fill %}" + ] + }, + "escape": { + "prefix": "svg.bootstrap.escape", + "description": "SVG bootstrap - escape", + "body": [ + "{% svg bootstrap escape %}" + ] + }, + "ethernet": { + "prefix": "svg.bootstrap.ethernet", + "description": "SVG bootstrap - ethernet", + "body": [ + "{% svg bootstrap ethernet %}" + ] + }, + "ev_front": { + "prefix": "svg.bootstrap.ev_front", + "description": "SVG bootstrap - ev_front", + "body": [ + "{% svg bootstrap ev_front %}" + ] + }, + "ev_front_fill": { + "prefix": "svg.bootstrap.ev_front_fill", + "description": "SVG bootstrap - ev_front_fill", + "body": [ + "{% svg bootstrap ev_front_fill %}" + ] + }, + "ev_station": { + "prefix": "svg.bootstrap.ev_station", + "description": "SVG bootstrap - ev_station", + "body": [ + "{% svg bootstrap ev_station %}" + ] + }, + "ev_station_fill": { + "prefix": "svg.bootstrap.ev_station_fill", + "description": "SVG bootstrap - ev_station_fill", + "body": [ + "{% svg bootstrap ev_station_fill %}" + ] + }, + "exclamation": { + "prefix": "svg.bootstrap.exclamation", + "description": "SVG bootstrap - exclamation", + "body": [ + "{% svg bootstrap exclamation %}" + ] + }, + "exclamation_circle": { + "prefix": "svg.bootstrap.exclamation_circle", + "description": "SVG bootstrap - exclamation_circle", + "body": [ + "{% svg bootstrap exclamation_circle %}" + ] + }, + "exclamation_circle_fill": { + "prefix": "svg.bootstrap.exclamation_circle_fill", + "description": "SVG bootstrap - exclamation_circle_fill", + "body": [ + "{% svg bootstrap exclamation_circle_fill %}" + ] + }, + "exclamation_diamond": { + "prefix": "svg.bootstrap.exclamation_diamond", + "description": "SVG bootstrap - exclamation_diamond", + "body": [ + "{% svg bootstrap exclamation_diamond %}" + ] + }, + "exclamation_diamond_fill": { + "prefix": "svg.bootstrap.exclamation_diamond_fill", + "description": "SVG bootstrap - exclamation_diamond_fill", + "body": [ + "{% svg bootstrap exclamation_diamond_fill %}" + ] + }, + "exclamation_lg": { + "prefix": "svg.bootstrap.exclamation_lg", + "description": "SVG bootstrap - exclamation_lg", + "body": [ + "{% svg bootstrap exclamation_lg %}" + ] + }, + "exclamation_octagon": { + "prefix": "svg.bootstrap.exclamation_octagon", + "description": "SVG bootstrap - exclamation_octagon", + "body": [ + "{% svg bootstrap exclamation_octagon %}" + ] + }, + "exclamation_octagon_fill": { + "prefix": "svg.bootstrap.exclamation_octagon_fill", + "description": "SVG bootstrap - exclamation_octagon_fill", + "body": [ + "{% svg bootstrap exclamation_octagon_fill %}" + ] + }, + "exclamation_square": { + "prefix": "svg.bootstrap.exclamation_square", + "description": "SVG bootstrap - exclamation_square", + "body": [ + "{% svg bootstrap exclamation_square %}" + ] + }, + "exclamation_square_fill": { + "prefix": "svg.bootstrap.exclamation_square_fill", + "description": "SVG bootstrap - exclamation_square_fill", + "body": [ + "{% svg bootstrap exclamation_square_fill %}" + ] + }, + "exclamation_triangle": { + "prefix": "svg.bootstrap.exclamation_triangle", + "description": "SVG bootstrap - exclamation_triangle", + "body": [ + "{% svg bootstrap exclamation_triangle %}" + ] + }, + "exclamation_triangle_fill": { + "prefix": "svg.bootstrap.exclamation_triangle_fill", + "description": "SVG bootstrap - exclamation_triangle_fill", + "body": [ + "{% svg bootstrap exclamation_triangle_fill %}" + ] + }, + "exclude": { + "prefix": "svg.bootstrap.exclude", + "description": "SVG bootstrap - exclude", + "body": [ + "{% svg bootstrap exclude %}" + ] + }, + "explicit": { + "prefix": "svg.bootstrap.explicit", + "description": "SVG bootstrap - explicit", + "body": [ + "{% svg bootstrap explicit %}" + ] + }, + "explicit_fill": { + "prefix": "svg.bootstrap.explicit_fill", + "description": "SVG bootstrap - explicit_fill", + "body": [ + "{% svg bootstrap explicit_fill %}" + ] + }, + "eye": { + "prefix": "svg.bootstrap.eye", + "description": "SVG bootstrap - eye", + "body": [ + "{% svg bootstrap eye %}" + ] + }, + "eye_fill": { + "prefix": "svg.bootstrap.eye_fill", + "description": "SVG bootstrap - eye_fill", + "body": [ + "{% svg bootstrap eye_fill %}" + ] + }, + "eye_slash": { + "prefix": "svg.bootstrap.eye_slash", + "description": "SVG bootstrap - eye_slash", + "body": [ + "{% svg bootstrap eye_slash %}" + ] + }, + "eye_slash_fill": { + "prefix": "svg.bootstrap.eye_slash_fill", + "description": "SVG bootstrap - eye_slash_fill", + "body": [ + "{% svg bootstrap eye_slash_fill %}" + ] + }, + "eyedropper": { + "prefix": "svg.bootstrap.eyedropper", + "description": "SVG bootstrap - eyedropper", + "body": [ + "{% svg bootstrap eyedropper %}" + ] + }, + "eyeglasses": { + "prefix": "svg.bootstrap.eyeglasses", + "description": "SVG bootstrap - eyeglasses", + "body": [ + "{% svg bootstrap eyeglasses %}" + ] + }, + "facebook": { + "prefix": "svg.bootstrap.facebook", + "description": "SVG bootstrap - facebook", + "body": [ + "{% svg bootstrap facebook %}" + ] + }, + "fan": { + "prefix": "svg.bootstrap.fan", + "description": "SVG bootstrap - fan", + "body": [ + "{% svg bootstrap fan %}" + ] + }, + "fast_forward": { + "prefix": "svg.bootstrap.fast_forward", + "description": "SVG bootstrap - fast_forward", + "body": [ + "{% svg bootstrap fast_forward %}" + ] + }, + "fast_forward_btn": { + "prefix": "svg.bootstrap.fast_forward_btn", + "description": "SVG bootstrap - fast_forward_btn", + "body": [ + "{% svg bootstrap fast_forward_btn %}" + ] + }, + "fast_forward_btn_fill": { + "prefix": "svg.bootstrap.fast_forward_btn_fill", + "description": "SVG bootstrap - fast_forward_btn_fill", + "body": [ + "{% svg bootstrap fast_forward_btn_fill %}" + ] + }, + "fast_forward_circle": { + "prefix": "svg.bootstrap.fast_forward_circle", + "description": "SVG bootstrap - fast_forward_circle", + "body": [ + "{% svg bootstrap fast_forward_circle %}" + ] + }, + "fast_forward_circle_fill": { + "prefix": "svg.bootstrap.fast_forward_circle_fill", + "description": "SVG bootstrap - fast_forward_circle_fill", + "body": [ + "{% svg bootstrap fast_forward_circle_fill %}" + ] + }, + "fast_forward_fill": { + "prefix": "svg.bootstrap.fast_forward_fill", + "description": "SVG bootstrap - fast_forward_fill", + "body": [ + "{% svg bootstrap fast_forward_fill %}" + ] + }, + "file": { + "prefix": "svg.bootstrap.file", + "description": "SVG bootstrap - file", + "body": [ + "{% svg bootstrap file %}" + ] + }, + "file_arrow_down": { + "prefix": "svg.bootstrap.file_arrow_down", + "description": "SVG bootstrap - file_arrow_down", + "body": [ + "{% svg bootstrap file_arrow_down %}" + ] + }, + "file_arrow_down_fill": { + "prefix": "svg.bootstrap.file_arrow_down_fill", + "description": "SVG bootstrap - file_arrow_down_fill", + "body": [ + "{% svg bootstrap file_arrow_down_fill %}" + ] + }, + "file_arrow_up": { + "prefix": "svg.bootstrap.file_arrow_up", + "description": "SVG bootstrap - file_arrow_up", + "body": [ + "{% svg bootstrap file_arrow_up %}" + ] + }, + "file_arrow_up_fill": { + "prefix": "svg.bootstrap.file_arrow_up_fill", + "description": "SVG bootstrap - file_arrow_up_fill", + "body": [ + "{% svg bootstrap file_arrow_up_fill %}" + ] + }, + "file_bar_graph": { + "prefix": "svg.bootstrap.file_bar_graph", + "description": "SVG bootstrap - file_bar_graph", + "body": [ + "{% svg bootstrap file_bar_graph %}" + ] + }, + "file_bar_graph_fill": { + "prefix": "svg.bootstrap.file_bar_graph_fill", + "description": "SVG bootstrap - file_bar_graph_fill", + "body": [ + "{% svg bootstrap file_bar_graph_fill %}" + ] + }, + "file_binary": { + "prefix": "svg.bootstrap.file_binary", + "description": "SVG bootstrap - file_binary", + "body": [ + "{% svg bootstrap file_binary %}" + ] + }, + "file_binary_fill": { + "prefix": "svg.bootstrap.file_binary_fill", + "description": "SVG bootstrap - file_binary_fill", + "body": [ + "{% svg bootstrap file_binary_fill %}" + ] + }, + "file_break": { + "prefix": "svg.bootstrap.file_break", + "description": "SVG bootstrap - file_break", + "body": [ + "{% svg bootstrap file_break %}" + ] + }, + "file_break_fill": { + "prefix": "svg.bootstrap.file_break_fill", + "description": "SVG bootstrap - file_break_fill", + "body": [ + "{% svg bootstrap file_break_fill %}" + ] + }, + "file_check": { + "prefix": "svg.bootstrap.file_check", + "description": "SVG bootstrap - file_check", + "body": [ + "{% svg bootstrap file_check %}" + ] + }, + "file_check_fill": { + "prefix": "svg.bootstrap.file_check_fill", + "description": "SVG bootstrap - file_check_fill", + "body": [ + "{% svg bootstrap file_check_fill %}" + ] + }, + "file_code": { + "prefix": "svg.bootstrap.file_code", + "description": "SVG bootstrap - file_code", + "body": [ + "{% svg bootstrap file_code %}" + ] + }, + "file_code_fill": { + "prefix": "svg.bootstrap.file_code_fill", + "description": "SVG bootstrap - file_code_fill", + "body": [ + "{% svg bootstrap file_code_fill %}" + ] + }, + "file_diff": { + "prefix": "svg.bootstrap.file_diff", + "description": "SVG bootstrap - file_diff", + "body": [ + "{% svg bootstrap file_diff %}" + ] + }, + "file_diff_fill": { + "prefix": "svg.bootstrap.file_diff_fill", + "description": "SVG bootstrap - file_diff_fill", + "body": [ + "{% svg bootstrap file_diff_fill %}" + ] + }, + "file_earmark": { + "prefix": "svg.bootstrap.file_earmark", + "description": "SVG bootstrap - file_earmark", + "body": [ + "{% svg bootstrap file_earmark %}" + ] + }, + "file_earmark_arrow_down": { + "prefix": "svg.bootstrap.file_earmark_arrow_down", + "description": "SVG bootstrap - file_earmark_arrow_down", + "body": [ + "{% svg bootstrap file_earmark_arrow_down %}" + ] + }, + "file_earmark_arrow_down_fill": { + "prefix": "svg.bootstrap.file_earmark_arrow_down_fill", + "description": "SVG bootstrap - file_earmark_arrow_down_fill", + "body": [ + "{% svg bootstrap file_earmark_arrow_down_fill %}" + ] + }, + "file_earmark_arrow_up": { + "prefix": "svg.bootstrap.file_earmark_arrow_up", + "description": "SVG bootstrap - file_earmark_arrow_up", + "body": [ + "{% svg bootstrap file_earmark_arrow_up %}" + ] + }, + "file_earmark_arrow_up_fill": { + "prefix": "svg.bootstrap.file_earmark_arrow_up_fill", + "description": "SVG bootstrap - file_earmark_arrow_up_fill", + "body": [ + "{% svg bootstrap file_earmark_arrow_up_fill %}" + ] + }, + "file_earmark_bar_graph": { + "prefix": "svg.bootstrap.file_earmark_bar_graph", + "description": "SVG bootstrap - file_earmark_bar_graph", + "body": [ + "{% svg bootstrap file_earmark_bar_graph %}" + ] + }, + "file_earmark_bar_graph_fill": { + "prefix": "svg.bootstrap.file_earmark_bar_graph_fill", + "description": "SVG bootstrap - file_earmark_bar_graph_fill", + "body": [ + "{% svg bootstrap file_earmark_bar_graph_fill %}" + ] + }, + "file_earmark_binary": { + "prefix": "svg.bootstrap.file_earmark_binary", + "description": "SVG bootstrap - file_earmark_binary", + "body": [ + "{% svg bootstrap file_earmark_binary %}" + ] + }, + "file_earmark_binary_fill": { + "prefix": "svg.bootstrap.file_earmark_binary_fill", + "description": "SVG bootstrap - file_earmark_binary_fill", + "body": [ + "{% svg bootstrap file_earmark_binary_fill %}" + ] + }, + "file_earmark_break": { + "prefix": "svg.bootstrap.file_earmark_break", + "description": "SVG bootstrap - file_earmark_break", + "body": [ + "{% svg bootstrap file_earmark_break %}" + ] + }, + "file_earmark_break_fill": { + "prefix": "svg.bootstrap.file_earmark_break_fill", + "description": "SVG bootstrap - file_earmark_break_fill", + "body": [ + "{% svg bootstrap file_earmark_break_fill %}" + ] + }, + "file_earmark_check": { + "prefix": "svg.bootstrap.file_earmark_check", + "description": "SVG bootstrap - file_earmark_check", + "body": [ + "{% svg bootstrap file_earmark_check %}" + ] + }, + "file_earmark_check_fill": { + "prefix": "svg.bootstrap.file_earmark_check_fill", + "description": "SVG bootstrap - file_earmark_check_fill", + "body": [ + "{% svg bootstrap file_earmark_check_fill %}" + ] + }, + "file_earmark_code": { + "prefix": "svg.bootstrap.file_earmark_code", + "description": "SVG bootstrap - file_earmark_code", + "body": [ + "{% svg bootstrap file_earmark_code %}" + ] + }, + "file_earmark_code_fill": { + "prefix": "svg.bootstrap.file_earmark_code_fill", + "description": "SVG bootstrap - file_earmark_code_fill", + "body": [ + "{% svg bootstrap file_earmark_code_fill %}" + ] + }, + "file_earmark_diff": { + "prefix": "svg.bootstrap.file_earmark_diff", + "description": "SVG bootstrap - file_earmark_diff", + "body": [ + "{% svg bootstrap file_earmark_diff %}" + ] + }, + "file_earmark_diff_fill": { + "prefix": "svg.bootstrap.file_earmark_diff_fill", + "description": "SVG bootstrap - file_earmark_diff_fill", + "body": [ + "{% svg bootstrap file_earmark_diff_fill %}" + ] + }, + "file_earmark_easel": { + "prefix": "svg.bootstrap.file_earmark_easel", + "description": "SVG bootstrap - file_earmark_easel", + "body": [ + "{% svg bootstrap file_earmark_easel %}" + ] + }, + "file_earmark_easel_fill": { + "prefix": "svg.bootstrap.file_earmark_easel_fill", + "description": "SVG bootstrap - file_earmark_easel_fill", + "body": [ + "{% svg bootstrap file_earmark_easel_fill %}" + ] + }, + "file_earmark_excel": { + "prefix": "svg.bootstrap.file_earmark_excel", + "description": "SVG bootstrap - file_earmark_excel", + "body": [ + "{% svg bootstrap file_earmark_excel %}" + ] + }, + "file_earmark_excel_fill": { + "prefix": "svg.bootstrap.file_earmark_excel_fill", + "description": "SVG bootstrap - file_earmark_excel_fill", + "body": [ + "{% svg bootstrap file_earmark_excel_fill %}" + ] + }, + "file_earmark_fill": { + "prefix": "svg.bootstrap.file_earmark_fill", + "description": "SVG bootstrap - file_earmark_fill", + "body": [ + "{% svg bootstrap file_earmark_fill %}" + ] + }, + "file_earmark_font": { + "prefix": "svg.bootstrap.file_earmark_font", + "description": "SVG bootstrap - file_earmark_font", + "body": [ + "{% svg bootstrap file_earmark_font %}" + ] + }, + "file_earmark_font_fill": { + "prefix": "svg.bootstrap.file_earmark_font_fill", + "description": "SVG bootstrap - file_earmark_font_fill", + "body": [ + "{% svg bootstrap file_earmark_font_fill %}" + ] + }, + "file_earmark_image": { + "prefix": "svg.bootstrap.file_earmark_image", + "description": "SVG bootstrap - file_earmark_image", + "body": [ + "{% svg bootstrap file_earmark_image %}" + ] + }, + "file_earmark_image_fill": { + "prefix": "svg.bootstrap.file_earmark_image_fill", + "description": "SVG bootstrap - file_earmark_image_fill", + "body": [ + "{% svg bootstrap file_earmark_image_fill %}" + ] + }, + "file_earmark_lock": { + "prefix": "svg.bootstrap.file_earmark_lock", + "description": "SVG bootstrap - file_earmark_lock", + "body": [ + "{% svg bootstrap file_earmark_lock %}" + ] + }, + "file_earmark_lock2": { + "prefix": "svg.bootstrap.file_earmark_lock2", + "description": "SVG bootstrap - file_earmark_lock2", + "body": [ + "{% svg bootstrap file_earmark_lock2 %}" + ] + }, + "file_earmark_lock2_fill": { + "prefix": "svg.bootstrap.file_earmark_lock2_fill", + "description": "SVG bootstrap - file_earmark_lock2_fill", + "body": [ + "{% svg bootstrap file_earmark_lock2_fill %}" + ] + }, + "file_earmark_lock_fill": { + "prefix": "svg.bootstrap.file_earmark_lock_fill", + "description": "SVG bootstrap - file_earmark_lock_fill", + "body": [ + "{% svg bootstrap file_earmark_lock_fill %}" + ] + }, + "file_earmark_medical": { + "prefix": "svg.bootstrap.file_earmark_medical", + "description": "SVG bootstrap - file_earmark_medical", + "body": [ + "{% svg bootstrap file_earmark_medical %}" + ] + }, + "file_earmark_medical_fill": { + "prefix": "svg.bootstrap.file_earmark_medical_fill", + "description": "SVG bootstrap - file_earmark_medical_fill", + "body": [ + "{% svg bootstrap file_earmark_medical_fill %}" + ] + }, + "file_earmark_minus": { + "prefix": "svg.bootstrap.file_earmark_minus", + "description": "SVG bootstrap - file_earmark_minus", + "body": [ + "{% svg bootstrap file_earmark_minus %}" + ] + }, + "file_earmark_minus_fill": { + "prefix": "svg.bootstrap.file_earmark_minus_fill", + "description": "SVG bootstrap - file_earmark_minus_fill", + "body": [ + "{% svg bootstrap file_earmark_minus_fill %}" + ] + }, + "file_earmark_music": { + "prefix": "svg.bootstrap.file_earmark_music", + "description": "SVG bootstrap - file_earmark_music", + "body": [ + "{% svg bootstrap file_earmark_music %}" + ] + }, + "file_earmark_music_fill": { + "prefix": "svg.bootstrap.file_earmark_music_fill", + "description": "SVG bootstrap - file_earmark_music_fill", + "body": [ + "{% svg bootstrap file_earmark_music_fill %}" + ] + }, + "file_earmark_pdf": { + "prefix": "svg.bootstrap.file_earmark_pdf", + "description": "SVG bootstrap - file_earmark_pdf", + "body": [ + "{% svg bootstrap file_earmark_pdf %}" + ] + }, + "file_earmark_pdf_fill": { + "prefix": "svg.bootstrap.file_earmark_pdf_fill", + "description": "SVG bootstrap - file_earmark_pdf_fill", + "body": [ + "{% svg bootstrap file_earmark_pdf_fill %}" + ] + }, + "file_earmark_person": { + "prefix": "svg.bootstrap.file_earmark_person", + "description": "SVG bootstrap - file_earmark_person", + "body": [ + "{% svg bootstrap file_earmark_person %}" + ] + }, + "file_earmark_person_fill": { + "prefix": "svg.bootstrap.file_earmark_person_fill", + "description": "SVG bootstrap - file_earmark_person_fill", + "body": [ + "{% svg bootstrap file_earmark_person_fill %}" + ] + }, + "file_earmark_play": { + "prefix": "svg.bootstrap.file_earmark_play", + "description": "SVG bootstrap - file_earmark_play", + "body": [ + "{% svg bootstrap file_earmark_play %}" + ] + }, + "file_earmark_play_fill": { + "prefix": "svg.bootstrap.file_earmark_play_fill", + "description": "SVG bootstrap - file_earmark_play_fill", + "body": [ + "{% svg bootstrap file_earmark_play_fill %}" + ] + }, + "file_earmark_plus": { + "prefix": "svg.bootstrap.file_earmark_plus", + "description": "SVG bootstrap - file_earmark_plus", + "body": [ + "{% svg bootstrap file_earmark_plus %}" + ] + }, + "file_earmark_plus_fill": { + "prefix": "svg.bootstrap.file_earmark_plus_fill", + "description": "SVG bootstrap - file_earmark_plus_fill", + "body": [ + "{% svg bootstrap file_earmark_plus_fill %}" + ] + }, + "file_earmark_post": { + "prefix": "svg.bootstrap.file_earmark_post", + "description": "SVG bootstrap - file_earmark_post", + "body": [ + "{% svg bootstrap file_earmark_post %}" + ] + }, + "file_earmark_post_fill": { + "prefix": "svg.bootstrap.file_earmark_post_fill", + "description": "SVG bootstrap - file_earmark_post_fill", + "body": [ + "{% svg bootstrap file_earmark_post_fill %}" + ] + }, + "file_earmark_ppt": { + "prefix": "svg.bootstrap.file_earmark_ppt", + "description": "SVG bootstrap - file_earmark_ppt", + "body": [ + "{% svg bootstrap file_earmark_ppt %}" + ] + }, + "file_earmark_ppt_fill": { + "prefix": "svg.bootstrap.file_earmark_ppt_fill", + "description": "SVG bootstrap - file_earmark_ppt_fill", + "body": [ + "{% svg bootstrap file_earmark_ppt_fill %}" + ] + }, + "file_earmark_richtext": { + "prefix": "svg.bootstrap.file_earmark_richtext", + "description": "SVG bootstrap - file_earmark_richtext", + "body": [ + "{% svg bootstrap file_earmark_richtext %}" + ] + }, + "file_earmark_richtext_fill": { + "prefix": "svg.bootstrap.file_earmark_richtext_fill", + "description": "SVG bootstrap - file_earmark_richtext_fill", + "body": [ + "{% svg bootstrap file_earmark_richtext_fill %}" + ] + }, + "file_earmark_ruled": { + "prefix": "svg.bootstrap.file_earmark_ruled", + "description": "SVG bootstrap - file_earmark_ruled", + "body": [ + "{% svg bootstrap file_earmark_ruled %}" + ] + }, + "file_earmark_ruled_fill": { + "prefix": "svg.bootstrap.file_earmark_ruled_fill", + "description": "SVG bootstrap - file_earmark_ruled_fill", + "body": [ + "{% svg bootstrap file_earmark_ruled_fill %}" + ] + }, + "file_earmark_slides": { + "prefix": "svg.bootstrap.file_earmark_slides", + "description": "SVG bootstrap - file_earmark_slides", + "body": [ + "{% svg bootstrap file_earmark_slides %}" + ] + }, + "file_earmark_slides_fill": { + "prefix": "svg.bootstrap.file_earmark_slides_fill", + "description": "SVG bootstrap - file_earmark_slides_fill", + "body": [ + "{% svg bootstrap file_earmark_slides_fill %}" + ] + }, + "file_earmark_spreadsheet": { + "prefix": "svg.bootstrap.file_earmark_spreadsheet", + "description": "SVG bootstrap - file_earmark_spreadsheet", + "body": [ + "{% svg bootstrap file_earmark_spreadsheet %}" + ] + }, + "file_earmark_spreadsheet_fill": { + "prefix": "svg.bootstrap.file_earmark_spreadsheet_fill", + "description": "SVG bootstrap - file_earmark_spreadsheet_fill", + "body": [ + "{% svg bootstrap file_earmark_spreadsheet_fill %}" + ] + }, + "file_earmark_text": { + "prefix": "svg.bootstrap.file_earmark_text", + "description": "SVG bootstrap - file_earmark_text", + "body": [ + "{% svg bootstrap file_earmark_text %}" + ] + }, + "file_earmark_text_fill": { + "prefix": "svg.bootstrap.file_earmark_text_fill", + "description": "SVG bootstrap - file_earmark_text_fill", + "body": [ + "{% svg bootstrap file_earmark_text_fill %}" + ] + }, + "file_earmark_word": { + "prefix": "svg.bootstrap.file_earmark_word", + "description": "SVG bootstrap - file_earmark_word", + "body": [ + "{% svg bootstrap file_earmark_word %}" + ] + }, + "file_earmark_word_fill": { + "prefix": "svg.bootstrap.file_earmark_word_fill", + "description": "SVG bootstrap - file_earmark_word_fill", + "body": [ + "{% svg bootstrap file_earmark_word_fill %}" + ] + }, + "file_earmark_x": { + "prefix": "svg.bootstrap.file_earmark_x", + "description": "SVG bootstrap - file_earmark_x", + "body": [ + "{% svg bootstrap file_earmark_x %}" + ] + }, + "file_earmark_x_fill": { + "prefix": "svg.bootstrap.file_earmark_x_fill", + "description": "SVG bootstrap - file_earmark_x_fill", + "body": [ + "{% svg bootstrap file_earmark_x_fill %}" + ] + }, + "file_earmark_zip": { + "prefix": "svg.bootstrap.file_earmark_zip", + "description": "SVG bootstrap - file_earmark_zip", + "body": [ + "{% svg bootstrap file_earmark_zip %}" + ] + }, + "file_earmark_zip_fill": { + "prefix": "svg.bootstrap.file_earmark_zip_fill", + "description": "SVG bootstrap - file_earmark_zip_fill", + "body": [ + "{% svg bootstrap file_earmark_zip_fill %}" + ] + }, + "file_easel": { + "prefix": "svg.bootstrap.file_easel", + "description": "SVG bootstrap - file_easel", + "body": [ + "{% svg bootstrap file_easel %}" + ] + }, + "file_easel_fill": { + "prefix": "svg.bootstrap.file_easel_fill", + "description": "SVG bootstrap - file_easel_fill", + "body": [ + "{% svg bootstrap file_easel_fill %}" + ] + }, + "file_excel": { + "prefix": "svg.bootstrap.file_excel", + "description": "SVG bootstrap - file_excel", + "body": [ + "{% svg bootstrap file_excel %}" + ] + }, + "file_excel_fill": { + "prefix": "svg.bootstrap.file_excel_fill", + "description": "SVG bootstrap - file_excel_fill", + "body": [ + "{% svg bootstrap file_excel_fill %}" + ] + }, + "file_fill": { + "prefix": "svg.bootstrap.file_fill", + "description": "SVG bootstrap - file_fill", + "body": [ + "{% svg bootstrap file_fill %}" + ] + }, + "file_font": { + "prefix": "svg.bootstrap.file_font", + "description": "SVG bootstrap - file_font", + "body": [ + "{% svg bootstrap file_font %}" + ] + }, + "file_font_fill": { + "prefix": "svg.bootstrap.file_font_fill", + "description": "SVG bootstrap - file_font_fill", + "body": [ + "{% svg bootstrap file_font_fill %}" + ] + }, + "file_image": { + "prefix": "svg.bootstrap.file_image", + "description": "SVG bootstrap - file_image", + "body": [ + "{% svg bootstrap file_image %}" + ] + }, + "file_image_fill": { + "prefix": "svg.bootstrap.file_image_fill", + "description": "SVG bootstrap - file_image_fill", + "body": [ + "{% svg bootstrap file_image_fill %}" + ] + }, + "file_lock": { + "prefix": "svg.bootstrap.file_lock", + "description": "SVG bootstrap - file_lock", + "body": [ + "{% svg bootstrap file_lock %}" + ] + }, + "file_lock2": { + "prefix": "svg.bootstrap.file_lock2", + "description": "SVG bootstrap - file_lock2", + "body": [ + "{% svg bootstrap file_lock2 %}" + ] + }, + "file_lock2_fill": { + "prefix": "svg.bootstrap.file_lock2_fill", + "description": "SVG bootstrap - file_lock2_fill", + "body": [ + "{% svg bootstrap file_lock2_fill %}" + ] + }, + "file_lock_fill": { + "prefix": "svg.bootstrap.file_lock_fill", + "description": "SVG bootstrap - file_lock_fill", + "body": [ + "{% svg bootstrap file_lock_fill %}" + ] + }, + "file_medical": { + "prefix": "svg.bootstrap.file_medical", + "description": "SVG bootstrap - file_medical", + "body": [ + "{% svg bootstrap file_medical %}" + ] + }, + "file_medical_fill": { + "prefix": "svg.bootstrap.file_medical_fill", + "description": "SVG bootstrap - file_medical_fill", + "body": [ + "{% svg bootstrap file_medical_fill %}" + ] + }, + "file_minus": { + "prefix": "svg.bootstrap.file_minus", + "description": "SVG bootstrap - file_minus", + "body": [ + "{% svg bootstrap file_minus %}" + ] + }, + "file_minus_fill": { + "prefix": "svg.bootstrap.file_minus_fill", + "description": "SVG bootstrap - file_minus_fill", + "body": [ + "{% svg bootstrap file_minus_fill %}" + ] + }, + "file_music": { + "prefix": "svg.bootstrap.file_music", + "description": "SVG bootstrap - file_music", + "body": [ + "{% svg bootstrap file_music %}" + ] + }, + "file_music_fill": { + "prefix": "svg.bootstrap.file_music_fill", + "description": "SVG bootstrap - file_music_fill", + "body": [ + "{% svg bootstrap file_music_fill %}" + ] + }, + "file_pdf": { + "prefix": "svg.bootstrap.file_pdf", + "description": "SVG bootstrap - file_pdf", + "body": [ + "{% svg bootstrap file_pdf %}" + ] + }, + "file_pdf_fill": { + "prefix": "svg.bootstrap.file_pdf_fill", + "description": "SVG bootstrap - file_pdf_fill", + "body": [ + "{% svg bootstrap file_pdf_fill %}" + ] + }, + "file_person": { + "prefix": "svg.bootstrap.file_person", + "description": "SVG bootstrap - file_person", + "body": [ + "{% svg bootstrap file_person %}" + ] + }, + "file_person_fill": { + "prefix": "svg.bootstrap.file_person_fill", + "description": "SVG bootstrap - file_person_fill", + "body": [ + "{% svg bootstrap file_person_fill %}" + ] + }, + "file_play": { + "prefix": "svg.bootstrap.file_play", + "description": "SVG bootstrap - file_play", + "body": [ + "{% svg bootstrap file_play %}" + ] + }, + "file_play_fill": { + "prefix": "svg.bootstrap.file_play_fill", + "description": "SVG bootstrap - file_play_fill", + "body": [ + "{% svg bootstrap file_play_fill %}" + ] + }, + "file_plus": { + "prefix": "svg.bootstrap.file_plus", + "description": "SVG bootstrap - file_plus", + "body": [ + "{% svg bootstrap file_plus %}" + ] + }, + "file_plus_fill": { + "prefix": "svg.bootstrap.file_plus_fill", + "description": "SVG bootstrap - file_plus_fill", + "body": [ + "{% svg bootstrap file_plus_fill %}" + ] + }, + "file_post": { + "prefix": "svg.bootstrap.file_post", + "description": "SVG bootstrap - file_post", + "body": [ + "{% svg bootstrap file_post %}" + ] + }, + "file_post_fill": { + "prefix": "svg.bootstrap.file_post_fill", + "description": "SVG bootstrap - file_post_fill", + "body": [ + "{% svg bootstrap file_post_fill %}" + ] + }, + "file_ppt": { + "prefix": "svg.bootstrap.file_ppt", + "description": "SVG bootstrap - file_ppt", + "body": [ + "{% svg bootstrap file_ppt %}" + ] + }, + "file_ppt_fill": { + "prefix": "svg.bootstrap.file_ppt_fill", + "description": "SVG bootstrap - file_ppt_fill", + "body": [ + "{% svg bootstrap file_ppt_fill %}" + ] + }, + "file_richtext": { + "prefix": "svg.bootstrap.file_richtext", + "description": "SVG bootstrap - file_richtext", + "body": [ + "{% svg bootstrap file_richtext %}" + ] + }, + "file_richtext_fill": { + "prefix": "svg.bootstrap.file_richtext_fill", + "description": "SVG bootstrap - file_richtext_fill", + "body": [ + "{% svg bootstrap file_richtext_fill %}" + ] + }, + "file_ruled": { + "prefix": "svg.bootstrap.file_ruled", + "description": "SVG bootstrap - file_ruled", + "body": [ + "{% svg bootstrap file_ruled %}" + ] + }, + "file_ruled_fill": { + "prefix": "svg.bootstrap.file_ruled_fill", + "description": "SVG bootstrap - file_ruled_fill", + "body": [ + "{% svg bootstrap file_ruled_fill %}" + ] + }, + "file_slides": { + "prefix": "svg.bootstrap.file_slides", + "description": "SVG bootstrap - file_slides", + "body": [ + "{% svg bootstrap file_slides %}" + ] + }, + "file_slides_fill": { + "prefix": "svg.bootstrap.file_slides_fill", + "description": "SVG bootstrap - file_slides_fill", + "body": [ + "{% svg bootstrap file_slides_fill %}" + ] + }, + "file_spreadsheet": { + "prefix": "svg.bootstrap.file_spreadsheet", + "description": "SVG bootstrap - file_spreadsheet", + "body": [ + "{% svg bootstrap file_spreadsheet %}" + ] + }, + "file_spreadsheet_fill": { + "prefix": "svg.bootstrap.file_spreadsheet_fill", + "description": "SVG bootstrap - file_spreadsheet_fill", + "body": [ + "{% svg bootstrap file_spreadsheet_fill %}" + ] + }, + "file_text": { + "prefix": "svg.bootstrap.file_text", + "description": "SVG bootstrap - file_text", + "body": [ + "{% svg bootstrap file_text %}" + ] + }, + "file_text_fill": { + "prefix": "svg.bootstrap.file_text_fill", + "description": "SVG bootstrap - file_text_fill", + "body": [ + "{% svg bootstrap file_text_fill %}" + ] + }, + "file_word": { + "prefix": "svg.bootstrap.file_word", + "description": "SVG bootstrap - file_word", + "body": [ + "{% svg bootstrap file_word %}" + ] + }, + "file_word_fill": { + "prefix": "svg.bootstrap.file_word_fill", + "description": "SVG bootstrap - file_word_fill", + "body": [ + "{% svg bootstrap file_word_fill %}" + ] + }, + "file_x": { + "prefix": "svg.bootstrap.file_x", + "description": "SVG bootstrap - file_x", + "body": [ + "{% svg bootstrap file_x %}" + ] + }, + "file_x_fill": { + "prefix": "svg.bootstrap.file_x_fill", + "description": "SVG bootstrap - file_x_fill", + "body": [ + "{% svg bootstrap file_x_fill %}" + ] + }, + "file_zip": { + "prefix": "svg.bootstrap.file_zip", + "description": "SVG bootstrap - file_zip", + "body": [ + "{% svg bootstrap file_zip %}" + ] + }, + "file_zip_fill": { + "prefix": "svg.bootstrap.file_zip_fill", + "description": "SVG bootstrap - file_zip_fill", + "body": [ + "{% svg bootstrap file_zip_fill %}" + ] + }, + "files": { + "prefix": "svg.bootstrap.files", + "description": "SVG bootstrap - files", + "body": [ + "{% svg bootstrap files %}" + ] + }, + "files_alt": { + "prefix": "svg.bootstrap.files_alt", + "description": "SVG bootstrap - files_alt", + "body": [ + "{% svg bootstrap files_alt %}" + ] + }, + "filetype_aac": { + "prefix": "svg.bootstrap.filetype_aac", + "description": "SVG bootstrap - filetype_aac", + "body": [ + "{% svg bootstrap filetype_aac %}" + ] + }, + "filetype_ai": { + "prefix": "svg.bootstrap.filetype_ai", + "description": "SVG bootstrap - filetype_ai", + "body": [ + "{% svg bootstrap filetype_ai %}" + ] + }, + "filetype_bmp": { + "prefix": "svg.bootstrap.filetype_bmp", + "description": "SVG bootstrap - filetype_bmp", + "body": [ + "{% svg bootstrap filetype_bmp %}" + ] + }, + "filetype_cs": { + "prefix": "svg.bootstrap.filetype_cs", + "description": "SVG bootstrap - filetype_cs", + "body": [ + "{% svg bootstrap filetype_cs %}" + ] + }, + "filetype_css": { + "prefix": "svg.bootstrap.filetype_css", + "description": "SVG bootstrap - filetype_css", + "body": [ + "{% svg bootstrap filetype_css %}" + ] + }, + "filetype_csv": { + "prefix": "svg.bootstrap.filetype_csv", + "description": "SVG bootstrap - filetype_csv", + "body": [ + "{% svg bootstrap filetype_csv %}" + ] + }, + "filetype_doc": { + "prefix": "svg.bootstrap.filetype_doc", + "description": "SVG bootstrap - filetype_doc", + "body": [ + "{% svg bootstrap filetype_doc %}" + ] + }, + "filetype_docx": { + "prefix": "svg.bootstrap.filetype_docx", + "description": "SVG bootstrap - filetype_docx", + "body": [ + "{% svg bootstrap filetype_docx %}" + ] + }, + "filetype_exe": { + "prefix": "svg.bootstrap.filetype_exe", + "description": "SVG bootstrap - filetype_exe", + "body": [ + "{% svg bootstrap filetype_exe %}" + ] + }, + "filetype_gif": { + "prefix": "svg.bootstrap.filetype_gif", + "description": "SVG bootstrap - filetype_gif", + "body": [ + "{% svg bootstrap filetype_gif %}" + ] + }, + "filetype_heic": { + "prefix": "svg.bootstrap.filetype_heic", + "description": "SVG bootstrap - filetype_heic", + "body": [ + "{% svg bootstrap filetype_heic %}" + ] + }, + "filetype_html": { + "prefix": "svg.bootstrap.filetype_html", + "description": "SVG bootstrap - filetype_html", + "body": [ + "{% svg bootstrap filetype_html %}" + ] + }, + "filetype_java": { + "prefix": "svg.bootstrap.filetype_java", + "description": "SVG bootstrap - filetype_java", + "body": [ + "{% svg bootstrap filetype_java %}" + ] + }, + "filetype_jpg": { + "prefix": "svg.bootstrap.filetype_jpg", + "description": "SVG bootstrap - filetype_jpg", + "body": [ + "{% svg bootstrap filetype_jpg %}" + ] + }, + "filetype_js": { + "prefix": "svg.bootstrap.filetype_js", + "description": "SVG bootstrap - filetype_js", + "body": [ + "{% svg bootstrap filetype_js %}" + ] + }, + "filetype_json": { + "prefix": "svg.bootstrap.filetype_json", + "description": "SVG bootstrap - filetype_json", + "body": [ + "{% svg bootstrap filetype_json %}" + ] + }, + "filetype_jsx": { + "prefix": "svg.bootstrap.filetype_jsx", + "description": "SVG bootstrap - filetype_jsx", + "body": [ + "{% svg bootstrap filetype_jsx %}" + ] + }, + "filetype_key": { + "prefix": "svg.bootstrap.filetype_key", + "description": "SVG bootstrap - filetype_key", + "body": [ + "{% svg bootstrap filetype_key %}" + ] + }, + "filetype_m4p": { + "prefix": "svg.bootstrap.filetype_m4p", + "description": "SVG bootstrap - filetype_m4p", + "body": [ + "{% svg bootstrap filetype_m4p %}" + ] + }, + "filetype_md": { + "prefix": "svg.bootstrap.filetype_md", + "description": "SVG bootstrap - filetype_md", + "body": [ + "{% svg bootstrap filetype_md %}" + ] + }, + "filetype_mdx": { + "prefix": "svg.bootstrap.filetype_mdx", + "description": "SVG bootstrap - filetype_mdx", + "body": [ + "{% svg bootstrap filetype_mdx %}" + ] + }, + "filetype_mov": { + "prefix": "svg.bootstrap.filetype_mov", + "description": "SVG bootstrap - filetype_mov", + "body": [ + "{% svg bootstrap filetype_mov %}" + ] + }, + "filetype_mp3": { + "prefix": "svg.bootstrap.filetype_mp3", + "description": "SVG bootstrap - filetype_mp3", + "body": [ + "{% svg bootstrap filetype_mp3 %}" + ] + }, + "filetype_mp4": { + "prefix": "svg.bootstrap.filetype_mp4", + "description": "SVG bootstrap - filetype_mp4", + "body": [ + "{% svg bootstrap filetype_mp4 %}" + ] + }, + "filetype_otf": { + "prefix": "svg.bootstrap.filetype_otf", + "description": "SVG bootstrap - filetype_otf", + "body": [ + "{% svg bootstrap filetype_otf %}" + ] + }, + "filetype_pdf": { + "prefix": "svg.bootstrap.filetype_pdf", + "description": "SVG bootstrap - filetype_pdf", + "body": [ + "{% svg bootstrap filetype_pdf %}" + ] + }, + "filetype_php": { + "prefix": "svg.bootstrap.filetype_php", + "description": "SVG bootstrap - filetype_php", + "body": [ + "{% svg bootstrap filetype_php %}" + ] + }, + "filetype_png": { + "prefix": "svg.bootstrap.filetype_png", + "description": "SVG bootstrap - filetype_png", + "body": [ + "{% svg bootstrap filetype_png %}" + ] + }, + "filetype_ppt": { + "prefix": "svg.bootstrap.filetype_ppt", + "description": "SVG bootstrap - filetype_ppt", + "body": [ + "{% svg bootstrap filetype_ppt %}" + ] + }, + "filetype_pptx": { + "prefix": "svg.bootstrap.filetype_pptx", + "description": "SVG bootstrap - filetype_pptx", + "body": [ + "{% svg bootstrap filetype_pptx %}" + ] + }, + "filetype_psd": { + "prefix": "svg.bootstrap.filetype_psd", + "description": "SVG bootstrap - filetype_psd", + "body": [ + "{% svg bootstrap filetype_psd %}" + ] + }, + "filetype_py": { + "prefix": "svg.bootstrap.filetype_py", + "description": "SVG bootstrap - filetype_py", + "body": [ + "{% svg bootstrap filetype_py %}" + ] + }, + "filetype_raw": { + "prefix": "svg.bootstrap.filetype_raw", + "description": "SVG bootstrap - filetype_raw", + "body": [ + "{% svg bootstrap filetype_raw %}" + ] + }, + "filetype_rb": { + "prefix": "svg.bootstrap.filetype_rb", + "description": "SVG bootstrap - filetype_rb", + "body": [ + "{% svg bootstrap filetype_rb %}" + ] + }, + "filetype_sass": { + "prefix": "svg.bootstrap.filetype_sass", + "description": "SVG bootstrap - filetype_sass", + "body": [ + "{% svg bootstrap filetype_sass %}" + ] + }, + "filetype_scss": { + "prefix": "svg.bootstrap.filetype_scss", + "description": "SVG bootstrap - filetype_scss", + "body": [ + "{% svg bootstrap filetype_scss %}" + ] + }, + "filetype_sh": { + "prefix": "svg.bootstrap.filetype_sh", + "description": "SVG bootstrap - filetype_sh", + "body": [ + "{% svg bootstrap filetype_sh %}" + ] + }, + "filetype_sql": { + "prefix": "svg.bootstrap.filetype_sql", + "description": "SVG bootstrap - filetype_sql", + "body": [ + "{% svg bootstrap filetype_sql %}" + ] + }, + "filetype_svg": { + "prefix": "svg.bootstrap.filetype_svg", + "description": "SVG bootstrap - filetype_svg", + "body": [ + "{% svg bootstrap filetype_svg %}" + ] + }, + "filetype_tiff": { + "prefix": "svg.bootstrap.filetype_tiff", + "description": "SVG bootstrap - filetype_tiff", + "body": [ + "{% svg bootstrap filetype_tiff %}" + ] + }, + "filetype_tsx": { + "prefix": "svg.bootstrap.filetype_tsx", + "description": "SVG bootstrap - filetype_tsx", + "body": [ + "{% svg bootstrap filetype_tsx %}" + ] + }, + "filetype_ttf": { + "prefix": "svg.bootstrap.filetype_ttf", + "description": "SVG bootstrap - filetype_ttf", + "body": [ + "{% svg bootstrap filetype_ttf %}" + ] + }, + "filetype_txt": { + "prefix": "svg.bootstrap.filetype_txt", + "description": "SVG bootstrap - filetype_txt", + "body": [ + "{% svg bootstrap filetype_txt %}" + ] + }, + "filetype_wav": { + "prefix": "svg.bootstrap.filetype_wav", + "description": "SVG bootstrap - filetype_wav", + "body": [ + "{% svg bootstrap filetype_wav %}" + ] + }, + "filetype_woff": { + "prefix": "svg.bootstrap.filetype_woff", + "description": "SVG bootstrap - filetype_woff", + "body": [ + "{% svg bootstrap filetype_woff %}" + ] + }, + "filetype_xls": { + "prefix": "svg.bootstrap.filetype_xls", + "description": "SVG bootstrap - filetype_xls", + "body": [ + "{% svg bootstrap filetype_xls %}" + ] + }, + "filetype_xlsx": { + "prefix": "svg.bootstrap.filetype_xlsx", + "description": "SVG bootstrap - filetype_xlsx", + "body": [ + "{% svg bootstrap filetype_xlsx %}" + ] + }, + "filetype_xml": { + "prefix": "svg.bootstrap.filetype_xml", + "description": "SVG bootstrap - filetype_xml", + "body": [ + "{% svg bootstrap filetype_xml %}" + ] + }, + "filetype_yml": { + "prefix": "svg.bootstrap.filetype_yml", + "description": "SVG bootstrap - filetype_yml", + "body": [ + "{% svg bootstrap filetype_yml %}" + ] + }, + "film": { + "prefix": "svg.bootstrap.film", + "description": "SVG bootstrap - film", + "body": [ + "{% svg bootstrap film %}" + ] + }, + "filter": { + "prefix": "svg.bootstrap.filter", + "description": "SVG bootstrap - filter", + "body": [ + "{% svg bootstrap filter %}" + ] + }, + "filter_circle": { + "prefix": "svg.bootstrap.filter_circle", + "description": "SVG bootstrap - filter_circle", + "body": [ + "{% svg bootstrap filter_circle %}" + ] + }, + "filter_circle_fill": { + "prefix": "svg.bootstrap.filter_circle_fill", + "description": "SVG bootstrap - filter_circle_fill", + "body": [ + "{% svg bootstrap filter_circle_fill %}" + ] + }, + "filter_left": { + "prefix": "svg.bootstrap.filter_left", + "description": "SVG bootstrap - filter_left", + "body": [ + "{% svg bootstrap filter_left %}" + ] + }, + "filter_right": { + "prefix": "svg.bootstrap.filter_right", + "description": "SVG bootstrap - filter_right", + "body": [ + "{% svg bootstrap filter_right %}" + ] + }, + "filter_square": { + "prefix": "svg.bootstrap.filter_square", + "description": "SVG bootstrap - filter_square", + "body": [ + "{% svg bootstrap filter_square %}" + ] + }, + "filter_square_fill": { + "prefix": "svg.bootstrap.filter_square_fill", + "description": "SVG bootstrap - filter_square_fill", + "body": [ + "{% svg bootstrap filter_square_fill %}" + ] + }, + "fingerprint": { + "prefix": "svg.bootstrap.fingerprint", + "description": "SVG bootstrap - fingerprint", + "body": [ + "{% svg bootstrap fingerprint %}" + ] + }, + "fire": { + "prefix": "svg.bootstrap.fire", + "description": "SVG bootstrap - fire", + "body": [ + "{% svg bootstrap fire %}" + ] + }, + "flag": { + "prefix": "svg.bootstrap.flag", + "description": "SVG bootstrap - flag", + "body": [ + "{% svg bootstrap flag %}" + ] + }, + "flag_fill": { + "prefix": "svg.bootstrap.flag_fill", + "description": "SVG bootstrap - flag_fill", + "body": [ + "{% svg bootstrap flag_fill %}" + ] + }, + "flower1": { + "prefix": "svg.bootstrap.flower1", + "description": "SVG bootstrap - flower1", + "body": [ + "{% svg bootstrap flower1 %}" + ] + }, + "flower2": { + "prefix": "svg.bootstrap.flower2", + "description": "SVG bootstrap - flower2", + "body": [ + "{% svg bootstrap flower2 %}" + ] + }, + "flower3": { + "prefix": "svg.bootstrap.flower3", + "description": "SVG bootstrap - flower3", + "body": [ + "{% svg bootstrap flower3 %}" + ] + }, + "folder": { + "prefix": "svg.bootstrap.folder", + "description": "SVG bootstrap - folder", + "body": [ + "{% svg bootstrap folder %}" + ] + }, + "folder2": { + "prefix": "svg.bootstrap.folder2", + "description": "SVG bootstrap - folder2", + "body": [ + "{% svg bootstrap folder2 %}" + ] + }, + "folder2_open": { + "prefix": "svg.bootstrap.folder2_open", + "description": "SVG bootstrap - folder2_open", + "body": [ + "{% svg bootstrap folder2_open %}" + ] + }, + "folder_check": { + "prefix": "svg.bootstrap.folder_check", + "description": "SVG bootstrap - folder_check", + "body": [ + "{% svg bootstrap folder_check %}" + ] + }, + "folder_fill": { + "prefix": "svg.bootstrap.folder_fill", + "description": "SVG bootstrap - folder_fill", + "body": [ + "{% svg bootstrap folder_fill %}" + ] + }, + "folder_minus": { + "prefix": "svg.bootstrap.folder_minus", + "description": "SVG bootstrap - folder_minus", + "body": [ + "{% svg bootstrap folder_minus %}" + ] + }, + "folder_plus": { + "prefix": "svg.bootstrap.folder_plus", + "description": "SVG bootstrap - folder_plus", + "body": [ + "{% svg bootstrap folder_plus %}" + ] + }, + "folder_symlink": { + "prefix": "svg.bootstrap.folder_symlink", + "description": "SVG bootstrap - folder_symlink", + "body": [ + "{% svg bootstrap folder_symlink %}" + ] + }, + "folder_symlink_fill": { + "prefix": "svg.bootstrap.folder_symlink_fill", + "description": "SVG bootstrap - folder_symlink_fill", + "body": [ + "{% svg bootstrap folder_symlink_fill %}" + ] + }, + "folder_x": { + "prefix": "svg.bootstrap.folder_x", + "description": "SVG bootstrap - folder_x", + "body": [ + "{% svg bootstrap folder_x %}" + ] + }, + "fonts": { + "prefix": "svg.bootstrap.fonts", + "description": "SVG bootstrap - fonts", + "body": [ + "{% svg bootstrap fonts %}" + ] + }, + "forward": { + "prefix": "svg.bootstrap.forward", + "description": "SVG bootstrap - forward", + "body": [ + "{% svg bootstrap forward %}" + ] + }, + "forward_fill": { + "prefix": "svg.bootstrap.forward_fill", + "description": "SVG bootstrap - forward_fill", + "body": [ + "{% svg bootstrap forward_fill %}" + ] + }, + "front": { + "prefix": "svg.bootstrap.front", + "description": "SVG bootstrap - front", + "body": [ + "{% svg bootstrap front %}" + ] + }, + "fuel_pump": { + "prefix": "svg.bootstrap.fuel_pump", + "description": "SVG bootstrap - fuel_pump", + "body": [ + "{% svg bootstrap fuel_pump %}" + ] + }, + "fuel_pump_diesel": { + "prefix": "svg.bootstrap.fuel_pump_diesel", + "description": "SVG bootstrap - fuel_pump_diesel", + "body": [ + "{% svg bootstrap fuel_pump_diesel %}" + ] + }, + "fuel_pump_diesel_fill": { + "prefix": "svg.bootstrap.fuel_pump_diesel_fill", + "description": "SVG bootstrap - fuel_pump_diesel_fill", + "body": [ + "{% svg bootstrap fuel_pump_diesel_fill %}" + ] + }, + "fuel_pump_fill": { + "prefix": "svg.bootstrap.fuel_pump_fill", + "description": "SVG bootstrap - fuel_pump_fill", + "body": [ + "{% svg bootstrap fuel_pump_fill %}" + ] + }, + "fullscreen": { + "prefix": "svg.bootstrap.fullscreen", + "description": "SVG bootstrap - fullscreen", + "body": [ + "{% svg bootstrap fullscreen %}" + ] + }, + "fullscreen_exit": { + "prefix": "svg.bootstrap.fullscreen_exit", + "description": "SVG bootstrap - fullscreen_exit", + "body": [ + "{% svg bootstrap fullscreen_exit %}" + ] + }, + "funnel": { + "prefix": "svg.bootstrap.funnel", + "description": "SVG bootstrap - funnel", + "body": [ + "{% svg bootstrap funnel %}" + ] + }, + "funnel_fill": { + "prefix": "svg.bootstrap.funnel_fill", + "description": "SVG bootstrap - funnel_fill", + "body": [ + "{% svg bootstrap funnel_fill %}" + ] + }, + "gear": { + "prefix": "svg.bootstrap.gear", + "description": "SVG bootstrap - gear", + "body": [ + "{% svg bootstrap gear %}" + ] + }, + "gear_fill": { + "prefix": "svg.bootstrap.gear_fill", + "description": "SVG bootstrap - gear_fill", + "body": [ + "{% svg bootstrap gear_fill %}" + ] + }, + "gear_wide": { + "prefix": "svg.bootstrap.gear_wide", + "description": "SVG bootstrap - gear_wide", + "body": [ + "{% svg bootstrap gear_wide %}" + ] + }, + "gear_wide_connected": { + "prefix": "svg.bootstrap.gear_wide_connected", + "description": "SVG bootstrap - gear_wide_connected", + "body": [ + "{% svg bootstrap gear_wide_connected %}" + ] + }, + "gem": { + "prefix": "svg.bootstrap.gem", + "description": "SVG bootstrap - gem", + "body": [ + "{% svg bootstrap gem %}" + ] + }, + "gender_ambiguous": { + "prefix": "svg.bootstrap.gender_ambiguous", + "description": "SVG bootstrap - gender_ambiguous", + "body": [ + "{% svg bootstrap gender_ambiguous %}" + ] + }, + "gender_female": { + "prefix": "svg.bootstrap.gender_female", + "description": "SVG bootstrap - gender_female", + "body": [ + "{% svg bootstrap gender_female %}" + ] + }, + "gender_male": { + "prefix": "svg.bootstrap.gender_male", + "description": "SVG bootstrap - gender_male", + "body": [ + "{% svg bootstrap gender_male %}" + ] + }, + "gender_trans": { + "prefix": "svg.bootstrap.gender_trans", + "description": "SVG bootstrap - gender_trans", + "body": [ + "{% svg bootstrap gender_trans %}" + ] + }, + "geo": { + "prefix": "svg.bootstrap.geo", + "description": "SVG bootstrap - geo", + "body": [ + "{% svg bootstrap geo %}" + ] + }, + "geo_alt": { + "prefix": "svg.bootstrap.geo_alt", + "description": "SVG bootstrap - geo_alt", + "body": [ + "{% svg bootstrap geo_alt %}" + ] + }, + "geo_alt_fill": { + "prefix": "svg.bootstrap.geo_alt_fill", + "description": "SVG bootstrap - geo_alt_fill", + "body": [ + "{% svg bootstrap geo_alt_fill %}" + ] + }, + "geo_fill": { + "prefix": "svg.bootstrap.geo_fill", + "description": "SVG bootstrap - geo_fill", + "body": [ + "{% svg bootstrap geo_fill %}" + ] + }, + "gift": { + "prefix": "svg.bootstrap.gift", + "description": "SVG bootstrap - gift", + "body": [ + "{% svg bootstrap gift %}" + ] + }, + "gift_fill": { + "prefix": "svg.bootstrap.gift_fill", + "description": "SVG bootstrap - gift_fill", + "body": [ + "{% svg bootstrap gift_fill %}" + ] + }, + "git": { + "prefix": "svg.bootstrap.git", + "description": "SVG bootstrap - git", + "body": [ + "{% svg bootstrap git %}" + ] + }, + "github": { + "prefix": "svg.bootstrap.github", + "description": "SVG bootstrap - github", + "body": [ + "{% svg bootstrap github %}" + ] + }, + "globe": { + "prefix": "svg.bootstrap.globe", + "description": "SVG bootstrap - globe", + "body": [ + "{% svg bootstrap globe %}" + ] + }, + "globe2": { + "prefix": "svg.bootstrap.globe2", + "description": "SVG bootstrap - globe2", + "body": [ + "{% svg bootstrap globe2 %}" + ] + }, + "globe_americas": { + "prefix": "svg.bootstrap.globe_americas", + "description": "SVG bootstrap - globe_americas", + "body": [ + "{% svg bootstrap globe_americas %}" + ] + }, + "globe_asia_australia": { + "prefix": "svg.bootstrap.globe_asia_australia", + "description": "SVG bootstrap - globe_asia_australia", + "body": [ + "{% svg bootstrap globe_asia_australia %}" + ] + }, + "globe_central_south_asia": { + "prefix": "svg.bootstrap.globe_central_south_asia", + "description": "SVG bootstrap - globe_central_south_asia", + "body": [ + "{% svg bootstrap globe_central_south_asia %}" + ] + }, + "globe_europe_africa": { + "prefix": "svg.bootstrap.globe_europe_africa", + "description": "SVG bootstrap - globe_europe_africa", + "body": [ + "{% svg bootstrap globe_europe_africa %}" + ] + }, + "google": { + "prefix": "svg.bootstrap.google", + "description": "SVG bootstrap - google", + "body": [ + "{% svg bootstrap google %}" + ] + }, + "google_play": { + "prefix": "svg.bootstrap.google_play", + "description": "SVG bootstrap - google_play", + "body": [ + "{% svg bootstrap google_play %}" + ] + }, + "gpu_card": { + "prefix": "svg.bootstrap.gpu_card", + "description": "SVG bootstrap - gpu_card", + "body": [ + "{% svg bootstrap gpu_card %}" + ] + }, + "graph_down": { + "prefix": "svg.bootstrap.graph_down", + "description": "SVG bootstrap - graph_down", + "body": [ + "{% svg bootstrap graph_down %}" + ] + }, + "graph_down_arrow": { + "prefix": "svg.bootstrap.graph_down_arrow", + "description": "SVG bootstrap - graph_down_arrow", + "body": [ + "{% svg bootstrap graph_down_arrow %}" + ] + }, + "graph_up": { + "prefix": "svg.bootstrap.graph_up", + "description": "SVG bootstrap - graph_up", + "body": [ + "{% svg bootstrap graph_up %}" + ] + }, + "graph_up_arrow": { + "prefix": "svg.bootstrap.graph_up_arrow", + "description": "SVG bootstrap - graph_up_arrow", + "body": [ + "{% svg bootstrap graph_up_arrow %}" + ] + }, + "grid": { + "prefix": "svg.bootstrap.grid", + "description": "SVG bootstrap - grid", + "body": [ + "{% svg bootstrap grid %}" + ] + }, + "grid_1x2": { + "prefix": "svg.bootstrap.grid_1x2", + "description": "SVG bootstrap - grid_1x2", + "body": [ + "{% svg bootstrap grid_1x2 %}" + ] + }, + "grid_1x2_fill": { + "prefix": "svg.bootstrap.grid_1x2_fill", + "description": "SVG bootstrap - grid_1x2_fill", + "body": [ + "{% svg bootstrap grid_1x2_fill %}" + ] + }, + "grid_3x2": { + "prefix": "svg.bootstrap.grid_3x2", + "description": "SVG bootstrap - grid_3x2", + "body": [ + "{% svg bootstrap grid_3x2 %}" + ] + }, + "grid_3x2_gap": { + "prefix": "svg.bootstrap.grid_3x2_gap", + "description": "SVG bootstrap - grid_3x2_gap", + "body": [ + "{% svg bootstrap grid_3x2_gap %}" + ] + }, + "grid_3x2_gap_fill": { + "prefix": "svg.bootstrap.grid_3x2_gap_fill", + "description": "SVG bootstrap - grid_3x2_gap_fill", + "body": [ + "{% svg bootstrap grid_3x2_gap_fill %}" + ] + }, + "grid_3x3": { + "prefix": "svg.bootstrap.grid_3x3", + "description": "SVG bootstrap - grid_3x3", + "body": [ + "{% svg bootstrap grid_3x3 %}" + ] + }, + "grid_3x3_gap": { + "prefix": "svg.bootstrap.grid_3x3_gap", + "description": "SVG bootstrap - grid_3x3_gap", + "body": [ + "{% svg bootstrap grid_3x3_gap %}" + ] + }, + "grid_3x3_gap_fill": { + "prefix": "svg.bootstrap.grid_3x3_gap_fill", + "description": "SVG bootstrap - grid_3x3_gap_fill", + "body": [ + "{% svg bootstrap grid_3x3_gap_fill %}" + ] + }, + "grid_fill": { + "prefix": "svg.bootstrap.grid_fill", + "description": "SVG bootstrap - grid_fill", + "body": [ + "{% svg bootstrap grid_fill %}" + ] + }, + "grip_horizontal": { + "prefix": "svg.bootstrap.grip_horizontal", + "description": "SVG bootstrap - grip_horizontal", + "body": [ + "{% svg bootstrap grip_horizontal %}" + ] + }, + "grip_vertical": { + "prefix": "svg.bootstrap.grip_vertical", + "description": "SVG bootstrap - grip_vertical", + "body": [ + "{% svg bootstrap grip_vertical %}" + ] + }, + "h_circle": { + "prefix": "svg.bootstrap.h_circle", + "description": "SVG bootstrap - h_circle", + "body": [ + "{% svg bootstrap h_circle %}" + ] + }, + "h_circle_fill": { + "prefix": "svg.bootstrap.h_circle_fill", + "description": "SVG bootstrap - h_circle_fill", + "body": [ + "{% svg bootstrap h_circle_fill %}" + ] + }, + "h_square": { + "prefix": "svg.bootstrap.h_square", + "description": "SVG bootstrap - h_square", + "body": [ + "{% svg bootstrap h_square %}" + ] + }, + "h_square_fill": { + "prefix": "svg.bootstrap.h_square_fill", + "description": "SVG bootstrap - h_square_fill", + "body": [ + "{% svg bootstrap h_square_fill %}" + ] + }, + "hammer": { + "prefix": "svg.bootstrap.hammer", + "description": "SVG bootstrap - hammer", + "body": [ + "{% svg bootstrap hammer %}" + ] + }, + "hand_index": { + "prefix": "svg.bootstrap.hand_index", + "description": "SVG bootstrap - hand_index", + "body": [ + "{% svg bootstrap hand_index %}" + ] + }, + "hand_index_fill": { + "prefix": "svg.bootstrap.hand_index_fill", + "description": "SVG bootstrap - hand_index_fill", + "body": [ + "{% svg bootstrap hand_index_fill %}" + ] + }, + "hand_index_thumb": { + "prefix": "svg.bootstrap.hand_index_thumb", + "description": "SVG bootstrap - hand_index_thumb", + "body": [ + "{% svg bootstrap hand_index_thumb %}" + ] + }, + "hand_index_thumb_fill": { + "prefix": "svg.bootstrap.hand_index_thumb_fill", + "description": "SVG bootstrap - hand_index_thumb_fill", + "body": [ + "{% svg bootstrap hand_index_thumb_fill %}" + ] + }, + "hand_thumbs_down": { + "prefix": "svg.bootstrap.hand_thumbs_down", + "description": "SVG bootstrap - hand_thumbs_down", + "body": [ + "{% svg bootstrap hand_thumbs_down %}" + ] + }, + "hand_thumbs_down_fill": { + "prefix": "svg.bootstrap.hand_thumbs_down_fill", + "description": "SVG bootstrap - hand_thumbs_down_fill", + "body": [ + "{% svg bootstrap hand_thumbs_down_fill %}" + ] + }, + "hand_thumbs_up": { + "prefix": "svg.bootstrap.hand_thumbs_up", + "description": "SVG bootstrap - hand_thumbs_up", + "body": [ + "{% svg bootstrap hand_thumbs_up %}" + ] + }, + "hand_thumbs_up_fill": { + "prefix": "svg.bootstrap.hand_thumbs_up_fill", + "description": "SVG bootstrap - hand_thumbs_up_fill", + "body": [ + "{% svg bootstrap hand_thumbs_up_fill %}" + ] + }, + "handbag": { + "prefix": "svg.bootstrap.handbag", + "description": "SVG bootstrap - handbag", + "body": [ + "{% svg bootstrap handbag %}" + ] + }, + "handbag_fill": { + "prefix": "svg.bootstrap.handbag_fill", + "description": "SVG bootstrap - handbag_fill", + "body": [ + "{% svg bootstrap handbag_fill %}" + ] + }, + "hash": { + "prefix": "svg.bootstrap.hash", + "description": "SVG bootstrap - hash", + "body": [ + "{% svg bootstrap hash %}" + ] + }, + "hdd": { + "prefix": "svg.bootstrap.hdd", + "description": "SVG bootstrap - hdd", + "body": [ + "{% svg bootstrap hdd %}" + ] + }, + "hdd_fill": { + "prefix": "svg.bootstrap.hdd_fill", + "description": "SVG bootstrap - hdd_fill", + "body": [ + "{% svg bootstrap hdd_fill %}" + ] + }, + "hdd_network": { + "prefix": "svg.bootstrap.hdd_network", + "description": "SVG bootstrap - hdd_network", + "body": [ + "{% svg bootstrap hdd_network %}" + ] + }, + "hdd_network_fill": { + "prefix": "svg.bootstrap.hdd_network_fill", + "description": "SVG bootstrap - hdd_network_fill", + "body": [ + "{% svg bootstrap hdd_network_fill %}" + ] + }, + "hdd_rack": { + "prefix": "svg.bootstrap.hdd_rack", + "description": "SVG bootstrap - hdd_rack", + "body": [ + "{% svg bootstrap hdd_rack %}" + ] + }, + "hdd_rack_fill": { + "prefix": "svg.bootstrap.hdd_rack_fill", + "description": "SVG bootstrap - hdd_rack_fill", + "body": [ + "{% svg bootstrap hdd_rack_fill %}" + ] + }, + "hdd_stack": { + "prefix": "svg.bootstrap.hdd_stack", + "description": "SVG bootstrap - hdd_stack", + "body": [ + "{% svg bootstrap hdd_stack %}" + ] + }, + "hdd_stack_fill": { + "prefix": "svg.bootstrap.hdd_stack_fill", + "description": "SVG bootstrap - hdd_stack_fill", + "body": [ + "{% svg bootstrap hdd_stack_fill %}" + ] + }, + "hdmi": { + "prefix": "svg.bootstrap.hdmi", + "description": "SVG bootstrap - hdmi", + "body": [ + "{% svg bootstrap hdmi %}" + ] + }, + "hdmi_fill": { + "prefix": "svg.bootstrap.hdmi_fill", + "description": "SVG bootstrap - hdmi_fill", + "body": [ + "{% svg bootstrap hdmi_fill %}" + ] + }, + "headphones": { + "prefix": "svg.bootstrap.headphones", + "description": "SVG bootstrap - headphones", + "body": [ + "{% svg bootstrap headphones %}" + ] + }, + "headset": { + "prefix": "svg.bootstrap.headset", + "description": "SVG bootstrap - headset", + "body": [ + "{% svg bootstrap headset %}" + ] + }, + "headset_vr": { + "prefix": "svg.bootstrap.headset_vr", + "description": "SVG bootstrap - headset_vr", + "body": [ + "{% svg bootstrap headset_vr %}" + ] + }, + "heart": { + "prefix": "svg.bootstrap.heart", + "description": "SVG bootstrap - heart", + "body": [ + "{% svg bootstrap heart %}" + ] + }, + "heart_arrow": { + "prefix": "svg.bootstrap.heart_arrow", + "description": "SVG bootstrap - heart_arrow", + "body": [ + "{% svg bootstrap heart_arrow %}" + ] + }, + "heart_fill": { + "prefix": "svg.bootstrap.heart_fill", + "description": "SVG bootstrap - heart_fill", + "body": [ + "{% svg bootstrap heart_fill %}" + ] + }, + "heart_half": { + "prefix": "svg.bootstrap.heart_half", + "description": "SVG bootstrap - heart_half", + "body": [ + "{% svg bootstrap heart_half %}" + ] + }, + "heart_pulse": { + "prefix": "svg.bootstrap.heart_pulse", + "description": "SVG bootstrap - heart_pulse", + "body": [ + "{% svg bootstrap heart_pulse %}" + ] + }, + "heart_pulse_fill": { + "prefix": "svg.bootstrap.heart_pulse_fill", + "description": "SVG bootstrap - heart_pulse_fill", + "body": [ + "{% svg bootstrap heart_pulse_fill %}" + ] + }, + "heartbreak": { + "prefix": "svg.bootstrap.heartbreak", + "description": "SVG bootstrap - heartbreak", + "body": [ + "{% svg bootstrap heartbreak %}" + ] + }, + "heartbreak_fill": { + "prefix": "svg.bootstrap.heartbreak_fill", + "description": "SVG bootstrap - heartbreak_fill", + "body": [ + "{% svg bootstrap heartbreak_fill %}" + ] + }, + "hearts": { + "prefix": "svg.bootstrap.hearts", + "description": "SVG bootstrap - hearts", + "body": [ + "{% svg bootstrap hearts %}" + ] + }, + "heptagon": { + "prefix": "svg.bootstrap.heptagon", + "description": "SVG bootstrap - heptagon", + "body": [ + "{% svg bootstrap heptagon %}" + ] + }, + "heptagon_fill": { + "prefix": "svg.bootstrap.heptagon_fill", + "description": "SVG bootstrap - heptagon_fill", + "body": [ + "{% svg bootstrap heptagon_fill %}" + ] + }, + "heptagon_half": { + "prefix": "svg.bootstrap.heptagon_half", + "description": "SVG bootstrap - heptagon_half", + "body": [ + "{% svg bootstrap heptagon_half %}" + ] + }, + "hexagon": { + "prefix": "svg.bootstrap.hexagon", + "description": "SVG bootstrap - hexagon", + "body": [ + "{% svg bootstrap hexagon %}" + ] + }, + "hexagon_fill": { + "prefix": "svg.bootstrap.hexagon_fill", + "description": "SVG bootstrap - hexagon_fill", + "body": [ + "{% svg bootstrap hexagon_fill %}" + ] + }, + "hexagon_half": { + "prefix": "svg.bootstrap.hexagon_half", + "description": "SVG bootstrap - hexagon_half", + "body": [ + "{% svg bootstrap hexagon_half %}" + ] + }, + "hospital": { + "prefix": "svg.bootstrap.hospital", + "description": "SVG bootstrap - hospital", + "body": [ + "{% svg bootstrap hospital %}" + ] + }, + "hospital_fill": { + "prefix": "svg.bootstrap.hospital_fill", + "description": "SVG bootstrap - hospital_fill", + "body": [ + "{% svg bootstrap hospital_fill %}" + ] + }, + "hourglass": { + "prefix": "svg.bootstrap.hourglass", + "description": "SVG bootstrap - hourglass", + "body": [ + "{% svg bootstrap hourglass %}" + ] + }, + "hourglass_bottom": { + "prefix": "svg.bootstrap.hourglass_bottom", + "description": "SVG bootstrap - hourglass_bottom", + "body": [ + "{% svg bootstrap hourglass_bottom %}" + ] + }, + "hourglass_split": { + "prefix": "svg.bootstrap.hourglass_split", + "description": "SVG bootstrap - hourglass_split", + "body": [ + "{% svg bootstrap hourglass_split %}" + ] + }, + "hourglass_top": { + "prefix": "svg.bootstrap.hourglass_top", + "description": "SVG bootstrap - hourglass_top", + "body": [ + "{% svg bootstrap hourglass_top %}" + ] + }, + "house": { + "prefix": "svg.bootstrap.house", + "description": "SVG bootstrap - house", + "body": [ + "{% svg bootstrap house %}" + ] + }, + "house_add": { + "prefix": "svg.bootstrap.house_add", + "description": "SVG bootstrap - house_add", + "body": [ + "{% svg bootstrap house_add %}" + ] + }, + "house_add_fill": { + "prefix": "svg.bootstrap.house_add_fill", + "description": "SVG bootstrap - house_add_fill", + "body": [ + "{% svg bootstrap house_add_fill %}" + ] + }, + "house_check": { + "prefix": "svg.bootstrap.house_check", + "description": "SVG bootstrap - house_check", + "body": [ + "{% svg bootstrap house_check %}" + ] + }, + "house_check_fill": { + "prefix": "svg.bootstrap.house_check_fill", + "description": "SVG bootstrap - house_check_fill", + "body": [ + "{% svg bootstrap house_check_fill %}" + ] + }, + "house_dash": { + "prefix": "svg.bootstrap.house_dash", + "description": "SVG bootstrap - house_dash", + "body": [ + "{% svg bootstrap house_dash %}" + ] + }, + "house_dash_fill": { + "prefix": "svg.bootstrap.house_dash_fill", + "description": "SVG bootstrap - house_dash_fill", + "body": [ + "{% svg bootstrap house_dash_fill %}" + ] + }, + "house_door": { + "prefix": "svg.bootstrap.house_door", + "description": "SVG bootstrap - house_door", + "body": [ + "{% svg bootstrap house_door %}" + ] + }, + "house_door_fill": { + "prefix": "svg.bootstrap.house_door_fill", + "description": "SVG bootstrap - house_door_fill", + "body": [ + "{% svg bootstrap house_door_fill %}" + ] + }, + "house_down": { + "prefix": "svg.bootstrap.house_down", + "description": "SVG bootstrap - house_down", + "body": [ + "{% svg bootstrap house_down %}" + ] + }, + "house_down_fill": { + "prefix": "svg.bootstrap.house_down_fill", + "description": "SVG bootstrap - house_down_fill", + "body": [ + "{% svg bootstrap house_down_fill %}" + ] + }, + "house_exclamation": { + "prefix": "svg.bootstrap.house_exclamation", + "description": "SVG bootstrap - house_exclamation", + "body": [ + "{% svg bootstrap house_exclamation %}" + ] + }, + "house_exclamation_fill": { + "prefix": "svg.bootstrap.house_exclamation_fill", + "description": "SVG bootstrap - house_exclamation_fill", + "body": [ + "{% svg bootstrap house_exclamation_fill %}" + ] + }, + "house_fill": { + "prefix": "svg.bootstrap.house_fill", + "description": "SVG bootstrap - house_fill", + "body": [ + "{% svg bootstrap house_fill %}" + ] + }, + "house_gear": { + "prefix": "svg.bootstrap.house_gear", + "description": "SVG bootstrap - house_gear", + "body": [ + "{% svg bootstrap house_gear %}" + ] + }, + "house_gear_fill": { + "prefix": "svg.bootstrap.house_gear_fill", + "description": "SVG bootstrap - house_gear_fill", + "body": [ + "{% svg bootstrap house_gear_fill %}" + ] + }, + "house_heart": { + "prefix": "svg.bootstrap.house_heart", + "description": "SVG bootstrap - house_heart", + "body": [ + "{% svg bootstrap house_heart %}" + ] + }, + "house_heart_fill": { + "prefix": "svg.bootstrap.house_heart_fill", + "description": "SVG bootstrap - house_heart_fill", + "body": [ + "{% svg bootstrap house_heart_fill %}" + ] + }, + "house_lock": { + "prefix": "svg.bootstrap.house_lock", + "description": "SVG bootstrap - house_lock", + "body": [ + "{% svg bootstrap house_lock %}" + ] + }, + "house_lock_fill": { + "prefix": "svg.bootstrap.house_lock_fill", + "description": "SVG bootstrap - house_lock_fill", + "body": [ + "{% svg bootstrap house_lock_fill %}" + ] + }, + "house_slash": { + "prefix": "svg.bootstrap.house_slash", + "description": "SVG bootstrap - house_slash", + "body": [ + "{% svg bootstrap house_slash %}" + ] + }, + "house_slash_fill": { + "prefix": "svg.bootstrap.house_slash_fill", + "description": "SVG bootstrap - house_slash_fill", + "body": [ + "{% svg bootstrap house_slash_fill %}" + ] + }, + "house_up": { + "prefix": "svg.bootstrap.house_up", + "description": "SVG bootstrap - house_up", + "body": [ + "{% svg bootstrap house_up %}" + ] + }, + "house_up_fill": { + "prefix": "svg.bootstrap.house_up_fill", + "description": "SVG bootstrap - house_up_fill", + "body": [ + "{% svg bootstrap house_up_fill %}" + ] + }, + "house_x": { + "prefix": "svg.bootstrap.house_x", + "description": "SVG bootstrap - house_x", + "body": [ + "{% svg bootstrap house_x %}" + ] + }, + "house_x_fill": { + "prefix": "svg.bootstrap.house_x_fill", + "description": "SVG bootstrap - house_x_fill", + "body": [ + "{% svg bootstrap house_x_fill %}" + ] + }, + "houses": { + "prefix": "svg.bootstrap.houses", + "description": "SVG bootstrap - houses", + "body": [ + "{% svg bootstrap houses %}" + ] + }, + "houses_fill": { + "prefix": "svg.bootstrap.houses_fill", + "description": "SVG bootstrap - houses_fill", + "body": [ + "{% svg bootstrap houses_fill %}" + ] + }, + "hr": { + "prefix": "svg.bootstrap.hr", + "description": "SVG bootstrap - hr", + "body": [ + "{% svg bootstrap hr %}" + ] + }, + "hurricane": { + "prefix": "svg.bootstrap.hurricane", + "description": "SVG bootstrap - hurricane", + "body": [ + "{% svg bootstrap hurricane %}" + ] + }, + "hypnotize": { + "prefix": "svg.bootstrap.hypnotize", + "description": "SVG bootstrap - hypnotize", + "body": [ + "{% svg bootstrap hypnotize %}" + ] + }, + "image": { + "prefix": "svg.bootstrap.image", + "description": "SVG bootstrap - image", + "body": [ + "{% svg bootstrap image %}" + ] + }, + "image_alt": { + "prefix": "svg.bootstrap.image_alt", + "description": "SVG bootstrap - image_alt", + "body": [ + "{% svg bootstrap image_alt %}" + ] + }, + "image_fill": { + "prefix": "svg.bootstrap.image_fill", + "description": "SVG bootstrap - image_fill", + "body": [ + "{% svg bootstrap image_fill %}" + ] + }, + "images": { + "prefix": "svg.bootstrap.images", + "description": "SVG bootstrap - images", + "body": [ + "{% svg bootstrap images %}" + ] + }, + "inbox": { + "prefix": "svg.bootstrap.inbox", + "description": "SVG bootstrap - inbox", + "body": [ + "{% svg bootstrap inbox %}" + ] + }, + "inbox_fill": { + "prefix": "svg.bootstrap.inbox_fill", + "description": "SVG bootstrap - inbox_fill", + "body": [ + "{% svg bootstrap inbox_fill %}" + ] + }, + "inboxes": { + "prefix": "svg.bootstrap.inboxes", + "description": "SVG bootstrap - inboxes", + "body": [ + "{% svg bootstrap inboxes %}" + ] + }, + "inboxes_fill": { + "prefix": "svg.bootstrap.inboxes_fill", + "description": "SVG bootstrap - inboxes_fill", + "body": [ + "{% svg bootstrap inboxes_fill %}" + ] + }, + "incognito": { + "prefix": "svg.bootstrap.incognito", + "description": "SVG bootstrap - incognito", + "body": [ + "{% svg bootstrap incognito %}" + ] + }, + "indent": { + "prefix": "svg.bootstrap.indent", + "description": "SVG bootstrap - indent", + "body": [ + "{% svg bootstrap indent %}" + ] + }, + "infinity": { + "prefix": "svg.bootstrap.infinity", + "description": "SVG bootstrap - infinity", + "body": [ + "{% svg bootstrap infinity %}" + ] + }, + "info": { + "prefix": "svg.bootstrap.info", + "description": "SVG bootstrap - info", + "body": [ + "{% svg bootstrap info %}" + ] + }, + "info_circle": { + "prefix": "svg.bootstrap.info_circle", + "description": "SVG bootstrap - info_circle", + "body": [ + "{% svg bootstrap info_circle %}" + ] + }, + "info_circle_fill": { + "prefix": "svg.bootstrap.info_circle_fill", + "description": "SVG bootstrap - info_circle_fill", + "body": [ + "{% svg bootstrap info_circle_fill %}" + ] + }, + "info_lg": { + "prefix": "svg.bootstrap.info_lg", + "description": "SVG bootstrap - info_lg", + "body": [ + "{% svg bootstrap info_lg %}" + ] + }, + "info_square": { + "prefix": "svg.bootstrap.info_square", + "description": "SVG bootstrap - info_square", + "body": [ + "{% svg bootstrap info_square %}" + ] + }, + "info_square_fill": { + "prefix": "svg.bootstrap.info_square_fill", + "description": "SVG bootstrap - info_square_fill", + "body": [ + "{% svg bootstrap info_square_fill %}" + ] + }, + "input_cursor": { + "prefix": "svg.bootstrap.input_cursor", + "description": "SVG bootstrap - input_cursor", + "body": [ + "{% svg bootstrap input_cursor %}" + ] + }, + "input_cursor_text": { + "prefix": "svg.bootstrap.input_cursor_text", + "description": "SVG bootstrap - input_cursor_text", + "body": [ + "{% svg bootstrap input_cursor_text %}" + ] + }, + "instagram": { + "prefix": "svg.bootstrap.instagram", + "description": "SVG bootstrap - instagram", + "body": [ + "{% svg bootstrap instagram %}" + ] + }, + "intersect": { + "prefix": "svg.bootstrap.intersect", + "description": "SVG bootstrap - intersect", + "body": [ + "{% svg bootstrap intersect %}" + ] + }, + "journal": { + "prefix": "svg.bootstrap.journal", + "description": "SVG bootstrap - journal", + "body": [ + "{% svg bootstrap journal %}" + ] + }, + "journal_album": { + "prefix": "svg.bootstrap.journal_album", + "description": "SVG bootstrap - journal_album", + "body": [ + "{% svg bootstrap journal_album %}" + ] + }, + "journal_arrow_down": { + "prefix": "svg.bootstrap.journal_arrow_down", + "description": "SVG bootstrap - journal_arrow_down", + "body": [ + "{% svg bootstrap journal_arrow_down %}" + ] + }, + "journal_arrow_up": { + "prefix": "svg.bootstrap.journal_arrow_up", + "description": "SVG bootstrap - journal_arrow_up", + "body": [ + "{% svg bootstrap journal_arrow_up %}" + ] + }, + "journal_bookmark": { + "prefix": "svg.bootstrap.journal_bookmark", + "description": "SVG bootstrap - journal_bookmark", + "body": [ + "{% svg bootstrap journal_bookmark %}" + ] + }, + "journal_bookmark_fill": { + "prefix": "svg.bootstrap.journal_bookmark_fill", + "description": "SVG bootstrap - journal_bookmark_fill", + "body": [ + "{% svg bootstrap journal_bookmark_fill %}" + ] + }, + "journal_check": { + "prefix": "svg.bootstrap.journal_check", + "description": "SVG bootstrap - journal_check", + "body": [ + "{% svg bootstrap journal_check %}" + ] + }, + "journal_code": { + "prefix": "svg.bootstrap.journal_code", + "description": "SVG bootstrap - journal_code", + "body": [ + "{% svg bootstrap journal_code %}" + ] + }, + "journal_medical": { + "prefix": "svg.bootstrap.journal_medical", + "description": "SVG bootstrap - journal_medical", + "body": [ + "{% svg bootstrap journal_medical %}" + ] + }, + "journal_minus": { + "prefix": "svg.bootstrap.journal_minus", + "description": "SVG bootstrap - journal_minus", + "body": [ + "{% svg bootstrap journal_minus %}" + ] + }, + "journal_plus": { + "prefix": "svg.bootstrap.journal_plus", + "description": "SVG bootstrap - journal_plus", + "body": [ + "{% svg bootstrap journal_plus %}" + ] + }, + "journal_richtext": { + "prefix": "svg.bootstrap.journal_richtext", + "description": "SVG bootstrap - journal_richtext", + "body": [ + "{% svg bootstrap journal_richtext %}" + ] + }, + "journal_text": { + "prefix": "svg.bootstrap.journal_text", + "description": "SVG bootstrap - journal_text", + "body": [ + "{% svg bootstrap journal_text %}" + ] + }, + "journal_x": { + "prefix": "svg.bootstrap.journal_x", + "description": "SVG bootstrap - journal_x", + "body": [ + "{% svg bootstrap journal_x %}" + ] + }, + "journals": { + "prefix": "svg.bootstrap.journals", + "description": "SVG bootstrap - journals", + "body": [ + "{% svg bootstrap journals %}" + ] + }, + "joystick": { + "prefix": "svg.bootstrap.joystick", + "description": "SVG bootstrap - joystick", + "body": [ + "{% svg bootstrap joystick %}" + ] + }, + "justify": { + "prefix": "svg.bootstrap.justify", + "description": "SVG bootstrap - justify", + "body": [ + "{% svg bootstrap justify %}" + ] + }, + "justify_left": { + "prefix": "svg.bootstrap.justify_left", + "description": "SVG bootstrap - justify_left", + "body": [ + "{% svg bootstrap justify_left %}" + ] + }, + "justify_right": { + "prefix": "svg.bootstrap.justify_right", + "description": "SVG bootstrap - justify_right", + "body": [ + "{% svg bootstrap justify_right %}" + ] + }, + "kanban": { + "prefix": "svg.bootstrap.kanban", + "description": "SVG bootstrap - kanban", + "body": [ + "{% svg bootstrap kanban %}" + ] + }, + "kanban_fill": { + "prefix": "svg.bootstrap.kanban_fill", + "description": "SVG bootstrap - kanban_fill", + "body": [ + "{% svg bootstrap kanban_fill %}" + ] + }, + "key": { + "prefix": "svg.bootstrap.key", + "description": "SVG bootstrap - key", + "body": [ + "{% svg bootstrap key %}" + ] + }, + "key_fill": { + "prefix": "svg.bootstrap.key_fill", + "description": "SVG bootstrap - key_fill", + "body": [ + "{% svg bootstrap key_fill %}" + ] + }, + "keyboard": { + "prefix": "svg.bootstrap.keyboard", + "description": "SVG bootstrap - keyboard", + "body": [ + "{% svg bootstrap keyboard %}" + ] + }, + "keyboard_fill": { + "prefix": "svg.bootstrap.keyboard_fill", + "description": "SVG bootstrap - keyboard_fill", + "body": [ + "{% svg bootstrap keyboard_fill %}" + ] + }, + "ladder": { + "prefix": "svg.bootstrap.ladder", + "description": "SVG bootstrap - ladder", + "body": [ + "{% svg bootstrap ladder %}" + ] + }, + "lamp": { + "prefix": "svg.bootstrap.lamp", + "description": "SVG bootstrap - lamp", + "body": [ + "{% svg bootstrap lamp %}" + ] + }, + "lamp_fill": { + "prefix": "svg.bootstrap.lamp_fill", + "description": "SVG bootstrap - lamp_fill", + "body": [ + "{% svg bootstrap lamp_fill %}" + ] + }, + "laptop": { + "prefix": "svg.bootstrap.laptop", + "description": "SVG bootstrap - laptop", + "body": [ + "{% svg bootstrap laptop %}" + ] + }, + "laptop_fill": { + "prefix": "svg.bootstrap.laptop_fill", + "description": "SVG bootstrap - laptop_fill", + "body": [ + "{% svg bootstrap laptop_fill %}" + ] + }, + "layer_backward": { + "prefix": "svg.bootstrap.layer_backward", + "description": "SVG bootstrap - layer_backward", + "body": [ + "{% svg bootstrap layer_backward %}" + ] + }, + "layer_forward": { + "prefix": "svg.bootstrap.layer_forward", + "description": "SVG bootstrap - layer_forward", + "body": [ + "{% svg bootstrap layer_forward %}" + ] + }, + "layers": { + "prefix": "svg.bootstrap.layers", + "description": "SVG bootstrap - layers", + "body": [ + "{% svg bootstrap layers %}" + ] + }, + "layers_fill": { + "prefix": "svg.bootstrap.layers_fill", + "description": "SVG bootstrap - layers_fill", + "body": [ + "{% svg bootstrap layers_fill %}" + ] + }, + "layers_half": { + "prefix": "svg.bootstrap.layers_half", + "description": "SVG bootstrap - layers_half", + "body": [ + "{% svg bootstrap layers_half %}" + ] + }, + "layout_sidebar": { + "prefix": "svg.bootstrap.layout_sidebar", + "description": "SVG bootstrap - layout_sidebar", + "body": [ + "{% svg bootstrap layout_sidebar %}" + ] + }, + "layout_sidebar_inset": { + "prefix": "svg.bootstrap.layout_sidebar_inset", + "description": "SVG bootstrap - layout_sidebar_inset", + "body": [ + "{% svg bootstrap layout_sidebar_inset %}" + ] + }, + "layout_sidebar_inset_reverse": { + "prefix": "svg.bootstrap.layout_sidebar_inset_reverse", + "description": "SVG bootstrap - layout_sidebar_inset_reverse", + "body": [ + "{% svg bootstrap layout_sidebar_inset_reverse %}" + ] + }, + "layout_sidebar_reverse": { + "prefix": "svg.bootstrap.layout_sidebar_reverse", + "description": "SVG bootstrap - layout_sidebar_reverse", + "body": [ + "{% svg bootstrap layout_sidebar_reverse %}" + ] + }, + "layout_split": { + "prefix": "svg.bootstrap.layout_split", + "description": "SVG bootstrap - layout_split", + "body": [ + "{% svg bootstrap layout_split %}" + ] + }, + "layout_text_sidebar": { + "prefix": "svg.bootstrap.layout_text_sidebar", + "description": "SVG bootstrap - layout_text_sidebar", + "body": [ + "{% svg bootstrap layout_text_sidebar %}" + ] + }, + "layout_text_sidebar_reverse": { + "prefix": "svg.bootstrap.layout_text_sidebar_reverse", + "description": "SVG bootstrap - layout_text_sidebar_reverse", + "body": [ + "{% svg bootstrap layout_text_sidebar_reverse %}" + ] + }, + "layout_text_window": { + "prefix": "svg.bootstrap.layout_text_window", + "description": "SVG bootstrap - layout_text_window", + "body": [ + "{% svg bootstrap layout_text_window %}" + ] + }, + "layout_text_window_reverse": { + "prefix": "svg.bootstrap.layout_text_window_reverse", + "description": "SVG bootstrap - layout_text_window_reverse", + "body": [ + "{% svg bootstrap layout_text_window_reverse %}" + ] + }, + "layout_three_columns": { + "prefix": "svg.bootstrap.layout_three_columns", + "description": "SVG bootstrap - layout_three_columns", + "body": [ + "{% svg bootstrap layout_three_columns %}" + ] + }, + "layout_wtf": { + "prefix": "svg.bootstrap.layout_wtf", + "description": "SVG bootstrap - layout_wtf", + "body": [ + "{% svg bootstrap layout_wtf %}" + ] + }, + "life_preserver": { + "prefix": "svg.bootstrap.life_preserver", + "description": "SVG bootstrap - life_preserver", + "body": [ + "{% svg bootstrap life_preserver %}" + ] + }, + "lightbulb": { + "prefix": "svg.bootstrap.lightbulb", + "description": "SVG bootstrap - lightbulb", + "body": [ + "{% svg bootstrap lightbulb %}" + ] + }, + "lightbulb_fill": { + "prefix": "svg.bootstrap.lightbulb_fill", + "description": "SVG bootstrap - lightbulb_fill", + "body": [ + "{% svg bootstrap lightbulb_fill %}" + ] + }, + "lightbulb_off": { + "prefix": "svg.bootstrap.lightbulb_off", + "description": "SVG bootstrap - lightbulb_off", + "body": [ + "{% svg bootstrap lightbulb_off %}" + ] + }, + "lightbulb_off_fill": { + "prefix": "svg.bootstrap.lightbulb_off_fill", + "description": "SVG bootstrap - lightbulb_off_fill", + "body": [ + "{% svg bootstrap lightbulb_off_fill %}" + ] + }, + "lightning": { + "prefix": "svg.bootstrap.lightning", + "description": "SVG bootstrap - lightning", + "body": [ + "{% svg bootstrap lightning %}" + ] + }, + "lightning_charge": { + "prefix": "svg.bootstrap.lightning_charge", + "description": "SVG bootstrap - lightning_charge", + "body": [ + "{% svg bootstrap lightning_charge %}" + ] + }, + "lightning_charge_fill": { + "prefix": "svg.bootstrap.lightning_charge_fill", + "description": "SVG bootstrap - lightning_charge_fill", + "body": [ + "{% svg bootstrap lightning_charge_fill %}" + ] + }, + "lightning_fill": { + "prefix": "svg.bootstrap.lightning_fill", + "description": "SVG bootstrap - lightning_fill", + "body": [ + "{% svg bootstrap lightning_fill %}" + ] + }, + "line": { + "prefix": "svg.bootstrap.line", + "description": "SVG bootstrap - line", + "body": [ + "{% svg bootstrap line %}" + ] + }, + "link": { + "prefix": "svg.bootstrap.link", + "description": "SVG bootstrap - link", + "body": [ + "{% svg bootstrap link %}" + ] + }, + "link_45deg": { + "prefix": "svg.bootstrap.link_45deg", + "description": "SVG bootstrap - link_45deg", + "body": [ + "{% svg bootstrap link_45deg %}" + ] + }, + "linkedin": { + "prefix": "svg.bootstrap.linkedin", + "description": "SVG bootstrap - linkedin", + "body": [ + "{% svg bootstrap linkedin %}" + ] + }, + "list": { + "prefix": "svg.bootstrap.list", + "description": "SVG bootstrap - list", + "body": [ + "{% svg bootstrap list %}" + ] + }, + "list_check": { + "prefix": "svg.bootstrap.list_check", + "description": "SVG bootstrap - list_check", + "body": [ + "{% svg bootstrap list_check %}" + ] + }, + "list_columns": { + "prefix": "svg.bootstrap.list_columns", + "description": "SVG bootstrap - list_columns", + "body": [ + "{% svg bootstrap list_columns %}" + ] + }, + "list_columns_reverse": { + "prefix": "svg.bootstrap.list_columns_reverse", + "description": "SVG bootstrap - list_columns_reverse", + "body": [ + "{% svg bootstrap list_columns_reverse %}" + ] + }, + "list_nested": { + "prefix": "svg.bootstrap.list_nested", + "description": "SVG bootstrap - list_nested", + "body": [ + "{% svg bootstrap list_nested %}" + ] + }, + "list_ol": { + "prefix": "svg.bootstrap.list_ol", + "description": "SVG bootstrap - list_ol", + "body": [ + "{% svg bootstrap list_ol %}" + ] + }, + "list_stars": { + "prefix": "svg.bootstrap.list_stars", + "description": "SVG bootstrap - list_stars", + "body": [ + "{% svg bootstrap list_stars %}" + ] + }, + "list_task": { + "prefix": "svg.bootstrap.list_task", + "description": "SVG bootstrap - list_task", + "body": [ + "{% svg bootstrap list_task %}" + ] + }, + "list_ul": { + "prefix": "svg.bootstrap.list_ul", + "description": "SVG bootstrap - list_ul", + "body": [ + "{% svg bootstrap list_ul %}" + ] + }, + "lock": { + "prefix": "svg.bootstrap.lock", + "description": "SVG bootstrap - lock", + "body": [ + "{% svg bootstrap lock %}" + ] + }, + "lock_fill": { + "prefix": "svg.bootstrap.lock_fill", + "description": "SVG bootstrap - lock_fill", + "body": [ + "{% svg bootstrap lock_fill %}" + ] + }, + "lungs": { + "prefix": "svg.bootstrap.lungs", + "description": "SVG bootstrap - lungs", + "body": [ + "{% svg bootstrap lungs %}" + ] + }, + "lungs_fill": { + "prefix": "svg.bootstrap.lungs_fill", + "description": "SVG bootstrap - lungs_fill", + "body": [ + "{% svg bootstrap lungs_fill %}" + ] + }, + "magic": { + "prefix": "svg.bootstrap.magic", + "description": "SVG bootstrap - magic", + "body": [ + "{% svg bootstrap magic %}" + ] + }, + "magnet": { + "prefix": "svg.bootstrap.magnet", + "description": "SVG bootstrap - magnet", + "body": [ + "{% svg bootstrap magnet %}" + ] + }, + "magnet_fill": { + "prefix": "svg.bootstrap.magnet_fill", + "description": "SVG bootstrap - magnet_fill", + "body": [ + "{% svg bootstrap magnet_fill %}" + ] + }, + "mailbox": { + "prefix": "svg.bootstrap.mailbox", + "description": "SVG bootstrap - mailbox", + "body": [ + "{% svg bootstrap mailbox %}" + ] + }, + "mailbox2": { + "prefix": "svg.bootstrap.mailbox2", + "description": "SVG bootstrap - mailbox2", + "body": [ + "{% svg bootstrap mailbox2 %}" + ] + }, + "map": { + "prefix": "svg.bootstrap.map", + "description": "SVG bootstrap - map", + "body": [ + "{% svg bootstrap map %}" + ] + }, + "map_fill": { + "prefix": "svg.bootstrap.map_fill", + "description": "SVG bootstrap - map_fill", + "body": [ + "{% svg bootstrap map_fill %}" + ] + }, + "markdown": { + "prefix": "svg.bootstrap.markdown", + "description": "SVG bootstrap - markdown", + "body": [ + "{% svg bootstrap markdown %}" + ] + }, + "markdown_fill": { + "prefix": "svg.bootstrap.markdown_fill", + "description": "SVG bootstrap - markdown_fill", + "body": [ + "{% svg bootstrap markdown_fill %}" + ] + }, + "mask": { + "prefix": "svg.bootstrap.mask", + "description": "SVG bootstrap - mask", + "body": [ + "{% svg bootstrap mask %}" + ] + }, + "mastodon": { + "prefix": "svg.bootstrap.mastodon", + "description": "SVG bootstrap - mastodon", + "body": [ + "{% svg bootstrap mastodon %}" + ] + }, + "medium": { + "prefix": "svg.bootstrap.medium", + "description": "SVG bootstrap - medium", + "body": [ + "{% svg bootstrap medium %}" + ] + }, + "megaphone": { + "prefix": "svg.bootstrap.megaphone", + "description": "SVG bootstrap - megaphone", + "body": [ + "{% svg bootstrap megaphone %}" + ] + }, + "megaphone_fill": { + "prefix": "svg.bootstrap.megaphone_fill", + "description": "SVG bootstrap - megaphone_fill", + "body": [ + "{% svg bootstrap megaphone_fill %}" + ] + }, + "memory": { + "prefix": "svg.bootstrap.memory", + "description": "SVG bootstrap - memory", + "body": [ + "{% svg bootstrap memory %}" + ] + }, + "menu_app": { + "prefix": "svg.bootstrap.menu_app", + "description": "SVG bootstrap - menu_app", + "body": [ + "{% svg bootstrap menu_app %}" + ] + }, + "menu_app_fill": { + "prefix": "svg.bootstrap.menu_app_fill", + "description": "SVG bootstrap - menu_app_fill", + "body": [ + "{% svg bootstrap menu_app_fill %}" + ] + }, + "menu_button": { + "prefix": "svg.bootstrap.menu_button", + "description": "SVG bootstrap - menu_button", + "body": [ + "{% svg bootstrap menu_button %}" + ] + }, + "menu_button_fill": { + "prefix": "svg.bootstrap.menu_button_fill", + "description": "SVG bootstrap - menu_button_fill", + "body": [ + "{% svg bootstrap menu_button_fill %}" + ] + }, + "menu_button_wide": { + "prefix": "svg.bootstrap.menu_button_wide", + "description": "SVG bootstrap - menu_button_wide", + "body": [ + "{% svg bootstrap menu_button_wide %}" + ] + }, + "menu_button_wide_fill": { + "prefix": "svg.bootstrap.menu_button_wide_fill", + "description": "SVG bootstrap - menu_button_wide_fill", + "body": [ + "{% svg bootstrap menu_button_wide_fill %}" + ] + }, + "menu_down": { + "prefix": "svg.bootstrap.menu_down", + "description": "SVG bootstrap - menu_down", + "body": [ + "{% svg bootstrap menu_down %}" + ] + }, + "menu_up": { + "prefix": "svg.bootstrap.menu_up", + "description": "SVG bootstrap - menu_up", + "body": [ + "{% svg bootstrap menu_up %}" + ] + }, + "messenger": { + "prefix": "svg.bootstrap.messenger", + "description": "SVG bootstrap - messenger", + "body": [ + "{% svg bootstrap messenger %}" + ] + }, + "meta": { + "prefix": "svg.bootstrap.meta", + "description": "SVG bootstrap - meta", + "body": [ + "{% svg bootstrap meta %}" + ] + }, + "mic": { + "prefix": "svg.bootstrap.mic", + "description": "SVG bootstrap - mic", + "body": [ + "{% svg bootstrap mic %}" + ] + }, + "mic_fill": { + "prefix": "svg.bootstrap.mic_fill", + "description": "SVG bootstrap - mic_fill", + "body": [ + "{% svg bootstrap mic_fill %}" + ] + }, + "mic_mute": { + "prefix": "svg.bootstrap.mic_mute", + "description": "SVG bootstrap - mic_mute", + "body": [ + "{% svg bootstrap mic_mute %}" + ] + }, + "mic_mute_fill": { + "prefix": "svg.bootstrap.mic_mute_fill", + "description": "SVG bootstrap - mic_mute_fill", + "body": [ + "{% svg bootstrap mic_mute_fill %}" + ] + }, + "microsoft": { + "prefix": "svg.bootstrap.microsoft", + "description": "SVG bootstrap - microsoft", + "body": [ + "{% svg bootstrap microsoft %}" + ] + }, + "microsoft_teams": { + "prefix": "svg.bootstrap.microsoft_teams", + "description": "SVG bootstrap - microsoft_teams", + "body": [ + "{% svg bootstrap microsoft_teams %}" + ] + }, + "minecart": { + "prefix": "svg.bootstrap.minecart", + "description": "SVG bootstrap - minecart", + "body": [ + "{% svg bootstrap minecart %}" + ] + }, + "minecart_loaded": { + "prefix": "svg.bootstrap.minecart_loaded", + "description": "SVG bootstrap - minecart_loaded", + "body": [ + "{% svg bootstrap minecart_loaded %}" + ] + }, + "modem": { + "prefix": "svg.bootstrap.modem", + "description": "SVG bootstrap - modem", + "body": [ + "{% svg bootstrap modem %}" + ] + }, + "modem_fill": { + "prefix": "svg.bootstrap.modem_fill", + "description": "SVG bootstrap - modem_fill", + "body": [ + "{% svg bootstrap modem_fill %}" + ] + }, + "moisture": { + "prefix": "svg.bootstrap.moisture", + "description": "SVG bootstrap - moisture", + "body": [ + "{% svg bootstrap moisture %}" + ] + }, + "moon": { + "prefix": "svg.bootstrap.moon", + "description": "SVG bootstrap - moon", + "body": [ + "{% svg bootstrap moon %}" + ] + }, + "moon_fill": { + "prefix": "svg.bootstrap.moon_fill", + "description": "SVG bootstrap - moon_fill", + "body": [ + "{% svg bootstrap moon_fill %}" + ] + }, + "moon_stars": { + "prefix": "svg.bootstrap.moon_stars", + "description": "SVG bootstrap - moon_stars", + "body": [ + "{% svg bootstrap moon_stars %}" + ] + }, + "moon_stars_fill": { + "prefix": "svg.bootstrap.moon_stars_fill", + "description": "SVG bootstrap - moon_stars_fill", + "body": [ + "{% svg bootstrap moon_stars_fill %}" + ] + }, + "mortarboard": { + "prefix": "svg.bootstrap.mortarboard", + "description": "SVG bootstrap - mortarboard", + "body": [ + "{% svg bootstrap mortarboard %}" + ] + }, + "mortarboard_fill": { + "prefix": "svg.bootstrap.mortarboard_fill", + "description": "SVG bootstrap - mortarboard_fill", + "body": [ + "{% svg bootstrap mortarboard_fill %}" + ] + }, + "motherboard": { + "prefix": "svg.bootstrap.motherboard", + "description": "SVG bootstrap - motherboard", + "body": [ + "{% svg bootstrap motherboard %}" + ] + }, + "motherboard_fill": { + "prefix": "svg.bootstrap.motherboard_fill", + "description": "SVG bootstrap - motherboard_fill", + "body": [ + "{% svg bootstrap motherboard_fill %}" + ] + }, + "mouse": { + "prefix": "svg.bootstrap.mouse", + "description": "SVG bootstrap - mouse", + "body": [ + "{% svg bootstrap mouse %}" + ] + }, + "mouse2": { + "prefix": "svg.bootstrap.mouse2", + "description": "SVG bootstrap - mouse2", + "body": [ + "{% svg bootstrap mouse2 %}" + ] + }, + "mouse2_fill": { + "prefix": "svg.bootstrap.mouse2_fill", + "description": "SVG bootstrap - mouse2_fill", + "body": [ + "{% svg bootstrap mouse2_fill %}" + ] + }, + "mouse3": { + "prefix": "svg.bootstrap.mouse3", + "description": "SVG bootstrap - mouse3", + "body": [ + "{% svg bootstrap mouse3 %}" + ] + }, + "mouse3_fill": { + "prefix": "svg.bootstrap.mouse3_fill", + "description": "SVG bootstrap - mouse3_fill", + "body": [ + "{% svg bootstrap mouse3_fill %}" + ] + }, + "mouse_fill": { + "prefix": "svg.bootstrap.mouse_fill", + "description": "SVG bootstrap - mouse_fill", + "body": [ + "{% svg bootstrap mouse_fill %}" + ] + }, + "music_note": { + "prefix": "svg.bootstrap.music_note", + "description": "SVG bootstrap - music_note", + "body": [ + "{% svg bootstrap music_note %}" + ] + }, + "music_note_beamed": { + "prefix": "svg.bootstrap.music_note_beamed", + "description": "SVG bootstrap - music_note_beamed", + "body": [ + "{% svg bootstrap music_note_beamed %}" + ] + }, + "music_note_list": { + "prefix": "svg.bootstrap.music_note_list", + "description": "SVG bootstrap - music_note_list", + "body": [ + "{% svg bootstrap music_note_list %}" + ] + }, + "music_player": { + "prefix": "svg.bootstrap.music_player", + "description": "SVG bootstrap - music_player", + "body": [ + "{% svg bootstrap music_player %}" + ] + }, + "music_player_fill": { + "prefix": "svg.bootstrap.music_player_fill", + "description": "SVG bootstrap - music_player_fill", + "body": [ + "{% svg bootstrap music_player_fill %}" + ] + }, + "newspaper": { + "prefix": "svg.bootstrap.newspaper", + "description": "SVG bootstrap - newspaper", + "body": [ + "{% svg bootstrap newspaper %}" + ] + }, + "nintendo_switch": { + "prefix": "svg.bootstrap.nintendo_switch", + "description": "SVG bootstrap - nintendo_switch", + "body": [ + "{% svg bootstrap nintendo_switch %}" + ] + }, + "node_minus": { + "prefix": "svg.bootstrap.node_minus", + "description": "SVG bootstrap - node_minus", + "body": [ + "{% svg bootstrap node_minus %}" + ] + }, + "node_minus_fill": { + "prefix": "svg.bootstrap.node_minus_fill", + "description": "SVG bootstrap - node_minus_fill", + "body": [ + "{% svg bootstrap node_minus_fill %}" + ] + }, + "node_plus": { + "prefix": "svg.bootstrap.node_plus", + "description": "SVG bootstrap - node_plus", + "body": [ + "{% svg bootstrap node_plus %}" + ] + }, + "node_plus_fill": { + "prefix": "svg.bootstrap.node_plus_fill", + "description": "SVG bootstrap - node_plus_fill", + "body": [ + "{% svg bootstrap node_plus_fill %}" + ] + }, + "nut": { + "prefix": "svg.bootstrap.nut", + "description": "SVG bootstrap - nut", + "body": [ + "{% svg bootstrap nut %}" + ] + }, + "nut_fill": { + "prefix": "svg.bootstrap.nut_fill", + "description": "SVG bootstrap - nut_fill", + "body": [ + "{% svg bootstrap nut_fill %}" + ] + }, + "nvidia": { + "prefix": "svg.bootstrap.nvidia", + "description": "SVG bootstrap - nvidia", + "body": [ + "{% svg bootstrap nvidia %}" + ] + }, + "octagon": { + "prefix": "svg.bootstrap.octagon", + "description": "SVG bootstrap - octagon", + "body": [ + "{% svg bootstrap octagon %}" + ] + }, + "octagon_fill": { + "prefix": "svg.bootstrap.octagon_fill", + "description": "SVG bootstrap - octagon_fill", + "body": [ + "{% svg bootstrap octagon_fill %}" + ] + }, + "octagon_half": { + "prefix": "svg.bootstrap.octagon_half", + "description": "SVG bootstrap - octagon_half", + "body": [ + "{% svg bootstrap octagon_half %}" + ] + }, + "optical_audio": { + "prefix": "svg.bootstrap.optical_audio", + "description": "SVG bootstrap - optical_audio", + "body": [ + "{% svg bootstrap optical_audio %}" + ] + }, + "optical_audio_fill": { + "prefix": "svg.bootstrap.optical_audio_fill", + "description": "SVG bootstrap - optical_audio_fill", + "body": [ + "{% svg bootstrap optical_audio_fill %}" + ] + }, + "option": { + "prefix": "svg.bootstrap.option", + "description": "SVG bootstrap - option", + "body": [ + "{% svg bootstrap option %}" + ] + }, + "outlet": { + "prefix": "svg.bootstrap.outlet", + "description": "SVG bootstrap - outlet", + "body": [ + "{% svg bootstrap outlet %}" + ] + }, + "p_circle": { + "prefix": "svg.bootstrap.p_circle", + "description": "SVG bootstrap - p_circle", + "body": [ + "{% svg bootstrap p_circle %}" + ] + }, + "p_circle_fill": { + "prefix": "svg.bootstrap.p_circle_fill", + "description": "SVG bootstrap - p_circle_fill", + "body": [ + "{% svg bootstrap p_circle_fill %}" + ] + }, + "p_square": { + "prefix": "svg.bootstrap.p_square", + "description": "SVG bootstrap - p_square", + "body": [ + "{% svg bootstrap p_square %}" + ] + }, + "p_square_fill": { + "prefix": "svg.bootstrap.p_square_fill", + "description": "SVG bootstrap - p_square_fill", + "body": [ + "{% svg bootstrap p_square_fill %}" + ] + }, + "paint_bucket": { + "prefix": "svg.bootstrap.paint_bucket", + "description": "SVG bootstrap - paint_bucket", + "body": [ + "{% svg bootstrap paint_bucket %}" + ] + }, + "palette": { + "prefix": "svg.bootstrap.palette", + "description": "SVG bootstrap - palette", + "body": [ + "{% svg bootstrap palette %}" + ] + }, + "palette2": { + "prefix": "svg.bootstrap.palette2", + "description": "SVG bootstrap - palette2", + "body": [ + "{% svg bootstrap palette2 %}" + ] + }, + "palette_fill": { + "prefix": "svg.bootstrap.palette_fill", + "description": "SVG bootstrap - palette_fill", + "body": [ + "{% svg bootstrap palette_fill %}" + ] + }, + "paperclip": { + "prefix": "svg.bootstrap.paperclip", + "description": "SVG bootstrap - paperclip", + "body": [ + "{% svg bootstrap paperclip %}" + ] + }, + "paragraph": { + "prefix": "svg.bootstrap.paragraph", + "description": "SVG bootstrap - paragraph", + "body": [ + "{% svg bootstrap paragraph %}" + ] + }, + "pass_fill": { + "prefix": "svg.bootstrap.pass_fill", + "description": "SVG bootstrap - pass_fill", + "body": [ + "{% svg bootstrap pass_fill %}" + ] + }, + "patch_check": { + "prefix": "svg.bootstrap.patch_check", + "description": "SVG bootstrap - patch_check", + "body": [ + "{% svg bootstrap patch_check %}" + ] + }, + "patch_check_fill": { + "prefix": "svg.bootstrap.patch_check_fill", + "description": "SVG bootstrap - patch_check_fill", + "body": [ + "{% svg bootstrap patch_check_fill %}" + ] + }, + "patch_exclamation": { + "prefix": "svg.bootstrap.patch_exclamation", + "description": "SVG bootstrap - patch_exclamation", + "body": [ + "{% svg bootstrap patch_exclamation %}" + ] + }, + "patch_exclamation_fill": { + "prefix": "svg.bootstrap.patch_exclamation_fill", + "description": "SVG bootstrap - patch_exclamation_fill", + "body": [ + "{% svg bootstrap patch_exclamation_fill %}" + ] + }, + "patch_minus": { + "prefix": "svg.bootstrap.patch_minus", + "description": "SVG bootstrap - patch_minus", + "body": [ + "{% svg bootstrap patch_minus %}" + ] + }, + "patch_minus_fill": { + "prefix": "svg.bootstrap.patch_minus_fill", + "description": "SVG bootstrap - patch_minus_fill", + "body": [ + "{% svg bootstrap patch_minus_fill %}" + ] + }, + "patch_plus": { + "prefix": "svg.bootstrap.patch_plus", + "description": "SVG bootstrap - patch_plus", + "body": [ + "{% svg bootstrap patch_plus %}" + ] + }, + "patch_plus_fill": { + "prefix": "svg.bootstrap.patch_plus_fill", + "description": "SVG bootstrap - patch_plus_fill", + "body": [ + "{% svg bootstrap patch_plus_fill %}" + ] + }, + "patch_question": { + "prefix": "svg.bootstrap.patch_question", + "description": "SVG bootstrap - patch_question", + "body": [ + "{% svg bootstrap patch_question %}" + ] + }, + "patch_question_fill": { + "prefix": "svg.bootstrap.patch_question_fill", + "description": "SVG bootstrap - patch_question_fill", + "body": [ + "{% svg bootstrap patch_question_fill %}" + ] + }, + "pause": { + "prefix": "svg.bootstrap.pause", + "description": "SVG bootstrap - pause", + "body": [ + "{% svg bootstrap pause %}" + ] + }, + "pause_btn": { + "prefix": "svg.bootstrap.pause_btn", + "description": "SVG bootstrap - pause_btn", + "body": [ + "{% svg bootstrap pause_btn %}" + ] + }, + "pause_btn_fill": { + "prefix": "svg.bootstrap.pause_btn_fill", + "description": "SVG bootstrap - pause_btn_fill", + "body": [ + "{% svg bootstrap pause_btn_fill %}" + ] + }, + "pause_circle": { + "prefix": "svg.bootstrap.pause_circle", + "description": "SVG bootstrap - pause_circle", + "body": [ + "{% svg bootstrap pause_circle %}" + ] + }, + "pause_circle_fill": { + "prefix": "svg.bootstrap.pause_circle_fill", + "description": "SVG bootstrap - pause_circle_fill", + "body": [ + "{% svg bootstrap pause_circle_fill %}" + ] + }, + "pause_fill": { + "prefix": "svg.bootstrap.pause_fill", + "description": "SVG bootstrap - pause_fill", + "body": [ + "{% svg bootstrap pause_fill %}" + ] + }, + "paypal": { + "prefix": "svg.bootstrap.paypal", + "description": "SVG bootstrap - paypal", + "body": [ + "{% svg bootstrap paypal %}" + ] + }, + "pc": { + "prefix": "svg.bootstrap.pc", + "description": "SVG bootstrap - pc", + "body": [ + "{% svg bootstrap pc %}" + ] + }, + "pc_display": { + "prefix": "svg.bootstrap.pc_display", + "description": "SVG bootstrap - pc_display", + "body": [ + "{% svg bootstrap pc_display %}" + ] + }, + "pc_display_horizontal": { + "prefix": "svg.bootstrap.pc_display_horizontal", + "description": "SVG bootstrap - pc_display_horizontal", + "body": [ + "{% svg bootstrap pc_display_horizontal %}" + ] + }, + "pc_horizontal": { + "prefix": "svg.bootstrap.pc_horizontal", + "description": "SVG bootstrap - pc_horizontal", + "body": [ + "{% svg bootstrap pc_horizontal %}" + ] + }, + "pci_card": { + "prefix": "svg.bootstrap.pci_card", + "description": "SVG bootstrap - pci_card", + "body": [ + "{% svg bootstrap pci_card %}" + ] + }, + "peace": { + "prefix": "svg.bootstrap.peace", + "description": "SVG bootstrap - peace", + "body": [ + "{% svg bootstrap peace %}" + ] + }, + "peace_fill": { + "prefix": "svg.bootstrap.peace_fill", + "description": "SVG bootstrap - peace_fill", + "body": [ + "{% svg bootstrap peace_fill %}" + ] + }, + "pen": { + "prefix": "svg.bootstrap.pen", + "description": "SVG bootstrap - pen", + "body": [ + "{% svg bootstrap pen %}" + ] + }, + "pen_fill": { + "prefix": "svg.bootstrap.pen_fill", + "description": "SVG bootstrap - pen_fill", + "body": [ + "{% svg bootstrap pen_fill %}" + ] + }, + "pencil": { + "prefix": "svg.bootstrap.pencil", + "description": "SVG bootstrap - pencil", + "body": [ + "{% svg bootstrap pencil %}" + ] + }, + "pencil_fill": { + "prefix": "svg.bootstrap.pencil_fill", + "description": "SVG bootstrap - pencil_fill", + "body": [ + "{% svg bootstrap pencil_fill %}" + ] + }, + "pencil_square": { + "prefix": "svg.bootstrap.pencil_square", + "description": "SVG bootstrap - pencil_square", + "body": [ + "{% svg bootstrap pencil_square %}" + ] + }, + "pentagon": { + "prefix": "svg.bootstrap.pentagon", + "description": "SVG bootstrap - pentagon", + "body": [ + "{% svg bootstrap pentagon %}" + ] + }, + "pentagon_fill": { + "prefix": "svg.bootstrap.pentagon_fill", + "description": "SVG bootstrap - pentagon_fill", + "body": [ + "{% svg bootstrap pentagon_fill %}" + ] + }, + "pentagon_half": { + "prefix": "svg.bootstrap.pentagon_half", + "description": "SVG bootstrap - pentagon_half", + "body": [ + "{% svg bootstrap pentagon_half %}" + ] + }, + "people": { + "prefix": "svg.bootstrap.people", + "description": "SVG bootstrap - people", + "body": [ + "{% svg bootstrap people %}" + ] + }, + "people_fill": { + "prefix": "svg.bootstrap.people_fill", + "description": "SVG bootstrap - people_fill", + "body": [ + "{% svg bootstrap people_fill %}" + ] + }, + "percent": { + "prefix": "svg.bootstrap.percent", + "description": "SVG bootstrap - percent", + "body": [ + "{% svg bootstrap percent %}" + ] + }, + "person": { + "prefix": "svg.bootstrap.person", + "description": "SVG bootstrap - person", + "body": [ + "{% svg bootstrap person %}" + ] + }, + "person_add": { + "prefix": "svg.bootstrap.person_add", + "description": "SVG bootstrap - person_add", + "body": [ + "{% svg bootstrap person_add %}" + ] + }, + "person_badge": { + "prefix": "svg.bootstrap.person_badge", + "description": "SVG bootstrap - person_badge", + "body": [ + "{% svg bootstrap person_badge %}" + ] + }, + "person_badge_fill": { + "prefix": "svg.bootstrap.person_badge_fill", + "description": "SVG bootstrap - person_badge_fill", + "body": [ + "{% svg bootstrap person_badge_fill %}" + ] + }, + "person_bounding_box": { + "prefix": "svg.bootstrap.person_bounding_box", + "description": "SVG bootstrap - person_bounding_box", + "body": [ + "{% svg bootstrap person_bounding_box %}" + ] + }, + "person_check": { + "prefix": "svg.bootstrap.person_check", + "description": "SVG bootstrap - person_check", + "body": [ + "{% svg bootstrap person_check %}" + ] + }, + "person_check_fill": { + "prefix": "svg.bootstrap.person_check_fill", + "description": "SVG bootstrap - person_check_fill", + "body": [ + "{% svg bootstrap person_check_fill %}" + ] + }, + "person_circle": { + "prefix": "svg.bootstrap.person_circle", + "description": "SVG bootstrap - person_circle", + "body": [ + "{% svg bootstrap person_circle %}" + ] + }, + "person_dash": { + "prefix": "svg.bootstrap.person_dash", + "description": "SVG bootstrap - person_dash", + "body": [ + "{% svg bootstrap person_dash %}" + ] + }, + "person_dash_fill": { + "prefix": "svg.bootstrap.person_dash_fill", + "description": "SVG bootstrap - person_dash_fill", + "body": [ + "{% svg bootstrap person_dash_fill %}" + ] + }, + "person_down": { + "prefix": "svg.bootstrap.person_down", + "description": "SVG bootstrap - person_down", + "body": [ + "{% svg bootstrap person_down %}" + ] + }, + "person_exclamation": { + "prefix": "svg.bootstrap.person_exclamation", + "description": "SVG bootstrap - person_exclamation", + "body": [ + "{% svg bootstrap person_exclamation %}" + ] + }, + "person_fill": { + "prefix": "svg.bootstrap.person_fill", + "description": "SVG bootstrap - person_fill", + "body": [ + "{% svg bootstrap person_fill %}" + ] + }, + "person_fill_add": { + "prefix": "svg.bootstrap.person_fill_add", + "description": "SVG bootstrap - person_fill_add", + "body": [ + "{% svg bootstrap person_fill_add %}" + ] + }, + "person_fill_check": { + "prefix": "svg.bootstrap.person_fill_check", + "description": "SVG bootstrap - person_fill_check", + "body": [ + "{% svg bootstrap person_fill_check %}" + ] + }, + "person_fill_dash": { + "prefix": "svg.bootstrap.person_fill_dash", + "description": "SVG bootstrap - person_fill_dash", + "body": [ + "{% svg bootstrap person_fill_dash %}" + ] + }, + "person_fill_down": { + "prefix": "svg.bootstrap.person_fill_down", + "description": "SVG bootstrap - person_fill_down", + "body": [ + "{% svg bootstrap person_fill_down %}" + ] + }, + "person_fill_exclamation": { + "prefix": "svg.bootstrap.person_fill_exclamation", + "description": "SVG bootstrap - person_fill_exclamation", + "body": [ + "{% svg bootstrap person_fill_exclamation %}" + ] + }, + "person_fill_gear": { + "prefix": "svg.bootstrap.person_fill_gear", + "description": "SVG bootstrap - person_fill_gear", + "body": [ + "{% svg bootstrap person_fill_gear %}" + ] + }, + "person_fill_lock": { + "prefix": "svg.bootstrap.person_fill_lock", + "description": "SVG bootstrap - person_fill_lock", + "body": [ + "{% svg bootstrap person_fill_lock %}" + ] + }, + "person_fill_slash": { + "prefix": "svg.bootstrap.person_fill_slash", + "description": "SVG bootstrap - person_fill_slash", + "body": [ + "{% svg bootstrap person_fill_slash %}" + ] + }, + "person_fill_up": { + "prefix": "svg.bootstrap.person_fill_up", + "description": "SVG bootstrap - person_fill_up", + "body": [ + "{% svg bootstrap person_fill_up %}" + ] + }, + "person_fill_x": { + "prefix": "svg.bootstrap.person_fill_x", + "description": "SVG bootstrap - person_fill_x", + "body": [ + "{% svg bootstrap person_fill_x %}" + ] + }, + "person_gear": { + "prefix": "svg.bootstrap.person_gear", + "description": "SVG bootstrap - person_gear", + "body": [ + "{% svg bootstrap person_gear %}" + ] + }, + "person_heart": { + "prefix": "svg.bootstrap.person_heart", + "description": "SVG bootstrap - person_heart", + "body": [ + "{% svg bootstrap person_heart %}" + ] + }, + "person_hearts": { + "prefix": "svg.bootstrap.person_hearts", + "description": "SVG bootstrap - person_hearts", + "body": [ + "{% svg bootstrap person_hearts %}" + ] + }, + "person_lines_fill": { + "prefix": "svg.bootstrap.person_lines_fill", + "description": "SVG bootstrap - person_lines_fill", + "body": [ + "{% svg bootstrap person_lines_fill %}" + ] + }, + "person_lock": { + "prefix": "svg.bootstrap.person_lock", + "description": "SVG bootstrap - person_lock", + "body": [ + "{% svg bootstrap person_lock %}" + ] + }, + "person_plus": { + "prefix": "svg.bootstrap.person_plus", + "description": "SVG bootstrap - person_plus", + "body": [ + "{% svg bootstrap person_plus %}" + ] + }, + "person_plus_fill": { + "prefix": "svg.bootstrap.person_plus_fill", + "description": "SVG bootstrap - person_plus_fill", + "body": [ + "{% svg bootstrap person_plus_fill %}" + ] + }, + "person_rolodex": { + "prefix": "svg.bootstrap.person_rolodex", + "description": "SVG bootstrap - person_rolodex", + "body": [ + "{% svg bootstrap person_rolodex %}" + ] + }, + "person_slash": { + "prefix": "svg.bootstrap.person_slash", + "description": "SVG bootstrap - person_slash", + "body": [ + "{% svg bootstrap person_slash %}" + ] + }, + "person_square": { + "prefix": "svg.bootstrap.person_square", + "description": "SVG bootstrap - person_square", + "body": [ + "{% svg bootstrap person_square %}" + ] + }, + "person_up": { + "prefix": "svg.bootstrap.person_up", + "description": "SVG bootstrap - person_up", + "body": [ + "{% svg bootstrap person_up %}" + ] + }, + "person_vcard": { + "prefix": "svg.bootstrap.person_vcard", + "description": "SVG bootstrap - person_vcard", + "body": [ + "{% svg bootstrap person_vcard %}" + ] + }, + "person_vcard_fill": { + "prefix": "svg.bootstrap.person_vcard_fill", + "description": "SVG bootstrap - person_vcard_fill", + "body": [ + "{% svg bootstrap person_vcard_fill %}" + ] + }, + "person_video": { + "prefix": "svg.bootstrap.person_video", + "description": "SVG bootstrap - person_video", + "body": [ + "{% svg bootstrap person_video %}" + ] + }, + "person_video2": { + "prefix": "svg.bootstrap.person_video2", + "description": "SVG bootstrap - person_video2", + "body": [ + "{% svg bootstrap person_video2 %}" + ] + }, + "person_video3": { + "prefix": "svg.bootstrap.person_video3", + "description": "SVG bootstrap - person_video3", + "body": [ + "{% svg bootstrap person_video3 %}" + ] + }, + "person_workspace": { + "prefix": "svg.bootstrap.person_workspace", + "description": "SVG bootstrap - person_workspace", + "body": [ + "{% svg bootstrap person_workspace %}" + ] + }, + "person_x": { + "prefix": "svg.bootstrap.person_x", + "description": "SVG bootstrap - person_x", + "body": [ + "{% svg bootstrap person_x %}" + ] + }, + "person_x_fill": { + "prefix": "svg.bootstrap.person_x_fill", + "description": "SVG bootstrap - person_x_fill", + "body": [ + "{% svg bootstrap person_x_fill %}" + ] + }, + "phone": { + "prefix": "svg.bootstrap.phone", + "description": "SVG bootstrap - phone", + "body": [ + "{% svg bootstrap phone %}" + ] + }, + "phone_fill": { + "prefix": "svg.bootstrap.phone_fill", + "description": "SVG bootstrap - phone_fill", + "body": [ + "{% svg bootstrap phone_fill %}" + ] + }, + "phone_flip": { + "prefix": "svg.bootstrap.phone_flip", + "description": "SVG bootstrap - phone_flip", + "body": [ + "{% svg bootstrap phone_flip %}" + ] + }, + "phone_landscape": { + "prefix": "svg.bootstrap.phone_landscape", + "description": "SVG bootstrap - phone_landscape", + "body": [ + "{% svg bootstrap phone_landscape %}" + ] + }, + "phone_landscape_fill": { + "prefix": "svg.bootstrap.phone_landscape_fill", + "description": "SVG bootstrap - phone_landscape_fill", + "body": [ + "{% svg bootstrap phone_landscape_fill %}" + ] + }, + "phone_vibrate": { + "prefix": "svg.bootstrap.phone_vibrate", + "description": "SVG bootstrap - phone_vibrate", + "body": [ + "{% svg bootstrap phone_vibrate %}" + ] + }, + "phone_vibrate_fill": { + "prefix": "svg.bootstrap.phone_vibrate_fill", + "description": "SVG bootstrap - phone_vibrate_fill", + "body": [ + "{% svg bootstrap phone_vibrate_fill %}" + ] + }, + "pie_chart": { + "prefix": "svg.bootstrap.pie_chart", + "description": "SVG bootstrap - pie_chart", + "body": [ + "{% svg bootstrap pie_chart %}" + ] + }, + "pie_chart_fill": { + "prefix": "svg.bootstrap.pie_chart_fill", + "description": "SVG bootstrap - pie_chart_fill", + "body": [ + "{% svg bootstrap pie_chart_fill %}" + ] + }, + "piggy_bank": { + "prefix": "svg.bootstrap.piggy_bank", + "description": "SVG bootstrap - piggy_bank", + "body": [ + "{% svg bootstrap piggy_bank %}" + ] + }, + "piggy_bank_fill": { + "prefix": "svg.bootstrap.piggy_bank_fill", + "description": "SVG bootstrap - piggy_bank_fill", + "body": [ + "{% svg bootstrap piggy_bank_fill %}" + ] + }, + "pin": { + "prefix": "svg.bootstrap.pin", + "description": "SVG bootstrap - pin", + "body": [ + "{% svg bootstrap pin %}" + ] + }, + "pin_angle": { + "prefix": "svg.bootstrap.pin_angle", + "description": "SVG bootstrap - pin_angle", + "body": [ + "{% svg bootstrap pin_angle %}" + ] + }, + "pin_angle_fill": { + "prefix": "svg.bootstrap.pin_angle_fill", + "description": "SVG bootstrap - pin_angle_fill", + "body": [ + "{% svg bootstrap pin_angle_fill %}" + ] + }, + "pin_fill": { + "prefix": "svg.bootstrap.pin_fill", + "description": "SVG bootstrap - pin_fill", + "body": [ + "{% svg bootstrap pin_fill %}" + ] + }, + "pin_map": { + "prefix": "svg.bootstrap.pin_map", + "description": "SVG bootstrap - pin_map", + "body": [ + "{% svg bootstrap pin_map %}" + ] + }, + "pin_map_fill": { + "prefix": "svg.bootstrap.pin_map_fill", + "description": "SVG bootstrap - pin_map_fill", + "body": [ + "{% svg bootstrap pin_map_fill %}" + ] + }, + "pinterest": { + "prefix": "svg.bootstrap.pinterest", + "description": "SVG bootstrap - pinterest", + "body": [ + "{% svg bootstrap pinterest %}" + ] + }, + "pip": { + "prefix": "svg.bootstrap.pip", + "description": "SVG bootstrap - pip", + "body": [ + "{% svg bootstrap pip %}" + ] + }, + "pip_fill": { + "prefix": "svg.bootstrap.pip_fill", + "description": "SVG bootstrap - pip_fill", + "body": [ + "{% svg bootstrap pip_fill %}" + ] + }, + "play": { + "prefix": "svg.bootstrap.play", + "description": "SVG bootstrap - play", + "body": [ + "{% svg bootstrap play %}" + ] + }, + "play_btn": { + "prefix": "svg.bootstrap.play_btn", + "description": "SVG bootstrap - play_btn", + "body": [ + "{% svg bootstrap play_btn %}" + ] + }, + "play_btn_fill": { + "prefix": "svg.bootstrap.play_btn_fill", + "description": "SVG bootstrap - play_btn_fill", + "body": [ + "{% svg bootstrap play_btn_fill %}" + ] + }, + "play_circle": { + "prefix": "svg.bootstrap.play_circle", + "description": "SVG bootstrap - play_circle", + "body": [ + "{% svg bootstrap play_circle %}" + ] + }, + "play_circle_fill": { + "prefix": "svg.bootstrap.play_circle_fill", + "description": "SVG bootstrap - play_circle_fill", + "body": [ + "{% svg bootstrap play_circle_fill %}" + ] + }, + "play_fill": { + "prefix": "svg.bootstrap.play_fill", + "description": "SVG bootstrap - play_fill", + "body": [ + "{% svg bootstrap play_fill %}" + ] + }, + "playstation": { + "prefix": "svg.bootstrap.playstation", + "description": "SVG bootstrap - playstation", + "body": [ + "{% svg bootstrap playstation %}" + ] + }, + "plug": { + "prefix": "svg.bootstrap.plug", + "description": "SVG bootstrap - plug", + "body": [ + "{% svg bootstrap plug %}" + ] + }, + "plug_fill": { + "prefix": "svg.bootstrap.plug_fill", + "description": "SVG bootstrap - plug_fill", + "body": [ + "{% svg bootstrap plug_fill %}" + ] + }, + "plugin": { + "prefix": "svg.bootstrap.plugin", + "description": "SVG bootstrap - plugin", + "body": [ + "{% svg bootstrap plugin %}" + ] + }, + "plus": { + "prefix": "svg.bootstrap.plus", + "description": "SVG bootstrap - plus", + "body": [ + "{% svg bootstrap plus %}" + ] + }, + "plus_circle": { + "prefix": "svg.bootstrap.plus_circle", + "description": "SVG bootstrap - plus_circle", + "body": [ + "{% svg bootstrap plus_circle %}" + ] + }, + "plus_circle_dotted": { + "prefix": "svg.bootstrap.plus_circle_dotted", + "description": "SVG bootstrap - plus_circle_dotted", + "body": [ + "{% svg bootstrap plus_circle_dotted %}" + ] + }, + "plus_circle_fill": { + "prefix": "svg.bootstrap.plus_circle_fill", + "description": "SVG bootstrap - plus_circle_fill", + "body": [ + "{% svg bootstrap plus_circle_fill %}" + ] + }, + "plus_lg": { + "prefix": "svg.bootstrap.plus_lg", + "description": "SVG bootstrap - plus_lg", + "body": [ + "{% svg bootstrap plus_lg %}" + ] + }, + "plus_slash_minus": { + "prefix": "svg.bootstrap.plus_slash_minus", + "description": "SVG bootstrap - plus_slash_minus", + "body": [ + "{% svg bootstrap plus_slash_minus %}" + ] + }, + "plus_square": { + "prefix": "svg.bootstrap.plus_square", + "description": "SVG bootstrap - plus_square", + "body": [ + "{% svg bootstrap plus_square %}" + ] + }, + "plus_square_dotted": { + "prefix": "svg.bootstrap.plus_square_dotted", + "description": "SVG bootstrap - plus_square_dotted", + "body": [ + "{% svg bootstrap plus_square_dotted %}" + ] + }, + "plus_square_fill": { + "prefix": "svg.bootstrap.plus_square_fill", + "description": "SVG bootstrap - plus_square_fill", + "body": [ + "{% svg bootstrap plus_square_fill %}" + ] + }, + "postage": { + "prefix": "svg.bootstrap.postage", + "description": "SVG bootstrap - postage", + "body": [ + "{% svg bootstrap postage %}" + ] + }, + "postage_fill": { + "prefix": "svg.bootstrap.postage_fill", + "description": "SVG bootstrap - postage_fill", + "body": [ + "{% svg bootstrap postage_fill %}" + ] + }, + "postage_heart": { + "prefix": "svg.bootstrap.postage_heart", + "description": "SVG bootstrap - postage_heart", + "body": [ + "{% svg bootstrap postage_heart %}" + ] + }, + "postage_heart_fill": { + "prefix": "svg.bootstrap.postage_heart_fill", + "description": "SVG bootstrap - postage_heart_fill", + "body": [ + "{% svg bootstrap postage_heart_fill %}" + ] + }, + "postcard": { + "prefix": "svg.bootstrap.postcard", + "description": "SVG bootstrap - postcard", + "body": [ + "{% svg bootstrap postcard %}" + ] + }, + "postcard_fill": { + "prefix": "svg.bootstrap.postcard_fill", + "description": "SVG bootstrap - postcard_fill", + "body": [ + "{% svg bootstrap postcard_fill %}" + ] + }, + "postcard_heart": { + "prefix": "svg.bootstrap.postcard_heart", + "description": "SVG bootstrap - postcard_heart", + "body": [ + "{% svg bootstrap postcard_heart %}" + ] + }, + "postcard_heart_fill": { + "prefix": "svg.bootstrap.postcard_heart_fill", + "description": "SVG bootstrap - postcard_heart_fill", + "body": [ + "{% svg bootstrap postcard_heart_fill %}" + ] + }, + "power": { + "prefix": "svg.bootstrap.power", + "description": "SVG bootstrap - power", + "body": [ + "{% svg bootstrap power %}" + ] + }, + "prescription": { + "prefix": "svg.bootstrap.prescription", + "description": "SVG bootstrap - prescription", + "body": [ + "{% svg bootstrap prescription %}" + ] + }, + "prescription2": { + "prefix": "svg.bootstrap.prescription2", + "description": "SVG bootstrap - prescription2", + "body": [ + "{% svg bootstrap prescription2 %}" + ] + }, + "printer": { + "prefix": "svg.bootstrap.printer", + "description": "SVG bootstrap - printer", + "body": [ + "{% svg bootstrap printer %}" + ] + }, + "printer_fill": { + "prefix": "svg.bootstrap.printer_fill", + "description": "SVG bootstrap - printer_fill", + "body": [ + "{% svg bootstrap printer_fill %}" + ] + }, + "projector": { + "prefix": "svg.bootstrap.projector", + "description": "SVG bootstrap - projector", + "body": [ + "{% svg bootstrap projector %}" + ] + }, + "projector_fill": { + "prefix": "svg.bootstrap.projector_fill", + "description": "SVG bootstrap - projector_fill", + "body": [ + "{% svg bootstrap projector_fill %}" + ] + }, + "puzzle": { + "prefix": "svg.bootstrap.puzzle", + "description": "SVG bootstrap - puzzle", + "body": [ + "{% svg bootstrap puzzle %}" + ] + }, + "puzzle_fill": { + "prefix": "svg.bootstrap.puzzle_fill", + "description": "SVG bootstrap - puzzle_fill", + "body": [ + "{% svg bootstrap puzzle_fill %}" + ] + }, + "qr_code": { + "prefix": "svg.bootstrap.qr_code", + "description": "SVG bootstrap - qr_code", + "body": [ + "{% svg bootstrap qr_code %}" + ] + }, + "qr_code_scan": { + "prefix": "svg.bootstrap.qr_code_scan", + "description": "SVG bootstrap - qr_code_scan", + "body": [ + "{% svg bootstrap qr_code_scan %}" + ] + }, + "question": { + "prefix": "svg.bootstrap.question", + "description": "SVG bootstrap - question", + "body": [ + "{% svg bootstrap question %}" + ] + }, + "question_circle": { + "prefix": "svg.bootstrap.question_circle", + "description": "SVG bootstrap - question_circle", + "body": [ + "{% svg bootstrap question_circle %}" + ] + }, + "question_circle_fill": { + "prefix": "svg.bootstrap.question_circle_fill", + "description": "SVG bootstrap - question_circle_fill", + "body": [ + "{% svg bootstrap question_circle_fill %}" + ] + }, + "question_diamond": { + "prefix": "svg.bootstrap.question_diamond", + "description": "SVG bootstrap - question_diamond", + "body": [ + "{% svg bootstrap question_diamond %}" + ] + }, + "question_diamond_fill": { + "prefix": "svg.bootstrap.question_diamond_fill", + "description": "SVG bootstrap - question_diamond_fill", + "body": [ + "{% svg bootstrap question_diamond_fill %}" + ] + }, + "question_lg": { + "prefix": "svg.bootstrap.question_lg", + "description": "SVG bootstrap - question_lg", + "body": [ + "{% svg bootstrap question_lg %}" + ] + }, + "question_octagon": { + "prefix": "svg.bootstrap.question_octagon", + "description": "SVG bootstrap - question_octagon", + "body": [ + "{% svg bootstrap question_octagon %}" + ] + }, + "question_octagon_fill": { + "prefix": "svg.bootstrap.question_octagon_fill", + "description": "SVG bootstrap - question_octagon_fill", + "body": [ + "{% svg bootstrap question_octagon_fill %}" + ] + }, + "question_square": { + "prefix": "svg.bootstrap.question_square", + "description": "SVG bootstrap - question_square", + "body": [ + "{% svg bootstrap question_square %}" + ] + }, + "question_square_fill": { + "prefix": "svg.bootstrap.question_square_fill", + "description": "SVG bootstrap - question_square_fill", + "body": [ + "{% svg bootstrap question_square_fill %}" + ] + }, + "quora": { + "prefix": "svg.bootstrap.quora", + "description": "SVG bootstrap - quora", + "body": [ + "{% svg bootstrap quora %}" + ] + }, + "quote": { + "prefix": "svg.bootstrap.quote", + "description": "SVG bootstrap - quote", + "body": [ + "{% svg bootstrap quote %}" + ] + }, + "r_circle": { + "prefix": "svg.bootstrap.r_circle", + "description": "SVG bootstrap - r_circle", + "body": [ + "{% svg bootstrap r_circle %}" + ] + }, + "r_circle_fill": { + "prefix": "svg.bootstrap.r_circle_fill", + "description": "SVG bootstrap - r_circle_fill", + "body": [ + "{% svg bootstrap r_circle_fill %}" + ] + }, + "r_square": { + "prefix": "svg.bootstrap.r_square", + "description": "SVG bootstrap - r_square", + "body": [ + "{% svg bootstrap r_square %}" + ] + }, + "r_square_fill": { + "prefix": "svg.bootstrap.r_square_fill", + "description": "SVG bootstrap - r_square_fill", + "body": [ + "{% svg bootstrap r_square_fill %}" + ] + }, + "radioactive": { + "prefix": "svg.bootstrap.radioactive", + "description": "SVG bootstrap - radioactive", + "body": [ + "{% svg bootstrap radioactive %}" + ] + }, + "rainbow": { + "prefix": "svg.bootstrap.rainbow", + "description": "SVG bootstrap - rainbow", + "body": [ + "{% svg bootstrap rainbow %}" + ] + }, + "receipt": { + "prefix": "svg.bootstrap.receipt", + "description": "SVG bootstrap - receipt", + "body": [ + "{% svg bootstrap receipt %}" + ] + }, + "receipt_cutoff": { + "prefix": "svg.bootstrap.receipt_cutoff", + "description": "SVG bootstrap - receipt_cutoff", + "body": [ + "{% svg bootstrap receipt_cutoff %}" + ] + }, + "reception_0": { + "prefix": "svg.bootstrap.reception_0", + "description": "SVG bootstrap - reception_0", + "body": [ + "{% svg bootstrap reception_0 %}" + ] + }, + "reception_1": { + "prefix": "svg.bootstrap.reception_1", + "description": "SVG bootstrap - reception_1", + "body": [ + "{% svg bootstrap reception_1 %}" + ] + }, + "reception_2": { + "prefix": "svg.bootstrap.reception_2", + "description": "SVG bootstrap - reception_2", + "body": [ + "{% svg bootstrap reception_2 %}" + ] + }, + "reception_3": { + "prefix": "svg.bootstrap.reception_3", + "description": "SVG bootstrap - reception_3", + "body": [ + "{% svg bootstrap reception_3 %}" + ] + }, + "reception_4": { + "prefix": "svg.bootstrap.reception_4", + "description": "SVG bootstrap - reception_4", + "body": [ + "{% svg bootstrap reception_4 %}" + ] + }, + "record": { + "prefix": "svg.bootstrap.record", + "description": "SVG bootstrap - record", + "body": [ + "{% svg bootstrap record %}" + ] + }, + "record2": { + "prefix": "svg.bootstrap.record2", + "description": "SVG bootstrap - record2", + "body": [ + "{% svg bootstrap record2 %}" + ] + }, + "record2_fill": { + "prefix": "svg.bootstrap.record2_fill", + "description": "SVG bootstrap - record2_fill", + "body": [ + "{% svg bootstrap record2_fill %}" + ] + }, + "record_btn": { + "prefix": "svg.bootstrap.record_btn", + "description": "SVG bootstrap - record_btn", + "body": [ + "{% svg bootstrap record_btn %}" + ] + }, + "record_btn_fill": { + "prefix": "svg.bootstrap.record_btn_fill", + "description": "SVG bootstrap - record_btn_fill", + "body": [ + "{% svg bootstrap record_btn_fill %}" + ] + }, + "record_circle": { + "prefix": "svg.bootstrap.record_circle", + "description": "SVG bootstrap - record_circle", + "body": [ + "{% svg bootstrap record_circle %}" + ] + }, + "record_circle_fill": { + "prefix": "svg.bootstrap.record_circle_fill", + "description": "SVG bootstrap - record_circle_fill", + "body": [ + "{% svg bootstrap record_circle_fill %}" + ] + }, + "record_fill": { + "prefix": "svg.bootstrap.record_fill", + "description": "SVG bootstrap - record_fill", + "body": [ + "{% svg bootstrap record_fill %}" + ] + }, + "recycle": { + "prefix": "svg.bootstrap.recycle", + "description": "SVG bootstrap - recycle", + "body": [ + "{% svg bootstrap recycle %}" + ] + }, + "reddit": { + "prefix": "svg.bootstrap.reddit", + "description": "SVG bootstrap - reddit", + "body": [ + "{% svg bootstrap reddit %}" + ] + }, + "regex": { + "prefix": "svg.bootstrap.regex", + "description": "SVG bootstrap - regex", + "body": [ + "{% svg bootstrap regex %}" + ] + }, + "repeat": { + "prefix": "svg.bootstrap.repeat", + "description": "SVG bootstrap - repeat", + "body": [ + "{% svg bootstrap repeat %}" + ] + }, + "repeat_1": { + "prefix": "svg.bootstrap.repeat_1", + "description": "SVG bootstrap - repeat_1", + "body": [ + "{% svg bootstrap repeat_1 %}" + ] + }, + "reply": { + "prefix": "svg.bootstrap.reply", + "description": "SVG bootstrap - reply", + "body": [ + "{% svg bootstrap reply %}" + ] + }, + "reply_all": { + "prefix": "svg.bootstrap.reply_all", + "description": "SVG bootstrap - reply_all", + "body": [ + "{% svg bootstrap reply_all %}" + ] + }, + "reply_all_fill": { + "prefix": "svg.bootstrap.reply_all_fill", + "description": "SVG bootstrap - reply_all_fill", + "body": [ + "{% svg bootstrap reply_all_fill %}" + ] + }, + "reply_fill": { + "prefix": "svg.bootstrap.reply_fill", + "description": "SVG bootstrap - reply_fill", + "body": [ + "{% svg bootstrap reply_fill %}" + ] + }, + "rewind": { + "prefix": "svg.bootstrap.rewind", + "description": "SVG bootstrap - rewind", + "body": [ + "{% svg bootstrap rewind %}" + ] + }, + "rewind_btn": { + "prefix": "svg.bootstrap.rewind_btn", + "description": "SVG bootstrap - rewind_btn", + "body": [ + "{% svg bootstrap rewind_btn %}" + ] + }, + "rewind_btn_fill": { + "prefix": "svg.bootstrap.rewind_btn_fill", + "description": "SVG bootstrap - rewind_btn_fill", + "body": [ + "{% svg bootstrap rewind_btn_fill %}" + ] + }, + "rewind_circle": { + "prefix": "svg.bootstrap.rewind_circle", + "description": "SVG bootstrap - rewind_circle", + "body": [ + "{% svg bootstrap rewind_circle %}" + ] + }, + "rewind_circle_fill": { + "prefix": "svg.bootstrap.rewind_circle_fill", + "description": "SVG bootstrap - rewind_circle_fill", + "body": [ + "{% svg bootstrap rewind_circle_fill %}" + ] + }, + "rewind_fill": { + "prefix": "svg.bootstrap.rewind_fill", + "description": "SVG bootstrap - rewind_fill", + "body": [ + "{% svg bootstrap rewind_fill %}" + ] + }, + "robot": { + "prefix": "svg.bootstrap.robot", + "description": "SVG bootstrap - robot", + "body": [ + "{% svg bootstrap robot %}" + ] + }, + "rocket": { + "prefix": "svg.bootstrap.rocket", + "description": "SVG bootstrap - rocket", + "body": [ + "{% svg bootstrap rocket %}" + ] + }, + "rocket_fill": { + "prefix": "svg.bootstrap.rocket_fill", + "description": "SVG bootstrap - rocket_fill", + "body": [ + "{% svg bootstrap rocket_fill %}" + ] + }, + "rocket_takeoff": { + "prefix": "svg.bootstrap.rocket_takeoff", + "description": "SVG bootstrap - rocket_takeoff", + "body": [ + "{% svg bootstrap rocket_takeoff %}" + ] + }, + "rocket_takeoff_fill": { + "prefix": "svg.bootstrap.rocket_takeoff_fill", + "description": "SVG bootstrap - rocket_takeoff_fill", + "body": [ + "{% svg bootstrap rocket_takeoff_fill %}" + ] + }, + "router": { + "prefix": "svg.bootstrap.router", + "description": "SVG bootstrap - router", + "body": [ + "{% svg bootstrap router %}" + ] + }, + "router_fill": { + "prefix": "svg.bootstrap.router_fill", + "description": "SVG bootstrap - router_fill", + "body": [ + "{% svg bootstrap router_fill %}" + ] + }, + "rss": { + "prefix": "svg.bootstrap.rss", + "description": "SVG bootstrap - rss", + "body": [ + "{% svg bootstrap rss %}" + ] + }, + "rss_fill": { + "prefix": "svg.bootstrap.rss_fill", + "description": "SVG bootstrap - rss_fill", + "body": [ + "{% svg bootstrap rss_fill %}" + ] + }, + "rulers": { + "prefix": "svg.bootstrap.rulers", + "description": "SVG bootstrap - rulers", + "body": [ + "{% svg bootstrap rulers %}" + ] + }, + "safe": { + "prefix": "svg.bootstrap.safe", + "description": "SVG bootstrap - safe", + "body": [ + "{% svg bootstrap safe %}" + ] + }, + "safe2": { + "prefix": "svg.bootstrap.safe2", + "description": "SVG bootstrap - safe2", + "body": [ + "{% svg bootstrap safe2 %}" + ] + }, + "safe2_fill": { + "prefix": "svg.bootstrap.safe2_fill", + "description": "SVG bootstrap - safe2_fill", + "body": [ + "{% svg bootstrap safe2_fill %}" + ] + }, + "safe_fill": { + "prefix": "svg.bootstrap.safe_fill", + "description": "SVG bootstrap - safe_fill", + "body": [ + "{% svg bootstrap safe_fill %}" + ] + }, + "save": { + "prefix": "svg.bootstrap.save", + "description": "SVG bootstrap - save", + "body": [ + "{% svg bootstrap save %}" + ] + }, + "save2": { + "prefix": "svg.bootstrap.save2", + "description": "SVG bootstrap - save2", + "body": [ + "{% svg bootstrap save2 %}" + ] + }, + "save2_fill": { + "prefix": "svg.bootstrap.save2_fill", + "description": "SVG bootstrap - save2_fill", + "body": [ + "{% svg bootstrap save2_fill %}" + ] + }, + "save_fill": { + "prefix": "svg.bootstrap.save_fill", + "description": "SVG bootstrap - save_fill", + "body": [ + "{% svg bootstrap save_fill %}" + ] + }, + "scissors": { + "prefix": "svg.bootstrap.scissors", + "description": "SVG bootstrap - scissors", + "body": [ + "{% svg bootstrap scissors %}" + ] + }, + "scooter": { + "prefix": "svg.bootstrap.scooter", + "description": "SVG bootstrap - scooter", + "body": [ + "{% svg bootstrap scooter %}" + ] + }, + "screwdriver": { + "prefix": "svg.bootstrap.screwdriver", + "description": "SVG bootstrap - screwdriver", + "body": [ + "{% svg bootstrap screwdriver %}" + ] + }, + "sd_card": { + "prefix": "svg.bootstrap.sd_card", + "description": "SVG bootstrap - sd_card", + "body": [ + "{% svg bootstrap sd_card %}" + ] + }, + "sd_card_fill": { + "prefix": "svg.bootstrap.sd_card_fill", + "description": "SVG bootstrap - sd_card_fill", + "body": [ + "{% svg bootstrap sd_card_fill %}" + ] + }, + "search": { + "prefix": "svg.bootstrap.search", + "description": "SVG bootstrap - search", + "body": [ + "{% svg bootstrap search %}" + ] + }, + "search_heart": { + "prefix": "svg.bootstrap.search_heart", + "description": "SVG bootstrap - search_heart", + "body": [ + "{% svg bootstrap search_heart %}" + ] + }, + "search_heart_fill": { + "prefix": "svg.bootstrap.search_heart_fill", + "description": "SVG bootstrap - search_heart_fill", + "body": [ + "{% svg bootstrap search_heart_fill %}" + ] + }, + "segmented_nav": { + "prefix": "svg.bootstrap.segmented_nav", + "description": "SVG bootstrap - segmented_nav", + "body": [ + "{% svg bootstrap segmented_nav %}" + ] + }, + "send": { + "prefix": "svg.bootstrap.send", + "description": "SVG bootstrap - send", + "body": [ + "{% svg bootstrap send %}" + ] + }, + "send_check": { + "prefix": "svg.bootstrap.send_check", + "description": "SVG bootstrap - send_check", + "body": [ + "{% svg bootstrap send_check %}" + ] + }, + "send_check_fill": { + "prefix": "svg.bootstrap.send_check_fill", + "description": "SVG bootstrap - send_check_fill", + "body": [ + "{% svg bootstrap send_check_fill %}" + ] + }, + "send_dash": { + "prefix": "svg.bootstrap.send_dash", + "description": "SVG bootstrap - send_dash", + "body": [ + "{% svg bootstrap send_dash %}" + ] + }, + "send_dash_fill": { + "prefix": "svg.bootstrap.send_dash_fill", + "description": "SVG bootstrap - send_dash_fill", + "body": [ + "{% svg bootstrap send_dash_fill %}" + ] + }, + "send_exclamation": { + "prefix": "svg.bootstrap.send_exclamation", + "description": "SVG bootstrap - send_exclamation", + "body": [ + "{% svg bootstrap send_exclamation %}" + ] + }, + "send_exclamation_fill": { + "prefix": "svg.bootstrap.send_exclamation_fill", + "description": "SVG bootstrap - send_exclamation_fill", + "body": [ + "{% svg bootstrap send_exclamation_fill %}" + ] + }, + "send_fill": { + "prefix": "svg.bootstrap.send_fill", + "description": "SVG bootstrap - send_fill", + "body": [ + "{% svg bootstrap send_fill %}" + ] + }, + "send_plus": { + "prefix": "svg.bootstrap.send_plus", + "description": "SVG bootstrap - send_plus", + "body": [ + "{% svg bootstrap send_plus %}" + ] + }, + "send_plus_fill": { + "prefix": "svg.bootstrap.send_plus_fill", + "description": "SVG bootstrap - send_plus_fill", + "body": [ + "{% svg bootstrap send_plus_fill %}" + ] + }, + "send_slash": { + "prefix": "svg.bootstrap.send_slash", + "description": "SVG bootstrap - send_slash", + "body": [ + "{% svg bootstrap send_slash %}" + ] + }, + "send_slash_fill": { + "prefix": "svg.bootstrap.send_slash_fill", + "description": "SVG bootstrap - send_slash_fill", + "body": [ + "{% svg bootstrap send_slash_fill %}" + ] + }, + "send_x": { + "prefix": "svg.bootstrap.send_x", + "description": "SVG bootstrap - send_x", + "body": [ + "{% svg bootstrap send_x %}" + ] + }, + "send_x_fill": { + "prefix": "svg.bootstrap.send_x_fill", + "description": "SVG bootstrap - send_x_fill", + "body": [ + "{% svg bootstrap send_x_fill %}" + ] + }, + "server": { + "prefix": "svg.bootstrap.server", + "description": "SVG bootstrap - server", + "body": [ + "{% svg bootstrap server %}" + ] + }, + "share": { + "prefix": "svg.bootstrap.share", + "description": "SVG bootstrap - share", + "body": [ + "{% svg bootstrap share %}" + ] + }, + "share_fill": { + "prefix": "svg.bootstrap.share_fill", + "description": "SVG bootstrap - share_fill", + "body": [ + "{% svg bootstrap share_fill %}" + ] + }, + "shield": { + "prefix": "svg.bootstrap.shield", + "description": "SVG bootstrap - shield", + "body": [ + "{% svg bootstrap shield %}" + ] + }, + "shield_check": { + "prefix": "svg.bootstrap.shield_check", + "description": "SVG bootstrap - shield_check", + "body": [ + "{% svg bootstrap shield_check %}" + ] + }, + "shield_exclamation": { + "prefix": "svg.bootstrap.shield_exclamation", + "description": "SVG bootstrap - shield_exclamation", + "body": [ + "{% svg bootstrap shield_exclamation %}" + ] + }, + "shield_fill": { + "prefix": "svg.bootstrap.shield_fill", + "description": "SVG bootstrap - shield_fill", + "body": [ + "{% svg bootstrap shield_fill %}" + ] + }, + "shield_fill_check": { + "prefix": "svg.bootstrap.shield_fill_check", + "description": "SVG bootstrap - shield_fill_check", + "body": [ + "{% svg bootstrap shield_fill_check %}" + ] + }, + "shield_fill_exclamation": { + "prefix": "svg.bootstrap.shield_fill_exclamation", + "description": "SVG bootstrap - shield_fill_exclamation", + "body": [ + "{% svg bootstrap shield_fill_exclamation %}" + ] + }, + "shield_fill_minus": { + "prefix": "svg.bootstrap.shield_fill_minus", + "description": "SVG bootstrap - shield_fill_minus", + "body": [ + "{% svg bootstrap shield_fill_minus %}" + ] + }, + "shield_fill_plus": { + "prefix": "svg.bootstrap.shield_fill_plus", + "description": "SVG bootstrap - shield_fill_plus", + "body": [ + "{% svg bootstrap shield_fill_plus %}" + ] + }, + "shield_fill_x": { + "prefix": "svg.bootstrap.shield_fill_x", + "description": "SVG bootstrap - shield_fill_x", + "body": [ + "{% svg bootstrap shield_fill_x %}" + ] + }, + "shield_lock": { + "prefix": "svg.bootstrap.shield_lock", + "description": "SVG bootstrap - shield_lock", + "body": [ + "{% svg bootstrap shield_lock %}" + ] + }, + "shield_lock_fill": { + "prefix": "svg.bootstrap.shield_lock_fill", + "description": "SVG bootstrap - shield_lock_fill", + "body": [ + "{% svg bootstrap shield_lock_fill %}" + ] + }, + "shield_minus": { + "prefix": "svg.bootstrap.shield_minus", + "description": "SVG bootstrap - shield_minus", + "body": [ + "{% svg bootstrap shield_minus %}" + ] + }, + "shield_plus": { + "prefix": "svg.bootstrap.shield_plus", + "description": "SVG bootstrap - shield_plus", + "body": [ + "{% svg bootstrap shield_plus %}" + ] + }, + "shield_shaded": { + "prefix": "svg.bootstrap.shield_shaded", + "description": "SVG bootstrap - shield_shaded", + "body": [ + "{% svg bootstrap shield_shaded %}" + ] + }, + "shield_slash": { + "prefix": "svg.bootstrap.shield_slash", + "description": "SVG bootstrap - shield_slash", + "body": [ + "{% svg bootstrap shield_slash %}" + ] + }, + "shield_slash_fill": { + "prefix": "svg.bootstrap.shield_slash_fill", + "description": "SVG bootstrap - shield_slash_fill", + "body": [ + "{% svg bootstrap shield_slash_fill %}" + ] + }, + "shield_x": { + "prefix": "svg.bootstrap.shield_x", + "description": "SVG bootstrap - shield_x", + "body": [ + "{% svg bootstrap shield_x %}" + ] + }, + "shift": { + "prefix": "svg.bootstrap.shift", + "description": "SVG bootstrap - shift", + "body": [ + "{% svg bootstrap shift %}" + ] + }, + "shift_fill": { + "prefix": "svg.bootstrap.shift_fill", + "description": "SVG bootstrap - shift_fill", + "body": [ + "{% svg bootstrap shift_fill %}" + ] + }, + "shop": { + "prefix": "svg.bootstrap.shop", + "description": "SVG bootstrap - shop", + "body": [ + "{% svg bootstrap shop %}" + ] + }, + "shop_window": { + "prefix": "svg.bootstrap.shop_window", + "description": "SVG bootstrap - shop_window", + "body": [ + "{% svg bootstrap shop_window %}" + ] + }, + "shuffle": { + "prefix": "svg.bootstrap.shuffle", + "description": "SVG bootstrap - shuffle", + "body": [ + "{% svg bootstrap shuffle %}" + ] + }, + "sign_dead_end": { + "prefix": "svg.bootstrap.sign_dead_end", + "description": "SVG bootstrap - sign_dead_end", + "body": [ + "{% svg bootstrap sign_dead_end %}" + ] + }, + "sign_dead_end_fill": { + "prefix": "svg.bootstrap.sign_dead_end_fill", + "description": "SVG bootstrap - sign_dead_end_fill", + "body": [ + "{% svg bootstrap sign_dead_end_fill %}" + ] + }, + "sign_do_not_enter": { + "prefix": "svg.bootstrap.sign_do_not_enter", + "description": "SVG bootstrap - sign_do_not_enter", + "body": [ + "{% svg bootstrap sign_do_not_enter %}" + ] + }, + "sign_do_not_enter_fill": { + "prefix": "svg.bootstrap.sign_do_not_enter_fill", + "description": "SVG bootstrap - sign_do_not_enter_fill", + "body": [ + "{% svg bootstrap sign_do_not_enter_fill %}" + ] + }, + "sign_intersection": { + "prefix": "svg.bootstrap.sign_intersection", + "description": "SVG bootstrap - sign_intersection", + "body": [ + "{% svg bootstrap sign_intersection %}" + ] + }, + "sign_intersection_fill": { + "prefix": "svg.bootstrap.sign_intersection_fill", + "description": "SVG bootstrap - sign_intersection_fill", + "body": [ + "{% svg bootstrap sign_intersection_fill %}" + ] + }, + "sign_intersection_side": { + "prefix": "svg.bootstrap.sign_intersection_side", + "description": "SVG bootstrap - sign_intersection_side", + "body": [ + "{% svg bootstrap sign_intersection_side %}" + ] + }, + "sign_intersection_side_fill": { + "prefix": "svg.bootstrap.sign_intersection_side_fill", + "description": "SVG bootstrap - sign_intersection_side_fill", + "body": [ + "{% svg bootstrap sign_intersection_side_fill %}" + ] + }, + "sign_intersection_t": { + "prefix": "svg.bootstrap.sign_intersection_t", + "description": "SVG bootstrap - sign_intersection_t", + "body": [ + "{% svg bootstrap sign_intersection_t %}" + ] + }, + "sign_intersection_t_fill": { + "prefix": "svg.bootstrap.sign_intersection_t_fill", + "description": "SVG bootstrap - sign_intersection_t_fill", + "body": [ + "{% svg bootstrap sign_intersection_t_fill %}" + ] + }, + "sign_intersection_y": { + "prefix": "svg.bootstrap.sign_intersection_y", + "description": "SVG bootstrap - sign_intersection_y", + "body": [ + "{% svg bootstrap sign_intersection_y %}" + ] + }, + "sign_intersection_y_fill": { + "prefix": "svg.bootstrap.sign_intersection_y_fill", + "description": "SVG bootstrap - sign_intersection_y_fill", + "body": [ + "{% svg bootstrap sign_intersection_y_fill %}" + ] + }, + "sign_merge_left": { + "prefix": "svg.bootstrap.sign_merge_left", + "description": "SVG bootstrap - sign_merge_left", + "body": [ + "{% svg bootstrap sign_merge_left %}" + ] + }, + "sign_merge_left_fill": { + "prefix": "svg.bootstrap.sign_merge_left_fill", + "description": "SVG bootstrap - sign_merge_left_fill", + "body": [ + "{% svg bootstrap sign_merge_left_fill %}" + ] + }, + "sign_merge_right": { + "prefix": "svg.bootstrap.sign_merge_right", + "description": "SVG bootstrap - sign_merge_right", + "body": [ + "{% svg bootstrap sign_merge_right %}" + ] + }, + "sign_merge_right_fill": { + "prefix": "svg.bootstrap.sign_merge_right_fill", + "description": "SVG bootstrap - sign_merge_right_fill", + "body": [ + "{% svg bootstrap sign_merge_right_fill %}" + ] + }, + "sign_no_left_turn": { + "prefix": "svg.bootstrap.sign_no_left_turn", + "description": "SVG bootstrap - sign_no_left_turn", + "body": [ + "{% svg bootstrap sign_no_left_turn %}" + ] + }, + "sign_no_left_turn_fill": { + "prefix": "svg.bootstrap.sign_no_left_turn_fill", + "description": "SVG bootstrap - sign_no_left_turn_fill", + "body": [ + "{% svg bootstrap sign_no_left_turn_fill %}" + ] + }, + "sign_no_parking": { + "prefix": "svg.bootstrap.sign_no_parking", + "description": "SVG bootstrap - sign_no_parking", + "body": [ + "{% svg bootstrap sign_no_parking %}" + ] + }, + "sign_no_parking_fill": { + "prefix": "svg.bootstrap.sign_no_parking_fill", + "description": "SVG bootstrap - sign_no_parking_fill", + "body": [ + "{% svg bootstrap sign_no_parking_fill %}" + ] + }, + "sign_no_right_turn": { + "prefix": "svg.bootstrap.sign_no_right_turn", + "description": "SVG bootstrap - sign_no_right_turn", + "body": [ + "{% svg bootstrap sign_no_right_turn %}" + ] + }, + "sign_no_right_turn_fill": { + "prefix": "svg.bootstrap.sign_no_right_turn_fill", + "description": "SVG bootstrap - sign_no_right_turn_fill", + "body": [ + "{% svg bootstrap sign_no_right_turn_fill %}" + ] + }, + "sign_railroad": { + "prefix": "svg.bootstrap.sign_railroad", + "description": "SVG bootstrap - sign_railroad", + "body": [ + "{% svg bootstrap sign_railroad %}" + ] + }, + "sign_railroad_fill": { + "prefix": "svg.bootstrap.sign_railroad_fill", + "description": "SVG bootstrap - sign_railroad_fill", + "body": [ + "{% svg bootstrap sign_railroad_fill %}" + ] + }, + "sign_stop": { + "prefix": "svg.bootstrap.sign_stop", + "description": "SVG bootstrap - sign_stop", + "body": [ + "{% svg bootstrap sign_stop %}" + ] + }, + "sign_stop_fill": { + "prefix": "svg.bootstrap.sign_stop_fill", + "description": "SVG bootstrap - sign_stop_fill", + "body": [ + "{% svg bootstrap sign_stop_fill %}" + ] + }, + "sign_stop_lights": { + "prefix": "svg.bootstrap.sign_stop_lights", + "description": "SVG bootstrap - sign_stop_lights", + "body": [ + "{% svg bootstrap sign_stop_lights %}" + ] + }, + "sign_stop_lights_fill": { + "prefix": "svg.bootstrap.sign_stop_lights_fill", + "description": "SVG bootstrap - sign_stop_lights_fill", + "body": [ + "{% svg bootstrap sign_stop_lights_fill %}" + ] + }, + "sign_turn_left": { + "prefix": "svg.bootstrap.sign_turn_left", + "description": "SVG bootstrap - sign_turn_left", + "body": [ + "{% svg bootstrap sign_turn_left %}" + ] + }, + "sign_turn_left_fill": { + "prefix": "svg.bootstrap.sign_turn_left_fill", + "description": "SVG bootstrap - sign_turn_left_fill", + "body": [ + "{% svg bootstrap sign_turn_left_fill %}" + ] + }, + "sign_turn_right": { + "prefix": "svg.bootstrap.sign_turn_right", + "description": "SVG bootstrap - sign_turn_right", + "body": [ + "{% svg bootstrap sign_turn_right %}" + ] + }, + "sign_turn_right_fill": { + "prefix": "svg.bootstrap.sign_turn_right_fill", + "description": "SVG bootstrap - sign_turn_right_fill", + "body": [ + "{% svg bootstrap sign_turn_right_fill %}" + ] + }, + "sign_turn_slight_left": { + "prefix": "svg.bootstrap.sign_turn_slight_left", + "description": "SVG bootstrap - sign_turn_slight_left", + "body": [ + "{% svg bootstrap sign_turn_slight_left %}" + ] + }, + "sign_turn_slight_left_fill": { + "prefix": "svg.bootstrap.sign_turn_slight_left_fill", + "description": "SVG bootstrap - sign_turn_slight_left_fill", + "body": [ + "{% svg bootstrap sign_turn_slight_left_fill %}" + ] + }, + "sign_turn_slight_right": { + "prefix": "svg.bootstrap.sign_turn_slight_right", + "description": "SVG bootstrap - sign_turn_slight_right", + "body": [ + "{% svg bootstrap sign_turn_slight_right %}" + ] + }, + "sign_turn_slight_right_fill": { + "prefix": "svg.bootstrap.sign_turn_slight_right_fill", + "description": "SVG bootstrap - sign_turn_slight_right_fill", + "body": [ + "{% svg bootstrap sign_turn_slight_right_fill %}" + ] + }, + "sign_yield": { + "prefix": "svg.bootstrap.sign_yield", + "description": "SVG bootstrap - sign_yield", + "body": [ + "{% svg bootstrap sign_yield %}" + ] + }, + "sign_yield_fill": { + "prefix": "svg.bootstrap.sign_yield_fill", + "description": "SVG bootstrap - sign_yield_fill", + "body": [ + "{% svg bootstrap sign_yield_fill %}" + ] + }, + "signal": { + "prefix": "svg.bootstrap.signal", + "description": "SVG bootstrap - signal", + "body": [ + "{% svg bootstrap signal %}" + ] + }, + "signpost": { + "prefix": "svg.bootstrap.signpost", + "description": "SVG bootstrap - signpost", + "body": [ + "{% svg bootstrap signpost %}" + ] + }, + "signpost_2": { + "prefix": "svg.bootstrap.signpost_2", + "description": "SVG bootstrap - signpost_2", + "body": [ + "{% svg bootstrap signpost_2 %}" + ] + }, + "signpost_2_fill": { + "prefix": "svg.bootstrap.signpost_2_fill", + "description": "SVG bootstrap - signpost_2_fill", + "body": [ + "{% svg bootstrap signpost_2_fill %}" + ] + }, + "signpost_fill": { + "prefix": "svg.bootstrap.signpost_fill", + "description": "SVG bootstrap - signpost_fill", + "body": [ + "{% svg bootstrap signpost_fill %}" + ] + }, + "signpost_split": { + "prefix": "svg.bootstrap.signpost_split", + "description": "SVG bootstrap - signpost_split", + "body": [ + "{% svg bootstrap signpost_split %}" + ] + }, + "signpost_split_fill": { + "prefix": "svg.bootstrap.signpost_split_fill", + "description": "SVG bootstrap - signpost_split_fill", + "body": [ + "{% svg bootstrap signpost_split_fill %}" + ] + }, + "sim": { + "prefix": "svg.bootstrap.sim", + "description": "SVG bootstrap - sim", + "body": [ + "{% svg bootstrap sim %}" + ] + }, + "sim_fill": { + "prefix": "svg.bootstrap.sim_fill", + "description": "SVG bootstrap - sim_fill", + "body": [ + "{% svg bootstrap sim_fill %}" + ] + }, + "sina_weibo": { + "prefix": "svg.bootstrap.sina_weibo", + "description": "SVG bootstrap - sina_weibo", + "body": [ + "{% svg bootstrap sina_weibo %}" + ] + }, + "skip_backward": { + "prefix": "svg.bootstrap.skip_backward", + "description": "SVG bootstrap - skip_backward", + "body": [ + "{% svg bootstrap skip_backward %}" + ] + }, + "skip_backward_btn": { + "prefix": "svg.bootstrap.skip_backward_btn", + "description": "SVG bootstrap - skip_backward_btn", + "body": [ + "{% svg bootstrap skip_backward_btn %}" + ] + }, + "skip_backward_btn_fill": { + "prefix": "svg.bootstrap.skip_backward_btn_fill", + "description": "SVG bootstrap - skip_backward_btn_fill", + "body": [ + "{% svg bootstrap skip_backward_btn_fill %}" + ] + }, + "skip_backward_circle": { + "prefix": "svg.bootstrap.skip_backward_circle", + "description": "SVG bootstrap - skip_backward_circle", + "body": [ + "{% svg bootstrap skip_backward_circle %}" + ] + }, + "skip_backward_circle_fill": { + "prefix": "svg.bootstrap.skip_backward_circle_fill", + "description": "SVG bootstrap - skip_backward_circle_fill", + "body": [ + "{% svg bootstrap skip_backward_circle_fill %}" + ] + }, + "skip_backward_fill": { + "prefix": "svg.bootstrap.skip_backward_fill", + "description": "SVG bootstrap - skip_backward_fill", + "body": [ + "{% svg bootstrap skip_backward_fill %}" + ] + }, + "skip_end": { + "prefix": "svg.bootstrap.skip_end", + "description": "SVG bootstrap - skip_end", + "body": [ + "{% svg bootstrap skip_end %}" + ] + }, + "skip_end_btn": { + "prefix": "svg.bootstrap.skip_end_btn", + "description": "SVG bootstrap - skip_end_btn", + "body": [ + "{% svg bootstrap skip_end_btn %}" + ] + }, + "skip_end_btn_fill": { + "prefix": "svg.bootstrap.skip_end_btn_fill", + "description": "SVG bootstrap - skip_end_btn_fill", + "body": [ + "{% svg bootstrap skip_end_btn_fill %}" + ] + }, + "skip_end_circle": { + "prefix": "svg.bootstrap.skip_end_circle", + "description": "SVG bootstrap - skip_end_circle", + "body": [ + "{% svg bootstrap skip_end_circle %}" + ] + }, + "skip_end_circle_fill": { + "prefix": "svg.bootstrap.skip_end_circle_fill", + "description": "SVG bootstrap - skip_end_circle_fill", + "body": [ + "{% svg bootstrap skip_end_circle_fill %}" + ] + }, + "skip_end_fill": { + "prefix": "svg.bootstrap.skip_end_fill", + "description": "SVG bootstrap - skip_end_fill", + "body": [ + "{% svg bootstrap skip_end_fill %}" + ] + }, + "skip_forward": { + "prefix": "svg.bootstrap.skip_forward", + "description": "SVG bootstrap - skip_forward", + "body": [ + "{% svg bootstrap skip_forward %}" + ] + }, + "skip_forward_btn": { + "prefix": "svg.bootstrap.skip_forward_btn", + "description": "SVG bootstrap - skip_forward_btn", + "body": [ + "{% svg bootstrap skip_forward_btn %}" + ] + }, + "skip_forward_btn_fill": { + "prefix": "svg.bootstrap.skip_forward_btn_fill", + "description": "SVG bootstrap - skip_forward_btn_fill", + "body": [ + "{% svg bootstrap skip_forward_btn_fill %}" + ] + }, + "skip_forward_circle": { + "prefix": "svg.bootstrap.skip_forward_circle", + "description": "SVG bootstrap - skip_forward_circle", + "body": [ + "{% svg bootstrap skip_forward_circle %}" + ] + }, + "skip_forward_circle_fill": { + "prefix": "svg.bootstrap.skip_forward_circle_fill", + "description": "SVG bootstrap - skip_forward_circle_fill", + "body": [ + "{% svg bootstrap skip_forward_circle_fill %}" + ] + }, + "skip_forward_fill": { + "prefix": "svg.bootstrap.skip_forward_fill", + "description": "SVG bootstrap - skip_forward_fill", + "body": [ + "{% svg bootstrap skip_forward_fill %}" + ] + }, + "skip_start": { + "prefix": "svg.bootstrap.skip_start", + "description": "SVG bootstrap - skip_start", + "body": [ + "{% svg bootstrap skip_start %}" + ] + }, + "skip_start_btn": { + "prefix": "svg.bootstrap.skip_start_btn", + "description": "SVG bootstrap - skip_start_btn", + "body": [ + "{% svg bootstrap skip_start_btn %}" + ] + }, + "skip_start_btn_fill": { + "prefix": "svg.bootstrap.skip_start_btn_fill", + "description": "SVG bootstrap - skip_start_btn_fill", + "body": [ + "{% svg bootstrap skip_start_btn_fill %}" + ] + }, + "skip_start_circle": { + "prefix": "svg.bootstrap.skip_start_circle", + "description": "SVG bootstrap - skip_start_circle", + "body": [ + "{% svg bootstrap skip_start_circle %}" + ] + }, + "skip_start_circle_fill": { + "prefix": "svg.bootstrap.skip_start_circle_fill", + "description": "SVG bootstrap - skip_start_circle_fill", + "body": [ + "{% svg bootstrap skip_start_circle_fill %}" + ] + }, + "skip_start_fill": { + "prefix": "svg.bootstrap.skip_start_fill", + "description": "SVG bootstrap - skip_start_fill", + "body": [ + "{% svg bootstrap skip_start_fill %}" + ] + }, + "skype": { + "prefix": "svg.bootstrap.skype", + "description": "SVG bootstrap - skype", + "body": [ + "{% svg bootstrap skype %}" + ] + }, + "slack": { + "prefix": "svg.bootstrap.slack", + "description": "SVG bootstrap - slack", + "body": [ + "{% svg bootstrap slack %}" + ] + }, + "slash": { + "prefix": "svg.bootstrap.slash", + "description": "SVG bootstrap - slash", + "body": [ + "{% svg bootstrap slash %}" + ] + }, + "slash_circle": { + "prefix": "svg.bootstrap.slash_circle", + "description": "SVG bootstrap - slash_circle", + "body": [ + "{% svg bootstrap slash_circle %}" + ] + }, + "slash_circle_fill": { + "prefix": "svg.bootstrap.slash_circle_fill", + "description": "SVG bootstrap - slash_circle_fill", + "body": [ + "{% svg bootstrap slash_circle_fill %}" + ] + }, + "slash_lg": { + "prefix": "svg.bootstrap.slash_lg", + "description": "SVG bootstrap - slash_lg", + "body": [ + "{% svg bootstrap slash_lg %}" + ] + }, + "slash_square": { + "prefix": "svg.bootstrap.slash_square", + "description": "SVG bootstrap - slash_square", + "body": [ + "{% svg bootstrap slash_square %}" + ] + }, + "slash_square_fill": { + "prefix": "svg.bootstrap.slash_square_fill", + "description": "SVG bootstrap - slash_square_fill", + "body": [ + "{% svg bootstrap slash_square_fill %}" + ] + }, + "sliders": { + "prefix": "svg.bootstrap.sliders", + "description": "SVG bootstrap - sliders", + "body": [ + "{% svg bootstrap sliders %}" + ] + }, + "sliders2": { + "prefix": "svg.bootstrap.sliders2", + "description": "SVG bootstrap - sliders2", + "body": [ + "{% svg bootstrap sliders2 %}" + ] + }, + "sliders2_vertical": { + "prefix": "svg.bootstrap.sliders2_vertical", + "description": "SVG bootstrap - sliders2_vertical", + "body": [ + "{% svg bootstrap sliders2_vertical %}" + ] + }, + "smartwatch": { + "prefix": "svg.bootstrap.smartwatch", + "description": "SVG bootstrap - smartwatch", + "body": [ + "{% svg bootstrap smartwatch %}" + ] + }, + "snapchat": { + "prefix": "svg.bootstrap.snapchat", + "description": "SVG bootstrap - snapchat", + "body": [ + "{% svg bootstrap snapchat %}" + ] + }, + "snow": { + "prefix": "svg.bootstrap.snow", + "description": "SVG bootstrap - snow", + "body": [ + "{% svg bootstrap snow %}" + ] + }, + "snow2": { + "prefix": "svg.bootstrap.snow2", + "description": "SVG bootstrap - snow2", + "body": [ + "{% svg bootstrap snow2 %}" + ] + }, + "snow3": { + "prefix": "svg.bootstrap.snow3", + "description": "SVG bootstrap - snow3", + "body": [ + "{% svg bootstrap snow3 %}" + ] + }, + "sort_alpha_down": { + "prefix": "svg.bootstrap.sort_alpha_down", + "description": "SVG bootstrap - sort_alpha_down", + "body": [ + "{% svg bootstrap sort_alpha_down %}" + ] + }, + "sort_alpha_down_alt": { + "prefix": "svg.bootstrap.sort_alpha_down_alt", + "description": "SVG bootstrap - sort_alpha_down_alt", + "body": [ + "{% svg bootstrap sort_alpha_down_alt %}" + ] + }, + "sort_alpha_up": { + "prefix": "svg.bootstrap.sort_alpha_up", + "description": "SVG bootstrap - sort_alpha_up", + "body": [ + "{% svg bootstrap sort_alpha_up %}" + ] + }, + "sort_alpha_up_alt": { + "prefix": "svg.bootstrap.sort_alpha_up_alt", + "description": "SVG bootstrap - sort_alpha_up_alt", + "body": [ + "{% svg bootstrap sort_alpha_up_alt %}" + ] + }, + "sort_down": { + "prefix": "svg.bootstrap.sort_down", + "description": "SVG bootstrap - sort_down", + "body": [ + "{% svg bootstrap sort_down %}" + ] + }, + "sort_down_alt": { + "prefix": "svg.bootstrap.sort_down_alt", + "description": "SVG bootstrap - sort_down_alt", + "body": [ + "{% svg bootstrap sort_down_alt %}" + ] + }, + "sort_numeric_down": { + "prefix": "svg.bootstrap.sort_numeric_down", + "description": "SVG bootstrap - sort_numeric_down", + "body": [ + "{% svg bootstrap sort_numeric_down %}" + ] + }, + "sort_numeric_down_alt": { + "prefix": "svg.bootstrap.sort_numeric_down_alt", + "description": "SVG bootstrap - sort_numeric_down_alt", + "body": [ + "{% svg bootstrap sort_numeric_down_alt %}" + ] + }, + "sort_numeric_up": { + "prefix": "svg.bootstrap.sort_numeric_up", + "description": "SVG bootstrap - sort_numeric_up", + "body": [ + "{% svg bootstrap sort_numeric_up %}" + ] + }, + "sort_numeric_up_alt": { + "prefix": "svg.bootstrap.sort_numeric_up_alt", + "description": "SVG bootstrap - sort_numeric_up_alt", + "body": [ + "{% svg bootstrap sort_numeric_up_alt %}" + ] + }, + "sort_up": { + "prefix": "svg.bootstrap.sort_up", + "description": "SVG bootstrap - sort_up", + "body": [ + "{% svg bootstrap sort_up %}" + ] + }, + "sort_up_alt": { + "prefix": "svg.bootstrap.sort_up_alt", + "description": "SVG bootstrap - sort_up_alt", + "body": [ + "{% svg bootstrap sort_up_alt %}" + ] + }, + "soundwave": { + "prefix": "svg.bootstrap.soundwave", + "description": "SVG bootstrap - soundwave", + "body": [ + "{% svg bootstrap soundwave %}" + ] + }, + "speaker": { + "prefix": "svg.bootstrap.speaker", + "description": "SVG bootstrap - speaker", + "body": [ + "{% svg bootstrap speaker %}" + ] + }, + "speaker_fill": { + "prefix": "svg.bootstrap.speaker_fill", + "description": "SVG bootstrap - speaker_fill", + "body": [ + "{% svg bootstrap speaker_fill %}" + ] + }, + "speedometer": { + "prefix": "svg.bootstrap.speedometer", + "description": "SVG bootstrap - speedometer", + "body": [ + "{% svg bootstrap speedometer %}" + ] + }, + "speedometer2": { + "prefix": "svg.bootstrap.speedometer2", + "description": "SVG bootstrap - speedometer2", + "body": [ + "{% svg bootstrap speedometer2 %}" + ] + }, + "spellcheck": { + "prefix": "svg.bootstrap.spellcheck", + "description": "SVG bootstrap - spellcheck", + "body": [ + "{% svg bootstrap spellcheck %}" + ] + }, + "spotify": { + "prefix": "svg.bootstrap.spotify", + "description": "SVG bootstrap - spotify", + "body": [ + "{% svg bootstrap spotify %}" + ] + }, + "square": { + "prefix": "svg.bootstrap.square", + "description": "SVG bootstrap - square", + "body": [ + "{% svg bootstrap square %}" + ] + }, + "square_fill": { + "prefix": "svg.bootstrap.square_fill", + "description": "SVG bootstrap - square_fill", + "body": [ + "{% svg bootstrap square_fill %}" + ] + }, + "square_half": { + "prefix": "svg.bootstrap.square_half", + "description": "SVG bootstrap - square_half", + "body": [ + "{% svg bootstrap square_half %}" + ] + }, + "stack": { + "prefix": "svg.bootstrap.stack", + "description": "SVG bootstrap - stack", + "body": [ + "{% svg bootstrap stack %}" + ] + }, + "stack_overflow": { + "prefix": "svg.bootstrap.stack_overflow", + "description": "SVG bootstrap - stack_overflow", + "body": [ + "{% svg bootstrap stack_overflow %}" + ] + }, + "star": { + "prefix": "svg.bootstrap.star", + "description": "SVG bootstrap - star", + "body": [ + "{% svg bootstrap star %}" + ] + }, + "star_fill": { + "prefix": "svg.bootstrap.star_fill", + "description": "SVG bootstrap - star_fill", + "body": [ + "{% svg bootstrap star_fill %}" + ] + }, + "star_half": { + "prefix": "svg.bootstrap.star_half", + "description": "SVG bootstrap - star_half", + "body": [ + "{% svg bootstrap star_half %}" + ] + }, + "stars": { + "prefix": "svg.bootstrap.stars", + "description": "SVG bootstrap - stars", + "body": [ + "{% svg bootstrap stars %}" + ] + }, + "steam": { + "prefix": "svg.bootstrap.steam", + "description": "SVG bootstrap - steam", + "body": [ + "{% svg bootstrap steam %}" + ] + }, + "stickies": { + "prefix": "svg.bootstrap.stickies", + "description": "SVG bootstrap - stickies", + "body": [ + "{% svg bootstrap stickies %}" + ] + }, + "stickies_fill": { + "prefix": "svg.bootstrap.stickies_fill", + "description": "SVG bootstrap - stickies_fill", + "body": [ + "{% svg bootstrap stickies_fill %}" + ] + }, + "sticky": { + "prefix": "svg.bootstrap.sticky", + "description": "SVG bootstrap - sticky", + "body": [ + "{% svg bootstrap sticky %}" + ] + }, + "sticky_fill": { + "prefix": "svg.bootstrap.sticky_fill", + "description": "SVG bootstrap - sticky_fill", + "body": [ + "{% svg bootstrap sticky_fill %}" + ] + }, + "stop": { + "prefix": "svg.bootstrap.stop", + "description": "SVG bootstrap - stop", + "body": [ + "{% svg bootstrap stop %}" + ] + }, + "stop_btn": { + "prefix": "svg.bootstrap.stop_btn", + "description": "SVG bootstrap - stop_btn", + "body": [ + "{% svg bootstrap stop_btn %}" + ] + }, + "stop_btn_fill": { + "prefix": "svg.bootstrap.stop_btn_fill", + "description": "SVG bootstrap - stop_btn_fill", + "body": [ + "{% svg bootstrap stop_btn_fill %}" + ] + }, + "stop_circle": { + "prefix": "svg.bootstrap.stop_circle", + "description": "SVG bootstrap - stop_circle", + "body": [ + "{% svg bootstrap stop_circle %}" + ] + }, + "stop_circle_fill": { + "prefix": "svg.bootstrap.stop_circle_fill", + "description": "SVG bootstrap - stop_circle_fill", + "body": [ + "{% svg bootstrap stop_circle_fill %}" + ] + }, + "stop_fill": { + "prefix": "svg.bootstrap.stop_fill", + "description": "SVG bootstrap - stop_fill", + "body": [ + "{% svg bootstrap stop_fill %}" + ] + }, + "stoplights": { + "prefix": "svg.bootstrap.stoplights", + "description": "SVG bootstrap - stoplights", + "body": [ + "{% svg bootstrap stoplights %}" + ] + }, + "stoplights_fill": { + "prefix": "svg.bootstrap.stoplights_fill", + "description": "SVG bootstrap - stoplights_fill", + "body": [ + "{% svg bootstrap stoplights_fill %}" + ] + }, + "stopwatch": { + "prefix": "svg.bootstrap.stopwatch", + "description": "SVG bootstrap - stopwatch", + "body": [ + "{% svg bootstrap stopwatch %}" + ] + }, + "stopwatch_fill": { + "prefix": "svg.bootstrap.stopwatch_fill", + "description": "SVG bootstrap - stopwatch_fill", + "body": [ + "{% svg bootstrap stopwatch_fill %}" + ] + }, + "strava": { + "prefix": "svg.bootstrap.strava", + "description": "SVG bootstrap - strava", + "body": [ + "{% svg bootstrap strava %}" + ] + }, + "stripe": { + "prefix": "svg.bootstrap.stripe", + "description": "SVG bootstrap - stripe", + "body": [ + "{% svg bootstrap stripe %}" + ] + }, + "subscript": { + "prefix": "svg.bootstrap.subscript", + "description": "SVG bootstrap - subscript", + "body": [ + "{% svg bootstrap subscript %}" + ] + }, + "subtract": { + "prefix": "svg.bootstrap.subtract", + "description": "SVG bootstrap - subtract", + "body": [ + "{% svg bootstrap subtract %}" + ] + }, + "suit_club": { + "prefix": "svg.bootstrap.suit_club", + "description": "SVG bootstrap - suit_club", + "body": [ + "{% svg bootstrap suit_club %}" + ] + }, + "suit_club_fill": { + "prefix": "svg.bootstrap.suit_club_fill", + "description": "SVG bootstrap - suit_club_fill", + "body": [ + "{% svg bootstrap suit_club_fill %}" + ] + }, + "suit_diamond": { + "prefix": "svg.bootstrap.suit_diamond", + "description": "SVG bootstrap - suit_diamond", + "body": [ + "{% svg bootstrap suit_diamond %}" + ] + }, + "suit_diamond_fill": { + "prefix": "svg.bootstrap.suit_diamond_fill", + "description": "SVG bootstrap - suit_diamond_fill", + "body": [ + "{% svg bootstrap suit_diamond_fill %}" + ] + }, + "suit_heart": { + "prefix": "svg.bootstrap.suit_heart", + "description": "SVG bootstrap - suit_heart", + "body": [ + "{% svg bootstrap suit_heart %}" + ] + }, + "suit_heart_fill": { + "prefix": "svg.bootstrap.suit_heart_fill", + "description": "SVG bootstrap - suit_heart_fill", + "body": [ + "{% svg bootstrap suit_heart_fill %}" + ] + }, + "suit_spade": { + "prefix": "svg.bootstrap.suit_spade", + "description": "SVG bootstrap - suit_spade", + "body": [ + "{% svg bootstrap suit_spade %}" + ] + }, + "suit_spade_fill": { + "prefix": "svg.bootstrap.suit_spade_fill", + "description": "SVG bootstrap - suit_spade_fill", + "body": [ + "{% svg bootstrap suit_spade_fill %}" + ] + }, + "sun": { + "prefix": "svg.bootstrap.sun", + "description": "SVG bootstrap - sun", + "body": [ + "{% svg bootstrap sun %}" + ] + }, + "sun_fill": { + "prefix": "svg.bootstrap.sun_fill", + "description": "SVG bootstrap - sun_fill", + "body": [ + "{% svg bootstrap sun_fill %}" + ] + }, + "sunglasses": { + "prefix": "svg.bootstrap.sunglasses", + "description": "SVG bootstrap - sunglasses", + "body": [ + "{% svg bootstrap sunglasses %}" + ] + }, + "sunrise": { + "prefix": "svg.bootstrap.sunrise", + "description": "SVG bootstrap - sunrise", + "body": [ + "{% svg bootstrap sunrise %}" + ] + }, + "sunrise_fill": { + "prefix": "svg.bootstrap.sunrise_fill", + "description": "SVG bootstrap - sunrise_fill", + "body": [ + "{% svg bootstrap sunrise_fill %}" + ] + }, + "sunset": { + "prefix": "svg.bootstrap.sunset", + "description": "SVG bootstrap - sunset", + "body": [ + "{% svg bootstrap sunset %}" + ] + }, + "sunset_fill": { + "prefix": "svg.bootstrap.sunset_fill", + "description": "SVG bootstrap - sunset_fill", + "body": [ + "{% svg bootstrap sunset_fill %}" + ] + }, + "superscript": { + "prefix": "svg.bootstrap.superscript", + "description": "SVG bootstrap - superscript", + "body": [ + "{% svg bootstrap superscript %}" + ] + }, + "symmetry_horizontal": { + "prefix": "svg.bootstrap.symmetry_horizontal", + "description": "SVG bootstrap - symmetry_horizontal", + "body": [ + "{% svg bootstrap symmetry_horizontal %}" + ] + }, + "symmetry_vertical": { + "prefix": "svg.bootstrap.symmetry_vertical", + "description": "SVG bootstrap - symmetry_vertical", + "body": [ + "{% svg bootstrap symmetry_vertical %}" + ] + }, + "table": { + "prefix": "svg.bootstrap.table", + "description": "SVG bootstrap - table", + "body": [ + "{% svg bootstrap table %}" + ] + }, + "tablet": { + "prefix": "svg.bootstrap.tablet", + "description": "SVG bootstrap - tablet", + "body": [ + "{% svg bootstrap tablet %}" + ] + }, + "tablet_fill": { + "prefix": "svg.bootstrap.tablet_fill", + "description": "SVG bootstrap - tablet_fill", + "body": [ + "{% svg bootstrap tablet_fill %}" + ] + }, + "tablet_landscape": { + "prefix": "svg.bootstrap.tablet_landscape", + "description": "SVG bootstrap - tablet_landscape", + "body": [ + "{% svg bootstrap tablet_landscape %}" + ] + }, + "tablet_landscape_fill": { + "prefix": "svg.bootstrap.tablet_landscape_fill", + "description": "SVG bootstrap - tablet_landscape_fill", + "body": [ + "{% svg bootstrap tablet_landscape_fill %}" + ] + }, + "tag": { + "prefix": "svg.bootstrap.tag", + "description": "SVG bootstrap - tag", + "body": [ + "{% svg bootstrap tag %}" + ] + }, + "tag_fill": { + "prefix": "svg.bootstrap.tag_fill", + "description": "SVG bootstrap - tag_fill", + "body": [ + "{% svg bootstrap tag_fill %}" + ] + }, + "tags": { + "prefix": "svg.bootstrap.tags", + "description": "SVG bootstrap - tags", + "body": [ + "{% svg bootstrap tags %}" + ] + }, + "tags_fill": { + "prefix": "svg.bootstrap.tags_fill", + "description": "SVG bootstrap - tags_fill", + "body": [ + "{% svg bootstrap tags_fill %}" + ] + }, + "taxi_front": { + "prefix": "svg.bootstrap.taxi_front", + "description": "SVG bootstrap - taxi_front", + "body": [ + "{% svg bootstrap taxi_front %}" + ] + }, + "taxi_front_fill": { + "prefix": "svg.bootstrap.taxi_front_fill", + "description": "SVG bootstrap - taxi_front_fill", + "body": [ + "{% svg bootstrap taxi_front_fill %}" + ] + }, + "telegram": { + "prefix": "svg.bootstrap.telegram", + "description": "SVG bootstrap - telegram", + "body": [ + "{% svg bootstrap telegram %}" + ] + }, + "telephone": { + "prefix": "svg.bootstrap.telephone", + "description": "SVG bootstrap - telephone", + "body": [ + "{% svg bootstrap telephone %}" + ] + }, + "telephone_fill": { + "prefix": "svg.bootstrap.telephone_fill", + "description": "SVG bootstrap - telephone_fill", + "body": [ + "{% svg bootstrap telephone_fill %}" + ] + }, + "telephone_forward": { + "prefix": "svg.bootstrap.telephone_forward", + "description": "SVG bootstrap - telephone_forward", + "body": [ + "{% svg bootstrap telephone_forward %}" + ] + }, + "telephone_forward_fill": { + "prefix": "svg.bootstrap.telephone_forward_fill", + "description": "SVG bootstrap - telephone_forward_fill", + "body": [ + "{% svg bootstrap telephone_forward_fill %}" + ] + }, + "telephone_inbound": { + "prefix": "svg.bootstrap.telephone_inbound", + "description": "SVG bootstrap - telephone_inbound", + "body": [ + "{% svg bootstrap telephone_inbound %}" + ] + }, + "telephone_inbound_fill": { + "prefix": "svg.bootstrap.telephone_inbound_fill", + "description": "SVG bootstrap - telephone_inbound_fill", + "body": [ + "{% svg bootstrap telephone_inbound_fill %}" + ] + }, + "telephone_minus": { + "prefix": "svg.bootstrap.telephone_minus", + "description": "SVG bootstrap - telephone_minus", + "body": [ + "{% svg bootstrap telephone_minus %}" + ] + }, + "telephone_minus_fill": { + "prefix": "svg.bootstrap.telephone_minus_fill", + "description": "SVG bootstrap - telephone_minus_fill", + "body": [ + "{% svg bootstrap telephone_minus_fill %}" + ] + }, + "telephone_outbound": { + "prefix": "svg.bootstrap.telephone_outbound", + "description": "SVG bootstrap - telephone_outbound", + "body": [ + "{% svg bootstrap telephone_outbound %}" + ] + }, + "telephone_outbound_fill": { + "prefix": "svg.bootstrap.telephone_outbound_fill", + "description": "SVG bootstrap - telephone_outbound_fill", + "body": [ + "{% svg bootstrap telephone_outbound_fill %}" + ] + }, + "telephone_plus": { + "prefix": "svg.bootstrap.telephone_plus", + "description": "SVG bootstrap - telephone_plus", + "body": [ + "{% svg bootstrap telephone_plus %}" + ] + }, + "telephone_plus_fill": { + "prefix": "svg.bootstrap.telephone_plus_fill", + "description": "SVG bootstrap - telephone_plus_fill", + "body": [ + "{% svg bootstrap telephone_plus_fill %}" + ] + }, + "telephone_x": { + "prefix": "svg.bootstrap.telephone_x", + "description": "SVG bootstrap - telephone_x", + "body": [ + "{% svg bootstrap telephone_x %}" + ] + }, + "telephone_x_fill": { + "prefix": "svg.bootstrap.telephone_x_fill", + "description": "SVG bootstrap - telephone_x_fill", + "body": [ + "{% svg bootstrap telephone_x_fill %}" + ] + }, + "tencent_qq": { + "prefix": "svg.bootstrap.tencent_qq", + "description": "SVG bootstrap - tencent_qq", + "body": [ + "{% svg bootstrap tencent_qq %}" + ] + }, + "terminal": { + "prefix": "svg.bootstrap.terminal", + "description": "SVG bootstrap - terminal", + "body": [ + "{% svg bootstrap terminal %}" + ] + }, + "terminal_dash": { + "prefix": "svg.bootstrap.terminal_dash", + "description": "SVG bootstrap - terminal_dash", + "body": [ + "{% svg bootstrap terminal_dash %}" + ] + }, + "terminal_fill": { + "prefix": "svg.bootstrap.terminal_fill", + "description": "SVG bootstrap - terminal_fill", + "body": [ + "{% svg bootstrap terminal_fill %}" + ] + }, + "terminal_plus": { + "prefix": "svg.bootstrap.terminal_plus", + "description": "SVG bootstrap - terminal_plus", + "body": [ + "{% svg bootstrap terminal_plus %}" + ] + }, + "terminal_split": { + "prefix": "svg.bootstrap.terminal_split", + "description": "SVG bootstrap - terminal_split", + "body": [ + "{% svg bootstrap terminal_split %}" + ] + }, + "terminal_x": { + "prefix": "svg.bootstrap.terminal_x", + "description": "SVG bootstrap - terminal_x", + "body": [ + "{% svg bootstrap terminal_x %}" + ] + }, + "text_center": { + "prefix": "svg.bootstrap.text_center", + "description": "SVG bootstrap - text_center", + "body": [ + "{% svg bootstrap text_center %}" + ] + }, + "text_indent_left": { + "prefix": "svg.bootstrap.text_indent_left", + "description": "SVG bootstrap - text_indent_left", + "body": [ + "{% svg bootstrap text_indent_left %}" + ] + }, + "text_indent_right": { + "prefix": "svg.bootstrap.text_indent_right", + "description": "SVG bootstrap - text_indent_right", + "body": [ + "{% svg bootstrap text_indent_right %}" + ] + }, + "text_left": { + "prefix": "svg.bootstrap.text_left", + "description": "SVG bootstrap - text_left", + "body": [ + "{% svg bootstrap text_left %}" + ] + }, + "text_paragraph": { + "prefix": "svg.bootstrap.text_paragraph", + "description": "SVG bootstrap - text_paragraph", + "body": [ + "{% svg bootstrap text_paragraph %}" + ] + }, + "text_right": { + "prefix": "svg.bootstrap.text_right", + "description": "SVG bootstrap - text_right", + "body": [ + "{% svg bootstrap text_right %}" + ] + }, + "text_wrap": { + "prefix": "svg.bootstrap.text_wrap", + "description": "SVG bootstrap - text_wrap", + "body": [ + "{% svg bootstrap text_wrap %}" + ] + }, + "textarea": { + "prefix": "svg.bootstrap.textarea", + "description": "SVG bootstrap - textarea", + "body": [ + "{% svg bootstrap textarea %}" + ] + }, + "textarea_resize": { + "prefix": "svg.bootstrap.textarea_resize", + "description": "SVG bootstrap - textarea_resize", + "body": [ + "{% svg bootstrap textarea_resize %}" + ] + }, + "textarea_t": { + "prefix": "svg.bootstrap.textarea_t", + "description": "SVG bootstrap - textarea_t", + "body": [ + "{% svg bootstrap textarea_t %}" + ] + }, + "thermometer": { + "prefix": "svg.bootstrap.thermometer", + "description": "SVG bootstrap - thermometer", + "body": [ + "{% svg bootstrap thermometer %}" + ] + }, + "thermometer_half": { + "prefix": "svg.bootstrap.thermometer_half", + "description": "SVG bootstrap - thermometer_half", + "body": [ + "{% svg bootstrap thermometer_half %}" + ] + }, + "thermometer_high": { + "prefix": "svg.bootstrap.thermometer_high", + "description": "SVG bootstrap - thermometer_high", + "body": [ + "{% svg bootstrap thermometer_high %}" + ] + }, + "thermometer_low": { + "prefix": "svg.bootstrap.thermometer_low", + "description": "SVG bootstrap - thermometer_low", + "body": [ + "{% svg bootstrap thermometer_low %}" + ] + }, + "thermometer_snow": { + "prefix": "svg.bootstrap.thermometer_snow", + "description": "SVG bootstrap - thermometer_snow", + "body": [ + "{% svg bootstrap thermometer_snow %}" + ] + }, + "thermometer_sun": { + "prefix": "svg.bootstrap.thermometer_sun", + "description": "SVG bootstrap - thermometer_sun", + "body": [ + "{% svg bootstrap thermometer_sun %}" + ] + }, + "three_dots": { + "prefix": "svg.bootstrap.three_dots", + "description": "SVG bootstrap - three_dots", + "body": [ + "{% svg bootstrap three_dots %}" + ] + }, + "three_dots_vertical": { + "prefix": "svg.bootstrap.three_dots_vertical", + "description": "SVG bootstrap - three_dots_vertical", + "body": [ + "{% svg bootstrap three_dots_vertical %}" + ] + }, + "thunderbolt": { + "prefix": "svg.bootstrap.thunderbolt", + "description": "SVG bootstrap - thunderbolt", + "body": [ + "{% svg bootstrap thunderbolt %}" + ] + }, + "thunderbolt_fill": { + "prefix": "svg.bootstrap.thunderbolt_fill", + "description": "SVG bootstrap - thunderbolt_fill", + "body": [ + "{% svg bootstrap thunderbolt_fill %}" + ] + }, + "ticket": { + "prefix": "svg.bootstrap.ticket", + "description": "SVG bootstrap - ticket", + "body": [ + "{% svg bootstrap ticket %}" + ] + }, + "ticket_detailed": { + "prefix": "svg.bootstrap.ticket_detailed", + "description": "SVG bootstrap - ticket_detailed", + "body": [ + "{% svg bootstrap ticket_detailed %}" + ] + }, + "ticket_detailed_fill": { + "prefix": "svg.bootstrap.ticket_detailed_fill", + "description": "SVG bootstrap - ticket_detailed_fill", + "body": [ + "{% svg bootstrap ticket_detailed_fill %}" + ] + }, + "ticket_fill": { + "prefix": "svg.bootstrap.ticket_fill", + "description": "SVG bootstrap - ticket_fill", + "body": [ + "{% svg bootstrap ticket_fill %}" + ] + }, + "ticket_perforated": { + "prefix": "svg.bootstrap.ticket_perforated", + "description": "SVG bootstrap - ticket_perforated", + "body": [ + "{% svg bootstrap ticket_perforated %}" + ] + }, + "ticket_perforated_fill": { + "prefix": "svg.bootstrap.ticket_perforated_fill", + "description": "SVG bootstrap - ticket_perforated_fill", + "body": [ + "{% svg bootstrap ticket_perforated_fill %}" + ] + }, + "tiktok": { + "prefix": "svg.bootstrap.tiktok", + "description": "SVG bootstrap - tiktok", + "body": [ + "{% svg bootstrap tiktok %}" + ] + }, + "toggle2_off": { + "prefix": "svg.bootstrap.toggle2_off", + "description": "SVG bootstrap - toggle2_off", + "body": [ + "{% svg bootstrap toggle2_off %}" + ] + }, + "toggle2_on": { + "prefix": "svg.bootstrap.toggle2_on", + "description": "SVG bootstrap - toggle2_on", + "body": [ + "{% svg bootstrap toggle2_on %}" + ] + }, + "toggle_off": { + "prefix": "svg.bootstrap.toggle_off", + "description": "SVG bootstrap - toggle_off", + "body": [ + "{% svg bootstrap toggle_off %}" + ] + }, + "toggle_on": { + "prefix": "svg.bootstrap.toggle_on", + "description": "SVG bootstrap - toggle_on", + "body": [ + "{% svg bootstrap toggle_on %}" + ] + }, + "toggles": { + "prefix": "svg.bootstrap.toggles", + "description": "SVG bootstrap - toggles", + "body": [ + "{% svg bootstrap toggles %}" + ] + }, + "toggles2": { + "prefix": "svg.bootstrap.toggles2", + "description": "SVG bootstrap - toggles2", + "body": [ + "{% svg bootstrap toggles2 %}" + ] + }, + "tools": { + "prefix": "svg.bootstrap.tools", + "description": "SVG bootstrap - tools", + "body": [ + "{% svg bootstrap tools %}" + ] + }, + "tornado": { + "prefix": "svg.bootstrap.tornado", + "description": "SVG bootstrap - tornado", + "body": [ + "{% svg bootstrap tornado %}" + ] + }, + "train_freight_front": { + "prefix": "svg.bootstrap.train_freight_front", + "description": "SVG bootstrap - train_freight_front", + "body": [ + "{% svg bootstrap train_freight_front %}" + ] + }, + "train_freight_front_fill": { + "prefix": "svg.bootstrap.train_freight_front_fill", + "description": "SVG bootstrap - train_freight_front_fill", + "body": [ + "{% svg bootstrap train_freight_front_fill %}" + ] + }, + "train_front": { + "prefix": "svg.bootstrap.train_front", + "description": "SVG bootstrap - train_front", + "body": [ + "{% svg bootstrap train_front %}" + ] + }, + "train_front_fill": { + "prefix": "svg.bootstrap.train_front_fill", + "description": "SVG bootstrap - train_front_fill", + "body": [ + "{% svg bootstrap train_front_fill %}" + ] + }, + "train_lightrail_front": { + "prefix": "svg.bootstrap.train_lightrail_front", + "description": "SVG bootstrap - train_lightrail_front", + "body": [ + "{% svg bootstrap train_lightrail_front %}" + ] + }, + "train_lightrail_front_fill": { + "prefix": "svg.bootstrap.train_lightrail_front_fill", + "description": "SVG bootstrap - train_lightrail_front_fill", + "body": [ + "{% svg bootstrap train_lightrail_front_fill %}" + ] + }, + "translate": { + "prefix": "svg.bootstrap.translate", + "description": "SVG bootstrap - translate", + "body": [ + "{% svg bootstrap translate %}" + ] + }, + "trash": { + "prefix": "svg.bootstrap.trash", + "description": "SVG bootstrap - trash", + "body": [ + "{% svg bootstrap trash %}" + ] + }, + "trash2": { + "prefix": "svg.bootstrap.trash2", + "description": "SVG bootstrap - trash2", + "body": [ + "{% svg bootstrap trash2 %}" + ] + }, + "trash2_fill": { + "prefix": "svg.bootstrap.trash2_fill", + "description": "SVG bootstrap - trash2_fill", + "body": [ + "{% svg bootstrap trash2_fill %}" + ] + }, + "trash3": { + "prefix": "svg.bootstrap.trash3", + "description": "SVG bootstrap - trash3", + "body": [ + "{% svg bootstrap trash3 %}" + ] + }, + "trash3_fill": { + "prefix": "svg.bootstrap.trash3_fill", + "description": "SVG bootstrap - trash3_fill", + "body": [ + "{% svg bootstrap trash3_fill %}" + ] + }, + "trash_fill": { + "prefix": "svg.bootstrap.trash_fill", + "description": "SVG bootstrap - trash_fill", + "body": [ + "{% svg bootstrap trash_fill %}" + ] + }, + "tree": { + "prefix": "svg.bootstrap.tree", + "description": "SVG bootstrap - tree", + "body": [ + "{% svg bootstrap tree %}" + ] + }, + "tree_fill": { + "prefix": "svg.bootstrap.tree_fill", + "description": "SVG bootstrap - tree_fill", + "body": [ + "{% svg bootstrap tree_fill %}" + ] + }, + "trello": { + "prefix": "svg.bootstrap.trello", + "description": "SVG bootstrap - trello", + "body": [ + "{% svg bootstrap trello %}" + ] + }, + "triangle": { + "prefix": "svg.bootstrap.triangle", + "description": "SVG bootstrap - triangle", + "body": [ + "{% svg bootstrap triangle %}" + ] + }, + "triangle_fill": { + "prefix": "svg.bootstrap.triangle_fill", + "description": "SVG bootstrap - triangle_fill", + "body": [ + "{% svg bootstrap triangle_fill %}" + ] + }, + "triangle_half": { + "prefix": "svg.bootstrap.triangle_half", + "description": "SVG bootstrap - triangle_half", + "body": [ + "{% svg bootstrap triangle_half %}" + ] + }, + "trophy": { + "prefix": "svg.bootstrap.trophy", + "description": "SVG bootstrap - trophy", + "body": [ + "{% svg bootstrap trophy %}" + ] + }, + "trophy_fill": { + "prefix": "svg.bootstrap.trophy_fill", + "description": "SVG bootstrap - trophy_fill", + "body": [ + "{% svg bootstrap trophy_fill %}" + ] + }, + "tropical_storm": { + "prefix": "svg.bootstrap.tropical_storm", + "description": "SVG bootstrap - tropical_storm", + "body": [ + "{% svg bootstrap tropical_storm %}" + ] + }, + "truck": { + "prefix": "svg.bootstrap.truck", + "description": "SVG bootstrap - truck", + "body": [ + "{% svg bootstrap truck %}" + ] + }, + "truck_flatbed": { + "prefix": "svg.bootstrap.truck_flatbed", + "description": "SVG bootstrap - truck_flatbed", + "body": [ + "{% svg bootstrap truck_flatbed %}" + ] + }, + "truck_front": { + "prefix": "svg.bootstrap.truck_front", + "description": "SVG bootstrap - truck_front", + "body": [ + "{% svg bootstrap truck_front %}" + ] + }, + "truck_front_fill": { + "prefix": "svg.bootstrap.truck_front_fill", + "description": "SVG bootstrap - truck_front_fill", + "body": [ + "{% svg bootstrap truck_front_fill %}" + ] + }, + "tsunami": { + "prefix": "svg.bootstrap.tsunami", + "description": "SVG bootstrap - tsunami", + "body": [ + "{% svg bootstrap tsunami %}" + ] + }, + "tv": { + "prefix": "svg.bootstrap.tv", + "description": "SVG bootstrap - tv", + "body": [ + "{% svg bootstrap tv %}" + ] + }, + "tv_fill": { + "prefix": "svg.bootstrap.tv_fill", + "description": "SVG bootstrap - tv_fill", + "body": [ + "{% svg bootstrap tv_fill %}" + ] + }, + "twitch": { + "prefix": "svg.bootstrap.twitch", + "description": "SVG bootstrap - twitch", + "body": [ + "{% svg bootstrap twitch %}" + ] + }, + "twitter": { + "prefix": "svg.bootstrap.twitter", + "description": "SVG bootstrap - twitter", + "body": [ + "{% svg bootstrap twitter %}" + ] + }, + "type": { + "prefix": "svg.bootstrap.type", + "description": "SVG bootstrap - type", + "body": [ + "{% svg bootstrap type %}" + ] + }, + "type_bold": { + "prefix": "svg.bootstrap.type_bold", + "description": "SVG bootstrap - type_bold", + "body": [ + "{% svg bootstrap type_bold %}" + ] + }, + "type_h1": { + "prefix": "svg.bootstrap.type_h1", + "description": "SVG bootstrap - type_h1", + "body": [ + "{% svg bootstrap type_h1 %}" + ] + }, + "type_h2": { + "prefix": "svg.bootstrap.type_h2", + "description": "SVG bootstrap - type_h2", + "body": [ + "{% svg bootstrap type_h2 %}" + ] + }, + "type_h3": { + "prefix": "svg.bootstrap.type_h3", + "description": "SVG bootstrap - type_h3", + "body": [ + "{% svg bootstrap type_h3 %}" + ] + }, + "type_italic": { + "prefix": "svg.bootstrap.type_italic", + "description": "SVG bootstrap - type_italic", + "body": [ + "{% svg bootstrap type_italic %}" + ] + }, + "type_strikethrough": { + "prefix": "svg.bootstrap.type_strikethrough", + "description": "SVG bootstrap - type_strikethrough", + "body": [ + "{% svg bootstrap type_strikethrough %}" + ] + }, + "type_underline": { + "prefix": "svg.bootstrap.type_underline", + "description": "SVG bootstrap - type_underline", + "body": [ + "{% svg bootstrap type_underline %}" + ] + }, + "ubuntu": { + "prefix": "svg.bootstrap.ubuntu", + "description": "SVG bootstrap - ubuntu", + "body": [ + "{% svg bootstrap ubuntu %}" + ] + }, + "ui_checks": { + "prefix": "svg.bootstrap.ui_checks", + "description": "SVG bootstrap - ui_checks", + "body": [ + "{% svg bootstrap ui_checks %}" + ] + }, + "ui_checks_grid": { + "prefix": "svg.bootstrap.ui_checks_grid", + "description": "SVG bootstrap - ui_checks_grid", + "body": [ + "{% svg bootstrap ui_checks_grid %}" + ] + }, + "ui_radios": { + "prefix": "svg.bootstrap.ui_radios", + "description": "SVG bootstrap - ui_radios", + "body": [ + "{% svg bootstrap ui_radios %}" + ] + }, + "ui_radios_grid": { + "prefix": "svg.bootstrap.ui_radios_grid", + "description": "SVG bootstrap - ui_radios_grid", + "body": [ + "{% svg bootstrap ui_radios_grid %}" + ] + }, + "umbrella": { + "prefix": "svg.bootstrap.umbrella", + "description": "SVG bootstrap - umbrella", + "body": [ + "{% svg bootstrap umbrella %}" + ] + }, + "umbrella_fill": { + "prefix": "svg.bootstrap.umbrella_fill", + "description": "SVG bootstrap - umbrella_fill", + "body": [ + "{% svg bootstrap umbrella_fill %}" + ] + }, + "unindent": { + "prefix": "svg.bootstrap.unindent", + "description": "SVG bootstrap - unindent", + "body": [ + "{% svg bootstrap unindent %}" + ] + }, + "union": { + "prefix": "svg.bootstrap.union", + "description": "SVG bootstrap - union", + "body": [ + "{% svg bootstrap union %}" + ] + }, + "unity": { + "prefix": "svg.bootstrap.unity", + "description": "SVG bootstrap - unity", + "body": [ + "{% svg bootstrap unity %}" + ] + }, + "universal_access": { + "prefix": "svg.bootstrap.universal_access", + "description": "SVG bootstrap - universal_access", + "body": [ + "{% svg bootstrap universal_access %}" + ] + }, + "universal_access_circle": { + "prefix": "svg.bootstrap.universal_access_circle", + "description": "SVG bootstrap - universal_access_circle", + "body": [ + "{% svg bootstrap universal_access_circle %}" + ] + }, + "unlock": { + "prefix": "svg.bootstrap.unlock", + "description": "SVG bootstrap - unlock", + "body": [ + "{% svg bootstrap unlock %}" + ] + }, + "unlock_fill": { + "prefix": "svg.bootstrap.unlock_fill", + "description": "SVG bootstrap - unlock_fill", + "body": [ + "{% svg bootstrap unlock_fill %}" + ] + }, + "upc": { + "prefix": "svg.bootstrap.upc", + "description": "SVG bootstrap - upc", + "body": [ + "{% svg bootstrap upc %}" + ] + }, + "upc_scan": { + "prefix": "svg.bootstrap.upc_scan", + "description": "SVG bootstrap - upc_scan", + "body": [ + "{% svg bootstrap upc_scan %}" + ] + }, + "upload": { + "prefix": "svg.bootstrap.upload", + "description": "SVG bootstrap - upload", + "body": [ + "{% svg bootstrap upload %}" + ] + }, + "usb": { + "prefix": "svg.bootstrap.usb", + "description": "SVG bootstrap - usb", + "body": [ + "{% svg bootstrap usb %}" + ] + }, + "usb_c": { + "prefix": "svg.bootstrap.usb_c", + "description": "SVG bootstrap - usb_c", + "body": [ + "{% svg bootstrap usb_c %}" + ] + }, + "usb_c_fill": { + "prefix": "svg.bootstrap.usb_c_fill", + "description": "SVG bootstrap - usb_c_fill", + "body": [ + "{% svg bootstrap usb_c_fill %}" + ] + }, + "usb_drive": { + "prefix": "svg.bootstrap.usb_drive", + "description": "SVG bootstrap - usb_drive", + "body": [ + "{% svg bootstrap usb_drive %}" + ] + }, + "usb_drive_fill": { + "prefix": "svg.bootstrap.usb_drive_fill", + "description": "SVG bootstrap - usb_drive_fill", + "body": [ + "{% svg bootstrap usb_drive_fill %}" + ] + }, + "usb_fill": { + "prefix": "svg.bootstrap.usb_fill", + "description": "SVG bootstrap - usb_fill", + "body": [ + "{% svg bootstrap usb_fill %}" + ] + }, + "usb_micro": { + "prefix": "svg.bootstrap.usb_micro", + "description": "SVG bootstrap - usb_micro", + "body": [ + "{% svg bootstrap usb_micro %}" + ] + }, + "usb_micro_fill": { + "prefix": "svg.bootstrap.usb_micro_fill", + "description": "SVG bootstrap - usb_micro_fill", + "body": [ + "{% svg bootstrap usb_micro_fill %}" + ] + }, + "usb_mini": { + "prefix": "svg.bootstrap.usb_mini", + "description": "SVG bootstrap - usb_mini", + "body": [ + "{% svg bootstrap usb_mini %}" + ] + }, + "usb_mini_fill": { + "prefix": "svg.bootstrap.usb_mini_fill", + "description": "SVG bootstrap - usb_mini_fill", + "body": [ + "{% svg bootstrap usb_mini_fill %}" + ] + }, + "usb_plug": { + "prefix": "svg.bootstrap.usb_plug", + "description": "SVG bootstrap - usb_plug", + "body": [ + "{% svg bootstrap usb_plug %}" + ] + }, + "usb_plug_fill": { + "prefix": "svg.bootstrap.usb_plug_fill", + "description": "SVG bootstrap - usb_plug_fill", + "body": [ + "{% svg bootstrap usb_plug_fill %}" + ] + }, + "usb_symbol": { + "prefix": "svg.bootstrap.usb_symbol", + "description": "SVG bootstrap - usb_symbol", + "body": [ + "{% svg bootstrap usb_symbol %}" + ] + }, + "valentine": { + "prefix": "svg.bootstrap.valentine", + "description": "SVG bootstrap - valentine", + "body": [ + "{% svg bootstrap valentine %}" + ] + }, + "valentine2": { + "prefix": "svg.bootstrap.valentine2", + "description": "SVG bootstrap - valentine2", + "body": [ + "{% svg bootstrap valentine2 %}" + ] + }, + "vector_pen": { + "prefix": "svg.bootstrap.vector_pen", + "description": "SVG bootstrap - vector_pen", + "body": [ + "{% svg bootstrap vector_pen %}" + ] + }, + "view_list": { + "prefix": "svg.bootstrap.view_list", + "description": "SVG bootstrap - view_list", + "body": [ + "{% svg bootstrap view_list %}" + ] + }, + "view_stacked": { + "prefix": "svg.bootstrap.view_stacked", + "description": "SVG bootstrap - view_stacked", + "body": [ + "{% svg bootstrap view_stacked %}" + ] + }, + "vimeo": { + "prefix": "svg.bootstrap.vimeo", + "description": "SVG bootstrap - vimeo", + "body": [ + "{% svg bootstrap vimeo %}" + ] + }, + "vinyl": { + "prefix": "svg.bootstrap.vinyl", + "description": "SVG bootstrap - vinyl", + "body": [ + "{% svg bootstrap vinyl %}" + ] + }, + "vinyl_fill": { + "prefix": "svg.bootstrap.vinyl_fill", + "description": "SVG bootstrap - vinyl_fill", + "body": [ + "{% svg bootstrap vinyl_fill %}" + ] + }, + "virus": { + "prefix": "svg.bootstrap.virus", + "description": "SVG bootstrap - virus", + "body": [ + "{% svg bootstrap virus %}" + ] + }, + "virus2": { + "prefix": "svg.bootstrap.virus2", + "description": "SVG bootstrap - virus2", + "body": [ + "{% svg bootstrap virus2 %}" + ] + }, + "voicemail": { + "prefix": "svg.bootstrap.voicemail", + "description": "SVG bootstrap - voicemail", + "body": [ + "{% svg bootstrap voicemail %}" + ] + }, + "volume_down": { + "prefix": "svg.bootstrap.volume_down", + "description": "SVG bootstrap - volume_down", + "body": [ + "{% svg bootstrap volume_down %}" + ] + }, + "volume_down_fill": { + "prefix": "svg.bootstrap.volume_down_fill", + "description": "SVG bootstrap - volume_down_fill", + "body": [ + "{% svg bootstrap volume_down_fill %}" + ] + }, + "volume_mute": { + "prefix": "svg.bootstrap.volume_mute", + "description": "SVG bootstrap - volume_mute", + "body": [ + "{% svg bootstrap volume_mute %}" + ] + }, + "volume_mute_fill": { + "prefix": "svg.bootstrap.volume_mute_fill", + "description": "SVG bootstrap - volume_mute_fill", + "body": [ + "{% svg bootstrap volume_mute_fill %}" + ] + }, + "volume_off": { + "prefix": "svg.bootstrap.volume_off", + "description": "SVG bootstrap - volume_off", + "body": [ + "{% svg bootstrap volume_off %}" + ] + }, + "volume_off_fill": { + "prefix": "svg.bootstrap.volume_off_fill", + "description": "SVG bootstrap - volume_off_fill", + "body": [ + "{% svg bootstrap volume_off_fill %}" + ] + }, + "volume_up": { + "prefix": "svg.bootstrap.volume_up", + "description": "SVG bootstrap - volume_up", + "body": [ + "{% svg bootstrap volume_up %}" + ] + }, + "volume_up_fill": { + "prefix": "svg.bootstrap.volume_up_fill", + "description": "SVG bootstrap - volume_up_fill", + "body": [ + "{% svg bootstrap volume_up_fill %}" + ] + }, + "vr": { + "prefix": "svg.bootstrap.vr", + "description": "SVG bootstrap - vr", + "body": [ + "{% svg bootstrap vr %}" + ] + }, + "wallet": { + "prefix": "svg.bootstrap.wallet", + "description": "SVG bootstrap - wallet", + "body": [ + "{% svg bootstrap wallet %}" + ] + }, + "wallet2": { + "prefix": "svg.bootstrap.wallet2", + "description": "SVG bootstrap - wallet2", + "body": [ + "{% svg bootstrap wallet2 %}" + ] + }, + "wallet_fill": { + "prefix": "svg.bootstrap.wallet_fill", + "description": "SVG bootstrap - wallet_fill", + "body": [ + "{% svg bootstrap wallet_fill %}" + ] + }, + "watch": { + "prefix": "svg.bootstrap.watch", + "description": "SVG bootstrap - watch", + "body": [ + "{% svg bootstrap watch %}" + ] + }, + "water": { + "prefix": "svg.bootstrap.water", + "description": "SVG bootstrap - water", + "body": [ + "{% svg bootstrap water %}" + ] + }, + "webcam": { + "prefix": "svg.bootstrap.webcam", + "description": "SVG bootstrap - webcam", + "body": [ + "{% svg bootstrap webcam %}" + ] + }, + "webcam_fill": { + "prefix": "svg.bootstrap.webcam_fill", + "description": "SVG bootstrap - webcam_fill", + "body": [ + "{% svg bootstrap webcam_fill %}" + ] + }, + "wechat": { + "prefix": "svg.bootstrap.wechat", + "description": "SVG bootstrap - wechat", + "body": [ + "{% svg bootstrap wechat %}" + ] + }, + "whatsapp": { + "prefix": "svg.bootstrap.whatsapp", + "description": "SVG bootstrap - whatsapp", + "body": [ + "{% svg bootstrap whatsapp %}" + ] + }, + "wifi": { + "prefix": "svg.bootstrap.wifi", + "description": "SVG bootstrap - wifi", + "body": [ + "{% svg bootstrap wifi %}" + ] + }, + "wifi_1": { + "prefix": "svg.bootstrap.wifi_1", + "description": "SVG bootstrap - wifi_1", + "body": [ + "{% svg bootstrap wifi_1 %}" + ] + }, + "wifi_2": { + "prefix": "svg.bootstrap.wifi_2", + "description": "SVG bootstrap - wifi_2", + "body": [ + "{% svg bootstrap wifi_2 %}" + ] + }, + "wifi_off": { + "prefix": "svg.bootstrap.wifi_off", + "description": "SVG bootstrap - wifi_off", + "body": [ + "{% svg bootstrap wifi_off %}" + ] + }, + "wikipedia": { + "prefix": "svg.bootstrap.wikipedia", + "description": "SVG bootstrap - wikipedia", + "body": [ + "{% svg bootstrap wikipedia %}" + ] + }, + "wind": { + "prefix": "svg.bootstrap.wind", + "description": "SVG bootstrap - wind", + "body": [ + "{% svg bootstrap wind %}" + ] + }, + "window": { + "prefix": "svg.bootstrap.window", + "description": "SVG bootstrap - window", + "body": [ + "{% svg bootstrap window %}" + ] + }, + "window_dash": { + "prefix": "svg.bootstrap.window_dash", + "description": "SVG bootstrap - window_dash", + "body": [ + "{% svg bootstrap window_dash %}" + ] + }, + "window_desktop": { + "prefix": "svg.bootstrap.window_desktop", + "description": "SVG bootstrap - window_desktop", + "body": [ + "{% svg bootstrap window_desktop %}" + ] + }, + "window_dock": { + "prefix": "svg.bootstrap.window_dock", + "description": "SVG bootstrap - window_dock", + "body": [ + "{% svg bootstrap window_dock %}" + ] + }, + "window_fullscreen": { + "prefix": "svg.bootstrap.window_fullscreen", + "description": "SVG bootstrap - window_fullscreen", + "body": [ + "{% svg bootstrap window_fullscreen %}" + ] + }, + "window_plus": { + "prefix": "svg.bootstrap.window_plus", + "description": "SVG bootstrap - window_plus", + "body": [ + "{% svg bootstrap window_plus %}" + ] + }, + "window_sidebar": { + "prefix": "svg.bootstrap.window_sidebar", + "description": "SVG bootstrap - window_sidebar", + "body": [ + "{% svg bootstrap window_sidebar %}" + ] + }, + "window_split": { + "prefix": "svg.bootstrap.window_split", + "description": "SVG bootstrap - window_split", + "body": [ + "{% svg bootstrap window_split %}" + ] + }, + "window_stack": { + "prefix": "svg.bootstrap.window_stack", + "description": "SVG bootstrap - window_stack", + "body": [ + "{% svg bootstrap window_stack %}" + ] + }, + "window_x": { + "prefix": "svg.bootstrap.window_x", + "description": "SVG bootstrap - window_x", + "body": [ + "{% svg bootstrap window_x %}" + ] + }, + "windows": { + "prefix": "svg.bootstrap.windows", + "description": "SVG bootstrap - windows", + "body": [ + "{% svg bootstrap windows %}" + ] + }, + "wordpress": { + "prefix": "svg.bootstrap.wordpress", + "description": "SVG bootstrap - wordpress", + "body": [ + "{% svg bootstrap wordpress %}" + ] + }, + "wrench": { + "prefix": "svg.bootstrap.wrench", + "description": "SVG bootstrap - wrench", + "body": [ + "{% svg bootstrap wrench %}" + ] + }, + "wrench_adjustable": { + "prefix": "svg.bootstrap.wrench_adjustable", + "description": "SVG bootstrap - wrench_adjustable", + "body": [ + "{% svg bootstrap wrench_adjustable %}" + ] + }, + "wrench_adjustable_circle": { + "prefix": "svg.bootstrap.wrench_adjustable_circle", + "description": "SVG bootstrap - wrench_adjustable_circle", + "body": [ + "{% svg bootstrap wrench_adjustable_circle %}" + ] + }, + "wrench_adjustable_circle_fill": { + "prefix": "svg.bootstrap.wrench_adjustable_circle_fill", + "description": "SVG bootstrap - wrench_adjustable_circle_fill", + "body": [ + "{% svg bootstrap wrench_adjustable_circle_fill %}" + ] + }, + "x": { + "prefix": "svg.bootstrap.x", + "description": "SVG bootstrap - x", + "body": [ + "{% svg bootstrap x %}" + ] + }, + "x_circle": { + "prefix": "svg.bootstrap.x_circle", + "description": "SVG bootstrap - x_circle", + "body": [ + "{% svg bootstrap x_circle %}" + ] + }, + "x_circle_fill": { + "prefix": "svg.bootstrap.x_circle_fill", + "description": "SVG bootstrap - x_circle_fill", + "body": [ + "{% svg bootstrap x_circle_fill %}" + ] + }, + "x_diamond": { + "prefix": "svg.bootstrap.x_diamond", + "description": "SVG bootstrap - x_diamond", + "body": [ + "{% svg bootstrap x_diamond %}" + ] + }, + "x_diamond_fill": { + "prefix": "svg.bootstrap.x_diamond_fill", + "description": "SVG bootstrap - x_diamond_fill", + "body": [ + "{% svg bootstrap x_diamond_fill %}" + ] + }, + "x_lg": { + "prefix": "svg.bootstrap.x_lg", + "description": "SVG bootstrap - x_lg", + "body": [ + "{% svg bootstrap x_lg %}" + ] + }, + "x_octagon": { + "prefix": "svg.bootstrap.x_octagon", + "description": "SVG bootstrap - x_octagon", + "body": [ + "{% svg bootstrap x_octagon %}" + ] + }, + "x_octagon_fill": { + "prefix": "svg.bootstrap.x_octagon_fill", + "description": "SVG bootstrap - x_octagon_fill", + "body": [ + "{% svg bootstrap x_octagon_fill %}" + ] + }, + "x_square": { + "prefix": "svg.bootstrap.x_square", + "description": "SVG bootstrap - x_square", + "body": [ + "{% svg bootstrap x_square %}" + ] + }, + "x_square_fill": { + "prefix": "svg.bootstrap.x_square_fill", + "description": "SVG bootstrap - x_square_fill", + "body": [ + "{% svg bootstrap x_square_fill %}" + ] + }, + "xbox": { + "prefix": "svg.bootstrap.xbox", + "description": "SVG bootstrap - xbox", + "body": [ + "{% svg bootstrap xbox %}" + ] + }, + "yelp": { + "prefix": "svg.bootstrap.yelp", + "description": "SVG bootstrap - yelp", + "body": [ + "{% svg bootstrap yelp %}" + ] + }, + "yin_yang": { + "prefix": "svg.bootstrap.yin_yang", + "description": "SVG bootstrap - yin_yang", + "body": [ + "{% svg bootstrap yin_yang %}" + ] + }, + "youtube": { + "prefix": "svg.bootstrap.youtube", + "description": "SVG bootstrap - youtube", + "body": [ + "{% svg bootstrap youtube %}" + ] + }, + "zoom_in": { + "prefix": "svg.bootstrap.zoom_in", + "description": "SVG bootstrap - zoom_in", + "body": [ + "{% svg bootstrap zoom_in %}" + ] + }, + "zoom_out": { + "prefix": "svg.bootstrap.zoom_out", + "description": "SVG bootstrap - zoom_out", + "body": [ + "{% svg bootstrap zoom_out %}" + ] + } +} \ No newline at end of file diff --git a/lua/snippets/django-python.json b/lua/snippets/django-python.json new file mode 100755 index 0000000..31453fa --- /dev/null +++ b/lua/snippets/django-python.json @@ -0,0 +1,512 @@ +{ + "mauto": { + "prefix": "mauto", + "description": "AutoField (mauto) model field", + "body": [ + "${FIELDNAME} = models.AutoField()" + ] + }, + "mbigint": { + "prefix": "mbigint", + "description": "BigIntegerField (mbigint) model field", + "body": [ + "${FIELDNAME} = models.BigIntegerField(${DESCRICAO})" + ] + }, + "mbool": { + "prefix": "mbool", + "description": "BooleanField (mbool) model field", + "body": [ + "${FIELDNAME} = models.BooleanField(${DESCRICAO})" + ] + }, + "mchar": { + "prefix": "mchar", + "description": "CharField (mchar) model field", + "body": [ + "${FIELDNAME} = models.CharField(${DESCRICAO}, max_length=50)" + ] + }, + "mcoseint": { + "prefix": "mcoseint", + "description": "CommaSeparatedIntegerField (mcoseint) model field", + "body": [ + "${FIELDNAME} = models.CommaSeparatedIntegerField(${DESCRICAO})" + ] + }, + "mdate": { + "prefix": "mdate", + "description": "DateField (mdate) model field", + "body": [ + "${FIELDNAME} = models.DateField(${DESCRICAO})" + ] + }, + "mdatetime": { + "prefix": "mdatetime", + "description": "DateTimeField (mdatetime) model field", + "body": [ + "${FIELDNAME} = models.DateTimeField(${DESCRICAO})" + ] + }, + "mdecimal": { + "prefix": "mdecimal", + "description": "DecimalField (mdecimal) model field", + "body": [ + "${FIELDNAME} = models.DecimalField(${DESCRICAO}, max_digits=5, decimal_places=2)" + ] + }, + "mduration": { + "prefix": "mduration", + "description": "DurationField (mduration) model field", + "body": [ + "${FIELDNAME} = models.DurationField(${DESCRICAO})" + ] + }, + "memail": { + "prefix": "memail", + "description": "EmailField (memail) model field", + "body": [ + "${FIELDNAME} = models.EmailField(${DESCRICAO})" + ] + }, + "mfile": { + "prefix": "mfile", + "description": "FileField (mfile) model field", + "body": [ + "${FIELDNAME} = models.FileField(${DESCRICAO})" + ] + }, + "mfilepath": { + "prefix": "mfilepath", + "description": "FilePathField (mfilepath) model field", + "body": [ + "${FIELDNAME} = models.FilePathField(${DESCRICAO})" + ] + }, + "mfloat": { + "prefix": "mfloat", + "description": " (mfloat) model field", + "body": [ + "${FIELDNAME} = models.FloatField(${DESCRICAO})" + ] + }, + "mimg": { + "prefix": "mimg", + "description": "ImageField (mimg) model field", + "body": [ + "${FIELDNAME} = models.ImageField(${DESCRICAO}, upload_to='${SUBPASTA}')" + ] + }, + "mint": { + "prefix": "mint", + "description": "IntegerField (mint) model field", + "body": [ + "${FIELDNAME} = models.IntegerField(${DESCRICAO})" + ] + }, + "mip": { + "prefix": "mip", + "description": "IPAddressField (mip) model field", + "body": [ + "${FIELDNAME} = models.IPAddressField(${DESCRICAO})" + ] + }, + "mnullbool": { + "prefix": "mnullbool", + "description": "NullBooleanField (mnullbool) model field", + "body": [ + "${FIELDNAME} = models.NullBooleanField(${DESCRICAO})" + ] + }, + "mphone": { + "prefix": "mphone", + "description": "PhoneNumberField (mphone) model field", + "body": [ + "${FIELDNAME} = models.PhoneNumberField(${DESCRICAO})" + ] + }, + "mposint": { + "prefix": "mposint", + "description": "PositiveIntegerField (mposint) model field", + "body": [ + "${FIELDNAME} = models.PositiveIntegerField(${DESCRICAO})" + ] + }, + "mpossmallint": { + "prefix": "mpossmallint", + "description": "PositiveSmallIntegerField (mpossmallint) model field", + "body": [ + "${FIELDNAME} = models.PositiveSmallIntegerField(${DESCRICAO})" + ] + }, + "mslug": { + "prefix": "mslug", + "description": "SlugField (mslug) model Field", + "body": [ + "${FIELDNAME} = models.SlugField(${DESCRICAO})" + ] + }, + "msmallint": { + "prefix": "msmallint", + "description": "SmallIntegerField (msmallint) model field", + "body": [ + "${FIELDNAME} = models.SmallIntegerField(${DESCRICAO})" + ] + }, + "mtext": { + "prefix": "mtext", + "description": "TextField (mtext) model field", + "body": [ + "${FIELDNAME} = models.TextField(${DESCRICAO})" + ] + }, + "mtime": { + "prefix": "mtime", + "description": "TimeField (mtime) model field", + "body": [ + "${FIELDNAME} = models.TimeField(${DESCRICAO})" + ] + }, + "murl": { + "prefix": "murl", + "description": "URLField (murl) model field", + "body": [ + "${FIELDNAME} = models.URLField(${DESCRICAO})" + ] + }, + "musstate": { + "prefix": "musstate", + "description": "USStateField (musstate) model field", + "body": [ + "${FIELDNAME} = models.USStateField(${DESCRICAO})" + ] + }, + "mxml": { + "prefix": "mxml", + "description": "XMLField (mxml) model field", + "body": [ + "${FIELDNAME} = models.XMLField(${DESCRICAO})" + ] + }, + "fk": { + "prefix": "mfo", + "description": "ForeignKey (fk) model field", + "body": [ + "${FIELDNAME} = models.ForeignKey(${FKNAME}, on_delete=models.${PROTECT}, verbose_name='${DESCRICAO}', related_name='${RELACAO}')" + ] + }, + "m2m": { + "prefix": "m2m", + "description": "ManyToManyField (m2m) model field", + "body": [ + "${FIELDNAME} = models.ManyToManyField(${FKNAME}, verbose_name='${DESCRICAO}', related_name='${RELACAO}')" + ] + }, + "o2o": { + "prefix": "o2o", + "description": "OneToOneField (o2o) model field", + "body": [ + "${FIELDNAME} = models.OneToOneField(${DESCRICAO}, on_delete=models.${PROTECT})" + ] + }, + "mserializer": { + "prefix": "mserializer", + "description": "ModelSerializer (mserializer) Rest Framework", + "body": [ + "class ${ModelName}Serializer(serializers.ModelSerializer):", + "", + "\tclass Meta:", + "\t\tmodel = ${ModelName}", + "\t\tfields = '__all__'" + ] + }, + "mviewset": { + "prefix": "mviewset", + "description": "ModelViewSet (mviewset) Rest Framework", + "body": [ + "class ${ModelName}ViewSet(viewsets.ModelViewSet):", + "", + "\tqueryset = ${ModelName}.objects.all()", + "\tserializer_class = ${ModelName}Serializer" + ] + }, + "ronlymviewset": { + "prefix": "ronlymviewset", + "description": "ReadOnlyModelViewSet (ronlymviewset) Rest Framework", + "body": [ + "class ${ModelName}ViewSet(viewsets.ReadOnlyModelViewSet):", + "", + "\tqueryset = ${ModelName}.objects.all()", + "\tserializer_class = ${ModelName}Serializer" + ] + }, + "Model": { + "prefix": "mmodel", + "description": "models.Model (Model) Class Model of Django", + "body": [ + "class ${ModelName}(models.Model):", + "", + "\tdef __str__(self):", + "\t\tpass", + "", + "\tclass Meta:", + "\t\tdb_table = ''", + "\t\tmanaged = True", + "\t\tverbose_name = '${ModelName}'", + "\t\tverbose_name_plural = '${ModelName}s'" + ] + }, + "Meta": { + "prefix": "mmeta", + "description": "Meta (Meta) Meta Class of Model", + "body": [ + "class Meta:", + "\tdb_table = ''", + "\tmanaged = True", + "\tverbose_name = '${ModelName}'", + "\tverbose_name_plural = '${ModelName}s'" + ] + }, + "adminRegister": { + "prefix": "adr", + "description": "Create admin site resgister for app", + "body": [ + "from .models import ${AppName}", + "", + "admin.site.register(${AppName})" + ] + }, + "ondelete": { + "prefix": "ond", + "description": "on_delete option", + "body": [ + "on_delete=models.${PROTECT}" + ] + }, + "null&blank": { + "prefix": "nbl", + "description": "null=True, blank=True option", + "body": [ + "null=True, blank=True" + ] + }, + "Django CRUD Views": { + "prefix": "dcv", + "description": "Create CRUD views", + "body": [ + "from django.views.generic import ListView, CreateView, UpdateView, DeleteView", + "from django.contrib.auth.mixins import LoginRequiredMixin", + "from django.urls import reverse_lazy", + "from .models import ${ClasseObjeto}", + "", + "class ${ClasseObjeto}List(LoginRequiredMixin, ListView):", + "\tmodel = ${ClasseObjeto}", + "", + "class ${ClasseObjeto}Create(LoginRequiredMixin, CreateView):", + "\tmodel = ${ClasseObjeto}", + "\tform_class = None", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')", + "", + "class ${ClasseObjeto}Update(LoginRequiredMixin, UpdateView):", + "\tmodel = ${ClasseObjeto}", + "\tform_class = None", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')", + "", + "class ${ClasseObjeto}Delete(LoginRequiredMixin, DeleteView):", + "\tmodel = ${ClasseObjeto}", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')" + ] + }, + "Django TemplateView": { + "prefix": "dtv", + "description": "Create a TemplateView", + "body": [ + "from django.views.generic import TemplateView", + "from django.contrib.auth.mixins import LoginRequiredMixin", + "", + "class ${NomeClasse}(LoginRequiredMixin, TemplateView):", + "\ttemplate_name = \"${arquivo}.html\"", + "", + "\tdef get_context_data(self, **kwargs):", + "\t\tcontext = super().get_context_data(**kwargs)", + "\t\tcontext['${var}'] = \"\"", + "\t\treturn context" + ] + }, + "Django ListView": { + "prefix": "dclv", + "description": "Create a ListView", + "body": [ + "class ${ClasseObjeto}Create(LoginRequiredMixin, ListView):", + "\tmodel = ${ClasseObjeto}", + "", + "\tdef get_context_data(self, **kwargs):", + "\t\tcontext = super().get_context_data(**kwargs)", + "\t\tcontext['minha_variavel'] = 'Pode ser qualquer coisa'", + "\t\treturn context" + ] + }, + "Django CreateView": { + "prefix": "dccv", + "description": "Create a CreateView", + "body": [ + "class ${ClasseObjeto}Create(LoginRequiredMixin, CreateView):", + "\tmodel = ${ClasseObjeto}", + "\tform_class = None", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')" + ] + }, + "Django UpdateView": { + "prefix": "dcuv", + "description": "Create a UpdateView", + "body": [ + "class ${ClasseObjeto}Update(LoginRequiredMixin, UpdateView):", + "\tmodel = ${ClasseObjeto}", + "\tform_class = None", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')" + ] + }, + "Django DeleteView": { + "prefix": "dcdv", + "description": "Create a DeleteView", + "body": [ + "class ${ClasseObjeto}Delete(LoginRequiredMixin, DeleteView):", + "\tmodel = ${ClasseObjeto}", + "\tsuccess_url = reverse_lazy('${ClasseObjeto}_list')" + ] + }, + "Django Settings Internationalization and Static": { + "prefix": "dss", + "description": "Create Internationalization and staticfolders settings", + "body": [ + "# Internationalization", + "# https://docs.djangoproject.com/en/2.1/topics/i18n/", + "", + "LANGUAGE_CODE = 'pt-br'", + "", + "TIME_ZONE = 'America/Sao_Paulo'", + "", + "USE_I18N = True", + "", + "USE_L10N = True", + "", + "USE_TZ = True", + "", + "", + "# Static files (CSS, JavaScript, Images)", + "# https://docs.djangoproject.com/en/2.1/howto/static-files/", + "", + "STATIC_URL = '/static/'", + "", + "STATICFILES_DIRS = [", + "\tos.path.join(BASE_DIR, \"staticfiles\"),", + "]", + "", + "MEDIA_URL = '/media/'", + "", + "MEDIA_ROOT = os.path.join(BASE_DIR,'media')", + "", + "STATIC_ROOT = os.path.join(BASE_DIR,\"static/\")", + "", + "LOGIN_REDIRECT_URL = 'home'", + "", + "LOGOUT_REDIRECT_URL = 'login'" + ] + }, + "Django Settings Template": { + "prefix": "dst", + "description": "Create template settings", + "body": [ + "TEMPLATES = [", + "\t{", + "\t\t'BACKEND': 'django.template.backends.django.DjangoTemplates',", + "\t\t'DIRS': ['templates', os.path.join(BASE_DIR,'templates')],", + "\t\t'APP_DIRS': True,", + "\t\t'OPTIONS': {", + "\t\t\t'context_processors': [", + "\t\t\t\t'django.template.context_processors.debug',", + "\t\t\t\t'django.template.context_processors.request',", + "\t\t\t\t'django.contrib.auth.context_processors.auth',", + "\t\t\t\t'django.contrib.messages.context_processors.messages',", + "\t\t\t],", + "\t\t},", + "\t},", + "]" + ] + }, + "Django middleware": { + "prefix": "middlweware", + "description": "Create a middleware", + "body": [ + "def ${nome}_middleware(get_response):", + "\tdef middleware(request):", + "\t\tresponse = get_response(request)", + "\t\treturn response", + "\treturn middleware" + ] + }, + "Django get_context_data": { + "prefix": "dgetc", + "description": "Create a get_context_data function", + "body": [ + "def get_context_data(self, **kwargs):", + "\tcontext = super().get_context_data(**kwargs)", + "\tcontext[\"${variavel}\"] = \"${valor}\"", + "\treturn context" + ] + }, + "Django post": { + "prefix": "dpos", + "description": "Create a post function", + "body": [ + "def post(self, request, *args, **kwargs):", + "\treturn super().post(request, *args, **kwargs)" + ] + }, + "Django get": { + "prefix": "dget", + "description": "Create a get function", + "body": [ + "def get(self, request, *args, **kwargs):", + "\treturn super().get(request, *args, **kwargs)" + ] + }, + "Django constraints": { + "prefix": "dcons", + "description": "Create a constraint for Meta Models", + "body": [ + "constraints = [", + "\tmodels.UniqueConstraint(", + "\t\tfields=[\"${cons1}\", \"${cons2}\"], name=\"${model}_${cons1}_${cons2}\",", + "\t)", + "]" + ] + }, + "Pyhton def __str__": { + "prefix": "defs", + "description": "Create a __str__ function", + "body": [ + "def __str__(self):", + "\treturn self.${NOME}" + ] + }, + "Python encode": { + "prefix": "enc", + "description": "coding utf-8", + "body": [ + "# coding=utf-8" + ] + }, + "Python Try/Except/Finally": { + "prefix": "try", + "description": "Command try/except/finally", + "body": [ + "try:", + "\t${pass}", + "except Exception as e:", + "\tprint(\"{}\".format(e))", + "finally:", + "\tpass" + ] + } +} diff --git a/lua/snippets/django.json b/lua/snippets/django.json new file mode 100755 index 0000000..5257edf --- /dev/null +++ b/lua/snippets/django.json @@ -0,0 +1,231 @@ +{ + "autoescape": { + "prefix": "autoescape", + "description": "autoescape tag django template", + "body": ["{% autoescape ${off} %}", " ", "{% autoescape %}"] + }, + "block": { + "prefix": "block", + "description": "block tag django template", + "body": [ + "{% block $1 %}", + " ", + "{% endblock $1 %}" + ] + }, + "comment": { + "prefix": "comment", + "description": "Comment tag django template", + "body": ["{% comment %}", " $1", "{% endcomment %}"] + }, + "csrf": { + "prefix": "csrf", + "description": "csrf token django template", + "body": ["{% csrf_token %}"] + }, + "cycle": { + "prefix": "cycle", + "description": "cycle tag django template", + "body": ["{% cycle %}"] + }, + "debug": { + "prefix": "debug", + "description": "debug tag django template", + "body": ["{% debug %}"] + }, + "ext": { + "prefix": "ext", + "description": "extends tag django template", + "body": ["{% extends \"$1\" %}"] + }, + "extends": { + "prefix": "extends", + "description": "extends tag django template", + "body": ["{% extends \"$1\" %}"] + }, + "filter": { + "prefix": "filter", + "description": "filter tag django template", + "body": ["{% filter $1 %}", " ", "{% endfilter %}"] + }, + "firstof": { + "prefix": "firstof", + "description": "firstof tag django template", + "body": ["{% firstof %}"] + }, + "for": { + "prefix": "for", + "description": "for tag django template", + "body": ["{% for $1 in %}", " ", "{% endfor %}"] + }, + "fore": { + "prefix": "fore", + "description": "foreach with empty tag django template", + "body": ["{% for $1 in %}", " ", "{% empty %}", " ", "{% endfor %}"] + }, + "if": { + "prefix": "if", + "description": "if tag django template", + "body": ["{% if $1 %}", " ", "{% endif %}"] + }, + "ifchanged": { + "prefix": "ifchanged", + "description": "ifchanged tag django template", + "body": ["{% ifchanged $1 %}", " ", "{% endifchanged %}"] + }, + "ife": { + "prefix": "ife", + "description": "if else tag django template", + "body": ["{% if $1 %}", " ", "{% else %}", " ", "{% endif %}", ""] + }, + "ifelse": { + "prefix": "ifelse", + "description": "if else tag django template", + "body": ["{% if $1 %}", " ", "{% else %}", " ", "{% endif %}", ""] + }, + "ifeq": { + "prefix": "ifeq", + "description": "ifequal tag django template", + "body": ["{% ifequal $1 %}", " ", "{% endifequal %}"] + }, + "ifequal": { + "prefix": "ifeq", + "description": "ifequal tag django template", + "body": ["{% ifequal $1 %}", " ", "{% endifequal %}"] + }, + "ifnotequal": { + "prefix": "ifnotequal", + "description": "ifnotequal tag django template", + "body": ["{% ifnotequal $1 %}", " ", "{% ifnotequal %}"] + }, + "inc": { + "prefix": "inc", + "description": "include tag django template", + "body": ["{% include \"$1\" %}"] + }, + "include": { + "prefix": "include", + "description": "include tag django template", + "body": ["{% include \"$1\" %}"] + }, + "load": { + "prefix": "load", + "description": "load tag django template", + "body": ["{% load $1 %}"] + }, + "now": { + "prefix": "now", + "description": "now tag django template", + "body": ["{% now \"$1\" %}"] + }, + "regroup": { + "prefix": "regroup", + "description": "regroup tag django template", + "body": ["{% regroup $1 by as %}"] + }, + "spaceless": { + "prefix": "spaceless", + "description": "spaceless tag django template", + "body": ["{% spaceless %}", " $1", "{% endspaceless %}"] + }, + "ssi": { + "prefix": "ssi", + "description": "ssi tag django template", + "body": ["{% ssi $1 parsed %}"] + }, + "static": { + "prefix": "static", + "description": "static tag django template", + "body": ["{% static '$1' %}"] + }, + "templatetag": { + "prefix": "templatetag", + "description": "templatetag tag django template", + "body": ["{% templatetag $1 %}"] + }, + "url": { + "prefix": "url", + "description": "url tag django template", + "body": ["{% url $1 %}"] + }, + "verbatim": { + "prefix": "verbatim", + "description": "verbatim tag django template", + "body": ["{% verbatim %}", " $1", "{% endverbatim %}"] + }, + "widthratio": { + "prefix": "widthratio", + "description": "widthratio tag django template", + "body": ["{% widthratio ${this_value} max_value 100 %}"] + }, + "with": { + "prefix": "with", + "description": "with tag django template", + "body": ["{% with $1 as %}", " ", "{% endwith %}"] + }, + "trans": { + "prefix": "trans", + "description": "translate tag django template", + "body": ["{% translate \"$1\" %}"] + }, + "blocktrans": { + "prefix": "blocktrans", + "description": "blocktrans tag django template", + "body": ["{% blocktrans %}", " $1", "{% endblocktrans %}"] + }, + "super": { + "prefix": "super", + "description": "Block super", + "body": ["{{ block.super }}"] + }, + "extrahead": { + "prefix": "extrahead", + "description": "Extrahead no oficial tag", + "body": ["{% block extrahead %}", " $1", "{% endblock extrahead %}"] + }, + "extrastyle": { + "prefix": "extrastyle", + "description": "Extrastyle no oficial Tag", + "body": ["{% block extrahead %}", " $1", "{% endblock extrahead %}"] + }, + "var": { + "prefix": "var", + "description": "Variable autocomplete", + "body": ["{{ $1 }}"] + }, + "tag": { + "prefix": "tag", + "description": "tag autocomplete no oficial", + "body": ["{% $1 %}"] + }, + "staticurl": { + "prefix": "staticurl", + "description": "STATIC_URL no oficial var", + "body": ["{{ STATIC_URL }}"] + }, + "mediaurl": { + "prefix": "mediaurl", + "description": "", + "body": ["{{ MEDIA_URL }}"] + }, + "template_tag": { + "prefix": "dtt", + "description": "Django template tag", + "body": ["{% $1 %}"] + }, + "csrfmiddlewaretoken": { + "prefix": "csrfmiddlewaretoken", + "description": "Django csrf token", + "body": ["csrfmiddlewaretoken: $(\"input[name='csrfmiddlewaretoken']\").val()"] + }, + "render_form": { + "prefix": "render_form", + "description": "Django render form", + "body": ["{% render_form $1 %}"] + }, + "render_table": { + "prefix": "render_table", + "description": "Django render table", + "body": ["{% render_table $1 %}"] + } +} diff --git a/lua/snippets/dripicons.json b/lua/snippets/dripicons.json new file mode 100644 index 0000000..b057577 --- /dev/null +++ b/lua/snippets/dripicons.json @@ -0,0 +1,1395 @@ +{ + "alarm": { + "prefix": "svg.dripicons.alarm", + "description": "SVG dripicons - alarm", + "body": [ + "{% svg dripicons alarm %}" + ] + }, + "align_center": { + "prefix": "svg.dripicons.align_center", + "description": "SVG dripicons - align_center", + "body": [ + "{% svg dripicons align_center %}" + ] + }, + "align_justify": { + "prefix": "svg.dripicons.align_justify", + "description": "SVG dripicons - align_justify", + "body": [ + "{% svg dripicons align_justify %}" + ] + }, + "align_left": { + "prefix": "svg.dripicons.align_left", + "description": "SVG dripicons - align_left", + "body": [ + "{% svg dripicons align_left %}" + ] + }, + "align_right": { + "prefix": "svg.dripicons.align_right", + "description": "SVG dripicons - align_right", + "body": [ + "{% svg dripicons align_right %}" + ] + }, + "anchor": { + "prefix": "svg.dripicons.anchor", + "description": "SVG dripicons - anchor", + "body": [ + "{% svg dripicons anchor %}" + ] + }, + "archive": { + "prefix": "svg.dripicons.archive", + "description": "SVG dripicons - archive", + "body": [ + "{% svg dripicons archive %}" + ] + }, + "arrow_down": { + "prefix": "svg.dripicons.arrow_down", + "description": "SVG dripicons - arrow_down", + "body": [ + "{% svg dripicons arrow_down %}" + ] + }, + "arrow_left": { + "prefix": "svg.dripicons.arrow_left", + "description": "SVG dripicons - arrow_left", + "body": [ + "{% svg dripicons arrow_left %}" + ] + }, + "arrow_right": { + "prefix": "svg.dripicons.arrow_right", + "description": "SVG dripicons - arrow_right", + "body": [ + "{% svg dripicons arrow_right %}" + ] + }, + "arrow_thin_down": { + "prefix": "svg.dripicons.arrow_thin_down", + "description": "SVG dripicons - arrow_thin_down", + "body": [ + "{% svg dripicons arrow_thin_down %}" + ] + }, + "arrow_thin_left": { + "prefix": "svg.dripicons.arrow_thin_left", + "description": "SVG dripicons - arrow_thin_left", + "body": [ + "{% svg dripicons arrow_thin_left %}" + ] + }, + "arrow_thin_right": { + "prefix": "svg.dripicons.arrow_thin_right", + "description": "SVG dripicons - arrow_thin_right", + "body": [ + "{% svg dripicons arrow_thin_right %}" + ] + }, + "arrow_thin_up": { + "prefix": "svg.dripicons.arrow_thin_up", + "description": "SVG dripicons - arrow_thin_up", + "body": [ + "{% svg dripicons arrow_thin_up %}" + ] + }, + "arrow_up": { + "prefix": "svg.dripicons.arrow_up", + "description": "SVG dripicons - arrow_up", + "body": [ + "{% svg dripicons arrow_up %}" + ] + }, + "article": { + "prefix": "svg.dripicons.article", + "description": "SVG dripicons - article", + "body": [ + "{% svg dripicons article %}" + ] + }, + "backspace": { + "prefix": "svg.dripicons.backspace", + "description": "SVG dripicons - backspace", + "body": [ + "{% svg dripicons backspace %}" + ] + }, + "basket": { + "prefix": "svg.dripicons.basket", + "description": "SVG dripicons - basket", + "body": [ + "{% svg dripicons basket %}" + ] + }, + "basketball": { + "prefix": "svg.dripicons.basketball", + "description": "SVG dripicons - basketball", + "body": [ + "{% svg dripicons basketball %}" + ] + }, + "battery_empty": { + "prefix": "svg.dripicons.battery_empty", + "description": "SVG dripicons - battery_empty", + "body": [ + "{% svg dripicons battery_empty %}" + ] + }, + "battery_full": { + "prefix": "svg.dripicons.battery_full", + "description": "SVG dripicons - battery_full", + "body": [ + "{% svg dripicons battery_full %}" + ] + }, + "battery_low": { + "prefix": "svg.dripicons.battery_low", + "description": "SVG dripicons - battery_low", + "body": [ + "{% svg dripicons battery_low %}" + ] + }, + "battery_medium": { + "prefix": "svg.dripicons.battery_medium", + "description": "SVG dripicons - battery_medium", + "body": [ + "{% svg dripicons battery_medium %}" + ] + }, + "bell": { + "prefix": "svg.dripicons.bell", + "description": "SVG dripicons - bell", + "body": [ + "{% svg dripicons bell %}" + ] + }, + "blog": { + "prefix": "svg.dripicons.blog", + "description": "SVG dripicons - blog", + "body": [ + "{% svg dripicons blog %}" + ] + }, + "bluetooth": { + "prefix": "svg.dripicons.bluetooth", + "description": "SVG dripicons - bluetooth", + "body": [ + "{% svg dripicons bluetooth %}" + ] + }, + "bold": { + "prefix": "svg.dripicons.bold", + "description": "SVG dripicons - bold", + "body": [ + "{% svg dripicons bold %}" + ] + }, + "bookmark": { + "prefix": "svg.dripicons.bookmark", + "description": "SVG dripicons - bookmark", + "body": [ + "{% svg dripicons bookmark %}" + ] + }, + "bookmarks": { + "prefix": "svg.dripicons.bookmarks", + "description": "SVG dripicons - bookmarks", + "body": [ + "{% svg dripicons bookmarks %}" + ] + }, + "box": { + "prefix": "svg.dripicons.box", + "description": "SVG dripicons - box", + "body": [ + "{% svg dripicons box %}" + ] + }, + "briefcase": { + "prefix": "svg.dripicons.briefcase", + "description": "SVG dripicons - briefcase", + "body": [ + "{% svg dripicons briefcase %}" + ] + }, + "brightness_low": { + "prefix": "svg.dripicons.brightness_low", + "description": "SVG dripicons - brightness_low", + "body": [ + "{% svg dripicons brightness_low %}" + ] + }, + "brightness_max": { + "prefix": "svg.dripicons.brightness_max", + "description": "SVG dripicons - brightness_max", + "body": [ + "{% svg dripicons brightness_max %}" + ] + }, + "brightness_medium": { + "prefix": "svg.dripicons.brightness_medium", + "description": "SVG dripicons - brightness_medium", + "body": [ + "{% svg dripicons brightness_medium %}" + ] + }, + "broadcast": { + "prefix": "svg.dripicons.broadcast", + "description": "SVG dripicons - broadcast", + "body": [ + "{% svg dripicons broadcast %}" + ] + }, + "browser": { + "prefix": "svg.dripicons.browser", + "description": "SVG dripicons - browser", + "body": [ + "{% svg dripicons browser %}" + ] + }, + "browser_upload": { + "prefix": "svg.dripicons.browser_upload", + "description": "SVG dripicons - browser_upload", + "body": [ + "{% svg dripicons browser_upload %}" + ] + }, + "brush": { + "prefix": "svg.dripicons.brush", + "description": "SVG dripicons - brush", + "body": [ + "{% svg dripicons brush %}" + ] + }, + "calendar": { + "prefix": "svg.dripicons.calendar", + "description": "SVG dripicons - calendar", + "body": [ + "{% svg dripicons calendar %}" + ] + }, + "camcorder": { + "prefix": "svg.dripicons.camcorder", + "description": "SVG dripicons - camcorder", + "body": [ + "{% svg dripicons camcorder %}" + ] + }, + "camera": { + "prefix": "svg.dripicons.camera", + "description": "SVG dripicons - camera", + "body": [ + "{% svg dripicons camera %}" + ] + }, + "card": { + "prefix": "svg.dripicons.card", + "description": "SVG dripicons - card", + "body": [ + "{% svg dripicons card %}" + ] + }, + "cart": { + "prefix": "svg.dripicons.cart", + "description": "SVG dripicons - cart", + "body": [ + "{% svg dripicons cart %}" + ] + }, + "checklist": { + "prefix": "svg.dripicons.checklist", + "description": "SVG dripicons - checklist", + "body": [ + "{% svg dripicons checklist %}" + ] + }, + "checkmark": { + "prefix": "svg.dripicons.checkmark", + "description": "SVG dripicons - checkmark", + "body": [ + "{% svg dripicons checkmark %}" + ] + }, + "chevron_down": { + "prefix": "svg.dripicons.chevron_down", + "description": "SVG dripicons - chevron_down", + "body": [ + "{% svg dripicons chevron_down %}" + ] + }, + "chevron_left": { + "prefix": "svg.dripicons.chevron_left", + "description": "SVG dripicons - chevron_left", + "body": [ + "{% svg dripicons chevron_left %}" + ] + }, + "chevron_right": { + "prefix": "svg.dripicons.chevron_right", + "description": "SVG dripicons - chevron_right", + "body": [ + "{% svg dripicons chevron_right %}" + ] + }, + "chevron_up": { + "prefix": "svg.dripicons.chevron_up", + "description": "SVG dripicons - chevron_up", + "body": [ + "{% svg dripicons chevron_up %}" + ] + }, + "clipboard": { + "prefix": "svg.dripicons.clipboard", + "description": "SVG dripicons - clipboard", + "body": [ + "{% svg dripicons clipboard %}" + ] + }, + "clock": { + "prefix": "svg.dripicons.clock", + "description": "SVG dripicons - clock", + "body": [ + "{% svg dripicons clock %}" + ] + }, + "clockwise": { + "prefix": "svg.dripicons.clockwise", + "description": "SVG dripicons - clockwise", + "body": [ + "{% svg dripicons clockwise %}" + ] + }, + "cloud": { + "prefix": "svg.dripicons.cloud", + "description": "SVG dripicons - cloud", + "body": [ + "{% svg dripicons cloud %}" + ] + }, + "cloud_download": { + "prefix": "svg.dripicons.cloud_download", + "description": "SVG dripicons - cloud_download", + "body": [ + "{% svg dripicons cloud_download %}" + ] + }, + "cloud_upload": { + "prefix": "svg.dripicons.cloud_upload", + "description": "SVG dripicons - cloud_upload", + "body": [ + "{% svg dripicons cloud_upload %}" + ] + }, + "code": { + "prefix": "svg.dripicons.code", + "description": "SVG dripicons - code", + "body": [ + "{% svg dripicons code %}" + ] + }, + "contract": { + "prefix": "svg.dripicons.contract", + "description": "SVG dripicons - contract", + "body": [ + "{% svg dripicons contract %}" + ] + }, + "contract_2": { + "prefix": "svg.dripicons.contract_2", + "description": "SVG dripicons - contract_2", + "body": [ + "{% svg dripicons contract_2 %}" + ] + }, + "conversation": { + "prefix": "svg.dripicons.conversation", + "description": "SVG dripicons - conversation", + "body": [ + "{% svg dripicons conversation %}" + ] + }, + "copy": { + "prefix": "svg.dripicons.copy", + "description": "SVG dripicons - copy", + "body": [ + "{% svg dripicons copy %}" + ] + }, + "crop": { + "prefix": "svg.dripicons.crop", + "description": "SVG dripicons - crop", + "body": [ + "{% svg dripicons crop %}" + ] + }, + "cross": { + "prefix": "svg.dripicons.cross", + "description": "SVG dripicons - cross", + "body": [ + "{% svg dripicons cross %}" + ] + }, + "crosshair": { + "prefix": "svg.dripicons.crosshair", + "description": "SVG dripicons - crosshair", + "body": [ + "{% svg dripicons crosshair %}" + ] + }, + "cutlery": { + "prefix": "svg.dripicons.cutlery", + "description": "SVG dripicons - cutlery", + "body": [ + "{% svg dripicons cutlery %}" + ] + }, + "device_desktop": { + "prefix": "svg.dripicons.device_desktop", + "description": "SVG dripicons - device_desktop", + "body": [ + "{% svg dripicons device_desktop %}" + ] + }, + "device_mobile": { + "prefix": "svg.dripicons.device_mobile", + "description": "SVG dripicons - device_mobile", + "body": [ + "{% svg dripicons device_mobile %}" + ] + }, + "device_tablet": { + "prefix": "svg.dripicons.device_tablet", + "description": "SVG dripicons - device_tablet", + "body": [ + "{% svg dripicons device_tablet %}" + ] + }, + "direction": { + "prefix": "svg.dripicons.direction", + "description": "SVG dripicons - direction", + "body": [ + "{% svg dripicons direction %}" + ] + }, + "disc": { + "prefix": "svg.dripicons.disc", + "description": "SVG dripicons - disc", + "body": [ + "{% svg dripicons disc %}" + ] + }, + "document": { + "prefix": "svg.dripicons.document", + "description": "SVG dripicons - document", + "body": [ + "{% svg dripicons document %}" + ] + }, + "document_delete": { + "prefix": "svg.dripicons.document_delete", + "description": "SVG dripicons - document_delete", + "body": [ + "{% svg dripicons document_delete %}" + ] + }, + "document_edit": { + "prefix": "svg.dripicons.document_edit", + "description": "SVG dripicons - document_edit", + "body": [ + "{% svg dripicons document_edit %}" + ] + }, + "document_new": { + "prefix": "svg.dripicons.document_new", + "description": "SVG dripicons - document_new", + "body": [ + "{% svg dripicons document_new %}" + ] + }, + "document_remove": { + "prefix": "svg.dripicons.document_remove", + "description": "SVG dripicons - document_remove", + "body": [ + "{% svg dripicons document_remove %}" + ] + }, + "dot": { + "prefix": "svg.dripicons.dot", + "description": "SVG dripicons - dot", + "body": [ + "{% svg dripicons dot %}" + ] + }, + "dots_2": { + "prefix": "svg.dripicons.dots_2", + "description": "SVG dripicons - dots_2", + "body": [ + "{% svg dripicons dots_2 %}" + ] + }, + "dots_3": { + "prefix": "svg.dripicons.dots_3", + "description": "SVG dripicons - dots_3", + "body": [ + "{% svg dripicons dots_3 %}" + ] + }, + "download": { + "prefix": "svg.dripicons.download", + "description": "SVG dripicons - download", + "body": [ + "{% svg dripicons download %}" + ] + }, + "duplicate": { + "prefix": "svg.dripicons.duplicate", + "description": "SVG dripicons - duplicate", + "body": [ + "{% svg dripicons duplicate %}" + ] + }, + "enter": { + "prefix": "svg.dripicons.enter", + "description": "SVG dripicons - enter", + "body": [ + "{% svg dripicons enter %}" + ] + }, + "exit_": { + "prefix": "svg.dripicons.exit_", + "description": "SVG dripicons - exit_", + "body": [ + "{% svg dripicons exit_ %}" + ] + }, + "expand": { + "prefix": "svg.dripicons.expand", + "description": "SVG dripicons - expand", + "body": [ + "{% svg dripicons expand %}" + ] + }, + "expand_2": { + "prefix": "svg.dripicons.expand_2", + "description": "SVG dripicons - expand_2", + "body": [ + "{% svg dripicons expand_2 %}" + ] + }, + "experiment": { + "prefix": "svg.dripicons.experiment", + "description": "SVG dripicons - experiment", + "body": [ + "{% svg dripicons experiment %}" + ] + }, + "export": { + "prefix": "svg.dripicons.export", + "description": "SVG dripicons - export", + "body": [ + "{% svg dripicons export %}" + ] + }, + "feed": { + "prefix": "svg.dripicons.feed", + "description": "SVG dripicons - feed", + "body": [ + "{% svg dripicons feed %}" + ] + }, + "flag": { + "prefix": "svg.dripicons.flag", + "description": "SVG dripicons - flag", + "body": [ + "{% svg dripicons flag %}" + ] + }, + "flashlight": { + "prefix": "svg.dripicons.flashlight", + "description": "SVG dripicons - flashlight", + "body": [ + "{% svg dripicons flashlight %}" + ] + }, + "folder": { + "prefix": "svg.dripicons.folder", + "description": "SVG dripicons - folder", + "body": [ + "{% svg dripicons folder %}" + ] + }, + "folder_open": { + "prefix": "svg.dripicons.folder_open", + "description": "SVG dripicons - folder_open", + "body": [ + "{% svg dripicons folder_open %}" + ] + }, + "forward": { + "prefix": "svg.dripicons.forward", + "description": "SVG dripicons - forward", + "body": [ + "{% svg dripicons forward %}" + ] + }, + "gaming": { + "prefix": "svg.dripicons.gaming", + "description": "SVG dripicons - gaming", + "body": [ + "{% svg dripicons gaming %}" + ] + }, + "gear": { + "prefix": "svg.dripicons.gear", + "description": "SVG dripicons - gear", + "body": [ + "{% svg dripicons gear %}" + ] + }, + "graduation": { + "prefix": "svg.dripicons.graduation", + "description": "SVG dripicons - graduation", + "body": [ + "{% svg dripicons graduation %}" + ] + }, + "graph_bar": { + "prefix": "svg.dripicons.graph_bar", + "description": "SVG dripicons - graph_bar", + "body": [ + "{% svg dripicons graph_bar %}" + ] + }, + "graph_line": { + "prefix": "svg.dripicons.graph_line", + "description": "SVG dripicons - graph_line", + "body": [ + "{% svg dripicons graph_line %}" + ] + }, + "graph_pie": { + "prefix": "svg.dripicons.graph_pie", + "description": "SVG dripicons - graph_pie", + "body": [ + "{% svg dripicons graph_pie %}" + ] + }, + "headset": { + "prefix": "svg.dripicons.headset", + "description": "SVG dripicons - headset", + "body": [ + "{% svg dripicons headset %}" + ] + }, + "heart": { + "prefix": "svg.dripicons.heart", + "description": "SVG dripicons - heart", + "body": [ + "{% svg dripicons heart %}" + ] + }, + "help": { + "prefix": "svg.dripicons.help", + "description": "SVG dripicons - help", + "body": [ + "{% svg dripicons help %}" + ] + }, + "home": { + "prefix": "svg.dripicons.home", + "description": "SVG dripicons - home", + "body": [ + "{% svg dripicons home %}" + ] + }, + "hourglass": { + "prefix": "svg.dripicons.hourglass", + "description": "SVG dripicons - hourglass", + "body": [ + "{% svg dripicons hourglass %}" + ] + }, + "inbox": { + "prefix": "svg.dripicons.inbox", + "description": "SVG dripicons - inbox", + "body": [ + "{% svg dripicons inbox %}" + ] + }, + "information": { + "prefix": "svg.dripicons.information", + "description": "SVG dripicons - information", + "body": [ + "{% svg dripicons information %}" + ] + }, + "italic": { + "prefix": "svg.dripicons.italic", + "description": "SVG dripicons - italic", + "body": [ + "{% svg dripicons italic %}" + ] + }, + "jewel": { + "prefix": "svg.dripicons.jewel", + "description": "SVG dripicons - jewel", + "body": [ + "{% svg dripicons jewel %}" + ] + }, + "lifting": { + "prefix": "svg.dripicons.lifting", + "description": "SVG dripicons - lifting", + "body": [ + "{% svg dripicons lifting %}" + ] + }, + "lightbulb": { + "prefix": "svg.dripicons.lightbulb", + "description": "SVG dripicons - lightbulb", + "body": [ + "{% svg dripicons lightbulb %}" + ] + }, + "link": { + "prefix": "svg.dripicons.link", + "description": "SVG dripicons - link", + "body": [ + "{% svg dripicons link %}" + ] + }, + "link_broken": { + "prefix": "svg.dripicons.link_broken", + "description": "SVG dripicons - link_broken", + "body": [ + "{% svg dripicons link_broken %}" + ] + }, + "list_": { + "prefix": "svg.dripicons.list_", + "description": "SVG dripicons - list_", + "body": [ + "{% svg dripicons list_ %}" + ] + }, + "loading": { + "prefix": "svg.dripicons.loading", + "description": "SVG dripicons - loading", + "body": [ + "{% svg dripicons loading %}" + ] + }, + "location": { + "prefix": "svg.dripicons.location", + "description": "SVG dripicons - location", + "body": [ + "{% svg dripicons location %}" + ] + }, + "lock": { + "prefix": "svg.dripicons.lock", + "description": "SVG dripicons - lock", + "body": [ + "{% svg dripicons lock %}" + ] + }, + "lock_open": { + "prefix": "svg.dripicons.lock_open", + "description": "SVG dripicons - lock_open", + "body": [ + "{% svg dripicons lock_open %}" + ] + }, + "mail": { + "prefix": "svg.dripicons.mail", + "description": "SVG dripicons - mail", + "body": [ + "{% svg dripicons mail %}" + ] + }, + "map": { + "prefix": "svg.dripicons.map", + "description": "SVG dripicons - map", + "body": [ + "{% svg dripicons map %}" + ] + }, + "media_loop": { + "prefix": "svg.dripicons.media_loop", + "description": "SVG dripicons - media_loop", + "body": [ + "{% svg dripicons media_loop %}" + ] + }, + "media_next": { + "prefix": "svg.dripicons.media_next", + "description": "SVG dripicons - media_next", + "body": [ + "{% svg dripicons media_next %}" + ] + }, + "media_pause": { + "prefix": "svg.dripicons.media_pause", + "description": "SVG dripicons - media_pause", + "body": [ + "{% svg dripicons media_pause %}" + ] + }, + "media_play": { + "prefix": "svg.dripicons.media_play", + "description": "SVG dripicons - media_play", + "body": [ + "{% svg dripicons media_play %}" + ] + }, + "media_previous": { + "prefix": "svg.dripicons.media_previous", + "description": "SVG dripicons - media_previous", + "body": [ + "{% svg dripicons media_previous %}" + ] + }, + "media_record": { + "prefix": "svg.dripicons.media_record", + "description": "SVG dripicons - media_record", + "body": [ + "{% svg dripicons media_record %}" + ] + }, + "media_shuffle": { + "prefix": "svg.dripicons.media_shuffle", + "description": "SVG dripicons - media_shuffle", + "body": [ + "{% svg dripicons media_shuffle %}" + ] + }, + "media_stop": { + "prefix": "svg.dripicons.media_stop", + "description": "SVG dripicons - media_stop", + "body": [ + "{% svg dripicons media_stop %}" + ] + }, + "medical": { + "prefix": "svg.dripicons.medical", + "description": "SVG dripicons - medical", + "body": [ + "{% svg dripicons medical %}" + ] + }, + "menu": { + "prefix": "svg.dripicons.menu", + "description": "SVG dripicons - menu", + "body": [ + "{% svg dripicons menu %}" + ] + }, + "message": { + "prefix": "svg.dripicons.message", + "description": "SVG dripicons - message", + "body": [ + "{% svg dripicons message %}" + ] + }, + "meter": { + "prefix": "svg.dripicons.meter", + "description": "SVG dripicons - meter", + "body": [ + "{% svg dripicons meter %}" + ] + }, + "microphone": { + "prefix": "svg.dripicons.microphone", + "description": "SVG dripicons - microphone", + "body": [ + "{% svg dripicons microphone %}" + ] + }, + "minus": { + "prefix": "svg.dripicons.minus", + "description": "SVG dripicons - minus", + "body": [ + "{% svg dripicons minus %}" + ] + }, + "monitor": { + "prefix": "svg.dripicons.monitor", + "description": "SVG dripicons - monitor", + "body": [ + "{% svg dripicons monitor %}" + ] + }, + "move": { + "prefix": "svg.dripicons.move", + "description": "SVG dripicons - move", + "body": [ + "{% svg dripicons move %}" + ] + }, + "music": { + "prefix": "svg.dripicons.music", + "description": "SVG dripicons - music", + "body": [ + "{% svg dripicons music %}" + ] + }, + "network_1": { + "prefix": "svg.dripicons.network_1", + "description": "SVG dripicons - network_1", + "body": [ + "{% svg dripicons network_1 %}" + ] + }, + "network_2": { + "prefix": "svg.dripicons.network_2", + "description": "SVG dripicons - network_2", + "body": [ + "{% svg dripicons network_2 %}" + ] + }, + "network_3": { + "prefix": "svg.dripicons.network_3", + "description": "SVG dripicons - network_3", + "body": [ + "{% svg dripicons network_3 %}" + ] + }, + "network_4": { + "prefix": "svg.dripicons.network_4", + "description": "SVG dripicons - network_4", + "body": [ + "{% svg dripicons network_4 %}" + ] + }, + "network_5": { + "prefix": "svg.dripicons.network_5", + "description": "SVG dripicons - network_5", + "body": [ + "{% svg dripicons network_5 %}" + ] + }, + "pamphlet": { + "prefix": "svg.dripicons.pamphlet", + "description": "SVG dripicons - pamphlet", + "body": [ + "{% svg dripicons pamphlet %}" + ] + }, + "paperclip": { + "prefix": "svg.dripicons.paperclip", + "description": "SVG dripicons - paperclip", + "body": [ + "{% svg dripicons paperclip %}" + ] + }, + "pencil": { + "prefix": "svg.dripicons.pencil", + "description": "SVG dripicons - pencil", + "body": [ + "{% svg dripicons pencil %}" + ] + }, + "phone": { + "prefix": "svg.dripicons.phone", + "description": "SVG dripicons - phone", + "body": [ + "{% svg dripicons phone %}" + ] + }, + "photo": { + "prefix": "svg.dripicons.photo", + "description": "SVG dripicons - photo", + "body": [ + "{% svg dripicons photo %}" + ] + }, + "photo_group": { + "prefix": "svg.dripicons.photo_group", + "description": "SVG dripicons - photo_group", + "body": [ + "{% svg dripicons photo_group %}" + ] + }, + "pill": { + "prefix": "svg.dripicons.pill", + "description": "SVG dripicons - pill", + "body": [ + "{% svg dripicons pill %}" + ] + }, + "pin": { + "prefix": "svg.dripicons.pin", + "description": "SVG dripicons - pin", + "body": [ + "{% svg dripicons pin %}" + ] + }, + "plus": { + "prefix": "svg.dripicons.plus", + "description": "SVG dripicons - plus", + "body": [ + "{% svg dripicons plus %}" + ] + }, + "power": { + "prefix": "svg.dripicons.power", + "description": "SVG dripicons - power", + "body": [ + "{% svg dripicons power %}" + ] + }, + "preview": { + "prefix": "svg.dripicons.preview", + "description": "SVG dripicons - preview", + "body": [ + "{% svg dripicons preview %}" + ] + }, + "print": { + "prefix": "svg.dripicons.print", + "description": "SVG dripicons - print", + "body": [ + "{% svg dripicons print %}" + ] + }, + "pulse": { + "prefix": "svg.dripicons.pulse", + "description": "SVG dripicons - pulse", + "body": [ + "{% svg dripicons pulse %}" + ] + }, + "question": { + "prefix": "svg.dripicons.question", + "description": "SVG dripicons - question", + "body": [ + "{% svg dripicons question %}" + ] + }, + "reply": { + "prefix": "svg.dripicons.reply", + "description": "SVG dripicons - reply", + "body": [ + "{% svg dripicons reply %}" + ] + }, + "reply_all": { + "prefix": "svg.dripicons.reply_all", + "description": "SVG dripicons - reply_all", + "body": [ + "{% svg dripicons reply_all %}" + ] + }, + "return_": { + "prefix": "svg.dripicons.return_", + "description": "SVG dripicons - return_", + "body": [ + "{% svg dripicons return_ %}" + ] + }, + "retweet": { + "prefix": "svg.dripicons.retweet", + "description": "SVG dripicons - retweet", + "body": [ + "{% svg dripicons retweet %}" + ] + }, + "rocket": { + "prefix": "svg.dripicons.rocket", + "description": "SVG dripicons - rocket", + "body": [ + "{% svg dripicons rocket %}" + ] + }, + "scale": { + "prefix": "svg.dripicons.scale", + "description": "SVG dripicons - scale", + "body": [ + "{% svg dripicons scale %}" + ] + }, + "search": { + "prefix": "svg.dripicons.search", + "description": "SVG dripicons - search", + "body": [ + "{% svg dripicons search %}" + ] + }, + "shopping_bag": { + "prefix": "svg.dripicons.shopping_bag", + "description": "SVG dripicons - shopping_bag", + "body": [ + "{% svg dripicons shopping_bag %}" + ] + }, + "skip": { + "prefix": "svg.dripicons.skip", + "description": "SVG dripicons - skip", + "body": [ + "{% svg dripicons skip %}" + ] + }, + "stack": { + "prefix": "svg.dripicons.stack", + "description": "SVG dripicons - stack", + "body": [ + "{% svg dripicons stack %}" + ] + }, + "star": { + "prefix": "svg.dripicons.star", + "description": "SVG dripicons - star", + "body": [ + "{% svg dripicons star %}" + ] + }, + "stopwatch": { + "prefix": "svg.dripicons.stopwatch", + "description": "SVG dripicons - stopwatch", + "body": [ + "{% svg dripicons stopwatch %}" + ] + }, + "store": { + "prefix": "svg.dripicons.store", + "description": "SVG dripicons - store", + "body": [ + "{% svg dripicons store %}" + ] + }, + "suitcase": { + "prefix": "svg.dripicons.suitcase", + "description": "SVG dripicons - suitcase", + "body": [ + "{% svg dripicons suitcase %}" + ] + }, + "swap": { + "prefix": "svg.dripicons.swap", + "description": "SVG dripicons - swap", + "body": [ + "{% svg dripicons swap %}" + ] + }, + "tag": { + "prefix": "svg.dripicons.tag", + "description": "SVG dripicons - tag", + "body": [ + "{% svg dripicons tag %}" + ] + }, + "tag_delete": { + "prefix": "svg.dripicons.tag_delete", + "description": "SVG dripicons - tag_delete", + "body": [ + "{% svg dripicons tag_delete %}" + ] + }, + "tags": { + "prefix": "svg.dripicons.tags", + "description": "SVG dripicons - tags", + "body": [ + "{% svg dripicons tags %}" + ] + }, + "thumbs_down": { + "prefix": "svg.dripicons.thumbs_down", + "description": "SVG dripicons - thumbs_down", + "body": [ + "{% svg dripicons thumbs_down %}" + ] + }, + "thumbs_up": { + "prefix": "svg.dripicons.thumbs_up", + "description": "SVG dripicons - thumbs_up", + "body": [ + "{% svg dripicons thumbs_up %}" + ] + }, + "ticket": { + "prefix": "svg.dripicons.ticket", + "description": "SVG dripicons - ticket", + "body": [ + "{% svg dripicons ticket %}" + ] + }, + "time_reverse": { + "prefix": "svg.dripicons.time_reverse", + "description": "SVG dripicons - time_reverse", + "body": [ + "{% svg dripicons time_reverse %}" + ] + }, + "to_do": { + "prefix": "svg.dripicons.to_do", + "description": "SVG dripicons - to_do", + "body": [ + "{% svg dripicons to_do %}" + ] + }, + "toggles": { + "prefix": "svg.dripicons.toggles", + "description": "SVG dripicons - toggles", + "body": [ + "{% svg dripicons toggles %}" + ] + }, + "trash": { + "prefix": "svg.dripicons.trash", + "description": "SVG dripicons - trash", + "body": [ + "{% svg dripicons trash %}" + ] + }, + "trophy": { + "prefix": "svg.dripicons.trophy", + "description": "SVG dripicons - trophy", + "body": [ + "{% svg dripicons trophy %}" + ] + }, + "upload": { + "prefix": "svg.dripicons.upload", + "description": "SVG dripicons - upload", + "body": [ + "{% svg dripicons upload %}" + ] + }, + "user": { + "prefix": "svg.dripicons.user", + "description": "SVG dripicons - user", + "body": [ + "{% svg dripicons user %}" + ] + }, + "user_group": { + "prefix": "svg.dripicons.user_group", + "description": "SVG dripicons - user_group", + "body": [ + "{% svg dripicons user_group %}" + ] + }, + "user_id": { + "prefix": "svg.dripicons.user_id", + "description": "SVG dripicons - user_id", + "body": [ + "{% svg dripicons user_id %}" + ] + }, + "vibrate": { + "prefix": "svg.dripicons.vibrate", + "description": "SVG dripicons - vibrate", + "body": [ + "{% svg dripicons vibrate %}" + ] + }, + "view_apps": { + "prefix": "svg.dripicons.view_apps", + "description": "SVG dripicons - view_apps", + "body": [ + "{% svg dripicons view_apps %}" + ] + }, + "view_list": { + "prefix": "svg.dripicons.view_list", + "description": "SVG dripicons - view_list", + "body": [ + "{% svg dripicons view_list %}" + ] + }, + "view_list_large": { + "prefix": "svg.dripicons.view_list_large", + "description": "SVG dripicons - view_list_large", + "body": [ + "{% svg dripicons view_list_large %}" + ] + }, + "view_thumb": { + "prefix": "svg.dripicons.view_thumb", + "description": "SVG dripicons - view_thumb", + "body": [ + "{% svg dripicons view_thumb %}" + ] + }, + "volume_full": { + "prefix": "svg.dripicons.volume_full", + "description": "SVG dripicons - volume_full", + "body": [ + "{% svg dripicons volume_full %}" + ] + }, + "volume_low": { + "prefix": "svg.dripicons.volume_low", + "description": "SVG dripicons - volume_low", + "body": [ + "{% svg dripicons volume_low %}" + ] + }, + "volume_medium": { + "prefix": "svg.dripicons.volume_medium", + "description": "SVG dripicons - volume_medium", + "body": [ + "{% svg dripicons volume_medium %}" + ] + }, + "volume_off": { + "prefix": "svg.dripicons.volume_off", + "description": "SVG dripicons - volume_off", + "body": [ + "{% svg dripicons volume_off %}" + ] + }, + "wallet": { + "prefix": "svg.dripicons.wallet", + "description": "SVG dripicons - wallet", + "body": [ + "{% svg dripicons wallet %}" + ] + }, + "warning": { + "prefix": "svg.dripicons.warning", + "description": "SVG dripicons - warning", + "body": [ + "{% svg dripicons warning %}" + ] + }, + "web": { + "prefix": "svg.dripicons.web", + "description": "SVG dripicons - web", + "body": [ + "{% svg dripicons web %}" + ] + }, + "weight": { + "prefix": "svg.dripicons.weight", + "description": "SVG dripicons - weight", + "body": [ + "{% svg dripicons weight %}" + ] + }, + "wifi": { + "prefix": "svg.dripicons.wifi", + "description": "SVG dripicons - wifi", + "body": [ + "{% svg dripicons wifi %}" + ] + }, + "wrong": { + "prefix": "svg.dripicons.wrong", + "description": "SVG dripicons - wrong", + "body": [ + "{% svg dripicons wrong %}" + ] + }, + "zoom_in": { + "prefix": "svg.dripicons.zoom_in", + "description": "SVG dripicons - zoom_in", + "body": [ + "{% svg dripicons zoom_in %}" + ] + } +} \ No newline at end of file diff --git a/lua/snippets/golang.json b/lua/snippets/golang.json new file mode 100644 index 0000000..cdd059f --- /dev/null +++ b/lua/snippets/golang.json @@ -0,0 +1,122 @@ +{ + "main": { + "prefix": "fmain", + "description": "main function", + "body": ["package main\n", "func main() {", "\t$1", "}"] + }, + "basicmainfile": { + "prefix": "basic", + "description": "basic main file", + "body": [ + "package main\n", + "import (", + "\t\"log\"", + "\t\"net/http\"", + "\t\"os\"\n", + "\t\"github.com/go-chi/chi\"", + "\t\"github.com/go-chi/cors\"", + "\t\"github.com/joho/godotenv\"", + ")\n", + "func main() {", + "\tgodotenv.Load(\".env\")\n", + "\tport := os.Getenv(\"PORT\")", + "\tif port == \"\" {", + "\t\tlog.Fatal(\"PORT environment variable is not set\")", + "\t}\n", + "\trouter := chi.NewRouter()\n", + "\trouter.Use(cors.Handler(cors.Options{", + "\t\tAllowedOrigins: []string{\"https://*\", \"http://*\"},", + "\t\tAllowedMethods: []string{\"GET\", \"POST\", \"PUT\", \"DELETE\", \"OPTIONS\"},", + "\t\tAllowedHeaders: []string{\"*\"},", + "\t\tExposedHeaders: []string{\"Link\"},", + "\t\tAllowCredentials: false,", + "\t\tMaxAge: 300,", + "\t}))\n", + "\tv1Router := chi.NewRouter()", + "\tv1Router.Get(\"/healthz\", handlerReadiness)", + "\tv1Router.Get(\"/err\", handlerErr)\n", + "\trouter.Mount(\"/v1\", v1Router)", + "\tsrv := &http.Server{", + "\t\tAddr: \":\" + port,", + "\t\tHandler: router,", + "\t}\n", + "\tfileServer := http.FileServer(http.Dir(\"./static/\"))", + "\tmux.Handle(\"/static/*\", http.StripPrefix(\"/static\", fileServer))\n", + "\tlog.Printf(\"Serving on port: %s\\n\", port)", + "\tlog.Fatal(srv.ListenAndServe())", + "}" + ] + }, + "error": { + "prefix": "ife", + "description": "if statment for error", + "body": ["if err != nil {", "\t$1", "}"] + }, + "println": { + "prefix": "pl", + "description": "fmt.Println", + "body": ["fmt.Println(\"$1\")"] + }, + "sprintf": { + "prefix": "spf", + "description": "fmt.Sprintf", + "body": ["fmt.Sprintf(\"$1\")"] + }, + "handler": { + "prefix": "hand", + "description": "http.Handler", + "body": ["func $1(w http.ResponseWriter, r *http.Request) {", "\t", "}"] + }, + "chirouter": { + "prefix": "chi", + "description": "import for chi router", + "body": ["github.com/go-chi/chi/v5"] + }, + "godotenv": { + "prefix": "godotenv", + "description": "Go dot env", + "body": ["\"github.com/joho/godotenv\""] + }, + "potgresdriver": { + "prefix": "postgresdriver", + "description": "Postgres Driver", + "body": ["\"https://github.com/lib/pq\""] + }, + "import": { + "prefix": "impt", + "description": "import tag", + "body": ["import (", "\t\"$1\"", ")\n"] + }, + "funcwithreceiver": { + "prefix": "fr", + "description": "Function with some receiver", + "body": ["func ($1 *$2) $3 {", "\t", "}"] + }, + "sqlcontext": { + "prefix": "ctx", + "description": "context with timeout", + "body": [ + "ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)\n", + "defer cancel()\n" + ] + }, + "fecho": { + "prefix": "fecho", + "description": "echo with fasthttp", + "body": [ + "package main\n", + "import (", + "\t\"net/http\"", + "\t\"github.com/labstack/echo/v4\"", + ")\n", + "func main() {", + "\te := echo.New()\n", + "\te.GET(\"/\", func(c echo.Context) error {", + "\t\treturn c.String(http.StatusOK, \"Hello, World!\")", + "\t})\n", + "\te.Static(\"/static\", \"static\")", + "\te.Logger.Fatal(e.Start(\":8000\"))", + "}" + ] + } +} diff --git a/lua/snippets/hero_outline.json b/lua/snippets/hero_outline.json new file mode 100644 index 0000000..16ba047 --- /dev/null +++ b/lua/snippets/hero_outline.json @@ -0,0 +1,1457 @@ +{ + "academic_cap": { + "prefix": "svg.hero_outline.academic_cap", + "description": "SVG hero_outline - academic_cap", + "body": ["{% svg hero_outline academic_cap %}"] + }, + "adjustments_horizontal": { + "prefix": "svg.hero_outline.adjustments_horizontal", + "description": "SVG hero_outline - adjustments_horizontal", + "body": ["{% svg hero_outline adjustments_horizontal %}"] + }, + "adjustments_vertical": { + "prefix": "svg.hero_outline.adjustments_vertical", + "description": "SVG hero_outline - adjustments_vertical", + "body": ["{% svg hero_outline adjustments_vertical %}"] + }, + "archive_box_arrow_down": { + "prefix": "svg.hero_outline.archive_box_arrow_down", + "description": "SVG hero_outline - archive_box_arrow_down", + "body": ["{% svg hero_outline archive_box_arrow_down %}"] + }, + "archive_box_x_mark": { + "prefix": "svg.hero_outline.archive_box_x_mark", + "description": "SVG hero_outline - archive_box_x_mark", + "body": ["{% svg hero_outline archive_box_x_mark %}"] + }, + "archive_box": { + "prefix": "svg.hero_outline.archive_box", + "description": "SVG hero_outline - archive_box", + "body": ["{% svg hero_outline archive_box %}"] + }, + "arrow_down_circle": { + "prefix": "svg.hero_outline.arrow_down_circle", + "description": "SVG hero_outline - arrow_down_circle", + "body": ["{% svg hero_outline arrow_down_circle %}"] + }, + "arrow_down_left": { + "prefix": "svg.hero_outline.arrow_down_left", + "description": "SVG hero_outline - arrow_down_left", + "body": ["{% svg hero_outline arrow_down_left %}"] + }, + "arrow_down_on_square_stack": { + "prefix": "svg.hero_outline.arrow_down_on_square_stack", + "description": "SVG hero_outline - arrow_down_on_square_stack", + "body": ["{% svg hero_outline arrow_down_on_square_stack %}"] + }, + "arrow_down_on_square": { + "prefix": "svg.hero_outline.arrow_down_on_square", + "description": "SVG hero_outline - arrow_down_on_square", + "body": ["{% svg hero_outline arrow_down_on_square %}"] + }, + "arrow_down_right": { + "prefix": "svg.hero_outline.arrow_down_right", + "description": "SVG hero_outline - arrow_down_right", + "body": ["{% svg hero_outline arrow_down_right %}"] + }, + "arrow_down_tray": { + "prefix": "svg.hero_outline.arrow_down_tray", + "description": "SVG hero_outline - arrow_down_tray", + "body": ["{% svg hero_outline arrow_down_tray %}"] + }, + "arrow_down": { + "prefix": "svg.hero_outline.arrow_down", + "description": "SVG hero_outline - arrow_down", + "body": ["{% svg hero_outline arrow_down %}"] + }, + "arrow_left_circle": { + "prefix": "svg.hero_outline.arrow_left_circle", + "description": "SVG hero_outline - arrow_left_circle", + "body": ["{% svg hero_outline arrow_left_circle %}"] + }, + "arrow_left_on_rectangle": { + "prefix": "svg.hero_outline.arrow_left_on_rectangle", + "description": "SVG hero_outline - arrow_left_on_rectangle", + "body": ["{% svg hero_outline arrow_left_on_rectangle %}"] + }, + "arrow_left": { + "prefix": "svg.hero_outline.arrow_left", + "description": "SVG hero_outline - arrow_left", + "body": ["{% svg hero_outline arrow_left %}"] + }, + "arrow_long_down": { + "prefix": "svg.hero_outline.arrow_long_down", + "description": "SVG hero_outline - arrow_long_down", + "body": ["{% svg hero_outline arrow_long_down %}"] + }, + "arrow_long_left": { + "prefix": "svg.hero_outline.arrow_long_left", + "description": "SVG hero_outline - arrow_long_left", + "body": ["{% svg hero_outline arrow_long_left %}"] + }, + "arrow_long_right": { + "prefix": "svg.hero_outline.arrow_long_right", + "description": "SVG hero_outline - arrow_long_right", + "body": ["{% svg hero_outline arrow_long_right %}"] + }, + "arrow_long_up": { + "prefix": "svg.hero_outline.arrow_long_up", + "description": "SVG hero_outline - arrow_long_up", + "body": ["{% svg hero_outline arrow_long_up %}"] + }, + "arrow_path_rounded_square": { + "prefix": "svg.hero_outline.arrow_path_rounded_square", + "description": "SVG hero_outline - arrow_path_rounded_square", + "body": ["{% svg hero_outline arrow_path_rounded_square %}"] + }, + "arrow_path": { + "prefix": "svg.hero_outline.arrow_path", + "description": "SVG hero_outline - arrow_path", + "body": ["{% svg hero_outline arrow_path %}"] + }, + "arrow_right_circle": { + "prefix": "svg.hero_outline.arrow_right_circle", + "description": "SVG hero_outline - arrow_right_circle", + "body": ["{% svg hero_outline arrow_right_circle %}"] + }, + "arrow_right_on_rectangle": { + "prefix": "svg.hero_outline.arrow_right_on_rectangle", + "description": "SVG hero_outline - arrow_right_on_rectangle", + "body": ["{% svg hero_outline arrow_right_on_rectangle %}"] + }, + "arrow_right": { + "prefix": "svg.hero_outline.arrow_right", + "description": "SVG hero_outline - arrow_right", + "body": ["{% svg hero_outline arrow_right %}"] + }, + "arrow_small_down": { + "prefix": "svg.hero_outline.arrow_small_down", + "description": "SVG hero_outline - arrow_small_down", + "body": ["{% svg hero_outline arrow_small_down %}"] + }, + "arrow_small_left": { + "prefix": "svg.hero_outline.arrow_small_left", + "description": "SVG hero_outline - arrow_small_left", + "body": ["{% svg hero_outline arrow_small_left %}"] + }, + "arrow_small_right": { + "prefix": "svg.hero_outline.arrow_small_right", + "description": "SVG hero_outline - arrow_small_right", + "body": ["{% svg hero_outline arrow_small_right %}"] + }, + "arrow_small_up": { + "prefix": "svg.hero_outline.arrow_small_up", + "description": "SVG hero_outline - arrow_small_up", + "body": ["{% svg hero_outline arrow_small_up %}"] + }, + "arrow_top_right_on_square": { + "prefix": "svg.hero_outline.arrow_top_right_on_square", + "description": "SVG hero_outline - arrow_top_right_on_square", + "body": ["{% svg hero_outline arrow_top_right_on_square %}"] + }, + "arrow_trending_down": { + "prefix": "svg.hero_outline.arrow_trending_down", + "description": "SVG hero_outline - arrow_trending_down", + "body": ["{% svg hero_outline arrow_trending_down %}"] + }, + "arrow_trending_up": { + "prefix": "svg.hero_outline.arrow_trending_up", + "description": "SVG hero_outline - arrow_trending_up", + "body": ["{% svg hero_outline arrow_trending_up %}"] + }, + "arrow_up_circle": { + "prefix": "svg.hero_outline.arrow_up_circle", + "description": "SVG hero_outline - arrow_up_circle", + "body": ["{% svg hero_outline arrow_up_circle %}"] + }, + "arrow_up_left": { + "prefix": "svg.hero_outline.arrow_up_left", + "description": "SVG hero_outline - arrow_up_left", + "body": ["{% svg hero_outline arrow_up_left %}"] + }, + "arrow_up_on_square_stack": { + "prefix": "svg.hero_outline.arrow_up_on_square_stack", + "description": "SVG hero_outline - arrow_up_on_square_stack", + "body": ["{% svg hero_outline arrow_up_on_square_stack %}"] + }, + "arrow_up_on_square": { + "prefix": "svg.hero_outline.arrow_up_on_square", + "description": "SVG hero_outline - arrow_up_on_square", + "body": ["{% svg hero_outline arrow_up_on_square %}"] + }, + "arrow_up_right": { + "prefix": "svg.hero_outline.arrow_up_right", + "description": "SVG hero_outline - arrow_up_right", + "body": ["{% svg hero_outline arrow_up_right %}"] + }, + "arrow_up_tray": { + "prefix": "svg.hero_outline.arrow_up_tray", + "description": "SVG hero_outline - arrow_up_tray", + "body": ["{% svg hero_outline arrow_up_tray %}"] + }, + "arrow_up": { + "prefix": "svg.hero_outline.arrow_up", + "description": "SVG hero_outline - arrow_up", + "body": ["{% svg hero_outline arrow_up %}"] + }, + "arrow_uturn_down": { + "prefix": "svg.hero_outline.arrow_uturn_down", + "description": "SVG hero_outline - arrow_uturn_down", + "body": ["{% svg hero_outline arrow_uturn_down %}"] + }, + "arrow_uturn_left": { + "prefix": "svg.hero_outline.arrow_uturn_left", + "description": "SVG hero_outline - arrow_uturn_left", + "body": ["{% svg hero_outline arrow_uturn_left %}"] + }, + "arrow_uturn_right": { + "prefix": "svg.hero_outline.arrow_uturn_right", + "description": "SVG hero_outline - arrow_uturn_right", + "body": ["{% svg hero_outline arrow_uturn_right %}"] + }, + "arrow_uturn_up": { + "prefix": "svg.hero_outline.arrow_uturn_up", + "description": "SVG hero_outline - arrow_uturn_up", + "body": ["{% svg hero_outline arrow_uturn_up %}"] + }, + "arrows_pointing_in": { + "prefix": "svg.hero_outline.arrows_pointing_in", + "description": "SVG hero_outline - arrows_pointing_in", + "body": ["{% svg hero_outline arrows_pointing_in %}"] + }, + "arrows_pointing_out": { + "prefix": "svg.hero_outline.arrows_pointing_out", + "description": "SVG hero_outline - arrows_pointing_out", + "body": ["{% svg hero_outline arrows_pointing_out %}"] + }, + "arrows_right_left": { + "prefix": "svg.hero_outline.arrows_right_left", + "description": "SVG hero_outline - arrows_right_left", + "body": ["{% svg hero_outline arrows_right_left %}"] + }, + "arrows_up_down": { + "prefix": "svg.hero_outline.arrows_up_down", + "description": "SVG hero_outline - arrows_up_down", + "body": ["{% svg hero_outline arrows_up_down %}"] + }, + "at_symbol": { + "prefix": "svg.hero_outline.at_symbol", + "description": "SVG hero_outline - at_symbol", + "body": ["{% svg hero_outline at_symbol %}"] + }, + "backspace": { + "prefix": "svg.hero_outline.backspace", + "description": "SVG hero_outline - backspace", + "body": ["{% svg hero_outline backspace %}"] + }, + "backward": { + "prefix": "svg.hero_outline.backward", + "description": "SVG hero_outline - backward", + "body": ["{% svg hero_outline backward %}"] + }, + "banknotes": { + "prefix": "svg.hero_outline.banknotes", + "description": "SVG hero_outline - banknotes", + "body": ["{% svg hero_outline banknotes %}"] + }, + "bars_2": { + "prefix": "svg.hero_outline.bars_2", + "description": "SVG hero_outline - bars_2", + "body": ["{% svg hero_outline bars_2 %}"] + }, + "bars_3_bottom_left": { + "prefix": "svg.hero_outline.bars_3_bottom_left", + "description": "SVG hero_outline - bars_3_bottom_left", + "body": ["{% svg hero_outline bars_3_bottom_left %}"] + }, + "bars_3_bottom_right": { + "prefix": "svg.hero_outline.bars_3_bottom_right", + "description": "SVG hero_outline - bars_3_bottom_right", + "body": ["{% svg hero_outline bars_3_bottom_right %}"] + }, + "bars_3_center_left": { + "prefix": "svg.hero_outline.bars_3_center_left", + "description": "SVG hero_outline - bars_3_center_left", + "body": ["{% svg hero_outline bars_3_center_left %}"] + }, + "bars_3": { + "prefix": "svg.hero_outline.bars_3", + "description": "SVG hero_outline - bars_3", + "body": ["{% svg hero_outline bars_3 %}"] + }, + "bars_4": { + "prefix": "svg.hero_outline.bars_4", + "description": "SVG hero_outline - bars_4", + "body": ["{% svg hero_outline bars_4 %}"] + }, + "bars_arrow_down": { + "prefix": "svg.hero_outline.bars_arrow_down", + "description": "SVG hero_outline - bars_arrow_down", + "body": ["{% svg hero_outline bars_arrow_down %}"] + }, + "bars_arrow_up": { + "prefix": "svg.hero_outline.bars_arrow_up", + "description": "SVG hero_outline - bars_arrow_up", + "body": ["{% svg hero_outline bars_arrow_up %}"] + }, + "battery_0": { + "prefix": "svg.hero_outline.battery_0", + "description": "SVG hero_outline - battery_0", + "body": ["{% svg hero_outline battery_0 %}"] + }, + "battery_100": { + "prefix": "svg.hero_outline.battery_100", + "description": "SVG hero_outline - battery_100", + "body": ["{% svg hero_outline battery_100 %}"] + }, + "battery_50": { + "prefix": "svg.hero_outline.battery_50", + "description": "SVG hero_outline - battery_50", + "body": ["{% svg hero_outline battery_50 %}"] + }, + "beaker": { + "prefix": "svg.hero_outline.beaker", + "description": "SVG hero_outline - beaker", + "body": ["{% svg hero_outline beaker %}"] + }, + "bell_alert": { + "prefix": "svg.hero_outline.bell_alert", + "description": "SVG hero_outline - bell_alert", + "body": ["{% svg hero_outline bell_alert %}"] + }, + "bell_slash": { + "prefix": "svg.hero_outline.bell_slash", + "description": "SVG hero_outline - bell_slash", + "body": ["{% svg hero_outline bell_slash %}"] + }, + "bell_snooze": { + "prefix": "svg.hero_outline.bell_snooze", + "description": "SVG hero_outline - bell_snooze", + "body": ["{% svg hero_outline bell_snooze %}"] + }, + "bell": { + "prefix": "svg.hero_outline.bell", + "description": "SVG hero_outline - bell", + "body": ["{% svg hero_outline bell %}"] + }, + "bolt_slash": { + "prefix": "svg.hero_outline.bolt_slash", + "description": "SVG hero_outline - bolt_slash", + "body": ["{% svg hero_outline bolt_slash %}"] + }, + "bolt": { + "prefix": "svg.hero_outline.bolt", + "description": "SVG hero_outline - bolt", + "body": ["{% svg hero_outline bolt %}"] + }, + "book_open": { + "prefix": "svg.hero_outline.book_open", + "description": "SVG hero_outline - book_open", + "body": ["{% svg hero_outline book_open %}"] + }, + "bookmark_slash": { + "prefix": "svg.hero_outline.bookmark_slash", + "description": "SVG hero_outline - bookmark_slash", + "body": ["{% svg hero_outline bookmark_slash %}"] + }, + "bookmark_square": { + "prefix": "svg.hero_outline.bookmark_square", + "description": "SVG hero_outline - bookmark_square", + "body": ["{% svg hero_outline bookmark_square %}"] + }, + "bookmark": { + "prefix": "svg.hero_outline.bookmark", + "description": "SVG hero_outline - bookmark", + "body": ["{% svg hero_outline bookmark %}"] + }, + "briefcase": { + "prefix": "svg.hero_outline.briefcase", + "description": "SVG hero_outline - briefcase", + "body": ["{% svg hero_outline briefcase %}"] + }, + "bug_ant": { + "prefix": "svg.hero_outline.bug_ant", + "description": "SVG hero_outline - bug_ant", + "body": ["{% svg hero_outline bug_ant %}"] + }, + "building_library": { + "prefix": "svg.hero_outline.building_library", + "description": "SVG hero_outline - building_library", + "body": ["{% svg hero_outline building_library %}"] + }, + "building_office_2": { + "prefix": "svg.hero_outline.building_office_2", + "description": "SVG hero_outline - building_office_2", + "body": ["{% svg hero_outline building_office_2 %}"] + }, + "building_office": { + "prefix": "svg.hero_outline.building_office", + "description": "SVG hero_outline - building_office", + "body": ["{% svg hero_outline building_office %}"] + }, + "building_storefront": { + "prefix": "svg.hero_outline.building_storefront", + "description": "SVG hero_outline - building_storefront", + "body": ["{% svg hero_outline building_storefront %}"] + }, + "cake": { + "prefix": "svg.hero_outline.cake", + "description": "SVG hero_outline - cake", + "body": ["{% svg hero_outline cake %}"] + }, + "calculator": { + "prefix": "svg.hero_outline.calculator", + "description": "SVG hero_outline - calculator", + "body": ["{% svg hero_outline calculator %}"] + }, + "calendar_days": { + "prefix": "svg.hero_outline.calendar_days", + "description": "SVG hero_outline - calendar_days", + "body": ["{% svg hero_outline calendar_days %}"] + }, + "calendar": { + "prefix": "svg.hero_outline.calendar", + "description": "SVG hero_outline - calendar", + "body": ["{% svg hero_outline calendar %}"] + }, + "camera": { + "prefix": "svg.hero_outline.camera", + "description": "SVG hero_outline - camera", + "body": ["{% svg hero_outline camera %}"] + }, + "chart_bar_square": { + "prefix": "svg.hero_outline.chart_bar_square", + "description": "SVG hero_outline - chart_bar_square", + "body": ["{% svg hero_outline chart_bar_square %}"] + }, + "chart_bar": { + "prefix": "svg.hero_outline.chart_bar", + "description": "SVG hero_outline - chart_bar", + "body": ["{% svg hero_outline chart_bar %}"] + }, + "chart_pie": { + "prefix": "svg.hero_outline.chart_pie", + "description": "SVG hero_outline - chart_pie", + "body": ["{% svg hero_outline chart_pie %}"] + }, + "chat_bubble_bottom_center_text": { + "prefix": "svg.hero_outline.chat_bubble_bottom_center_text", + "description": "SVG hero_outline - chat_bubble_bottom_center_text", + "body": ["{% svg hero_outline chat_bubble_bottom_center_text %}"] + }, + "chat_bubble_bottom_center": { + "prefix": "svg.hero_outline.chat_bubble_bottom_center", + "description": "SVG hero_outline - chat_bubble_bottom_center", + "body": ["{% svg hero_outline chat_bubble_bottom_center %}"] + }, + "chat_bubble_left_ellipsis": { + "prefix": "svg.hero_outline.chat_bubble_left_ellipsis", + "description": "SVG hero_outline - chat_bubble_left_ellipsis", + "body": ["{% svg hero_outline chat_bubble_left_ellipsis %}"] + }, + "chat_bubble_left_right": { + "prefix": "svg.hero_outline.chat_bubble_left_right", + "description": "SVG hero_outline - chat_bubble_left_right", + "body": ["{% svg hero_outline chat_bubble_left_right %}"] + }, + "chat_bubble_left": { + "prefix": "svg.hero_outline.chat_bubble_left", + "description": "SVG hero_outline - chat_bubble_left", + "body": ["{% svg hero_outline chat_bubble_left %}"] + }, + "chat_bubble_oval_left_ellipsis": { + "prefix": "svg.hero_outline.chat_bubble_oval_left_ellipsis", + "description": "SVG hero_outline - chat_bubble_oval_left_ellipsis", + "body": ["{% svg hero_outline chat_bubble_oval_left_ellipsis %}"] + }, + "chat_bubble_oval_left": { + "prefix": "svg.hero_outline.chat_bubble_oval_left", + "description": "SVG hero_outline - chat_bubble_oval_left", + "body": ["{% svg hero_outline chat_bubble_oval_left %}"] + }, + "check_badge": { + "prefix": "svg.hero_outline.check_badge", + "description": "SVG hero_outline - check_badge", + "body": ["{% svg hero_outline check_badge %}"] + }, + "check_circle": { + "prefix": "svg.hero_outline.check_circle", + "description": "SVG hero_outline - check_circle", + "body": ["{% svg hero_outline check_circle %}"] + }, + "check": { + "prefix": "svg.hero_outline.check", + "description": "SVG hero_outline - check", + "body": ["{% svg hero_outline check %}"] + }, + "chevron_double_down": { + "prefix": "svg.hero_outline.chevron_double_down", + "description": "SVG hero_outline - chevron_double_down", + "body": ["{% svg hero_outline chevron_double_down %}"] + }, + "chevron_double_left": { + "prefix": "svg.hero_outline.chevron_double_left", + "description": "SVG hero_outline - chevron_double_left", + "body": ["{% svg hero_outline chevron_double_left %}"] + }, + "chevron_double_right": { + "prefix": "svg.hero_outline.chevron_double_right", + "description": "SVG hero_outline - chevron_double_right", + "body": ["{% svg hero_outline chevron_double_right %}"] + }, + "chevron_double_up": { + "prefix": "svg.hero_outline.chevron_double_up", + "description": "SVG hero_outline - chevron_double_up", + "body": ["{% svg hero_outline chevron_double_up %}"] + }, + "chevron_down": { + "prefix": "svg.hero_outline.chevron_down", + "description": "SVG hero_outline - chevron_down", + "body": ["{% svg hero_outline chevron_down %}"] + }, + "chevron_left": { + "prefix": "svg.hero_outline.chevron_left", + "description": "SVG hero_outline - chevron_left", + "body": ["{% svg hero_outline chevron_left %}"] + }, + "chevron_right": { + "prefix": "svg.hero_outline.chevron_right", + "description": "SVG hero_outline - chevron_right", + "body": ["{% svg hero_outline chevron_right %}"] + }, + "chevron_up_down": { + "prefix": "svg.hero_outline.chevron_up_down", + "description": "SVG hero_outline - chevron_up_down", + "body": ["{% svg hero_outline chevron_up_down %}"] + }, + "chevron_up": { + "prefix": "svg.hero_outline.chevron_up", + "description": "SVG hero_outline - chevron_up", + "body": ["{% svg hero_outline chevron_up %}"] + }, + "circle_stack": { + "prefix": "svg.hero_outline.circle_stack", + "description": "SVG hero_outline - circle_stack", + "body": ["{% svg hero_outline circle_stack %}"] + }, + "clipboard_document_check": { + "prefix": "svg.hero_outline.clipboard_document_check", + "description": "SVG hero_outline - clipboard_document_check", + "body": ["{% svg hero_outline clipboard_document_check %}"] + }, + "clipboard_document_list": { + "prefix": "svg.hero_outline.clipboard_document_list", + "description": "SVG hero_outline - clipboard_document_list", + "body": ["{% svg hero_outline clipboard_document_list %}"] + }, + "clipboard_document": { + "prefix": "svg.hero_outline.clipboard_document", + "description": "SVG hero_outline - clipboard_document", + "body": ["{% svg hero_outline clipboard_document %}"] + }, + "clipboard": { + "prefix": "svg.hero_outline.clipboard", + "description": "SVG hero_outline - clipboard", + "body": ["{% svg hero_outline clipboard %}"] + }, + "clock": { + "prefix": "svg.hero_outline.clock", + "description": "SVG hero_outline - clock", + "body": ["{% svg hero_outline clock %}"] + }, + "cloud_arrow_down": { + "prefix": "svg.hero_outline.cloud_arrow_down", + "description": "SVG hero_outline - cloud_arrow_down", + "body": ["{% svg hero_outline cloud_arrow_down %}"] + }, + "cloud_arrow_up": { + "prefix": "svg.hero_outline.cloud_arrow_up", + "description": "SVG hero_outline - cloud_arrow_up", + "body": ["{% svg hero_outline cloud_arrow_up %}"] + }, + "cloud": { + "prefix": "svg.hero_outline.cloud", + "description": "SVG hero_outline - cloud", + "body": ["{% svg hero_outline cloud %}"] + }, + "code_bracket_square": { + "prefix": "svg.hero_outline.code_bracket_square", + "description": "SVG hero_outline - code_bracket_square", + "body": ["{% svg hero_outline code_bracket_square %}"] + }, + "code_bracket": { + "prefix": "svg.hero_outline.code_bracket", + "description": "SVG hero_outline - code_bracket", + "body": ["{% svg hero_outline code_bracket %}"] + }, + "cog_6_tooth": { + "prefix": "svg.hero_outline.cog_6_tooth", + "description": "SVG hero_outline - cog_6_tooth", + "body": ["{% svg hero_outline cog_6_tooth %}"] + }, + "cog_8_tooth": { + "prefix": "svg.hero_outline.cog_8_tooth", + "description": "SVG hero_outline - cog_8_tooth", + "body": ["{% svg hero_outline cog_8_tooth %}"] + }, + "cog": { + "prefix": "svg.hero_outline.cog", + "description": "SVG hero_outline - cog", + "body": ["{% svg hero_outline cog %}"] + }, + "command_line": { + "prefix": "svg.hero_outline.command_line", + "description": "SVG hero_outline - command_line", + "body": ["{% svg hero_outline command_line %}"] + }, + "computer_desktop": { + "prefix": "svg.hero_outline.computer_desktop", + "description": "SVG hero_outline - computer_desktop", + "body": ["{% svg hero_outline computer_desktop %}"] + }, + "cpu_chip": { + "prefix": "svg.hero_outline.cpu_chip", + "description": "SVG hero_outline - cpu_chip", + "body": ["{% svg hero_outline cpu_chip %}"] + }, + "credit_card": { + "prefix": "svg.hero_outline.credit_card", + "description": "SVG hero_outline - credit_card", + "body": ["{% svg hero_outline credit_card %}"] + }, + "cube_transparent": { + "prefix": "svg.hero_outline.cube_transparent", + "description": "SVG hero_outline - cube_transparent", + "body": ["{% svg hero_outline cube_transparent %}"] + }, + "cube": { + "prefix": "svg.hero_outline.cube", + "description": "SVG hero_outline - cube", + "body": ["{% svg hero_outline cube %}"] + }, + "currency_bangladeshi": { + "prefix": "svg.hero_outline.currency_bangladeshi", + "description": "SVG hero_outline - currency_bangladeshi", + "body": ["{% svg hero_outline currency_bangladeshi %}"] + }, + "currency_dollar": { + "prefix": "svg.hero_outline.currency_dollar", + "description": "SVG hero_outline - currency_dollar", + "body": ["{% svg hero_outline currency_dollar %}"] + }, + "currency_euro": { + "prefix": "svg.hero_outline.currency_euro", + "description": "SVG hero_outline - currency_euro", + "body": ["{% svg hero_outline currency_euro %}"] + }, + "currency_pound": { + "prefix": "svg.hero_outline.currency_pound", + "description": "SVG hero_outline - currency_pound", + "body": ["{% svg hero_outline currency_pound %}"] + }, + "currency_rupee": { + "prefix": "svg.hero_outline.currency_rupee", + "description": "SVG hero_outline - currency_rupee", + "body": ["{% svg hero_outline currency_rupee %}"] + }, + "currency_yen": { + "prefix": "svg.hero_outline.currency_yen", + "description": "SVG hero_outline - currency_yen", + "body": ["{% svg hero_outline currency_yen %}"] + }, + "cursor_arrow_rays": { + "prefix": "svg.hero_outline.cursor_arrow_rays", + "description": "SVG hero_outline - cursor_arrow_rays", + "body": ["{% svg hero_outline cursor_arrow_rays %}"] + }, + "cursor_arrow_ripple": { + "prefix": "svg.hero_outline.cursor_arrow_ripple", + "description": "SVG hero_outline - cursor_arrow_ripple", + "body": ["{% svg hero_outline cursor_arrow_ripple %}"] + }, + "device_phone_mobile": { + "prefix": "svg.hero_outline.device_phone_mobile", + "description": "SVG hero_outline - device_phone_mobile", + "body": ["{% svg hero_outline device_phone_mobile %}"] + }, + "device_tablet": { + "prefix": "svg.hero_outline.device_tablet", + "description": "SVG hero_outline - device_tablet", + "body": ["{% svg hero_outline device_tablet %}"] + }, + "document_arrow_down": { + "prefix": "svg.hero_outline.document_arrow_down", + "description": "SVG hero_outline - document_arrow_down", + "body": ["{% svg hero_outline document_arrow_down %}"] + }, + "document_arrow_up": { + "prefix": "svg.hero_outline.document_arrow_up", + "description": "SVG hero_outline - document_arrow_up", + "body": ["{% svg hero_outline document_arrow_up %}"] + }, + "document_chart_bar": { + "prefix": "svg.hero_outline.document_chart_bar", + "description": "SVG hero_outline - document_chart_bar", + "body": ["{% svg hero_outline document_chart_bar %}"] + }, + "document_check": { + "prefix": "svg.hero_outline.document_check", + "description": "SVG hero_outline - document_check", + "body": ["{% svg hero_outline document_check %}"] + }, + "document_duplicate": { + "prefix": "svg.hero_outline.document_duplicate", + "description": "SVG hero_outline - document_duplicate", + "body": ["{% svg hero_outline document_duplicate %}"] + }, + "document_magnifying_glass": { + "prefix": "svg.hero_outline.document_magnifying_glass", + "description": "SVG hero_outline - document_magnifying_glass", + "body": ["{% svg hero_outline document_magnifying_glass %}"] + }, + "document_minus": { + "prefix": "svg.hero_outline.document_minus", + "description": "SVG hero_outline - document_minus", + "body": ["{% svg hero_outline document_minus %}"] + }, + "document_plus": { + "prefix": "svg.hero_outline.document_plus", + "description": "SVG hero_outline - document_plus", + "body": ["{% svg hero_outline document_plus %}"] + }, + "document_text": { + "prefix": "svg.hero_outline.document_text", + "description": "SVG hero_outline - document_text", + "body": ["{% svg hero_outline document_text %}"] + }, + "document": { + "prefix": "svg.hero_outline.document", + "description": "SVG hero_outline - document", + "body": ["{% svg hero_outline document %}"] + }, + "ellipsis_horizontal_circle": { + "prefix": "svg.hero_outline.ellipsis_horizontal_circle", + "description": "SVG hero_outline - ellipsis_horizontal_circle", + "body": ["{% svg hero_outline ellipsis_horizontal_circle %}"] + }, + "ellipsis_horizontal": { + "prefix": "svg.hero_outline.ellipsis_horizontal", + "description": "SVG hero_outline - ellipsis_horizontal", + "body": ["{% svg hero_outline ellipsis_horizontal %}"] + }, + "ellipsis_vertical": { + "prefix": "svg.hero_outline.ellipsis_vertical", + "description": "SVG hero_outline - ellipsis_vertical", + "body": ["{% svg hero_outline ellipsis_vertical %}"] + }, + "envelope_open": { + "prefix": "svg.hero_outline.envelope_open", + "description": "SVG hero_outline - envelope_open", + "body": ["{% svg hero_outline envelope_open %}"] + }, + "envelope": { + "prefix": "svg.hero_outline.envelope", + "description": "SVG hero_outline - envelope", + "body": ["{% svg hero_outline envelope %}"] + }, + "exclamation_circle": { + "prefix": "svg.hero_outline.exclamation_circle", + "description": "SVG hero_outline - exclamation_circle", + "body": ["{% svg hero_outline exclamation_circle %}"] + }, + "exclamation_triangle": { + "prefix": "svg.hero_outline.exclamation_triangle", + "description": "SVG hero_outline - exclamation_triangle", + "body": ["{% svg hero_outline exclamation_triangle %}"] + }, + "eye_dropper": { + "prefix": "svg.hero_outline.eye_dropper", + "description": "SVG hero_outline - eye_dropper", + "body": ["{% svg hero_outline eye_dropper %}"] + }, + "eye_slash": { + "prefix": "svg.hero_outline.eye_slash", + "description": "SVG hero_outline - eye_slash", + "body": ["{% svg hero_outline eye_slash %}"] + }, + "eye": { + "prefix": "svg.hero_outline.eye", + "description": "SVG hero_outline - eye", + "body": ["{% svg hero_outline eye %}"] + }, + "face_frown": { + "prefix": "svg.hero_outline.face_frown", + "description": "SVG hero_outline - face_frown", + "body": ["{% svg hero_outline face_frown %}"] + }, + "face_smile": { + "prefix": "svg.hero_outline.face_smile", + "description": "SVG hero_outline - face_smile", + "body": ["{% svg hero_outline face_smile %}"] + }, + "film": { + "prefix": "svg.hero_outline.film", + "description": "SVG hero_outline - film", + "body": ["{% svg hero_outline film %}"] + }, + "finger_print": { + "prefix": "svg.hero_outline.finger_print", + "description": "SVG hero_outline - finger_print", + "body": ["{% svg hero_outline finger_print %}"] + }, + "fire": { + "prefix": "svg.hero_outline.fire", + "description": "SVG hero_outline - fire", + "body": ["{% svg hero_outline fire %}"] + }, + "flag": { + "prefix": "svg.hero_outline.flag", + "description": "SVG hero_outline - flag", + "body": ["{% svg hero_outline flag %}"] + }, + "folder_arrow_down": { + "prefix": "svg.hero_outline.folder_arrow_down", + "description": "SVG hero_outline - folder_arrow_down", + "body": ["{% svg hero_outline folder_arrow_down %}"] + }, + "folder_minus": { + "prefix": "svg.hero_outline.folder_minus", + "description": "SVG hero_outline - folder_minus", + "body": ["{% svg hero_outline folder_minus %}"] + }, + "folder_open": { + "prefix": "svg.hero_outline.folder_open", + "description": "SVG hero_outline - folder_open", + "body": ["{% svg hero_outline folder_open %}"] + }, + "folder_plus": { + "prefix": "svg.hero_outline.folder_plus", + "description": "SVG hero_outline - folder_plus", + "body": ["{% svg hero_outline folder_plus %}"] + }, + "folder": { + "prefix": "svg.hero_outline.folder", + "description": "SVG hero_outline - folder", + "body": ["{% svg hero_outline folder %}"] + }, + "forward": { + "prefix": "svg.hero_outline.forward", + "description": "SVG hero_outline - forward", + "body": ["{% svg hero_outline forward %}"] + }, + "funnel": { + "prefix": "svg.hero_outline.funnel", + "description": "SVG hero_outline - funnel", + "body": ["{% svg hero_outline funnel %}"] + }, + "gif": { + "prefix": "svg.hero_outline.gif", + "description": "SVG hero_outline - gif", + "body": ["{% svg hero_outline gif %}"] + }, + "gift_top": { + "prefix": "svg.hero_outline.gift_top", + "description": "SVG hero_outline - gift_top", + "body": ["{% svg hero_outline gift_top %}"] + }, + "gift": { + "prefix": "svg.hero_outline.gift", + "description": "SVG hero_outline - gift", + "body": ["{% svg hero_outline gift %}"] + }, + "globe_alt": { + "prefix": "svg.hero_outline.globe_alt", + "description": "SVG hero_outline - globe_alt", + "body": ["{% svg hero_outline globe_alt %}"] + }, + "globe_americas": { + "prefix": "svg.hero_outline.globe_americas", + "description": "SVG hero_outline - globe_americas", + "body": ["{% svg hero_outline globe_americas %}"] + }, + "globe_asia_australia": { + "prefix": "svg.hero_outline.globe_asia_australia", + "description": "SVG hero_outline - globe_asia_australia", + "body": ["{% svg hero_outline globe_asia_australia %}"] + }, + "globe_europe_africa": { + "prefix": "svg.hero_outline.globe_europe_africa", + "description": "SVG hero_outline - globe_europe_africa", + "body": ["{% svg hero_outline globe_europe_africa %}"] + }, + "hand_raised": { + "prefix": "svg.hero_outline.hand_raised", + "description": "SVG hero_outline - hand_raised", + "body": ["{% svg hero_outline hand_raised %}"] + }, + "hand_thumb_down": { + "prefix": "svg.hero_outline.hand_thumb_down", + "description": "SVG hero_outline - hand_thumb_down", + "body": ["{% svg hero_outline hand_thumb_down %}"] + }, + "hand_thumb_up": { + "prefix": "svg.hero_outline.hand_thumb_up", + "description": "SVG hero_outline - hand_thumb_up", + "body": ["{% svg hero_outline hand_thumb_up %}"] + }, + "hashtag": { + "prefix": "svg.hero_outline.hashtag", + "description": "SVG hero_outline - hashtag", + "body": ["{% svg hero_outline hashtag %}"] + }, + "heart": { + "prefix": "svg.hero_outline.heart", + "description": "SVG hero_outline - heart", + "body": ["{% svg hero_outline heart %}"] + }, + "home_modern": { + "prefix": "svg.hero_outline.home_modern", + "description": "SVG hero_outline - home_modern", + "body": ["{% svg hero_outline home_modern %}"] + }, + "home": { + "prefix": "svg.hero_outline.home", + "description": "SVG hero_outline - home", + "body": ["{% svg hero_outline home %}"] + }, + "identification": { + "prefix": "svg.hero_outline.identification", + "description": "SVG hero_outline - identification", + "body": ["{% svg hero_outline identification %}"] + }, + "inbox_arrow_down": { + "prefix": "svg.hero_outline.inbox_arrow_down", + "description": "SVG hero_outline - inbox_arrow_down", + "body": ["{% svg hero_outline inbox_arrow_down %}"] + }, + "inbox_stack": { + "prefix": "svg.hero_outline.inbox_stack", + "description": "SVG hero_outline - inbox_stack", + "body": ["{% svg hero_outline inbox_stack %}"] + }, + "inbox": { + "prefix": "svg.hero_outline.inbox", + "description": "SVG hero_outline - inbox", + "body": ["{% svg hero_outline inbox %}"] + }, + "information_circle": { + "prefix": "svg.hero_outline.information_circle", + "description": "SVG hero_outline - information_circle", + "body": ["{% svg hero_outline information_circle %}"] + }, + "key": { + "prefix": "svg.hero_outline.key", + "description": "SVG hero_outline - key", + "body": ["{% svg hero_outline key %}"] + }, + "language": { + "prefix": "svg.hero_outline.language", + "description": "SVG hero_outline - language", + "body": ["{% svg hero_outline language %}"] + }, + "lifebuoy": { + "prefix": "svg.hero_outline.lifebuoy", + "description": "SVG hero_outline - lifebuoy", + "body": ["{% svg hero_outline lifebuoy %}"] + }, + "light_bulb": { + "prefix": "svg.hero_outline.light_bulb", + "description": "SVG hero_outline - light_bulb", + "body": ["{% svg hero_outline light_bulb %}"] + }, + "link": { + "prefix": "svg.hero_outline.link", + "description": "SVG hero_outline - link", + "body": ["{% svg hero_outline link %}"] + }, + "list_bullet": { + "prefix": "svg.hero_outline.list_bullet", + "description": "SVG hero_outline - list_bullet", + "body": ["{% svg hero_outline list_bullet %}"] + }, + "lock_closed": { + "prefix": "svg.hero_outline.lock_closed", + "description": "SVG hero_outline - lock_closed", + "body": ["{% svg hero_outline lock_closed %}"] + }, + "lock_open": { + "prefix": "svg.hero_outline.lock_open", + "description": "SVG hero_outline - lock_open", + "body": ["{% svg hero_outline lock_open %}"] + }, + "magnifying_glass_circle": { + "prefix": "svg.hero_outline.magnifying_glass_circle", + "description": "SVG hero_outline - magnifying_glass_circle", + "body": ["{% svg hero_outline magnifying_glass_circle %}"] + }, + "magnifying_glass_minus": { + "prefix": "svg.hero_outline.magnifying_glass_minus", + "description": "SVG hero_outline - magnifying_glass_minus", + "body": ["{% svg hero_outline magnifying_glass_minus %}"] + }, + "magnifying_glass_plus": { + "prefix": "svg.hero_outline.magnifying_glass_plus", + "description": "SVG hero_outline - magnifying_glass_plus", + "body": ["{% svg hero_outline magnifying_glass_plus %}"] + }, + "magnifying_glass": { + "prefix": "svg.hero_outline.magnifying_glass", + "description": "SVG hero_outline - magnifying_glass", + "body": ["{% svg hero_outline magnifying_glass %}"] + }, + "map_pin": { + "prefix": "svg.hero_outline.map_pin", + "description": "SVG hero_outline - map_pin", + "body": ["{% svg hero_outline map_pin %}"] + }, + "map": { + "prefix": "svg.hero_outline.map", + "description": "SVG hero_outline - map", + "body": ["{% svg hero_outline map %}"] + }, + "megaphone": { + "prefix": "svg.hero_outline.megaphone", + "description": "SVG hero_outline - megaphone", + "body": ["{% svg hero_outline megaphone %}"] + }, + "microphone": { + "prefix": "svg.hero_outline.microphone", + "description": "SVG hero_outline - microphone", + "body": ["{% svg hero_outline microphone %}"] + }, + "minus_circle": { + "prefix": "svg.hero_outline.minus_circle", + "description": "SVG hero_outline - minus_circle", + "body": ["{% svg hero_outline minus_circle %}"] + }, + "minus_small": { + "prefix": "svg.hero_outline.minus_small", + "description": "SVG hero_outline - minus_small", + "body": ["{% svg hero_outline minus_small %}"] + }, + "minus": { + "prefix": "svg.hero_outline.minus", + "description": "SVG hero_outline - minus", + "body": ["{% svg hero_outline minus %}"] + }, + "moon": { + "prefix": "svg.hero_outline.moon", + "description": "SVG hero_outline - moon", + "body": ["{% svg hero_outline moon %}"] + }, + "musical_note": { + "prefix": "svg.hero_outline.musical_note", + "description": "SVG hero_outline - musical_note", + "body": ["{% svg hero_outline musical_note %}"] + }, + "newspaper": { + "prefix": "svg.hero_outline.newspaper", + "description": "SVG hero_outline - newspaper", + "body": ["{% svg hero_outline newspaper %}"] + }, + "no_symbol": { + "prefix": "svg.hero_outline.no_symbol", + "description": "SVG hero_outline - no_symbol", + "body": ["{% svg hero_outline no_symbol %}"] + }, + "paint_brush": { + "prefix": "svg.hero_outline.paint_brush", + "description": "SVG hero_outline - paint_brush", + "body": ["{% svg hero_outline paint_brush %}"] + }, + "paper_airplane": { + "prefix": "svg.hero_outline.paper_airplane", + "description": "SVG hero_outline - paper_airplane", + "body": ["{% svg hero_outline paper_airplane %}"] + }, + "paper_clip": { + "prefix": "svg.hero_outline.paper_clip", + "description": "SVG hero_outline - paper_clip", + "body": ["{% svg hero_outline paper_clip %}"] + }, + "pause_circle": { + "prefix": "svg.hero_outline.pause_circle", + "description": "SVG hero_outline - pause_circle", + "body": ["{% svg hero_outline pause_circle %}"] + }, + "pause": { + "prefix": "svg.hero_outline.pause", + "description": "SVG hero_outline - pause", + "body": ["{% svg hero_outline pause %}"] + }, + "pencil_square": { + "prefix": "svg.hero_outline.pencil_square", + "description": "SVG hero_outline - pencil_square", + "body": ["{% svg hero_outline pencil_square %}"] + }, + "pencil": { + "prefix": "svg.hero_outline.pencil", + "description": "SVG hero_outline - pencil", + "body": ["{% svg hero_outline pencil %}"] + }, + "phone_arrow_down_left": { + "prefix": "svg.hero_outline.phone_arrow_down_left", + "description": "SVG hero_outline - phone_arrow_down_left", + "body": ["{% svg hero_outline phone_arrow_down_left %}"] + }, + "phone_arrow_up_right": { + "prefix": "svg.hero_outline.phone_arrow_up_right", + "description": "SVG hero_outline - phone_arrow_up_right", + "body": ["{% svg hero_outline phone_arrow_up_right %}"] + }, + "phone_x_mark": { + "prefix": "svg.hero_outline.phone_x_mark", + "description": "SVG hero_outline - phone_x_mark", + "body": ["{% svg hero_outline phone_x_mark %}"] + }, + "phone": { + "prefix": "svg.hero_outline.phone", + "description": "SVG hero_outline - phone", + "body": ["{% svg hero_outline phone %}"] + }, + "photo": { + "prefix": "svg.hero_outline.photo", + "description": "SVG hero_outline - photo", + "body": ["{% svg hero_outline photo %}"] + }, + "play_circle": { + "prefix": "svg.hero_outline.play_circle", + "description": "SVG hero_outline - play_circle", + "body": ["{% svg hero_outline play_circle %}"] + }, + "play_pause": { + "prefix": "svg.hero_outline.play_pause", + "description": "SVG hero_outline - play_pause", + "body": ["{% svg hero_outline play_pause %}"] + }, + "play": { + "prefix": "svg.hero_outline.play", + "description": "SVG hero_outline - play", + "body": ["{% svg hero_outline play %}"] + }, + "plus_circle": { + "prefix": "svg.hero_outline.plus_circle", + "description": "SVG hero_outline - plus_circle", + "body": ["{% svg hero_outline plus_circle %}"] + }, + "plus_small": { + "prefix": "svg.hero_outline.plus_small", + "description": "SVG hero_outline - plus_small", + "body": ["{% svg hero_outline plus_small %}"] + }, + "plus": { + "prefix": "svg.hero_outline.plus", + "description": "SVG hero_outline - plus", + "body": ["{% svg hero_outline plus %}"] + }, + "power": { + "prefix": "svg.hero_outline.power", + "description": "SVG hero_outline - power", + "body": ["{% svg hero_outline power %}"] + }, + "presentation_chart_bar": { + "prefix": "svg.hero_outline.presentation_chart_bar", + "description": "SVG hero_outline - presentation_chart_bar", + "body": ["{% svg hero_outline presentation_chart_bar %}"] + }, + "presentation_chart_line": { + "prefix": "svg.hero_outline.presentation_chart_line", + "description": "SVG hero_outline - presentation_chart_line", + "body": ["{% svg hero_outline presentation_chart_line %}"] + }, + "printer": { + "prefix": "svg.hero_outline.printer", + "description": "SVG hero_outline - printer", + "body": ["{% svg hero_outline printer %}"] + }, + "puzzle_piece": { + "prefix": "svg.hero_outline.puzzle_piece", + "description": "SVG hero_outline - puzzle_piece", + "body": ["{% svg hero_outline puzzle_piece %}"] + }, + "qr_code": { + "prefix": "svg.hero_outline.qr_code", + "description": "SVG hero_outline - qr_code", + "body": ["{% svg hero_outline qr_code %}"] + }, + "question_mark_circle": { + "prefix": "svg.hero_outline.question_mark_circle", + "description": "SVG hero_outline - question_mark_circle", + "body": ["{% svg hero_outline question_mark_circle %}"] + }, + "queue_list": { + "prefix": "svg.hero_outline.queue_list", + "description": "SVG hero_outline - queue_list", + "body": ["{% svg hero_outline queue_list %}"] + }, + "radio": { + "prefix": "svg.hero_outline.radio", + "description": "SVG hero_outline - radio", + "body": ["{% svg hero_outline radio %}"] + }, + "receipt_percent": { + "prefix": "svg.hero_outline.receipt_percent", + "description": "SVG hero_outline - receipt_percent", + "body": ["{% svg hero_outline receipt_percent %}"] + }, + "receipt_refund": { + "prefix": "svg.hero_outline.receipt_refund", + "description": "SVG hero_outline - receipt_refund", + "body": ["{% svg hero_outline receipt_refund %}"] + }, + "rectangle_group": { + "prefix": "svg.hero_outline.rectangle_group", + "description": "SVG hero_outline - rectangle_group", + "body": ["{% svg hero_outline rectangle_group %}"] + }, + "rectangle_stack": { + "prefix": "svg.hero_outline.rectangle_stack", + "description": "SVG hero_outline - rectangle_stack", + "body": ["{% svg hero_outline rectangle_stack %}"] + }, + "rocket_launch": { + "prefix": "svg.hero_outline.rocket_launch", + "description": "SVG hero_outline - rocket_launch", + "body": ["{% svg hero_outline rocket_launch %}"] + }, + "rss": { + "prefix": "svg.hero_outline.rss", + "description": "SVG hero_outline - rss", + "body": ["{% svg hero_outline rss %}"] + }, + "scale": { + "prefix": "svg.hero_outline.scale", + "description": "SVG hero_outline - scale", + "body": ["{% svg hero_outline scale %}"] + }, + "scissors": { + "prefix": "svg.hero_outline.scissors", + "description": "SVG hero_outline - scissors", + "body": ["{% svg hero_outline scissors %}"] + }, + "sercer_stack": { + "prefix": "svg.hero_outline.sercer_stack", + "description": "SVG hero_outline - sercer_stack", + "body": ["{% svg hero_outline sercer_stack %}"] + }, + "server": { + "prefix": "svg.hero_outline.server", + "description": "SVG hero_outline - server", + "body": ["{% svg hero_outline server %}"] + }, + "share": { + "prefix": "svg.hero_outline.share", + "description": "SVG hero_outline - share", + "body": ["{% svg hero_outline share %}"] + }, + "shield_check": { + "prefix": "svg.hero_outline.shield_check", + "description": "SVG hero_outline - shield_check", + "body": ["{% svg hero_outline shield_check %}"] + }, + "shield_exclamation": { + "prefix": "svg.hero_outline.shield_exclamation", + "description": "SVG hero_outline - shield_exclamation", + "body": ["{% svg hero_outline shield_exclamation %}"] + }, + "shopping_bag": { + "prefix": "svg.hero_outline.shopping_bag", + "description": "SVG hero_outline - shopping_bag", + "body": ["{% svg hero_outline shopping_bag %}"] + }, + "shopping_cart": { + "prefix": "svg.hero_outline.shopping_cart", + "description": "SVG hero_outline - shopping_cart", + "body": ["{% svg hero_outline shopping_cart %}"] + }, + "signal_slash": { + "prefix": "svg.hero_outline.signal_slash", + "description": "SVG hero_outline - signal_slash", + "body": ["{% svg hero_outline signal_slash %}"] + }, + "signal": { + "prefix": "svg.hero_outline.signal", + "description": "SVG hero_outline - signal", + "body": ["{% svg hero_outline signal %}"] + }, + "sparkles": { + "prefix": "svg.hero_outline.sparkles", + "description": "SVG hero_outline - sparkles", + "body": ["{% svg hero_outline sparkles %}"] + }, + "speaker_wave": { + "prefix": "svg.hero_outline.speaker_wave", + "description": "SVG hero_outline - speaker_wave", + "body": ["{% svg hero_outline speaker_wave %}"] + }, + "speaker_x_mark": { + "prefix": "svg.hero_outline.speaker_x_mark", + "description": "SVG hero_outline - speaker_x_mark", + "body": ["{% svg hero_outline speaker_x_mark %}"] + }, + "square_2_stack": { + "prefix": "svg.hero_outline.square_2_stack", + "description": "SVG hero_outline - square_2_stack", + "body": ["{% svg hero_outline square_2_stack %}"] + }, + "square_3_stack_3d": { + "prefix": "svg.hero_outline.square_3_stack_3d", + "description": "SVG hero_outline - square_3_stack_3d", + "body": ["{% svg hero_outline square_3_stack_3d %}"] + }, + "squares_2_x_2": { + "prefix": "svg.hero_outline.squares_2_x_2", + "description": "SVG hero_outline - squares_2_x_2", + "body": ["{% svg hero_outline squares_2_x_2 %}"] + }, + "squares_plus": { + "prefix": "svg.hero_outline.squares_plus", + "description": "SVG hero_outline - squares_plus", + "body": ["{% svg hero_outline squares_plus %}"] + }, + "star": { + "prefix": "svg.hero_outline.star", + "description": "SVG hero_outline - star", + "body": ["{% svg hero_outline star %}"] + }, + "stop_circle": { + "prefix": "svg.hero_outline.stop_circle", + "description": "SVG hero_outline - stop_circle", + "body": ["{% svg hero_outline stop_circle %}"] + }, + "stop": { + "prefix": "svg.hero_outline.stop", + "description": "SVG hero_outline - stop", + "body": ["{% svg hero_outline stop %}"] + }, + "sun": { + "prefix": "svg.hero_outline.sun", + "description": "SVG hero_outline - sun", + "body": ["{% svg hero_outline sun %}"] + }, + "swatch": { + "prefix": "svg.hero_outline.swatch", + "description": "SVG hero_outline - swatch", + "body": ["{% svg hero_outline swatch %}"] + }, + "table_cells": { + "prefix": "svg.hero_outline.table_cells", + "description": "SVG hero_outline - table_cells", + "body": ["{% svg hero_outline table_cells %}"] + }, + "tag": { + "prefix": "svg.hero_outline.tag", + "description": "SVG hero_outline - tag", + "body": ["{% svg hero_outline tag %}"] + }, + "ticket": { + "prefix": "svg.hero_outline.ticket", + "description": "SVG hero_outline - ticket", + "body": ["{% svg hero_outline ticket %}"] + }, + "trash": { + "prefix": "svg.hero_outline.trash", + "description": "SVG hero_outline - trash", + "body": ["{% svg hero_outline trash %}"] + }, + "trophy": { + "prefix": "svg.hero_outline.trophy", + "description": "SVG hero_outline - trophy", + "body": ["{% svg hero_outline trophy %}"] + }, + "truck": { + "prefix": "svg.hero_outline.truck", + "description": "SVG hero_outline - truck", + "body": ["{% svg hero_outline truck %}"] + }, + "tv": { + "prefix": "svg.hero_outline.tv", + "description": "SVG hero_outline - tv", + "body": ["{% svg hero_outline tv %}"] + }, + "user_circle": { + "prefix": "svg.hero_outline.user_circle", + "description": "SVG hero_outline - user_circle", + "body": ["{% svg hero_outline user_circle %}"] + }, + "user_group": { + "prefix": "svg.hero_outline.user_group", + "description": "SVG hero_outline - user_group", + "body": ["{% svg hero_outline user_group %}"] + }, + "user_minus": { + "prefix": "svg.hero_outline.user_minus", + "description": "SVG hero_outline - user_minus", + "body": ["{% svg hero_outline user_minus %}"] + }, + "user_plus": { + "prefix": "svg.hero_outline.user_plus", + "description": "SVG hero_outline - user_plus", + "body": ["{% svg hero_outline user_plus %}"] + }, + "user": { + "prefix": "svg.hero_outline.user", + "description": "SVG hero_outline - user", + "body": ["{% svg hero_outline user %}"] + }, + "users": { + "prefix": "svg.hero_outline.users", + "description": "SVG hero_outline - users", + "body": ["{% svg hero_outline users %}"] + }, + "variable": { + "prefix": "svg.hero_outline.variable", + "description": "SVG hero_outline - variable", + "body": ["{% svg hero_outline variable %}"] + }, + "video_camera_slash": { + "prefix": "svg.hero_outline.video_camera_slash", + "description": "SVG hero_outline - video_camera_slash", + "body": ["{% svg hero_outline video_camera_slash %}"] + }, + "video_camera": { + "prefix": "svg.hero_outline.video_camera", + "description": "SVG hero_outline - video_camera", + "body": ["{% svg hero_outline video_camera %}"] + }, + "view_columns": { + "prefix": "svg.hero_outline.view_columns", + "description": "SVG hero_outline - view_columns", + "body": ["{% svg hero_outline view_columns %}"] + }, + "viewfinder_circle": { + "prefix": "svg.hero_outline.viewfinder_circle", + "description": "SVG hero_outline - viewfinder_circle", + "body": ["{% svg hero_outline viewfinder_circle %}"] + }, + "wallet": { + "prefix": "svg.hero_outline.wallet", + "description": "SVG hero_outline - wallet", + "body": ["{% svg hero_outline wallet %}"] + }, + "wifi": { + "prefix": "svg.hero_outline.wifi", + "description": "SVG hero_outline - wifi", + "body": ["{% svg hero_outline wifi %}"] + }, + "window": { + "prefix": "svg.hero_outline.window", + "description": "SVG hero_outline - window", + "body": ["{% svg hero_outline window %}"] + }, + "wrench_screwdriver": { + "prefix": "svg.hero_outline.wrench_screwdriver", + "description": "SVG hero_outline - wrench_screwdriver", + "body": ["{% svg hero_outline wrench_screwdriver %}"] + }, + "wrench": { + "prefix": "svg.hero_outline.wrench", + "description": "SVG hero_outline - wrench", + "body": ["{% svg hero_outline wrench %}"] + }, + "x_circle": { + "prefix": "svg.hero_outline.x_circle", + "description": "SVG hero_outline - x_circle", + "body": ["{% svg hero_outline x_circle %}"] + } +} diff --git a/lua/snippets/hero_solid.json b/lua/snippets/hero_solid.json new file mode 100644 index 0000000..fa7f9c3 --- /dev/null +++ b/lua/snippets/hero_solid.json @@ -0,0 +1,1457 @@ +{ + "academic_cap": { + "prefix": "svg.hero_solid.academic_cap", + "description": "SVG hero_solid - academic_cap", + "body": ["{% svg hero_solid academic_cap %}"] + }, + "adjustments_horizontal": { + "prefix": "svg.hero_solid.adjustments_horizontal", + "description": "SVG hero_solid - adjustments_horizontal", + "body": ["{% svg hero_solid adjustments_horizontal %}"] + }, + "adjustments_vertical": { + "prefix": "svg.hero_solid.adjustments_vertical", + "description": "SVG hero_solid - adjustments_vertical", + "body": ["{% svg hero_solid adjustments_vertical %}"] + }, + "archive_box_arrow_down": { + "prefix": "svg.hero_solid.archive_box_arrow_down", + "description": "SVG hero_solid - archive_box_arrow_down", + "body": ["{% svg hero_solid archive_box_arrow_down %}"] + }, + "archive_box_x_mark": { + "prefix": "svg.hero_solid.archive_box_x_mark", + "description": "SVG hero_solid - archive_box_x_mark", + "body": ["{% svg hero_solid archive_box_x_mark %}"] + }, + "archive_box": { + "prefix": "svg.hero_solid.archive_box", + "description": "SVG hero_solid - archive_box", + "body": ["{% svg hero_solid archive_box %}"] + }, + "arrow_down_circle": { + "prefix": "svg.hero_solid.arrow_down_circle", + "description": "SVG hero_solid - arrow_down_circle", + "body": ["{% svg hero_solid arrow_down_circle %}"] + }, + "arrow_down_left": { + "prefix": "svg.hero_solid.arrow_down_left", + "description": "SVG hero_solid - arrow_down_left", + "body": ["{% svg hero_solid arrow_down_left %}"] + }, + "arrow_down_on_square_stack": { + "prefix": "svg.hero_solid.arrow_down_on_square_stack", + "description": "SVG hero_solid - arrow_down_on_square_stack", + "body": ["{% svg hero_solid arrow_down_on_square_stack %}"] + }, + "arrow_down_on_square": { + "prefix": "svg.hero_solid.arrow_down_on_square", + "description": "SVG hero_solid - arrow_down_on_square", + "body": ["{% svg hero_solid arrow_down_on_square %}"] + }, + "arrow_down_right": { + "prefix": "svg.hero_solid.arrow_down_right", + "description": "SVG hero_solid - arrow_down_right", + "body": ["{% svg hero_solid arrow_down_right %}"] + }, + "arrow_down_tray": { + "prefix": "svg.hero_solid.arrow_down_tray", + "description": "SVG hero_solid - arrow_down_tray", + "body": ["{% svg hero_solid arrow_down_tray %}"] + }, + "arrow_down": { + "prefix": "svg.hero_solid.arrow_down", + "description": "SVG hero_solid - arrow_down", + "body": ["{% svg hero_solid arrow_down %}"] + }, + "arrow_left_circle": { + "prefix": "svg.hero_solid.arrow_left_circle", + "description": "SVG hero_solid - arrow_left_circle", + "body": ["{% svg hero_solid arrow_left_circle %}"] + }, + "arrow_left_on_rectangle": { + "prefix": "svg.hero_solid.arrow_left_on_rectangle", + "description": "SVG hero_solid - arrow_left_on_rectangle", + "body": ["{% svg hero_solid arrow_left_on_rectangle %}"] + }, + "arrow_left": { + "prefix": "svg.hero_solid.arrow_left", + "description": "SVG hero_solid - arrow_left", + "body": ["{% svg hero_solid arrow_left %}"] + }, + "arrow_long_down": { + "prefix": "svg.hero_solid.arrow_long_down", + "description": "SVG hero_solid - arrow_long_down", + "body": ["{% svg hero_solid arrow_long_down %}"] + }, + "arrow_long_left": { + "prefix": "svg.hero_solid.arrow_long_left", + "description": "SVG hero_solid - arrow_long_left", + "body": ["{% svg hero_solid arrow_long_left %}"] + }, + "arrow_long_right": { + "prefix": "svg.hero_solid.arrow_long_right", + "description": "SVG hero_solid - arrow_long_right", + "body": ["{% svg hero_solid arrow_long_right %}"] + }, + "arrow_long_up": { + "prefix": "svg.hero_solid.arrow_long_up", + "description": "SVG hero_solid - arrow_long_up", + "body": ["{% svg hero_solid arrow_long_up %}"] + }, + "arrow_path_rounded_square": { + "prefix": "svg.hero_solid.arrow_path_rounded_square", + "description": "SVG hero_solid - arrow_path_rounded_square", + "body": ["{% svg hero_solid arrow_path_rounded_square %}"] + }, + "arrow_path": { + "prefix": "svg.hero_solid.arrow_path", + "description": "SVG hero_solid - arrow_path", + "body": ["{% svg hero_solid arrow_path %}"] + }, + "arrow_right_circle": { + "prefix": "svg.hero_solid.arrow_right_circle", + "description": "SVG hero_solid - arrow_right_circle", + "body": ["{% svg hero_solid arrow_right_circle %}"] + }, + "arrow_right_on_rectangle": { + "prefix": "svg.hero_solid.arrow_right_on_rectangle", + "description": "SVG hero_solid - arrow_right_on_rectangle", + "body": ["{% svg hero_solid arrow_right_on_rectangle %}"] + }, + "arrow_right": { + "prefix": "svg.hero_solid.arrow_right", + "description": "SVG hero_solid - arrow_right", + "body": ["{% svg hero_solid arrow_right %}"] + }, + "arrow_small_down": { + "prefix": "svg.hero_solid.arrow_small_down", + "description": "SVG hero_solid - arrow_small_down", + "body": ["{% svg hero_solid arrow_small_down %}"] + }, + "arrow_small_left": { + "prefix": "svg.hero_solid.arrow_small_left", + "description": "SVG hero_solid - arrow_small_left", + "body": ["{% svg hero_solid arrow_small_left %}"] + }, + "arrow_small_right": { + "prefix": "svg.hero_solid.arrow_small_right", + "description": "SVG hero_solid - arrow_small_right", + "body": ["{% svg hero_solid arrow_small_right %}"] + }, + "arrow_small_up": { + "prefix": "svg.hero_solid.arrow_small_up", + "description": "SVG hero_solid - arrow_small_up", + "body": ["{% svg hero_solid arrow_small_up %}"] + }, + "arrow_top_right_on_square": { + "prefix": "svg.hero_solid.arrow_top_right_on_square", + "description": "SVG hero_solid - arrow_top_right_on_square", + "body": ["{% svg hero_solid arrow_top_right_on_square %}"] + }, + "arrow_trending_down": { + "prefix": "svg.hero_solid.arrow_trending_down", + "description": "SVG hero_solid - arrow_trending_down", + "body": ["{% svg hero_solid arrow_trending_down %}"] + }, + "arrow_trending_up": { + "prefix": "svg.hero_solid.arrow_trending_up", + "description": "SVG hero_solid - arrow_trending_up", + "body": ["{% svg hero_solid arrow_trending_up %}"] + }, + "arrow_up_circle": { + "prefix": "svg.hero_solid.arrow_up_circle", + "description": "SVG hero_solid - arrow_up_circle", + "body": ["{% svg hero_solid arrow_up_circle %}"] + }, + "arrow_up_left": { + "prefix": "svg.hero_solid.arrow_up_left", + "description": "SVG hero_solid - arrow_up_left", + "body": ["{% svg hero_solid arrow_up_left %}"] + }, + "arrow_up_on_square_stack": { + "prefix": "svg.hero_solid.arrow_up_on_square_stack", + "description": "SVG hero_solid - arrow_up_on_square_stack", + "body": ["{% svg hero_solid arrow_up_on_square_stack %}"] + }, + "arrow_up_on_square": { + "prefix": "svg.hero_solid.arrow_up_on_square", + "description": "SVG hero_solid - arrow_up_on_square", + "body": ["{% svg hero_solid arrow_up_on_square %}"] + }, + "arrow_up_right": { + "prefix": "svg.hero_solid.arrow_up_right", + "description": "SVG hero_solid - arrow_up_right", + "body": ["{% svg hero_solid arrow_up_right %}"] + }, + "arrow_up_tray": { + "prefix": "svg.hero_solid.arrow_up_tray", + "description": "SVG hero_solid - arrow_up_tray", + "body": ["{% svg hero_solid arrow_up_tray %}"] + }, + "arrow_up": { + "prefix": "svg.hero_solid.arrow_up", + "description": "SVG hero_solid - arrow_up", + "body": ["{% svg hero_solid arrow_up %}"] + }, + "arrow_uturn_down": { + "prefix": "svg.hero_solid.arrow_uturn_down", + "description": "SVG hero_solid - arrow_uturn_down", + "body": ["{% svg hero_solid arrow_uturn_down %}"] + }, + "arrow_uturn_left": { + "prefix": "svg.hero_solid.arrow_uturn_left", + "description": "SVG hero_solid - arrow_uturn_left", + "body": ["{% svg hero_solid arrow_uturn_left %}"] + }, + "arrow_uturn_right": { + "prefix": "svg.hero_solid.arrow_uturn_right", + "description": "SVG hero_solid - arrow_uturn_right", + "body": ["{% svg hero_solid arrow_uturn_right %}"] + }, + "arrow_uturn_up": { + "prefix": "svg.hero_solid.arrow_uturn_up", + "description": "SVG hero_solid - arrow_uturn_up", + "body": ["{% svg hero_solid arrow_uturn_up %}"] + }, + "arrows_pointing_in": { + "prefix": "svg.hero_solid.arrows_pointing_in", + "description": "SVG hero_solid - arrows_pointing_in", + "body": ["{% svg hero_solid arrows_pointing_in %}"] + }, + "arrows_pointing_out": { + "prefix": "svg.hero_solid.arrows_pointing_out", + "description": "SVG hero_solid - arrows_pointing_out", + "body": ["{% svg hero_solid arrows_pointing_out %}"] + }, + "arrows_right_left": { + "prefix": "svg.hero_solid.arrows_right_left", + "description": "SVG hero_solid - arrows_right_left", + "body": ["{% svg hero_solid arrows_right_left %}"] + }, + "arrows_up_down": { + "prefix": "svg.hero_solid.arrows_up_down", + "description": "SVG hero_solid - arrows_up_down", + "body": ["{% svg hero_solid arrows_up_down %}"] + }, + "at_symbol": { + "prefix": "svg.hero_solid.at_symbol", + "description": "SVG hero_solid - at_symbol", + "body": ["{% svg hero_solid at_symbol %}"] + }, + "backspace": { + "prefix": "svg.hero_solid.backspace", + "description": "SVG hero_solid - backspace", + "body": ["{% svg hero_solid backspace %}"] + }, + "backward": { + "prefix": "svg.hero_solid.backward", + "description": "SVG hero_solid - backward", + "body": ["{% svg hero_solid backward %}"] + }, + "banknotes": { + "prefix": "svg.hero_solid.banknotes", + "description": "SVG hero_solid - banknotes", + "body": ["{% svg hero_solid banknotes %}"] + }, + "bars_2": { + "prefix": "svg.hero_solid.bars_2", + "description": "SVG hero_solid - bars_2", + "body": ["{% svg hero_solid bars_2 %}"] + }, + "bars_3_bottom_left": { + "prefix": "svg.hero_solid.bars_3_bottom_left", + "description": "SVG hero_solid - bars_3_bottom_left", + "body": ["{% svg hero_solid bars_3_bottom_left %}"] + }, + "bars_3_bottom_right": { + "prefix": "svg.hero_solid.bars_3_bottom_right", + "description": "SVG hero_solid - bars_3_bottom_right", + "body": ["{% svg hero_solid bars_3_bottom_right %}"] + }, + "bars_3_center_left": { + "prefix": "svg.hero_solid.bars_3_center_left", + "description": "SVG hero_solid - bars_3_center_left", + "body": ["{% svg hero_solid bars_3_center_left %}"] + }, + "bars_3": { + "prefix": "svg.hero_solid.bars_3", + "description": "SVG hero_solid - bars_3", + "body": ["{% svg hero_solid bars_3 %}"] + }, + "bars_4": { + "prefix": "svg.hero_solid.bars_4", + "description": "SVG hero_solid - bars_4", + "body": ["{% svg hero_solid bars_4 %}"] + }, + "bars_arrow_down": { + "prefix": "svg.hero_solid.bars_arrow_down", + "description": "SVG hero_solid - bars_arrow_down", + "body": ["{% svg hero_solid bars_arrow_down %}"] + }, + "bars_arrow_up": { + "prefix": "svg.hero_solid.bars_arrow_up", + "description": "SVG hero_solid - bars_arrow_up", + "body": ["{% svg hero_solid bars_arrow_up %}"] + }, + "battery_0": { + "prefix": "svg.hero_solid.battery_0", + "description": "SVG hero_solid - battery_0", + "body": ["{% svg hero_solid battery_0 %}"] + }, + "battery_100": { + "prefix": "svg.hero_solid.battery_100", + "description": "SVG hero_solid - battery_100", + "body": ["{% svg hero_solid battery_100 %}"] + }, + "battery_50": { + "prefix": "svg.hero_solid.battery_50", + "description": "SVG hero_solid - battery_50", + "body": ["{% svg hero_solid battery_50 %}"] + }, + "beaker": { + "prefix": "svg.hero_solid.beaker", + "description": "SVG hero_solid - beaker", + "body": ["{% svg hero_solid beaker %}"] + }, + "bell_alert": { + "prefix": "svg.hero_solid.bell_alert", + "description": "SVG hero_solid - bell_alert", + "body": ["{% svg hero_solid bell_alert %}"] + }, + "bell_slash": { + "prefix": "svg.hero_solid.bell_slash", + "description": "SVG hero_solid - bell_slash", + "body": ["{% svg hero_solid bell_slash %}"] + }, + "bell_snooze": { + "prefix": "svg.hero_solid.bell_snooze", + "description": "SVG hero_solid - bell_snooze", + "body": ["{% svg hero_solid bell_snooze %}"] + }, + "bell": { + "prefix": "svg.hero_solid.bell", + "description": "SVG hero_solid - bell", + "body": ["{% svg hero_solid bell %}"] + }, + "bolt_slash": { + "prefix": "svg.hero_solid.bolt_slash", + "description": "SVG hero_solid - bolt_slash", + "body": ["{% svg hero_solid bolt_slash %}"] + }, + "bolt": { + "prefix": "svg.hero_solid.bolt", + "description": "SVG hero_solid - bolt", + "body": ["{% svg hero_solid bolt %}"] + }, + "book_open": { + "prefix": "svg.hero_solid.book_open", + "description": "SVG hero_solid - book_open", + "body": ["{% svg hero_solid book_open %}"] + }, + "bookmark_slash": { + "prefix": "svg.hero_solid.bookmark_slash", + "description": "SVG hero_solid - bookmark_slash", + "body": ["{% svg hero_solid bookmark_slash %}"] + }, + "bookmark_square": { + "prefix": "svg.hero_solid.bookmark_square", + "description": "SVG hero_solid - bookmark_square", + "body": ["{% svg hero_solid bookmark_square %}"] + }, + "bookmark": { + "prefix": "svg.hero_solid.bookmark", + "description": "SVG hero_solid - bookmark", + "body": ["{% svg hero_solid bookmark %}"] + }, + "briefcase": { + "prefix": "svg.hero_solid.briefcase", + "description": "SVG hero_solid - briefcase", + "body": ["{% svg hero_solid briefcase %}"] + }, + "bug_ant": { + "prefix": "svg.hero_solid.bug_ant", + "description": "SVG hero_solid - bug_ant", + "body": ["{% svg hero_solid bug_ant %}"] + }, + "building_library": { + "prefix": "svg.hero_solid.building_library", + "description": "SVG hero_solid - building_library", + "body": ["{% svg hero_solid building_library %}"] + }, + "building_office_2": { + "prefix": "svg.hero_solid.building_office_2", + "description": "SVG hero_solid - building_office_2", + "body": ["{% svg hero_solid building_office_2 %}"] + }, + "building_office": { + "prefix": "svg.hero_solid.building_office", + "description": "SVG hero_solid - building_office", + "body": ["{% svg hero_solid building_office %}"] + }, + "building_storefront": { + "prefix": "svg.hero_solid.building_storefront", + "description": "SVG hero_solid - building_storefront", + "body": ["{% svg hero_solid building_storefront %}"] + }, + "cake": { + "prefix": "svg.hero_solid.cake", + "description": "SVG hero_solid - cake", + "body": ["{% svg hero_solid cake %}"] + }, + "calculator": { + "prefix": "svg.hero_solid.calculator", + "description": "SVG hero_solid - calculator", + "body": ["{% svg hero_solid calculator %}"] + }, + "calendar_days": { + "prefix": "svg.hero_solid.calendar_days", + "description": "SVG hero_solid - calendar_days", + "body": ["{% svg hero_solid calendar_days %}"] + }, + "calendar": { + "prefix": "svg.hero_solid.calendar", + "description": "SVG hero_solid - calendar", + "body": ["{% svg hero_solid calendar %}"] + }, + "camera": { + "prefix": "svg.hero_solid.camera", + "description": "SVG hero_solid - camera", + "body": ["{% svg hero_solid camera %}"] + }, + "chart_bar_square": { + "prefix": "svg.hero_solid.chart_bar_square", + "description": "SVG hero_solid - chart_bar_square", + "body": ["{% svg hero_solid chart_bar_square %}"] + }, + "chart_bar": { + "prefix": "svg.hero_solid.chart_bar", + "description": "SVG hero_solid - chart_bar", + "body": ["{% svg hero_solid chart_bar %}"] + }, + "chart_pie": { + "prefix": "svg.hero_solid.chart_pie", + "description": "SVG hero_solid - chart_pie", + "body": ["{% svg hero_solid chart_pie %}"] + }, + "chat_bubble_bottom_center_text": { + "prefix": "svg.hero_solid.chat_bubble_bottom_center_text", + "description": "SVG hero_solid - chat_bubble_bottom_center_text", + "body": ["{% svg hero_solid chat_bubble_bottom_center_text %}"] + }, + "chat_bubble_bottom_center": { + "prefix": "svg.hero_solid.chat_bubble_bottom_center", + "description": "SVG hero_solid - chat_bubble_bottom_center", + "body": ["{% svg hero_solid chat_bubble_bottom_center %}"] + }, + "chat_bubble_left_ellipsis": { + "prefix": "svg.hero_solid.chat_bubble_left_ellipsis", + "description": "SVG hero_solid - chat_bubble_left_ellipsis", + "body": ["{% svg hero_solid chat_bubble_left_ellipsis %}"] + }, + "chat_bubble_left_right": { + "prefix": "svg.hero_solid.chat_bubble_left_right", + "description": "SVG hero_solid - chat_bubble_left_right", + "body": ["{% svg hero_solid chat_bubble_left_right %}"] + }, + "chat_bubble_left": { + "prefix": "svg.hero_solid.chat_bubble_left", + "description": "SVG hero_solid - chat_bubble_left", + "body": ["{% svg hero_solid chat_bubble_left %}"] + }, + "chat_bubble_oval_left_ellipsis": { + "prefix": "svg.hero_solid.chat_bubble_oval_left_ellipsis", + "description": "SVG hero_solid - chat_bubble_oval_left_ellipsis", + "body": ["{% svg hero_solid chat_bubble_oval_left_ellipsis %}"] + }, + "chat_bubble_oval_left": { + "prefix": "svg.hero_solid.chat_bubble_oval_left", + "description": "SVG hero_solid - chat_bubble_oval_left", + "body": ["{% svg hero_solid chat_bubble_oval_left %}"] + }, + "check_badge": { + "prefix": "svg.hero_solid.check_badge", + "description": "SVG hero_solid - check_badge", + "body": ["{% svg hero_solid check_badge %}"] + }, + "check_circle": { + "prefix": "svg.hero_solid.check_circle", + "description": "SVG hero_solid - check_circle", + "body": ["{% svg hero_solid check_circle %}"] + }, + "check": { + "prefix": "svg.hero_solid.check", + "description": "SVG hero_solid - check", + "body": ["{% svg hero_solid check %}"] + }, + "chevron_double_down": { + "prefix": "svg.hero_solid.chevron_double_down", + "description": "SVG hero_solid - chevron_double_down", + "body": ["{% svg hero_solid chevron_double_down %}"] + }, + "chevron_double_left": { + "prefix": "svg.hero_solid.chevron_double_left", + "description": "SVG hero_solid - chevron_double_left", + "body": ["{% svg hero_solid chevron_double_left %}"] + }, + "chevron_double_right": { + "prefix": "svg.hero_solid.chevron_double_right", + "description": "SVG hero_solid - chevron_double_right", + "body": ["{% svg hero_solid chevron_double_right %}"] + }, + "chevron_double_up": { + "prefix": "svg.hero_solid.chevron_double_up", + "description": "SVG hero_solid - chevron_double_up", + "body": ["{% svg hero_solid chevron_double_up %}"] + }, + "chevron_down": { + "prefix": "svg.hero_solid.chevron_down", + "description": "SVG hero_solid - chevron_down", + "body": ["{% svg hero_solid chevron_down %}"] + }, + "chevron_left": { + "prefix": "svg.hero_solid.chevron_left", + "description": "SVG hero_solid - chevron_left", + "body": ["{% svg hero_solid chevron_left %}"] + }, + "chevron_right": { + "prefix": "svg.hero_solid.chevron_right", + "description": "SVG hero_solid - chevron_right", + "body": ["{% svg hero_solid chevron_right %}"] + }, + "chevron_up_down": { + "prefix": "svg.hero_solid.chevron_up_down", + "description": "SVG hero_solid - chevron_up_down", + "body": ["{% svg hero_solid chevron_up_down %}"] + }, + "chevron_up": { + "prefix": "svg.hero_solid.chevron_up", + "description": "SVG hero_solid - chevron_up", + "body": ["{% svg hero_solid chevron_up %}"] + }, + "circle_stack": { + "prefix": "svg.hero_solid.circle_stack", + "description": "SVG hero_solid - circle_stack", + "body": ["{% svg hero_solid circle_stack %}"] + }, + "clipboard_document_check": { + "prefix": "svg.hero_solid.clipboard_document_check", + "description": "SVG hero_solid - clipboard_document_check", + "body": ["{% svg hero_solid clipboard_document_check %}"] + }, + "clipboard_document_list": { + "prefix": "svg.hero_solid.clipboard_document_list", + "description": "SVG hero_solid - clipboard_document_list", + "body": ["{% svg hero_solid clipboard_document_list %}"] + }, + "clipboard_document": { + "prefix": "svg.hero_solid.clipboard_document", + "description": "SVG hero_solid - clipboard_document", + "body": ["{% svg hero_solid clipboard_document %}"] + }, + "clipboard": { + "prefix": "svg.hero_solid.clipboard", + "description": "SVG hero_solid - clipboard", + "body": ["{% svg hero_solid clipboard %}"] + }, + "clock": { + "prefix": "svg.hero_solid.clock", + "description": "SVG hero_solid - clock", + "body": ["{% svg hero_solid clock %}"] + }, + "cloud_arrow_down": { + "prefix": "svg.hero_solid.cloud_arrow_down", + "description": "SVG hero_solid - cloud_arrow_down", + "body": ["{% svg hero_solid cloud_arrow_down %}"] + }, + "cloud_arrow_up": { + "prefix": "svg.hero_solid.cloud_arrow_up", + "description": "SVG hero_solid - cloud_arrow_up", + "body": ["{% svg hero_solid cloud_arrow_up %}"] + }, + "cloud": { + "prefix": "svg.hero_solid.cloud", + "description": "SVG hero_solid - cloud", + "body": ["{% svg hero_solid cloud %}"] + }, + "code_bracket_square": { + "prefix": "svg.hero_solid.code_bracket_square", + "description": "SVG hero_solid - code_bracket_square", + "body": ["{% svg hero_solid code_bracket_square %}"] + }, + "code_bracket": { + "prefix": "svg.hero_solid.code_bracket", + "description": "SVG hero_solid - code_bracket", + "body": ["{% svg hero_solid code_bracket %}"] + }, + "cog_6_tooth": { + "prefix": "svg.hero_solid.cog_6_tooth", + "description": "SVG hero_solid - cog_6_tooth", + "body": ["{% svg hero_solid cog_6_tooth %}"] + }, + "cog_8_tooth": { + "prefix": "svg.hero_solid.cog_8_tooth", + "description": "SVG hero_solid - cog_8_tooth", + "body": ["{% svg hero_solid cog_8_tooth %}"] + }, + "cog": { + "prefix": "svg.hero_solid.cog", + "description": "SVG hero_solid - cog", + "body": ["{% svg hero_solid cog %}"] + }, + "command_line": { + "prefix": "svg.hero_solid.command_line", + "description": "SVG hero_solid - command_line", + "body": ["{% svg hero_solid command_line %}"] + }, + "computer_desktop": { + "prefix": "svg.hero_solid.computer_desktop", + "description": "SVG hero_solid - computer_desktop", + "body": ["{% svg hero_solid computer_desktop %}"] + }, + "cpu_chip": { + "prefix": "svg.hero_solid.cpu_chip", + "description": "SVG hero_solid - cpu_chip", + "body": ["{% svg hero_solid cpu_chip %}"] + }, + "credit_card": { + "prefix": "svg.hero_solid.credit_card", + "description": "SVG hero_solid - credit_card", + "body": ["{% svg hero_solid credit_card %}"] + }, + "cube_transparent": { + "prefix": "svg.hero_solid.cube_transparent", + "description": "SVG hero_solid - cube_transparent", + "body": ["{% svg hero_solid cube_transparent %}"] + }, + "cube": { + "prefix": "svg.hero_solid.cube", + "description": "SVG hero_solid - cube", + "body": ["{% svg hero_solid cube %}"] + }, + "currency_bangladeshi": { + "prefix": "svg.hero_solid.currency_bangladeshi", + "description": "SVG hero_solid - currency_bangladeshi", + "body": ["{% svg hero_solid currency_bangladeshi %}"] + }, + "currency_dollar": { + "prefix": "svg.hero_solid.currency_dollar", + "description": "SVG hero_solid - currency_dollar", + "body": ["{% svg hero_solid currency_dollar %}"] + }, + "currency_euro": { + "prefix": "svg.hero_solid.currency_euro", + "description": "SVG hero_solid - currency_euro", + "body": ["{% svg hero_solid currency_euro %}"] + }, + "currency_pound": { + "prefix": "svg.hero_solid.currency_pound", + "description": "SVG hero_solid - currency_pound", + "body": ["{% svg hero_solid currency_pound %}"] + }, + "currency_rupee": { + "prefix": "svg.hero_solid.currency_rupee", + "description": "SVG hero_solid - currency_rupee", + "body": ["{% svg hero_solid currency_rupee %}"] + }, + "currency_yen": { + "prefix": "svg.hero_solid.currency_yen", + "description": "SVG hero_solid - currency_yen", + "body": ["{% svg hero_solid currency_yen %}"] + }, + "cursor_arrow_rays": { + "prefix": "svg.hero_solid.cursor_arrow_rays", + "description": "SVG hero_solid - cursor_arrow_rays", + "body": ["{% svg hero_solid cursor_arrow_rays %}"] + }, + "cursor_arrow_ripple": { + "prefix": "svg.hero_solid.cursor_arrow_ripple", + "description": "SVG hero_solid - cursor_arrow_ripple", + "body": ["{% svg hero_solid cursor_arrow_ripple %}"] + }, + "device_phone_mobile": { + "prefix": "svg.hero_solid.device_phone_mobile", + "description": "SVG hero_solid - device_phone_mobile", + "body": ["{% svg hero_solid device_phone_mobile %}"] + }, + "device_tablet": { + "prefix": "svg.hero_solid.device_tablet", + "description": "SVG hero_solid - device_tablet", + "body": ["{% svg hero_solid device_tablet %}"] + }, + "document_arrow_down": { + "prefix": "svg.hero_solid.document_arrow_down", + "description": "SVG hero_solid - document_arrow_down", + "body": ["{% svg hero_solid document_arrow_down %}"] + }, + "document_arrow_up": { + "prefix": "svg.hero_solid.document_arrow_up", + "description": "SVG hero_solid - document_arrow_up", + "body": ["{% svg hero_solid document_arrow_up %}"] + }, + "document_chart_bar": { + "prefix": "svg.hero_solid.document_chart_bar", + "description": "SVG hero_solid - document_chart_bar", + "body": ["{% svg hero_solid document_chart_bar %}"] + }, + "document_check": { + "prefix": "svg.hero_solid.document_check", + "description": "SVG hero_solid - document_check", + "body": ["{% svg hero_solid document_check %}"] + }, + "document_duplicate": { + "prefix": "svg.hero_solid.document_duplicate", + "description": "SVG hero_solid - document_duplicate", + "body": ["{% svg hero_solid document_duplicate %}"] + }, + "document_magnifying_glass": { + "prefix": "svg.hero_solid.document_magnifying_glass", + "description": "SVG hero_solid - document_magnifying_glass", + "body": ["{% svg hero_solid document_magnifying_glass %}"] + }, + "document_minus": { + "prefix": "svg.hero_solid.document_minus", + "description": "SVG hero_solid - document_minus", + "body": ["{% svg hero_solid document_minus %}"] + }, + "document_plus": { + "prefix": "svg.hero_solid.document_plus", + "description": "SVG hero_solid - document_plus", + "body": ["{% svg hero_solid document_plus %}"] + }, + "document_text": { + "prefix": "svg.hero_solid.document_text", + "description": "SVG hero_solid - document_text", + "body": ["{% svg hero_solid document_text %}"] + }, + "document": { + "prefix": "svg.hero_solid.document", + "description": "SVG hero_solid - document", + "body": ["{% svg hero_solid document %}"] + }, + "ellipsis_horizontal_circle": { + "prefix": "svg.hero_solid.ellipsis_horizontal_circle", + "description": "SVG hero_solid - ellipsis_horizontal_circle", + "body": ["{% svg hero_solid ellipsis_horizontal_circle %}"] + }, + "ellipsis_horizontal": { + "prefix": "svg.hero_solid.ellipsis_horizontal", + "description": "SVG hero_solid - ellipsis_horizontal", + "body": ["{% svg hero_solid ellipsis_horizontal %}"] + }, + "ellipsis_vertical": { + "prefix": "svg.hero_solid.ellipsis_vertical", + "description": "SVG hero_solid - ellipsis_vertical", + "body": ["{% svg hero_solid ellipsis_vertical %}"] + }, + "envelope_open": { + "prefix": "svg.hero_solid.envelope_open", + "description": "SVG hero_solid - envelope_open", + "body": ["{% svg hero_solid envelope_open %}"] + }, + "envelope": { + "prefix": "svg.hero_solid.envelope", + "description": "SVG hero_solid - envelope", + "body": ["{% svg hero_solid envelope %}"] + }, + "exclamation_circle": { + "prefix": "svg.hero_solid.exclamation_circle", + "description": "SVG hero_solid - exclamation_circle", + "body": ["{% svg hero_solid exclamation_circle %}"] + }, + "exclamation_triangle": { + "prefix": "svg.hero_solid.exclamation_triangle", + "description": "SVG hero_solid - exclamation_triangle", + "body": ["{% svg hero_solid exclamation_triangle %}"] + }, + "eye_dropper": { + "prefix": "svg.hero_solid.eye_dropper", + "description": "SVG hero_solid - eye_dropper", + "body": ["{% svg hero_solid eye_dropper %}"] + }, + "eye_slash": { + "prefix": "svg.hero_solid.eye_slash", + "description": "SVG hero_solid - eye_slash", + "body": ["{% svg hero_solid eye_slash %}"] + }, + "eye": { + "prefix": "svg.hero_solid.eye", + "description": "SVG hero_solid - eye", + "body": ["{% svg hero_solid eye %}"] + }, + "face_frown": { + "prefix": "svg.hero_solid.face_frown", + "description": "SVG hero_solid - face_frown", + "body": ["{% svg hero_solid face_frown %}"] + }, + "face_smile": { + "prefix": "svg.hero_solid.face_smile", + "description": "SVG hero_solid - face_smile", + "body": ["{% svg hero_solid face_smile %}"] + }, + "film": { + "prefix": "svg.hero_solid.film", + "description": "SVG hero_solid - film", + "body": ["{% svg hero_solid film %}"] + }, + "finger_print": { + "prefix": "svg.hero_solid.finger_print", + "description": "SVG hero_solid - finger_print", + "body": ["{% svg hero_solid finger_print %}"] + }, + "fire": { + "prefix": "svg.hero_solid.fire", + "description": "SVG hero_solid - fire", + "body": ["{% svg hero_solid fire %}"] + }, + "flag": { + "prefix": "svg.hero_solid.flag", + "description": "SVG hero_solid - flag", + "body": ["{% svg hero_solid flag %}"] + }, + "folder_arrow_down": { + "prefix": "svg.hero_solid.folder_arrow_down", + "description": "SVG hero_solid - folder_arrow_down", + "body": ["{% svg hero_solid folder_arrow_down %}"] + }, + "folder_minus": { + "prefix": "svg.hero_solid.folder_minus", + "description": "SVG hero_solid - folder_minus", + "body": ["{% svg hero_solid folder_minus %}"] + }, + "folder_open": { + "prefix": "svg.hero_solid.folder_open", + "description": "SVG hero_solid - folder_open", + "body": ["{% svg hero_solid folder_open %}"] + }, + "folder_plus": { + "prefix": "svg.hero_solid.folder_plus", + "description": "SVG hero_solid - folder_plus", + "body": ["{% svg hero_solid folder_plus %}"] + }, + "folder": { + "prefix": "svg.hero_solid.folder", + "description": "SVG hero_solid - folder", + "body": ["{% svg hero_solid folder %}"] + }, + "forward": { + "prefix": "svg.hero_solid.forward", + "description": "SVG hero_solid - forward", + "body": ["{% svg hero_solid forward %}"] + }, + "funnel": { + "prefix": "svg.hero_solid.funnel", + "description": "SVG hero_solid - funnel", + "body": ["{% svg hero_solid funnel %}"] + }, + "gif": { + "prefix": "svg.hero_solid.gif", + "description": "SVG hero_solid - gif", + "body": ["{% svg hero_solid gif %}"] + }, + "gift_top": { + "prefix": "svg.hero_solid.gift_top", + "description": "SVG hero_solid - gift_top", + "body": ["{% svg hero_solid gift_top %}"] + }, + "gift": { + "prefix": "svg.hero_solid.gift", + "description": "SVG hero_solid - gift", + "body": ["{% svg hero_solid gift %}"] + }, + "globe_alt": { + "prefix": "svg.hero_solid.globe_alt", + "description": "SVG hero_solid - globe_alt", + "body": ["{% svg hero_solid globe_alt %}"] + }, + "globe_americas": { + "prefix": "svg.hero_solid.globe_americas", + "description": "SVG hero_solid - globe_americas", + "body": ["{% svg hero_solid globe_americas %}"] + }, + "globe_asia_australia": { + "prefix": "svg.hero_solid.globe_asia_australia", + "description": "SVG hero_solid - globe_asia_australia", + "body": ["{% svg hero_solid globe_asia_australia %}"] + }, + "globe_europe_africa": { + "prefix": "svg.hero_solid.globe_europe_africa", + "description": "SVG hero_solid - globe_europe_africa", + "body": ["{% svg hero_solid globe_europe_africa %}"] + }, + "hand_raised": { + "prefix": "svg.hero_solid.hand_raised", + "description": "SVG hero_solid - hand_raised", + "body": ["{% svg hero_solid hand_raised %}"] + }, + "hand_thumb_down": { + "prefix": "svg.hero_solid.hand_thumb_down", + "description": "SVG hero_solid - hand_thumb_down", + "body": ["{% svg hero_solid hand_thumb_down %}"] + }, + "hand_thumb_up": { + "prefix": "svg.hero_solid.hand_thumb_up", + "description": "SVG hero_solid - hand_thumb_up", + "body": ["{% svg hero_solid hand_thumb_up %}"] + }, + "hashtag": { + "prefix": "svg.hero_solid.hashtag", + "description": "SVG hero_solid - hashtag", + "body": ["{% svg hero_solid hashtag %}"] + }, + "heart": { + "prefix": "svg.hero_solid.heart", + "description": "SVG hero_solid - heart", + "body": ["{% svg hero_solid heart %}"] + }, + "home_modern": { + "prefix": "svg.hero_solid.home_modern", + "description": "SVG hero_solid - home_modern", + "body": ["{% svg hero_solid home_modern %}"] + }, + "home": { + "prefix": "svg.hero_solid.home", + "description": "SVG hero_solid - home", + "body": ["{% svg hero_solid home %}"] + }, + "identification": { + "prefix": "svg.hero_solid.identification", + "description": "SVG hero_solid - identification", + "body": ["{% svg hero_solid identification %}"] + }, + "inbox_arrow_down": { + "prefix": "svg.hero_solid.inbox_arrow_down", + "description": "SVG hero_solid - inbox_arrow_down", + "body": ["{% svg hero_solid inbox_arrow_down %}"] + }, + "inbox_stack": { + "prefix": "svg.hero_solid.inbox_stack", + "description": "SVG hero_solid - inbox_stack", + "body": ["{% svg hero_solid inbox_stack %}"] + }, + "inbox": { + "prefix": "svg.hero_solid.inbox", + "description": "SVG hero_solid - inbox", + "body": ["{% svg hero_solid inbox %}"] + }, + "information_circle": { + "prefix": "svg.hero_solid.information_circle", + "description": "SVG hero_solid - information_circle", + "body": ["{% svg hero_solid information_circle %}"] + }, + "key": { + "prefix": "svg.hero_solid.key", + "description": "SVG hero_solid - key", + "body": ["{% svg hero_solid key %}"] + }, + "language": { + "prefix": "svg.hero_solid.language", + "description": "SVG hero_solid - language", + "body": ["{% svg hero_solid language %}"] + }, + "lifebuoy": { + "prefix": "svg.hero_solid.lifebuoy", + "description": "SVG hero_solid - lifebuoy", + "body": ["{% svg hero_solid lifebuoy %}"] + }, + "light_bulb": { + "prefix": "svg.hero_solid.light_bulb", + "description": "SVG hero_solid - light_bulb", + "body": ["{% svg hero_solid light_bulb %}"] + }, + "link": { + "prefix": "svg.hero_solid.link", + "description": "SVG hero_solid - link", + "body": ["{% svg hero_solid link %}"] + }, + "list_bullet": { + "prefix": "svg.hero_solid.list_bullet", + "description": "SVG hero_solid - list_bullet", + "body": ["{% svg hero_solid list_bullet %}"] + }, + "lock_closed": { + "prefix": "svg.hero_solid.lock_closed", + "description": "SVG hero_solid - lock_closed", + "body": ["{% svg hero_solid lock_closed %}"] + }, + "lock_open": { + "prefix": "svg.hero_solid.lock_open", + "description": "SVG hero_solid - lock_open", + "body": ["{% svg hero_solid lock_open %}"] + }, + "magnifying_glass_circle": { + "prefix": "svg.hero_solid.magnifying_glass_circle", + "description": "SVG hero_solid - magnifying_glass_circle", + "body": ["{% svg hero_solid magnifying_glass_circle %}"] + }, + "magnifying_glass_minus": { + "prefix": "svg.hero_solid.magnifying_glass_minus", + "description": "SVG hero_solid - magnifying_glass_minus", + "body": ["{% svg hero_solid magnifying_glass_minus %}"] + }, + "magnifying_glass_plus": { + "prefix": "svg.hero_solid.magnifying_glass_plus", + "description": "SVG hero_solid - magnifying_glass_plus", + "body": ["{% svg hero_solid magnifying_glass_plus %}"] + }, + "magnifying_glass": { + "prefix": "svg.hero_solid.magnifying_glass", + "description": "SVG hero_solid - magnifying_glass", + "body": ["{% svg hero_solid magnifying_glass %}"] + }, + "map_pin": { + "prefix": "svg.hero_solid.map_pin", + "description": "SVG hero_solid - map_pin", + "body": ["{% svg hero_solid map_pin %}"] + }, + "map": { + "prefix": "svg.hero_solid.map", + "description": "SVG hero_solid - map", + "body": ["{% svg hero_solid map %}"] + }, + "megaphone": { + "prefix": "svg.hero_solid.megaphone", + "description": "SVG hero_solid - megaphone", + "body": ["{% svg hero_solid megaphone %}"] + }, + "microphone": { + "prefix": "svg.hero_solid.microphone", + "description": "SVG hero_solid - microphone", + "body": ["{% svg hero_solid microphone %}"] + }, + "minus_circle": { + "prefix": "svg.hero_solid.minus_circle", + "description": "SVG hero_solid - minus_circle", + "body": ["{% svg hero_solid minus_circle %}"] + }, + "minus_small": { + "prefix": "svg.hero_solid.minus_small", + "description": "SVG hero_solid - minus_small", + "body": ["{% svg hero_solid minus_small %}"] + }, + "minus": { + "prefix": "svg.hero_solid.minus", + "description": "SVG hero_solid - minus", + "body": ["{% svg hero_solid minus %}"] + }, + "moon": { + "prefix": "svg.hero_solid.moon", + "description": "SVG hero_solid - moon", + "body": ["{% svg hero_solid moon %}"] + }, + "musical_note": { + "prefix": "svg.hero_solid.musical_note", + "description": "SVG hero_solid - musical_note", + "body": ["{% svg hero_solid musical_note %}"] + }, + "newspaper": { + "prefix": "svg.hero_solid.newspaper", + "description": "SVG hero_solid - newspaper", + "body": ["{% svg hero_solid newspaper %}"] + }, + "no_symbol": { + "prefix": "svg.hero_solid.no_symbol", + "description": "SVG hero_solid - no_symbol", + "body": ["{% svg hero_solid no_symbol %}"] + }, + "paint_brush": { + "prefix": "svg.hero_solid.paint_brush", + "description": "SVG hero_solid - paint_brush", + "body": ["{% svg hero_solid paint_brush %}"] + }, + "paper_airplane": { + "prefix": "svg.hero_solid.paper_airplane", + "description": "SVG hero_solid - paper_airplane", + "body": ["{% svg hero_solid paper_airplane %}"] + }, + "paper_clip": { + "prefix": "svg.hero_solid.paper_clip", + "description": "SVG hero_solid - paper_clip", + "body": ["{% svg hero_solid paper_clip %}"] + }, + "pause_circle": { + "prefix": "svg.hero_solid.pause_circle", + "description": "SVG hero_solid - pause_circle", + "body": ["{% svg hero_solid pause_circle %}"] + }, + "pause": { + "prefix": "svg.hero_solid.pause", + "description": "SVG hero_solid - pause", + "body": ["{% svg hero_solid pause %}"] + }, + "pencil_square": { + "prefix": "svg.hero_solid.pencil_square", + "description": "SVG hero_solid - pencil_square", + "body": ["{% svg hero_solid pencil_square %}"] + }, + "pencil": { + "prefix": "svg.hero_solid.pencil", + "description": "SVG hero_solid - pencil", + "body": ["{% svg hero_solid pencil %}"] + }, + "phone_arrow_down_left": { + "prefix": "svg.hero_solid.phone_arrow_down_left", + "description": "SVG hero_solid - phone_arrow_down_left", + "body": ["{% svg hero_solid phone_arrow_down_left %}"] + }, + "phone_arrow_up_right": { + "prefix": "svg.hero_solid.phone_arrow_up_right", + "description": "SVG hero_solid - phone_arrow_up_right", + "body": ["{% svg hero_solid phone_arrow_up_right %}"] + }, + "phone_x_mark": { + "prefix": "svg.hero_solid.phone_x_mark", + "description": "SVG hero_solid - phone_x_mark", + "body": ["{% svg hero_solid phone_x_mark %}"] + }, + "phone": { + "prefix": "svg.hero_solid.phone", + "description": "SVG hero_solid - phone", + "body": ["{% svg hero_solid phone %}"] + }, + "photo": { + "prefix": "svg.hero_solid.photo", + "description": "SVG hero_solid - photo", + "body": ["{% svg hero_solid photo %}"] + }, + "play_circle": { + "prefix": "svg.hero_solid.play_circle", + "description": "SVG hero_solid - play_circle", + "body": ["{% svg hero_solid play_circle %}"] + }, + "play_pause": { + "prefix": "svg.hero_solid.play_pause", + "description": "SVG hero_solid - play_pause", + "body": ["{% svg hero_solid play_pause %}"] + }, + "play": { + "prefix": "svg.hero_solid.play", + "description": "SVG hero_solid - play", + "body": ["{% svg hero_solid play %}"] + }, + "plus_circle": { + "prefix": "svg.hero_solid.plus_circle", + "description": "SVG hero_solid - plus_circle", + "body": ["{% svg hero_solid plus_circle %}"] + }, + "plus_small": { + "prefix": "svg.hero_solid.plus_small", + "description": "SVG hero_solid - plus_small", + "body": ["{% svg hero_solid plus_small %}"] + }, + "plus": { + "prefix": "svg.hero_solid.plus", + "description": "SVG hero_solid - plus", + "body": ["{% svg hero_solid plus %}"] + }, + "power": { + "prefix": "svg.hero_solid.power", + "description": "SVG hero_solid - power", + "body": ["{% svg hero_solid power %}"] + }, + "presentation_chart_bar": { + "prefix": "svg.hero_solid.presentation_chart_bar", + "description": "SVG hero_solid - presentation_chart_bar", + "body": ["{% svg hero_solid presentation_chart_bar %}"] + }, + "presentation_chart_line": { + "prefix": "svg.hero_solid.presentation_chart_line", + "description": "SVG hero_solid - presentation_chart_line", + "body": ["{% svg hero_solid presentation_chart_line %}"] + }, + "printer": { + "prefix": "svg.hero_solid.printer", + "description": "SVG hero_solid - printer", + "body": ["{% svg hero_solid printer %}"] + }, + "puzzle_piece": { + "prefix": "svg.hero_solid.puzzle_piece", + "description": "SVG hero_solid - puzzle_piece", + "body": ["{% svg hero_solid puzzle_piece %}"] + }, + "qr_code": { + "prefix": "svg.hero_solid.qr_code", + "description": "SVG hero_solid - qr_code", + "body": ["{% svg hero_solid qr_code %}"] + }, + "question_mark_circle": { + "prefix": "svg.hero_solid.question_mark_circle", + "description": "SVG hero_solid - question_mark_circle", + "body": ["{% svg hero_solid question_mark_circle %}"] + }, + "queue_list": { + "prefix": "svg.hero_solid.queue_list", + "description": "SVG hero_solid - queue_list", + "body": ["{% svg hero_solid queue_list %}"] + }, + "radio": { + "prefix": "svg.hero_solid.radio", + "description": "SVG hero_solid - radio", + "body": ["{% svg hero_solid radio %}"] + }, + "receipt_percent": { + "prefix": "svg.hero_solid.receipt_percent", + "description": "SVG hero_solid - receipt_percent", + "body": ["{% svg hero_solid receipt_percent %}"] + }, + "receipt_refund": { + "prefix": "svg.hero_solid.receipt_refund", + "description": "SVG hero_solid - receipt_refund", + "body": ["{% svg hero_solid receipt_refund %}"] + }, + "rectangle_group": { + "prefix": "svg.hero_solid.rectangle_group", + "description": "SVG hero_solid - rectangle_group", + "body": ["{% svg hero_solid rectangle_group %}"] + }, + "rectangle_stack": { + "prefix": "svg.hero_solid.rectangle_stack", + "description": "SVG hero_solid - rectangle_stack", + "body": ["{% svg hero_solid rectangle_stack %}"] + }, + "rocket_launch": { + "prefix": "svg.hero_solid.rocket_launch", + "description": "SVG hero_solid - rocket_launch", + "body": ["{% svg hero_solid rocket_launch %}"] + }, + "rss": { + "prefix": "svg.hero_solid.rss", + "description": "SVG hero_solid - rss", + "body": ["{% svg hero_solid rss %}"] + }, + "scale": { + "prefix": "svg.hero_solid.scale", + "description": "SVG hero_solid - scale", + "body": ["{% svg hero_solid scale %}"] + }, + "scissors": { + "prefix": "svg.hero_solid.scissors", + "description": "SVG hero_solid - scissors", + "body": ["{% svg hero_solid scissors %}"] + }, + "sercer_stack": { + "prefix": "svg.hero_solid.sercer_stack", + "description": "SVG hero_solid - sercer_stack", + "body": ["{% svg hero_solid sercer_stack %}"] + }, + "server": { + "prefix": "svg.hero_solid.server", + "description": "SVG hero_solid - server", + "body": ["{% svg hero_solid server %}"] + }, + "share": { + "prefix": "svg.hero_solid.share", + "description": "SVG hero_solid - share", + "body": ["{% svg hero_solid share %}"] + }, + "shield_check": { + "prefix": "svg.hero_solid.shield_check", + "description": "SVG hero_solid - shield_check", + "body": ["{% svg hero_solid shield_check %}"] + }, + "shield_exclamation": { + "prefix": "svg.hero_solid.shield_exclamation", + "description": "SVG hero_solid - shield_exclamation", + "body": ["{% svg hero_solid shield_exclamation %}"] + }, + "shopping_bag": { + "prefix": "svg.hero_solid.shopping_bag", + "description": "SVG hero_solid - shopping_bag", + "body": ["{% svg hero_solid shopping_bag %}"] + }, + "shopping_cart": { + "prefix": "svg.hero_solid.shopping_cart", + "description": "SVG hero_solid - shopping_cart", + "body": ["{% svg hero_solid shopping_cart %}"] + }, + "signal_slash": { + "prefix": "svg.hero_solid.signal_slash", + "description": "SVG hero_solid - signal_slash", + "body": ["{% svg hero_solid signal_slash %}"] + }, + "signal": { + "prefix": "svg.hero_solid.signal", + "description": "SVG hero_solid - signal", + "body": ["{% svg hero_solid signal %}"] + }, + "sparkles": { + "prefix": "svg.hero_solid.sparkles", + "description": "SVG hero_solid - sparkles", + "body": ["{% svg hero_solid sparkles %}"] + }, + "speaker_wave": { + "prefix": "svg.hero_solid.speaker_wave", + "description": "SVG hero_solid - speaker_wave", + "body": ["{% svg hero_solid speaker_wave %}"] + }, + "speaker_x_mark": { + "prefix": "svg.hero_solid.speaker_x_mark", + "description": "SVG hero_solid - speaker_x_mark", + "body": ["{% svg hero_solid speaker_x_mark %}"] + }, + "square_2_stack": { + "prefix": "svg.hero_solid.square_2_stack", + "description": "SVG hero_solid - square_2_stack", + "body": ["{% svg hero_solid square_2_stack %}"] + }, + "square_3_stack_3d": { + "prefix": "svg.hero_solid.square_3_stack_3d", + "description": "SVG hero_solid - square_3_stack_3d", + "body": ["{% svg hero_solid square_3_stack_3d %}"] + }, + "squares_2_x_2": { + "prefix": "svg.hero_solid.squares_2_x_2", + "description": "SVG hero_solid - squares_2_x_2", + "body": ["{% svg hero_solid squares_2_x_2 %}"] + }, + "squares_plus": { + "prefix": "svg.hero_solid.squares_plus", + "description": "SVG hero_solid - squares_plus", + "body": ["{% svg hero_solid squares_plus %}"] + }, + "star": { + "prefix": "svg.hero_solid.star", + "description": "SVG hero_solid - star", + "body": ["{% svg hero_solid star %}"] + }, + "stop_circle": { + "prefix": "svg.hero_solid.stop_circle", + "description": "SVG hero_solid - stop_circle", + "body": ["{% svg hero_solid stop_circle %}"] + }, + "stop": { + "prefix": "svg.hero_solid.stop", + "description": "SVG hero_solid - stop", + "body": ["{% svg hero_solid stop %}"] + }, + "sun": { + "prefix": "svg.hero_solid.sun", + "description": "SVG hero_solid - sun", + "body": ["{% svg hero_solid sun %}"] + }, + "swatch": { + "prefix": "svg.hero_solid.swatch", + "description": "SVG hero_solid - swatch", + "body": ["{% svg hero_solid swatch %}"] + }, + "table_cells": { + "prefix": "svg.hero_solid.table_cells", + "description": "SVG hero_solid - table_cells", + "body": ["{% svg hero_solid table_cells %}"] + }, + "tag": { + "prefix": "svg.hero_solid.tag", + "description": "SVG hero_solid - tag", + "body": ["{% svg hero_solid tag %}"] + }, + "ticket": { + "prefix": "svg.hero_solid.ticket", + "description": "SVG hero_solid - ticket", + "body": ["{% svg hero_solid ticket %}"] + }, + "trash": { + "prefix": "svg.hero_solid.trash", + "description": "SVG hero_solid - trash", + "body": ["{% svg hero_solid trash %}"] + }, + "trophy": { + "prefix": "svg.hero_solid.trophy", + "description": "SVG hero_solid - trophy", + "body": ["{% svg hero_solid trophy %}"] + }, + "truck": { + "prefix": "svg.hero_solid.truck", + "description": "SVG hero_solid - truck", + "body": ["{% svg hero_solid truck %}"] + }, + "tv": { + "prefix": "svg.hero_solid.tv", + "description": "SVG hero_solid - tv", + "body": ["{% svg hero_solid tv %}"] + }, + "user_circle": { + "prefix": "svg.hero_solid.user_circle", + "description": "SVG hero_solid - user_circle", + "body": ["{% svg hero_solid user_circle %}"] + }, + "user_group": { + "prefix": "svg.hero_solid.user_group", + "description": "SVG hero_solid - user_group", + "body": ["{% svg hero_solid user_group %}"] + }, + "user_minus": { + "prefix": "svg.hero_solid.user_minus", + "description": "SVG hero_solid - user_minus", + "body": ["{% svg hero_solid user_minus %}"] + }, + "user_plus": { + "prefix": "svg.hero_solid.user_plus", + "description": "SVG hero_solid - user_plus", + "body": ["{% svg hero_solid user_plus %}"] + }, + "user": { + "prefix": "svg.hero_solid.user", + "description": "SVG hero_solid - user", + "body": ["{% svg hero_solid user %}"] + }, + "users": { + "prefix": "svg.hero_solid.users", + "description": "SVG hero_solid - users", + "body": ["{% svg hero_solid users %}"] + }, + "variable": { + "prefix": "svg.hero_solid.variable", + "description": "SVG hero_solid - variable", + "body": ["{% svg hero_solid variable %}"] + }, + "video_camera_slash": { + "prefix": "svg.hero_solid.video_camera_slash", + "description": "SVG hero_solid - video_camera_slash", + "body": ["{% svg hero_solid video_camera_slash %}"] + }, + "video_camera": { + "prefix": "svg.hero_solid.video_camera", + "description": "SVG hero_solid - video_camera", + "body": ["{% svg hero_solid video_camera %}"] + }, + "view_columns": { + "prefix": "svg.hero_solid.view_columns", + "description": "SVG hero_solid - view_columns", + "body": ["{% svg hero_solid view_columns %}"] + }, + "viewfinder_circle": { + "prefix": "svg.hero_solid.viewfinder_circle", + "description": "SVG hero_solid - viewfinder_circle", + "body": ["{% svg hero_solid viewfinder_circle %}"] + }, + "wallet": { + "prefix": "svg.hero_solid.wallet", + "description": "SVG hero_solid - wallet", + "body": ["{% svg hero_solid wallet %}"] + }, + "wifi": { + "prefix": "svg.hero_solid.wifi", + "description": "SVG hero_solid - wifi", + "body": ["{% svg hero_solid wifi %}"] + }, + "window": { + "prefix": "svg.hero_solid.window", + "description": "SVG hero_solid - window", + "body": ["{% svg hero_solid window %}"] + }, + "wrench_screwdriver": { + "prefix": "svg.hero_solid.wrench_screwdriver", + "description": "SVG hero_solid - wrench_screwdriver", + "body": ["{% svg hero_solid wrench_screwdriver %}"] + }, + "wrench": { + "prefix": "svg.hero_solid.wrench", + "description": "SVG hero_solid - wrench", + "body": ["{% svg hero_solid wrench %}"] + }, + "x_circle": { + "prefix": "svg.hero_solid.x_circle", + "description": "SVG hero_solid - x_circle", + "body": ["{% svg hero_solid x_circle %}"] + } +} diff --git a/lua/snippets/material.json b/lua/snippets/material.json new file mode 100644 index 0000000..ff4dc75 --- /dev/null +++ b/lua/snippets/material.json @@ -0,0 +1,52131 @@ +{ + "ab_testing": { + "prefix": "svg.material.ab_testing", + "description": "SVG material - ab_testing", + "body": [ + "{% svg material ab_testing %}" + ] + }, + "abacus": { + "prefix": "svg.material.abacus", + "description": "SVG material - abacus", + "body": [ + "{% svg material abacus %}" + ] + }, + "abjad_arabic": { + "prefix": "svg.material.abjad_arabic", + "description": "SVG material - abjad_arabic", + "body": [ + "{% svg material abjad_arabic %}" + ] + }, + "abjad_hebrew": { + "prefix": "svg.material.abjad_hebrew", + "description": "SVG material - abjad_hebrew", + "body": [ + "{% svg material abjad_hebrew %}" + ] + }, + "abugida_devanagari": { + "prefix": "svg.material.abugida_devanagari", + "description": "SVG material - abugida_devanagari", + "body": [ + "{% svg material abugida_devanagari %}" + ] + }, + "abugida_thai": { + "prefix": "svg.material.abugida_thai", + "description": "SVG material - abugida_thai", + "body": [ + "{% svg material abugida_thai %}" + ] + }, + "access_point": { + "prefix": "svg.material.access_point", + "description": "SVG material - access_point", + "body": [ + "{% svg material access_point %}" + ] + }, + "access_point_check": { + "prefix": "svg.material.access_point_check", + "description": "SVG material - access_point_check", + "body": [ + "{% svg material access_point_check %}" + ] + }, + "access_point_minus": { + "prefix": "svg.material.access_point_minus", + "description": "SVG material - access_point_minus", + "body": [ + "{% svg material access_point_minus %}" + ] + }, + "access_point_network": { + "prefix": "svg.material.access_point_network", + "description": "SVG material - access_point_network", + "body": [ + "{% svg material access_point_network %}" + ] + }, + "access_point_network_off": { + "prefix": "svg.material.access_point_network_off", + "description": "SVG material - access_point_network_off", + "body": [ + "{% svg material access_point_network_off %}" + ] + }, + "access_point_off": { + "prefix": "svg.material.access_point_off", + "description": "SVG material - access_point_off", + "body": [ + "{% svg material access_point_off %}" + ] + }, + "access_point_plus": { + "prefix": "svg.material.access_point_plus", + "description": "SVG material - access_point_plus", + "body": [ + "{% svg material access_point_plus %}" + ] + }, + "access_point_remove": { + "prefix": "svg.material.access_point_remove", + "description": "SVG material - access_point_remove", + "body": [ + "{% svg material access_point_remove %}" + ] + }, + "account": { + "prefix": "svg.material.account", + "description": "SVG material - account", + "body": [ + "{% svg material account %}" + ] + }, + "account_alert": { + "prefix": "svg.material.account_alert", + "description": "SVG material - account_alert", + "body": [ + "{% svg material account_alert %}" + ] + }, + "account_alert_outline": { + "prefix": "svg.material.account_alert_outline", + "description": "SVG material - account_alert_outline", + "body": [ + "{% svg material account_alert_outline %}" + ] + }, + "account_arrow_down": { + "prefix": "svg.material.account_arrow_down", + "description": "SVG material - account_arrow_down", + "body": [ + "{% svg material account_arrow_down %}" + ] + }, + "account_arrow_down_outline": { + "prefix": "svg.material.account_arrow_down_outline", + "description": "SVG material - account_arrow_down_outline", + "body": [ + "{% svg material account_arrow_down_outline %}" + ] + }, + "account_arrow_left": { + "prefix": "svg.material.account_arrow_left", + "description": "SVG material - account_arrow_left", + "body": [ + "{% svg material account_arrow_left %}" + ] + }, + "account_arrow_left_outline": { + "prefix": "svg.material.account_arrow_left_outline", + "description": "SVG material - account_arrow_left_outline", + "body": [ + "{% svg material account_arrow_left_outline %}" + ] + }, + "account_arrow_right": { + "prefix": "svg.material.account_arrow_right", + "description": "SVG material - account_arrow_right", + "body": [ + "{% svg material account_arrow_right %}" + ] + }, + "account_arrow_right_outline": { + "prefix": "svg.material.account_arrow_right_outline", + "description": "SVG material - account_arrow_right_outline", + "body": [ + "{% svg material account_arrow_right_outline %}" + ] + }, + "account_arrow_up": { + "prefix": "svg.material.account_arrow_up", + "description": "SVG material - account_arrow_up", + "body": [ + "{% svg material account_arrow_up %}" + ] + }, + "account_arrow_up_outline": { + "prefix": "svg.material.account_arrow_up_outline", + "description": "SVG material - account_arrow_up_outline", + "body": [ + "{% svg material account_arrow_up_outline %}" + ] + }, + "account_badge": { + "prefix": "svg.material.account_badge", + "description": "SVG material - account_badge", + "body": [ + "{% svg material account_badge %}" + ] + }, + "account_badge_outline": { + "prefix": "svg.material.account_badge_outline", + "description": "SVG material - account_badge_outline", + "body": [ + "{% svg material account_badge_outline %}" + ] + }, + "account_box": { + "prefix": "svg.material.account_box", + "description": "SVG material - account_box", + "body": [ + "{% svg material account_box %}" + ] + }, + "account_box_edit_outline": { + "prefix": "svg.material.account_box_edit_outline", + "description": "SVG material - account_box_edit_outline", + "body": [ + "{% svg material account_box_edit_outline %}" + ] + }, + "account_box_minus_outline": { + "prefix": "svg.material.account_box_minus_outline", + "description": "SVG material - account_box_minus_outline", + "body": [ + "{% svg material account_box_minus_outline %}" + ] + }, + "account_box_multiple": { + "prefix": "svg.material.account_box_multiple", + "description": "SVG material - account_box_multiple", + "body": [ + "{% svg material account_box_multiple %}" + ] + }, + "account_box_multiple_outline": { + "prefix": "svg.material.account_box_multiple_outline", + "description": "SVG material - account_box_multiple_outline", + "body": [ + "{% svg material account_box_multiple_outline %}" + ] + }, + "account_box_outline": { + "prefix": "svg.material.account_box_outline", + "description": "SVG material - account_box_outline", + "body": [ + "{% svg material account_box_outline %}" + ] + }, + "account_box_plus_outline": { + "prefix": "svg.material.account_box_plus_outline", + "description": "SVG material - account_box_plus_outline", + "body": [ + "{% svg material account_box_plus_outline %}" + ] + }, + "account_cancel": { + "prefix": "svg.material.account_cancel", + "description": "SVG material - account_cancel", + "body": [ + "{% svg material account_cancel %}" + ] + }, + "account_cancel_outline": { + "prefix": "svg.material.account_cancel_outline", + "description": "SVG material - account_cancel_outline", + "body": [ + "{% svg material account_cancel_outline %}" + ] + }, + "account_card": { + "prefix": "svg.material.account_card", + "description": "SVG material - account_card", + "body": [ + "{% svg material account_card %}" + ] + }, + "account_card_outline": { + "prefix": "svg.material.account_card_outline", + "description": "SVG material - account_card_outline", + "body": [ + "{% svg material account_card_outline %}" + ] + }, + "account_cash": { + "prefix": "svg.material.account_cash", + "description": "SVG material - account_cash", + "body": [ + "{% svg material account_cash %}" + ] + }, + "account_cash_outline": { + "prefix": "svg.material.account_cash_outline", + "description": "SVG material - account_cash_outline", + "body": [ + "{% svg material account_cash_outline %}" + ] + }, + "account_check": { + "prefix": "svg.material.account_check", + "description": "SVG material - account_check", + "body": [ + "{% svg material account_check %}" + ] + }, + "account_check_outline": { + "prefix": "svg.material.account_check_outline", + "description": "SVG material - account_check_outline", + "body": [ + "{% svg material account_check_outline %}" + ] + }, + "account_child": { + "prefix": "svg.material.account_child", + "description": "SVG material - account_child", + "body": [ + "{% svg material account_child %}" + ] + }, + "account_child_circle": { + "prefix": "svg.material.account_child_circle", + "description": "SVG material - account_child_circle", + "body": [ + "{% svg material account_child_circle %}" + ] + }, + "account_child_outline": { + "prefix": "svg.material.account_child_outline", + "description": "SVG material - account_child_outline", + "body": [ + "{% svg material account_child_outline %}" + ] + }, + "account_circle": { + "prefix": "svg.material.account_circle", + "description": "SVG material - account_circle", + "body": [ + "{% svg material account_circle %}" + ] + }, + "account_circle_outline": { + "prefix": "svg.material.account_circle_outline", + "description": "SVG material - account_circle_outline", + "body": [ + "{% svg material account_circle_outline %}" + ] + }, + "account_clock": { + "prefix": "svg.material.account_clock", + "description": "SVG material - account_clock", + "body": [ + "{% svg material account_clock %}" + ] + }, + "account_clock_outline": { + "prefix": "svg.material.account_clock_outline", + "description": "SVG material - account_clock_outline", + "body": [ + "{% svg material account_clock_outline %}" + ] + }, + "account_cog": { + "prefix": "svg.material.account_cog", + "description": "SVG material - account_cog", + "body": [ + "{% svg material account_cog %}" + ] + }, + "account_cog_outline": { + "prefix": "svg.material.account_cog_outline", + "description": "SVG material - account_cog_outline", + "body": [ + "{% svg material account_cog_outline %}" + ] + }, + "account_convert": { + "prefix": "svg.material.account_convert", + "description": "SVG material - account_convert", + "body": [ + "{% svg material account_convert %}" + ] + }, + "account_convert_outline": { + "prefix": "svg.material.account_convert_outline", + "description": "SVG material - account_convert_outline", + "body": [ + "{% svg material account_convert_outline %}" + ] + }, + "account_cowboy_hat": { + "prefix": "svg.material.account_cowboy_hat", + "description": "SVG material - account_cowboy_hat", + "body": [ + "{% svg material account_cowboy_hat %}" + ] + }, + "account_cowboy_hat_outline": { + "prefix": "svg.material.account_cowboy_hat_outline", + "description": "SVG material - account_cowboy_hat_outline", + "body": [ + "{% svg material account_cowboy_hat_outline %}" + ] + }, + "account_credit_card": { + "prefix": "svg.material.account_credit_card", + "description": "SVG material - account_credit_card", + "body": [ + "{% svg material account_credit_card %}" + ] + }, + "account_credit_card_outline": { + "prefix": "svg.material.account_credit_card_outline", + "description": "SVG material - account_credit_card_outline", + "body": [ + "{% svg material account_credit_card_outline %}" + ] + }, + "account_details": { + "prefix": "svg.material.account_details", + "description": "SVG material - account_details", + "body": [ + "{% svg material account_details %}" + ] + }, + "account_details_outline": { + "prefix": "svg.material.account_details_outline", + "description": "SVG material - account_details_outline", + "body": [ + "{% svg material account_details_outline %}" + ] + }, + "account_edit": { + "prefix": "svg.material.account_edit", + "description": "SVG material - account_edit", + "body": [ + "{% svg material account_edit %}" + ] + }, + "account_edit_outline": { + "prefix": "svg.material.account_edit_outline", + "description": "SVG material - account_edit_outline", + "body": [ + "{% svg material account_edit_outline %}" + ] + }, + "account_eye": { + "prefix": "svg.material.account_eye", + "description": "SVG material - account_eye", + "body": [ + "{% svg material account_eye %}" + ] + }, + "account_eye_outline": { + "prefix": "svg.material.account_eye_outline", + "description": "SVG material - account_eye_outline", + "body": [ + "{% svg material account_eye_outline %}" + ] + }, + "account_file": { + "prefix": "svg.material.account_file", + "description": "SVG material - account_file", + "body": [ + "{% svg material account_file %}" + ] + }, + "account_file_outline": { + "prefix": "svg.material.account_file_outline", + "description": "SVG material - account_file_outline", + "body": [ + "{% svg material account_file_outline %}" + ] + }, + "account_file_text": { + "prefix": "svg.material.account_file_text", + "description": "SVG material - account_file_text", + "body": [ + "{% svg material account_file_text %}" + ] + }, + "account_file_text_outline": { + "prefix": "svg.material.account_file_text_outline", + "description": "SVG material - account_file_text_outline", + "body": [ + "{% svg material account_file_text_outline %}" + ] + }, + "account_filter": { + "prefix": "svg.material.account_filter", + "description": "SVG material - account_filter", + "body": [ + "{% svg material account_filter %}" + ] + }, + "account_filter_outline": { + "prefix": "svg.material.account_filter_outline", + "description": "SVG material - account_filter_outline", + "body": [ + "{% svg material account_filter_outline %}" + ] + }, + "account_group": { + "prefix": "svg.material.account_group", + "description": "SVG material - account_group", + "body": [ + "{% svg material account_group %}" + ] + }, + "account_group_outline": { + "prefix": "svg.material.account_group_outline", + "description": "SVG material - account_group_outline", + "body": [ + "{% svg material account_group_outline %}" + ] + }, + "account_hard_hat": { + "prefix": "svg.material.account_hard_hat", + "description": "SVG material - account_hard_hat", + "body": [ + "{% svg material account_hard_hat %}" + ] + }, + "account_hard_hat_outline": { + "prefix": "svg.material.account_hard_hat_outline", + "description": "SVG material - account_hard_hat_outline", + "body": [ + "{% svg material account_hard_hat_outline %}" + ] + }, + "account_heart": { + "prefix": "svg.material.account_heart", + "description": "SVG material - account_heart", + "body": [ + "{% svg material account_heart %}" + ] + }, + "account_heart_outline": { + "prefix": "svg.material.account_heart_outline", + "description": "SVG material - account_heart_outline", + "body": [ + "{% svg material account_heart_outline %}" + ] + }, + "account_injury": { + "prefix": "svg.material.account_injury", + "description": "SVG material - account_injury", + "body": [ + "{% svg material account_injury %}" + ] + }, + "account_injury_outline": { + "prefix": "svg.material.account_injury_outline", + "description": "SVG material - account_injury_outline", + "body": [ + "{% svg material account_injury_outline %}" + ] + }, + "account_key": { + "prefix": "svg.material.account_key", + "description": "SVG material - account_key", + "body": [ + "{% svg material account_key %}" + ] + }, + "account_key_outline": { + "prefix": "svg.material.account_key_outline", + "description": "SVG material - account_key_outline", + "body": [ + "{% svg material account_key_outline %}" + ] + }, + "account_lock": { + "prefix": "svg.material.account_lock", + "description": "SVG material - account_lock", + "body": [ + "{% svg material account_lock %}" + ] + }, + "account_lock_open": { + "prefix": "svg.material.account_lock_open", + "description": "SVG material - account_lock_open", + "body": [ + "{% svg material account_lock_open %}" + ] + }, + "account_lock_open_outline": { + "prefix": "svg.material.account_lock_open_outline", + "description": "SVG material - account_lock_open_outline", + "body": [ + "{% svg material account_lock_open_outline %}" + ] + }, + "account_lock_outline": { + "prefix": "svg.material.account_lock_outline", + "description": "SVG material - account_lock_outline", + "body": [ + "{% svg material account_lock_outline %}" + ] + }, + "account_minus": { + "prefix": "svg.material.account_minus", + "description": "SVG material - account_minus", + "body": [ + "{% svg material account_minus %}" + ] + }, + "account_minus_outline": { + "prefix": "svg.material.account_minus_outline", + "description": "SVG material - account_minus_outline", + "body": [ + "{% svg material account_minus_outline %}" + ] + }, + "account_multiple": { + "prefix": "svg.material.account_multiple", + "description": "SVG material - account_multiple", + "body": [ + "{% svg material account_multiple %}" + ] + }, + "account_multiple_check": { + "prefix": "svg.material.account_multiple_check", + "description": "SVG material - account_multiple_check", + "body": [ + "{% svg material account_multiple_check %}" + ] + }, + "account_multiple_check_outline": { + "prefix": "svg.material.account_multiple_check_outline", + "description": "SVG material - account_multiple_check_outline", + "body": [ + "{% svg material account_multiple_check_outline %}" + ] + }, + "account_multiple_minus": { + "prefix": "svg.material.account_multiple_minus", + "description": "SVG material - account_multiple_minus", + "body": [ + "{% svg material account_multiple_minus %}" + ] + }, + "account_multiple_minus_outline": { + "prefix": "svg.material.account_multiple_minus_outline", + "description": "SVG material - account_multiple_minus_outline", + "body": [ + "{% svg material account_multiple_minus_outline %}" + ] + }, + "account_multiple_outline": { + "prefix": "svg.material.account_multiple_outline", + "description": "SVG material - account_multiple_outline", + "body": [ + "{% svg material account_multiple_outline %}" + ] + }, + "account_multiple_plus": { + "prefix": "svg.material.account_multiple_plus", + "description": "SVG material - account_multiple_plus", + "body": [ + "{% svg material account_multiple_plus %}" + ] + }, + "account_multiple_plus_outline": { + "prefix": "svg.material.account_multiple_plus_outline", + "description": "SVG material - account_multiple_plus_outline", + "body": [ + "{% svg material account_multiple_plus_outline %}" + ] + }, + "account_multiple_remove": { + "prefix": "svg.material.account_multiple_remove", + "description": "SVG material - account_multiple_remove", + "body": [ + "{% svg material account_multiple_remove %}" + ] + }, + "account_multiple_remove_outline": { + "prefix": "svg.material.account_multiple_remove_outline", + "description": "SVG material - account_multiple_remove_outline", + "body": [ + "{% svg material account_multiple_remove_outline %}" + ] + }, + "account_music": { + "prefix": "svg.material.account_music", + "description": "SVG material - account_music", + "body": [ + "{% svg material account_music %}" + ] + }, + "account_music_outline": { + "prefix": "svg.material.account_music_outline", + "description": "SVG material - account_music_outline", + "body": [ + "{% svg material account_music_outline %}" + ] + }, + "account_network": { + "prefix": "svg.material.account_network", + "description": "SVG material - account_network", + "body": [ + "{% svg material account_network %}" + ] + }, + "account_network_off": { + "prefix": "svg.material.account_network_off", + "description": "SVG material - account_network_off", + "body": [ + "{% svg material account_network_off %}" + ] + }, + "account_network_off_outline": { + "prefix": "svg.material.account_network_off_outline", + "description": "SVG material - account_network_off_outline", + "body": [ + "{% svg material account_network_off_outline %}" + ] + }, + "account_network_outline": { + "prefix": "svg.material.account_network_outline", + "description": "SVG material - account_network_outline", + "body": [ + "{% svg material account_network_outline %}" + ] + }, + "account_off": { + "prefix": "svg.material.account_off", + "description": "SVG material - account_off", + "body": [ + "{% svg material account_off %}" + ] + }, + "account_off_outline": { + "prefix": "svg.material.account_off_outline", + "description": "SVG material - account_off_outline", + "body": [ + "{% svg material account_off_outline %}" + ] + }, + "account_outline": { + "prefix": "svg.material.account_outline", + "description": "SVG material - account_outline", + "body": [ + "{% svg material account_outline %}" + ] + }, + "account_plus": { + "prefix": "svg.material.account_plus", + "description": "SVG material - account_plus", + "body": [ + "{% svg material account_plus %}" + ] + }, + "account_plus_outline": { + "prefix": "svg.material.account_plus_outline", + "description": "SVG material - account_plus_outline", + "body": [ + "{% svg material account_plus_outline %}" + ] + }, + "account_question": { + "prefix": "svg.material.account_question", + "description": "SVG material - account_question", + "body": [ + "{% svg material account_question %}" + ] + }, + "account_question_outline": { + "prefix": "svg.material.account_question_outline", + "description": "SVG material - account_question_outline", + "body": [ + "{% svg material account_question_outline %}" + ] + }, + "account_reactivate": { + "prefix": "svg.material.account_reactivate", + "description": "SVG material - account_reactivate", + "body": [ + "{% svg material account_reactivate %}" + ] + }, + "account_reactivate_outline": { + "prefix": "svg.material.account_reactivate_outline", + "description": "SVG material - account_reactivate_outline", + "body": [ + "{% svg material account_reactivate_outline %}" + ] + }, + "account_remove": { + "prefix": "svg.material.account_remove", + "description": "SVG material - account_remove", + "body": [ + "{% svg material account_remove %}" + ] + }, + "account_remove_outline": { + "prefix": "svg.material.account_remove_outline", + "description": "SVG material - account_remove_outline", + "body": [ + "{% svg material account_remove_outline %}" + ] + }, + "account_school": { + "prefix": "svg.material.account_school", + "description": "SVG material - account_school", + "body": [ + "{% svg material account_school %}" + ] + }, + "account_school_outline": { + "prefix": "svg.material.account_school_outline", + "description": "SVG material - account_school_outline", + "body": [ + "{% svg material account_school_outline %}" + ] + }, + "account_search": { + "prefix": "svg.material.account_search", + "description": "SVG material - account_search", + "body": [ + "{% svg material account_search %}" + ] + }, + "account_search_outline": { + "prefix": "svg.material.account_search_outline", + "description": "SVG material - account_search_outline", + "body": [ + "{% svg material account_search_outline %}" + ] + }, + "account_settings": { + "prefix": "svg.material.account_settings", + "description": "SVG material - account_settings", + "body": [ + "{% svg material account_settings %}" + ] + }, + "account_settings_outline": { + "prefix": "svg.material.account_settings_outline", + "description": "SVG material - account_settings_outline", + "body": [ + "{% svg material account_settings_outline %}" + ] + }, + "account_star": { + "prefix": "svg.material.account_star", + "description": "SVG material - account_star", + "body": [ + "{% svg material account_star %}" + ] + }, + "account_star_outline": { + "prefix": "svg.material.account_star_outline", + "description": "SVG material - account_star_outline", + "body": [ + "{% svg material account_star_outline %}" + ] + }, + "account_supervisor": { + "prefix": "svg.material.account_supervisor", + "description": "SVG material - account_supervisor", + "body": [ + "{% svg material account_supervisor %}" + ] + }, + "account_supervisor_circle": { + "prefix": "svg.material.account_supervisor_circle", + "description": "SVG material - account_supervisor_circle", + "body": [ + "{% svg material account_supervisor_circle %}" + ] + }, + "account_supervisor_circle_outline": { + "prefix": "svg.material.account_supervisor_circle_outline", + "description": "SVG material - account_supervisor_circle_outline", + "body": [ + "{% svg material account_supervisor_circle_outline %}" + ] + }, + "account_supervisor_outline": { + "prefix": "svg.material.account_supervisor_outline", + "description": "SVG material - account_supervisor_outline", + "body": [ + "{% svg material account_supervisor_outline %}" + ] + }, + "account_switch": { + "prefix": "svg.material.account_switch", + "description": "SVG material - account_switch", + "body": [ + "{% svg material account_switch %}" + ] + }, + "account_switch_outline": { + "prefix": "svg.material.account_switch_outline", + "description": "SVG material - account_switch_outline", + "body": [ + "{% svg material account_switch_outline %}" + ] + }, + "account_sync": { + "prefix": "svg.material.account_sync", + "description": "SVG material - account_sync", + "body": [ + "{% svg material account_sync %}" + ] + }, + "account_sync_outline": { + "prefix": "svg.material.account_sync_outline", + "description": "SVG material - account_sync_outline", + "body": [ + "{% svg material account_sync_outline %}" + ] + }, + "account_tag": { + "prefix": "svg.material.account_tag", + "description": "SVG material - account_tag", + "body": [ + "{% svg material account_tag %}" + ] + }, + "account_tag_outline": { + "prefix": "svg.material.account_tag_outline", + "description": "SVG material - account_tag_outline", + "body": [ + "{% svg material account_tag_outline %}" + ] + }, + "account_tie": { + "prefix": "svg.material.account_tie", + "description": "SVG material - account_tie", + "body": [ + "{% svg material account_tie %}" + ] + }, + "account_tie_hat": { + "prefix": "svg.material.account_tie_hat", + "description": "SVG material - account_tie_hat", + "body": [ + "{% svg material account_tie_hat %}" + ] + }, + "account_tie_hat_outline": { + "prefix": "svg.material.account_tie_hat_outline", + "description": "SVG material - account_tie_hat_outline", + "body": [ + "{% svg material account_tie_hat_outline %}" + ] + }, + "account_tie_outline": { + "prefix": "svg.material.account_tie_outline", + "description": "SVG material - account_tie_outline", + "body": [ + "{% svg material account_tie_outline %}" + ] + }, + "account_tie_voice": { + "prefix": "svg.material.account_tie_voice", + "description": "SVG material - account_tie_voice", + "body": [ + "{% svg material account_tie_voice %}" + ] + }, + "account_tie_voice_off": { + "prefix": "svg.material.account_tie_voice_off", + "description": "SVG material - account_tie_voice_off", + "body": [ + "{% svg material account_tie_voice_off %}" + ] + }, + "account_tie_voice_off_outline": { + "prefix": "svg.material.account_tie_voice_off_outline", + "description": "SVG material - account_tie_voice_off_outline", + "body": [ + "{% svg material account_tie_voice_off_outline %}" + ] + }, + "account_tie_voice_outline": { + "prefix": "svg.material.account_tie_voice_outline", + "description": "SVG material - account_tie_voice_outline", + "body": [ + "{% svg material account_tie_voice_outline %}" + ] + }, + "account_tie_woman": { + "prefix": "svg.material.account_tie_woman", + "description": "SVG material - account_tie_woman", + "body": [ + "{% svg material account_tie_woman %}" + ] + }, + "account_voice": { + "prefix": "svg.material.account_voice", + "description": "SVG material - account_voice", + "body": [ + "{% svg material account_voice %}" + ] + }, + "account_voice_off": { + "prefix": "svg.material.account_voice_off", + "description": "SVG material - account_voice_off", + "body": [ + "{% svg material account_voice_off %}" + ] + }, + "account_wrench": { + "prefix": "svg.material.account_wrench", + "description": "SVG material - account_wrench", + "body": [ + "{% svg material account_wrench %}" + ] + }, + "account_wrench_outline": { + "prefix": "svg.material.account_wrench_outline", + "description": "SVG material - account_wrench_outline", + "body": [ + "{% svg material account_wrench_outline %}" + ] + }, + "adjust": { + "prefix": "svg.material.adjust", + "description": "SVG material - adjust", + "body": [ + "{% svg material adjust %}" + ] + }, + "advertisements": { + "prefix": "svg.material.advertisements", + "description": "SVG material - advertisements", + "body": [ + "{% svg material advertisements %}" + ] + }, + "advertisements_off": { + "prefix": "svg.material.advertisements_off", + "description": "SVG material - advertisements_off", + "body": [ + "{% svg material advertisements_off %}" + ] + }, + "air_conditioner": { + "prefix": "svg.material.air_conditioner", + "description": "SVG material - air_conditioner", + "body": [ + "{% svg material air_conditioner %}" + ] + }, + "air_filter": { + "prefix": "svg.material.air_filter", + "description": "SVG material - air_filter", + "body": [ + "{% svg material air_filter %}" + ] + }, + "air_horn": { + "prefix": "svg.material.air_horn", + "description": "SVG material - air_horn", + "body": [ + "{% svg material air_horn %}" + ] + }, + "air_humidifier": { + "prefix": "svg.material.air_humidifier", + "description": "SVG material - air_humidifier", + "body": [ + "{% svg material air_humidifier %}" + ] + }, + "air_humidifier_off": { + "prefix": "svg.material.air_humidifier_off", + "description": "SVG material - air_humidifier_off", + "body": [ + "{% svg material air_humidifier_off %}" + ] + }, + "air_purifier": { + "prefix": "svg.material.air_purifier", + "description": "SVG material - air_purifier", + "body": [ + "{% svg material air_purifier %}" + ] + }, + "air_purifier_off": { + "prefix": "svg.material.air_purifier_off", + "description": "SVG material - air_purifier_off", + "body": [ + "{% svg material air_purifier_off %}" + ] + }, + "airbag": { + "prefix": "svg.material.airbag", + "description": "SVG material - airbag", + "body": [ + "{% svg material airbag %}" + ] + }, + "airballoon": { + "prefix": "svg.material.airballoon", + "description": "SVG material - airballoon", + "body": [ + "{% svg material airballoon %}" + ] + }, + "airballoon_outline": { + "prefix": "svg.material.airballoon_outline", + "description": "SVG material - airballoon_outline", + "body": [ + "{% svg material airballoon_outline %}" + ] + }, + "airplane": { + "prefix": "svg.material.airplane", + "description": "SVG material - airplane", + "body": [ + "{% svg material airplane %}" + ] + }, + "airplane_alert": { + "prefix": "svg.material.airplane_alert", + "description": "SVG material - airplane_alert", + "body": [ + "{% svg material airplane_alert %}" + ] + }, + "airplane_check": { + "prefix": "svg.material.airplane_check", + "description": "SVG material - airplane_check", + "body": [ + "{% svg material airplane_check %}" + ] + }, + "airplane_clock": { + "prefix": "svg.material.airplane_clock", + "description": "SVG material - airplane_clock", + "body": [ + "{% svg material airplane_clock %}" + ] + }, + "airplane_cog": { + "prefix": "svg.material.airplane_cog", + "description": "SVG material - airplane_cog", + "body": [ + "{% svg material airplane_cog %}" + ] + }, + "airplane_edit": { + "prefix": "svg.material.airplane_edit", + "description": "SVG material - airplane_edit", + "body": [ + "{% svg material airplane_edit %}" + ] + }, + "airplane_landing": { + "prefix": "svg.material.airplane_landing", + "description": "SVG material - airplane_landing", + "body": [ + "{% svg material airplane_landing %}" + ] + }, + "airplane_marker": { + "prefix": "svg.material.airplane_marker", + "description": "SVG material - airplane_marker", + "body": [ + "{% svg material airplane_marker %}" + ] + }, + "airplane_minus": { + "prefix": "svg.material.airplane_minus", + "description": "SVG material - airplane_minus", + "body": [ + "{% svg material airplane_minus %}" + ] + }, + "airplane_off": { + "prefix": "svg.material.airplane_off", + "description": "SVG material - airplane_off", + "body": [ + "{% svg material airplane_off %}" + ] + }, + "airplane_plus": { + "prefix": "svg.material.airplane_plus", + "description": "SVG material - airplane_plus", + "body": [ + "{% svg material airplane_plus %}" + ] + }, + "airplane_remove": { + "prefix": "svg.material.airplane_remove", + "description": "SVG material - airplane_remove", + "body": [ + "{% svg material airplane_remove %}" + ] + }, + "airplane_search": { + "prefix": "svg.material.airplane_search", + "description": "SVG material - airplane_search", + "body": [ + "{% svg material airplane_search %}" + ] + }, + "airplane_settings": { + "prefix": "svg.material.airplane_settings", + "description": "SVG material - airplane_settings", + "body": [ + "{% svg material airplane_settings %}" + ] + }, + "airplane_takeoff": { + "prefix": "svg.material.airplane_takeoff", + "description": "SVG material - airplane_takeoff", + "body": [ + "{% svg material airplane_takeoff %}" + ] + }, + "airport": { + "prefix": "svg.material.airport", + "description": "SVG material - airport", + "body": [ + "{% svg material airport %}" + ] + }, + "alarm": { + "prefix": "svg.material.alarm", + "description": "SVG material - alarm", + "body": [ + "{% svg material alarm %}" + ] + }, + "alarm_bell": { + "prefix": "svg.material.alarm_bell", + "description": "SVG material - alarm_bell", + "body": [ + "{% svg material alarm_bell %}" + ] + }, + "alarm_check": { + "prefix": "svg.material.alarm_check", + "description": "SVG material - alarm_check", + "body": [ + "{% svg material alarm_check %}" + ] + }, + "alarm_light": { + "prefix": "svg.material.alarm_light", + "description": "SVG material - alarm_light", + "body": [ + "{% svg material alarm_light %}" + ] + }, + "alarm_light_off": { + "prefix": "svg.material.alarm_light_off", + "description": "SVG material - alarm_light_off", + "body": [ + "{% svg material alarm_light_off %}" + ] + }, + "alarm_light_off_outline": { + "prefix": "svg.material.alarm_light_off_outline", + "description": "SVG material - alarm_light_off_outline", + "body": [ + "{% svg material alarm_light_off_outline %}" + ] + }, + "alarm_light_outline": { + "prefix": "svg.material.alarm_light_outline", + "description": "SVG material - alarm_light_outline", + "body": [ + "{% svg material alarm_light_outline %}" + ] + }, + "alarm_multiple": { + "prefix": "svg.material.alarm_multiple", + "description": "SVG material - alarm_multiple", + "body": [ + "{% svg material alarm_multiple %}" + ] + }, + "alarm_note": { + "prefix": "svg.material.alarm_note", + "description": "SVG material - alarm_note", + "body": [ + "{% svg material alarm_note %}" + ] + }, + "alarm_note_off": { + "prefix": "svg.material.alarm_note_off", + "description": "SVG material - alarm_note_off", + "body": [ + "{% svg material alarm_note_off %}" + ] + }, + "alarm_off": { + "prefix": "svg.material.alarm_off", + "description": "SVG material - alarm_off", + "body": [ + "{% svg material alarm_off %}" + ] + }, + "alarm_panel": { + "prefix": "svg.material.alarm_panel", + "description": "SVG material - alarm_panel", + "body": [ + "{% svg material alarm_panel %}" + ] + }, + "alarm_panel_outline": { + "prefix": "svg.material.alarm_panel_outline", + "description": "SVG material - alarm_panel_outline", + "body": [ + "{% svg material alarm_panel_outline %}" + ] + }, + "alarm_plus": { + "prefix": "svg.material.alarm_plus", + "description": "SVG material - alarm_plus", + "body": [ + "{% svg material alarm_plus %}" + ] + }, + "alarm_snooze": { + "prefix": "svg.material.alarm_snooze", + "description": "SVG material - alarm_snooze", + "body": [ + "{% svg material alarm_snooze %}" + ] + }, + "album": { + "prefix": "svg.material.album", + "description": "SVG material - album", + "body": [ + "{% svg material album %}" + ] + }, + "alert": { + "prefix": "svg.material.alert", + "description": "SVG material - alert", + "body": [ + "{% svg material alert %}" + ] + }, + "alert_box": { + "prefix": "svg.material.alert_box", + "description": "SVG material - alert_box", + "body": [ + "{% svg material alert_box %}" + ] + }, + "alert_box_outline": { + "prefix": "svg.material.alert_box_outline", + "description": "SVG material - alert_box_outline", + "body": [ + "{% svg material alert_box_outline %}" + ] + }, + "alert_circle": { + "prefix": "svg.material.alert_circle", + "description": "SVG material - alert_circle", + "body": [ + "{% svg material alert_circle %}" + ] + }, + "alert_circle_check": { + "prefix": "svg.material.alert_circle_check", + "description": "SVG material - alert_circle_check", + "body": [ + "{% svg material alert_circle_check %}" + ] + }, + "alert_circle_check_outline": { + "prefix": "svg.material.alert_circle_check_outline", + "description": "SVG material - alert_circle_check_outline", + "body": [ + "{% svg material alert_circle_check_outline %}" + ] + }, + "alert_circle_outline": { + "prefix": "svg.material.alert_circle_outline", + "description": "SVG material - alert_circle_outline", + "body": [ + "{% svg material alert_circle_outline %}" + ] + }, + "alert_decagram": { + "prefix": "svg.material.alert_decagram", + "description": "SVG material - alert_decagram", + "body": [ + "{% svg material alert_decagram %}" + ] + }, + "alert_decagram_outline": { + "prefix": "svg.material.alert_decagram_outline", + "description": "SVG material - alert_decagram_outline", + "body": [ + "{% svg material alert_decagram_outline %}" + ] + }, + "alert_minus": { + "prefix": "svg.material.alert_minus", + "description": "SVG material - alert_minus", + "body": [ + "{% svg material alert_minus %}" + ] + }, + "alert_minus_outline": { + "prefix": "svg.material.alert_minus_outline", + "description": "SVG material - alert_minus_outline", + "body": [ + "{% svg material alert_minus_outline %}" + ] + }, + "alert_octagon": { + "prefix": "svg.material.alert_octagon", + "description": "SVG material - alert_octagon", + "body": [ + "{% svg material alert_octagon %}" + ] + }, + "alert_octagon_outline": { + "prefix": "svg.material.alert_octagon_outline", + "description": "SVG material - alert_octagon_outline", + "body": [ + "{% svg material alert_octagon_outline %}" + ] + }, + "alert_octagram": { + "prefix": "svg.material.alert_octagram", + "description": "SVG material - alert_octagram", + "body": [ + "{% svg material alert_octagram %}" + ] + }, + "alert_octagram_outline": { + "prefix": "svg.material.alert_octagram_outline", + "description": "SVG material - alert_octagram_outline", + "body": [ + "{% svg material alert_octagram_outline %}" + ] + }, + "alert_outline": { + "prefix": "svg.material.alert_outline", + "description": "SVG material - alert_outline", + "body": [ + "{% svg material alert_outline %}" + ] + }, + "alert_plus": { + "prefix": "svg.material.alert_plus", + "description": "SVG material - alert_plus", + "body": [ + "{% svg material alert_plus %}" + ] + }, + "alert_plus_outline": { + "prefix": "svg.material.alert_plus_outline", + "description": "SVG material - alert_plus_outline", + "body": [ + "{% svg material alert_plus_outline %}" + ] + }, + "alert_remove": { + "prefix": "svg.material.alert_remove", + "description": "SVG material - alert_remove", + "body": [ + "{% svg material alert_remove %}" + ] + }, + "alert_remove_outline": { + "prefix": "svg.material.alert_remove_outline", + "description": "SVG material - alert_remove_outline", + "body": [ + "{% svg material alert_remove_outline %}" + ] + }, + "alert_rhombus": { + "prefix": "svg.material.alert_rhombus", + "description": "SVG material - alert_rhombus", + "body": [ + "{% svg material alert_rhombus %}" + ] + }, + "alert_rhombus_outline": { + "prefix": "svg.material.alert_rhombus_outline", + "description": "SVG material - alert_rhombus_outline", + "body": [ + "{% svg material alert_rhombus_outline %}" + ] + }, + "alien": { + "prefix": "svg.material.alien", + "description": "SVG material - alien", + "body": [ + "{% svg material alien %}" + ] + }, + "alien_outline": { + "prefix": "svg.material.alien_outline", + "description": "SVG material - alien_outline", + "body": [ + "{% svg material alien_outline %}" + ] + }, + "align_horizontal_center": { + "prefix": "svg.material.align_horizontal_center", + "description": "SVG material - align_horizontal_center", + "body": [ + "{% svg material align_horizontal_center %}" + ] + }, + "align_horizontal_distribute": { + "prefix": "svg.material.align_horizontal_distribute", + "description": "SVG material - align_horizontal_distribute", + "body": [ + "{% svg material align_horizontal_distribute %}" + ] + }, + "align_horizontal_left": { + "prefix": "svg.material.align_horizontal_left", + "description": "SVG material - align_horizontal_left", + "body": [ + "{% svg material align_horizontal_left %}" + ] + }, + "align_horizontal_right": { + "prefix": "svg.material.align_horizontal_right", + "description": "SVG material - align_horizontal_right", + "body": [ + "{% svg material align_horizontal_right %}" + ] + }, + "align_vertical_bottom": { + "prefix": "svg.material.align_vertical_bottom", + "description": "SVG material - align_vertical_bottom", + "body": [ + "{% svg material align_vertical_bottom %}" + ] + }, + "align_vertical_center": { + "prefix": "svg.material.align_vertical_center", + "description": "SVG material - align_vertical_center", + "body": [ + "{% svg material align_vertical_center %}" + ] + }, + "align_vertical_distribute": { + "prefix": "svg.material.align_vertical_distribute", + "description": "SVG material - align_vertical_distribute", + "body": [ + "{% svg material align_vertical_distribute %}" + ] + }, + "align_vertical_top": { + "prefix": "svg.material.align_vertical_top", + "description": "SVG material - align_vertical_top", + "body": [ + "{% svg material align_vertical_top %}" + ] + }, + "all_inclusive": { + "prefix": "svg.material.all_inclusive", + "description": "SVG material - all_inclusive", + "body": [ + "{% svg material all_inclusive %}" + ] + }, + "all_inclusive_box": { + "prefix": "svg.material.all_inclusive_box", + "description": "SVG material - all_inclusive_box", + "body": [ + "{% svg material all_inclusive_box %}" + ] + }, + "all_inclusive_box_outline": { + "prefix": "svg.material.all_inclusive_box_outline", + "description": "SVG material - all_inclusive_box_outline", + "body": [ + "{% svg material all_inclusive_box_outline %}" + ] + }, + "allergy": { + "prefix": "svg.material.allergy", + "description": "SVG material - allergy", + "body": [ + "{% svg material allergy %}" + ] + }, + "alpha": { + "prefix": "svg.material.alpha", + "description": "SVG material - alpha", + "body": [ + "{% svg material alpha %}" + ] + }, + "alpha_a": { + "prefix": "svg.material.alpha_a", + "description": "SVG material - alpha_a", + "body": [ + "{% svg material alpha_a %}" + ] + }, + "alpha_a_box": { + "prefix": "svg.material.alpha_a_box", + "description": "SVG material - alpha_a_box", + "body": [ + "{% svg material alpha_a_box %}" + ] + }, + "alpha_a_box_outline": { + "prefix": "svg.material.alpha_a_box_outline", + "description": "SVG material - alpha_a_box_outline", + "body": [ + "{% svg material alpha_a_box_outline %}" + ] + }, + "alpha_a_circle": { + "prefix": "svg.material.alpha_a_circle", + "description": "SVG material - alpha_a_circle", + "body": [ + "{% svg material alpha_a_circle %}" + ] + }, + "alpha_a_circle_outline": { + "prefix": "svg.material.alpha_a_circle_outline", + "description": "SVG material - alpha_a_circle_outline", + "body": [ + "{% svg material alpha_a_circle_outline %}" + ] + }, + "alpha_b": { + "prefix": "svg.material.alpha_b", + "description": "SVG material - alpha_b", + "body": [ + "{% svg material alpha_b %}" + ] + }, + "alpha_b_box": { + "prefix": "svg.material.alpha_b_box", + "description": "SVG material - alpha_b_box", + "body": [ + "{% svg material alpha_b_box %}" + ] + }, + "alpha_b_box_outline": { + "prefix": "svg.material.alpha_b_box_outline", + "description": "SVG material - alpha_b_box_outline", + "body": [ + "{% svg material alpha_b_box_outline %}" + ] + }, + "alpha_b_circle": { + "prefix": "svg.material.alpha_b_circle", + "description": "SVG material - alpha_b_circle", + "body": [ + "{% svg material alpha_b_circle %}" + ] + }, + "alpha_b_circle_outline": { + "prefix": "svg.material.alpha_b_circle_outline", + "description": "SVG material - alpha_b_circle_outline", + "body": [ + "{% svg material alpha_b_circle_outline %}" + ] + }, + "alpha_c": { + "prefix": "svg.material.alpha_c", + "description": "SVG material - alpha_c", + "body": [ + "{% svg material alpha_c %}" + ] + }, + "alpha_c_box": { + "prefix": "svg.material.alpha_c_box", + "description": "SVG material - alpha_c_box", + "body": [ + "{% svg material alpha_c_box %}" + ] + }, + "alpha_c_box_outline": { + "prefix": "svg.material.alpha_c_box_outline", + "description": "SVG material - alpha_c_box_outline", + "body": [ + "{% svg material alpha_c_box_outline %}" + ] + }, + "alpha_c_circle": { + "prefix": "svg.material.alpha_c_circle", + "description": "SVG material - alpha_c_circle", + "body": [ + "{% svg material alpha_c_circle %}" + ] + }, + "alpha_c_circle_outline": { + "prefix": "svg.material.alpha_c_circle_outline", + "description": "SVG material - alpha_c_circle_outline", + "body": [ + "{% svg material alpha_c_circle_outline %}" + ] + }, + "alpha_d": { + "prefix": "svg.material.alpha_d", + "description": "SVG material - alpha_d", + "body": [ + "{% svg material alpha_d %}" + ] + }, + "alpha_d_box": { + "prefix": "svg.material.alpha_d_box", + "description": "SVG material - alpha_d_box", + "body": [ + "{% svg material alpha_d_box %}" + ] + }, + "alpha_d_box_outline": { + "prefix": "svg.material.alpha_d_box_outline", + "description": "SVG material - alpha_d_box_outline", + "body": [ + "{% svg material alpha_d_box_outline %}" + ] + }, + "alpha_d_circle": { + "prefix": "svg.material.alpha_d_circle", + "description": "SVG material - alpha_d_circle", + "body": [ + "{% svg material alpha_d_circle %}" + ] + }, + "alpha_d_circle_outline": { + "prefix": "svg.material.alpha_d_circle_outline", + "description": "SVG material - alpha_d_circle_outline", + "body": [ + "{% svg material alpha_d_circle_outline %}" + ] + }, + "alpha_e": { + "prefix": "svg.material.alpha_e", + "description": "SVG material - alpha_e", + "body": [ + "{% svg material alpha_e %}" + ] + }, + "alpha_e_box": { + "prefix": "svg.material.alpha_e_box", + "description": "SVG material - alpha_e_box", + "body": [ + "{% svg material alpha_e_box %}" + ] + }, + "alpha_e_box_outline": { + "prefix": "svg.material.alpha_e_box_outline", + "description": "SVG material - alpha_e_box_outline", + "body": [ + "{% svg material alpha_e_box_outline %}" + ] + }, + "alpha_e_circle": { + "prefix": "svg.material.alpha_e_circle", + "description": "SVG material - alpha_e_circle", + "body": [ + "{% svg material alpha_e_circle %}" + ] + }, + "alpha_e_circle_outline": { + "prefix": "svg.material.alpha_e_circle_outline", + "description": "SVG material - alpha_e_circle_outline", + "body": [ + "{% svg material alpha_e_circle_outline %}" + ] + }, + "alpha_f": { + "prefix": "svg.material.alpha_f", + "description": "SVG material - alpha_f", + "body": [ + "{% svg material alpha_f %}" + ] + }, + "alpha_f_box": { + "prefix": "svg.material.alpha_f_box", + "description": "SVG material - alpha_f_box", + "body": [ + "{% svg material alpha_f_box %}" + ] + }, + "alpha_f_box_outline": { + "prefix": "svg.material.alpha_f_box_outline", + "description": "SVG material - alpha_f_box_outline", + "body": [ + "{% svg material alpha_f_box_outline %}" + ] + }, + "alpha_f_circle": { + "prefix": "svg.material.alpha_f_circle", + "description": "SVG material - alpha_f_circle", + "body": [ + "{% svg material alpha_f_circle %}" + ] + }, + "alpha_f_circle_outline": { + "prefix": "svg.material.alpha_f_circle_outline", + "description": "SVG material - alpha_f_circle_outline", + "body": [ + "{% svg material alpha_f_circle_outline %}" + ] + }, + "alpha_g": { + "prefix": "svg.material.alpha_g", + "description": "SVG material - alpha_g", + "body": [ + "{% svg material alpha_g %}" + ] + }, + "alpha_g_box": { + "prefix": "svg.material.alpha_g_box", + "description": "SVG material - alpha_g_box", + "body": [ + "{% svg material alpha_g_box %}" + ] + }, + "alpha_g_box_outline": { + "prefix": "svg.material.alpha_g_box_outline", + "description": "SVG material - alpha_g_box_outline", + "body": [ + "{% svg material alpha_g_box_outline %}" + ] + }, + "alpha_g_circle": { + "prefix": "svg.material.alpha_g_circle", + "description": "SVG material - alpha_g_circle", + "body": [ + "{% svg material alpha_g_circle %}" + ] + }, + "alpha_g_circle_outline": { + "prefix": "svg.material.alpha_g_circle_outline", + "description": "SVG material - alpha_g_circle_outline", + "body": [ + "{% svg material alpha_g_circle_outline %}" + ] + }, + "alpha_h": { + "prefix": "svg.material.alpha_h", + "description": "SVG material - alpha_h", + "body": [ + "{% svg material alpha_h %}" + ] + }, + "alpha_h_box": { + "prefix": "svg.material.alpha_h_box", + "description": "SVG material - alpha_h_box", + "body": [ + "{% svg material alpha_h_box %}" + ] + }, + "alpha_h_box_outline": { + "prefix": "svg.material.alpha_h_box_outline", + "description": "SVG material - alpha_h_box_outline", + "body": [ + "{% svg material alpha_h_box_outline %}" + ] + }, + "alpha_h_circle": { + "prefix": "svg.material.alpha_h_circle", + "description": "SVG material - alpha_h_circle", + "body": [ + "{% svg material alpha_h_circle %}" + ] + }, + "alpha_h_circle_outline": { + "prefix": "svg.material.alpha_h_circle_outline", + "description": "SVG material - alpha_h_circle_outline", + "body": [ + "{% svg material alpha_h_circle_outline %}" + ] + }, + "alpha_i": { + "prefix": "svg.material.alpha_i", + "description": "SVG material - alpha_i", + "body": [ + "{% svg material alpha_i %}" + ] + }, + "alpha_i_box": { + "prefix": "svg.material.alpha_i_box", + "description": "SVG material - alpha_i_box", + "body": [ + "{% svg material alpha_i_box %}" + ] + }, + "alpha_i_box_outline": { + "prefix": "svg.material.alpha_i_box_outline", + "description": "SVG material - alpha_i_box_outline", + "body": [ + "{% svg material alpha_i_box_outline %}" + ] + }, + "alpha_i_circle": { + "prefix": "svg.material.alpha_i_circle", + "description": "SVG material - alpha_i_circle", + "body": [ + "{% svg material alpha_i_circle %}" + ] + }, + "alpha_i_circle_outline": { + "prefix": "svg.material.alpha_i_circle_outline", + "description": "SVG material - alpha_i_circle_outline", + "body": [ + "{% svg material alpha_i_circle_outline %}" + ] + }, + "alpha_j": { + "prefix": "svg.material.alpha_j", + "description": "SVG material - alpha_j", + "body": [ + "{% svg material alpha_j %}" + ] + }, + "alpha_j_box": { + "prefix": "svg.material.alpha_j_box", + "description": "SVG material - alpha_j_box", + "body": [ + "{% svg material alpha_j_box %}" + ] + }, + "alpha_j_box_outline": { + "prefix": "svg.material.alpha_j_box_outline", + "description": "SVG material - alpha_j_box_outline", + "body": [ + "{% svg material alpha_j_box_outline %}" + ] + }, + "alpha_j_circle": { + "prefix": "svg.material.alpha_j_circle", + "description": "SVG material - alpha_j_circle", + "body": [ + "{% svg material alpha_j_circle %}" + ] + }, + "alpha_j_circle_outline": { + "prefix": "svg.material.alpha_j_circle_outline", + "description": "SVG material - alpha_j_circle_outline", + "body": [ + "{% svg material alpha_j_circle_outline %}" + ] + }, + "alpha_k": { + "prefix": "svg.material.alpha_k", + "description": "SVG material - alpha_k", + "body": [ + "{% svg material alpha_k %}" + ] + }, + "alpha_k_box": { + "prefix": "svg.material.alpha_k_box", + "description": "SVG material - alpha_k_box", + "body": [ + "{% svg material alpha_k_box %}" + ] + }, + "alpha_k_box_outline": { + "prefix": "svg.material.alpha_k_box_outline", + "description": "SVG material - alpha_k_box_outline", + "body": [ + "{% svg material alpha_k_box_outline %}" + ] + }, + "alpha_k_circle": { + "prefix": "svg.material.alpha_k_circle", + "description": "SVG material - alpha_k_circle", + "body": [ + "{% svg material alpha_k_circle %}" + ] + }, + "alpha_k_circle_outline": { + "prefix": "svg.material.alpha_k_circle_outline", + "description": "SVG material - alpha_k_circle_outline", + "body": [ + "{% svg material alpha_k_circle_outline %}" + ] + }, + "alpha_l": { + "prefix": "svg.material.alpha_l", + "description": "SVG material - alpha_l", + "body": [ + "{% svg material alpha_l %}" + ] + }, + "alpha_l_box": { + "prefix": "svg.material.alpha_l_box", + "description": "SVG material - alpha_l_box", + "body": [ + "{% svg material alpha_l_box %}" + ] + }, + "alpha_l_box_outline": { + "prefix": "svg.material.alpha_l_box_outline", + "description": "SVG material - alpha_l_box_outline", + "body": [ + "{% svg material alpha_l_box_outline %}" + ] + }, + "alpha_l_circle": { + "prefix": "svg.material.alpha_l_circle", + "description": "SVG material - alpha_l_circle", + "body": [ + "{% svg material alpha_l_circle %}" + ] + }, + "alpha_l_circle_outline": { + "prefix": "svg.material.alpha_l_circle_outline", + "description": "SVG material - alpha_l_circle_outline", + "body": [ + "{% svg material alpha_l_circle_outline %}" + ] + }, + "alpha_m": { + "prefix": "svg.material.alpha_m", + "description": "SVG material - alpha_m", + "body": [ + "{% svg material alpha_m %}" + ] + }, + "alpha_m_box": { + "prefix": "svg.material.alpha_m_box", + "description": "SVG material - alpha_m_box", + "body": [ + "{% svg material alpha_m_box %}" + ] + }, + "alpha_m_box_outline": { + "prefix": "svg.material.alpha_m_box_outline", + "description": "SVG material - alpha_m_box_outline", + "body": [ + "{% svg material alpha_m_box_outline %}" + ] + }, + "alpha_m_circle": { + "prefix": "svg.material.alpha_m_circle", + "description": "SVG material - alpha_m_circle", + "body": [ + "{% svg material alpha_m_circle %}" + ] + }, + "alpha_m_circle_outline": { + "prefix": "svg.material.alpha_m_circle_outline", + "description": "SVG material - alpha_m_circle_outline", + "body": [ + "{% svg material alpha_m_circle_outline %}" + ] + }, + "alpha_n": { + "prefix": "svg.material.alpha_n", + "description": "SVG material - alpha_n", + "body": [ + "{% svg material alpha_n %}" + ] + }, + "alpha_n_box": { + "prefix": "svg.material.alpha_n_box", + "description": "SVG material - alpha_n_box", + "body": [ + "{% svg material alpha_n_box %}" + ] + }, + "alpha_n_box_outline": { + "prefix": "svg.material.alpha_n_box_outline", + "description": "SVG material - alpha_n_box_outline", + "body": [ + "{% svg material alpha_n_box_outline %}" + ] + }, + "alpha_n_circle": { + "prefix": "svg.material.alpha_n_circle", + "description": "SVG material - alpha_n_circle", + "body": [ + "{% svg material alpha_n_circle %}" + ] + }, + "alpha_n_circle_outline": { + "prefix": "svg.material.alpha_n_circle_outline", + "description": "SVG material - alpha_n_circle_outline", + "body": [ + "{% svg material alpha_n_circle_outline %}" + ] + }, + "alpha_o": { + "prefix": "svg.material.alpha_o", + "description": "SVG material - alpha_o", + "body": [ + "{% svg material alpha_o %}" + ] + }, + "alpha_o_box": { + "prefix": "svg.material.alpha_o_box", + "description": "SVG material - alpha_o_box", + "body": [ + "{% svg material alpha_o_box %}" + ] + }, + "alpha_o_box_outline": { + "prefix": "svg.material.alpha_o_box_outline", + "description": "SVG material - alpha_o_box_outline", + "body": [ + "{% svg material alpha_o_box_outline %}" + ] + }, + "alpha_o_circle": { + "prefix": "svg.material.alpha_o_circle", + "description": "SVG material - alpha_o_circle", + "body": [ + "{% svg material alpha_o_circle %}" + ] + }, + "alpha_o_circle_outline": { + "prefix": "svg.material.alpha_o_circle_outline", + "description": "SVG material - alpha_o_circle_outline", + "body": [ + "{% svg material alpha_o_circle_outline %}" + ] + }, + "alpha_p": { + "prefix": "svg.material.alpha_p", + "description": "SVG material - alpha_p", + "body": [ + "{% svg material alpha_p %}" + ] + }, + "alpha_p_box": { + "prefix": "svg.material.alpha_p_box", + "description": "SVG material - alpha_p_box", + "body": [ + "{% svg material alpha_p_box %}" + ] + }, + "alpha_p_box_outline": { + "prefix": "svg.material.alpha_p_box_outline", + "description": "SVG material - alpha_p_box_outline", + "body": [ + "{% svg material alpha_p_box_outline %}" + ] + }, + "alpha_p_circle": { + "prefix": "svg.material.alpha_p_circle", + "description": "SVG material - alpha_p_circle", + "body": [ + "{% svg material alpha_p_circle %}" + ] + }, + "alpha_p_circle_outline": { + "prefix": "svg.material.alpha_p_circle_outline", + "description": "SVG material - alpha_p_circle_outline", + "body": [ + "{% svg material alpha_p_circle_outline %}" + ] + }, + "alpha_q": { + "prefix": "svg.material.alpha_q", + "description": "SVG material - alpha_q", + "body": [ + "{% svg material alpha_q %}" + ] + }, + "alpha_q_box": { + "prefix": "svg.material.alpha_q_box", + "description": "SVG material - alpha_q_box", + "body": [ + "{% svg material alpha_q_box %}" + ] + }, + "alpha_q_box_outline": { + "prefix": "svg.material.alpha_q_box_outline", + "description": "SVG material - alpha_q_box_outline", + "body": [ + "{% svg material alpha_q_box_outline %}" + ] + }, + "alpha_q_circle": { + "prefix": "svg.material.alpha_q_circle", + "description": "SVG material - alpha_q_circle", + "body": [ + "{% svg material alpha_q_circle %}" + ] + }, + "alpha_q_circle_outline": { + "prefix": "svg.material.alpha_q_circle_outline", + "description": "SVG material - alpha_q_circle_outline", + "body": [ + "{% svg material alpha_q_circle_outline %}" + ] + }, + "alpha_r": { + "prefix": "svg.material.alpha_r", + "description": "SVG material - alpha_r", + "body": [ + "{% svg material alpha_r %}" + ] + }, + "alpha_r_box": { + "prefix": "svg.material.alpha_r_box", + "description": "SVG material - alpha_r_box", + "body": [ + "{% svg material alpha_r_box %}" + ] + }, + "alpha_r_box_outline": { + "prefix": "svg.material.alpha_r_box_outline", + "description": "SVG material - alpha_r_box_outline", + "body": [ + "{% svg material alpha_r_box_outline %}" + ] + }, + "alpha_r_circle": { + "prefix": "svg.material.alpha_r_circle", + "description": "SVG material - alpha_r_circle", + "body": [ + "{% svg material alpha_r_circle %}" + ] + }, + "alpha_r_circle_outline": { + "prefix": "svg.material.alpha_r_circle_outline", + "description": "SVG material - alpha_r_circle_outline", + "body": [ + "{% svg material alpha_r_circle_outline %}" + ] + }, + "alpha_s": { + "prefix": "svg.material.alpha_s", + "description": "SVG material - alpha_s", + "body": [ + "{% svg material alpha_s %}" + ] + }, + "alpha_s_box": { + "prefix": "svg.material.alpha_s_box", + "description": "SVG material - alpha_s_box", + "body": [ + "{% svg material alpha_s_box %}" + ] + }, + "alpha_s_box_outline": { + "prefix": "svg.material.alpha_s_box_outline", + "description": "SVG material - alpha_s_box_outline", + "body": [ + "{% svg material alpha_s_box_outline %}" + ] + }, + "alpha_s_circle": { + "prefix": "svg.material.alpha_s_circle", + "description": "SVG material - alpha_s_circle", + "body": [ + "{% svg material alpha_s_circle %}" + ] + }, + "alpha_s_circle_outline": { + "prefix": "svg.material.alpha_s_circle_outline", + "description": "SVG material - alpha_s_circle_outline", + "body": [ + "{% svg material alpha_s_circle_outline %}" + ] + }, + "alpha_t": { + "prefix": "svg.material.alpha_t", + "description": "SVG material - alpha_t", + "body": [ + "{% svg material alpha_t %}" + ] + }, + "alpha_t_box": { + "prefix": "svg.material.alpha_t_box", + "description": "SVG material - alpha_t_box", + "body": [ + "{% svg material alpha_t_box %}" + ] + }, + "alpha_t_box_outline": { + "prefix": "svg.material.alpha_t_box_outline", + "description": "SVG material - alpha_t_box_outline", + "body": [ + "{% svg material alpha_t_box_outline %}" + ] + }, + "alpha_t_circle": { + "prefix": "svg.material.alpha_t_circle", + "description": "SVG material - alpha_t_circle", + "body": [ + "{% svg material alpha_t_circle %}" + ] + }, + "alpha_t_circle_outline": { + "prefix": "svg.material.alpha_t_circle_outline", + "description": "SVG material - alpha_t_circle_outline", + "body": [ + "{% svg material alpha_t_circle_outline %}" + ] + }, + "alpha_u": { + "prefix": "svg.material.alpha_u", + "description": "SVG material - alpha_u", + "body": [ + "{% svg material alpha_u %}" + ] + }, + "alpha_u_box": { + "prefix": "svg.material.alpha_u_box", + "description": "SVG material - alpha_u_box", + "body": [ + "{% svg material alpha_u_box %}" + ] + }, + "alpha_u_box_outline": { + "prefix": "svg.material.alpha_u_box_outline", + "description": "SVG material - alpha_u_box_outline", + "body": [ + "{% svg material alpha_u_box_outline %}" + ] + }, + "alpha_u_circle": { + "prefix": "svg.material.alpha_u_circle", + "description": "SVG material - alpha_u_circle", + "body": [ + "{% svg material alpha_u_circle %}" + ] + }, + "alpha_u_circle_outline": { + "prefix": "svg.material.alpha_u_circle_outline", + "description": "SVG material - alpha_u_circle_outline", + "body": [ + "{% svg material alpha_u_circle_outline %}" + ] + }, + "alpha_v": { + "prefix": "svg.material.alpha_v", + "description": "SVG material - alpha_v", + "body": [ + "{% svg material alpha_v %}" + ] + }, + "alpha_v_box": { + "prefix": "svg.material.alpha_v_box", + "description": "SVG material - alpha_v_box", + "body": [ + "{% svg material alpha_v_box %}" + ] + }, + "alpha_v_box_outline": { + "prefix": "svg.material.alpha_v_box_outline", + "description": "SVG material - alpha_v_box_outline", + "body": [ + "{% svg material alpha_v_box_outline %}" + ] + }, + "alpha_v_circle": { + "prefix": "svg.material.alpha_v_circle", + "description": "SVG material - alpha_v_circle", + "body": [ + "{% svg material alpha_v_circle %}" + ] + }, + "alpha_v_circle_outline": { + "prefix": "svg.material.alpha_v_circle_outline", + "description": "SVG material - alpha_v_circle_outline", + "body": [ + "{% svg material alpha_v_circle_outline %}" + ] + }, + "alpha_w": { + "prefix": "svg.material.alpha_w", + "description": "SVG material - alpha_w", + "body": [ + "{% svg material alpha_w %}" + ] + }, + "alpha_w_box": { + "prefix": "svg.material.alpha_w_box", + "description": "SVG material - alpha_w_box", + "body": [ + "{% svg material alpha_w_box %}" + ] + }, + "alpha_w_box_outline": { + "prefix": "svg.material.alpha_w_box_outline", + "description": "SVG material - alpha_w_box_outline", + "body": [ + "{% svg material alpha_w_box_outline %}" + ] + }, + "alpha_w_circle": { + "prefix": "svg.material.alpha_w_circle", + "description": "SVG material - alpha_w_circle", + "body": [ + "{% svg material alpha_w_circle %}" + ] + }, + "alpha_w_circle_outline": { + "prefix": "svg.material.alpha_w_circle_outline", + "description": "SVG material - alpha_w_circle_outline", + "body": [ + "{% svg material alpha_w_circle_outline %}" + ] + }, + "alpha_x": { + "prefix": "svg.material.alpha_x", + "description": "SVG material - alpha_x", + "body": [ + "{% svg material alpha_x %}" + ] + }, + "alpha_x_box": { + "prefix": "svg.material.alpha_x_box", + "description": "SVG material - alpha_x_box", + "body": [ + "{% svg material alpha_x_box %}" + ] + }, + "alpha_x_box_outline": { + "prefix": "svg.material.alpha_x_box_outline", + "description": "SVG material - alpha_x_box_outline", + "body": [ + "{% svg material alpha_x_box_outline %}" + ] + }, + "alpha_x_circle": { + "prefix": "svg.material.alpha_x_circle", + "description": "SVG material - alpha_x_circle", + "body": [ + "{% svg material alpha_x_circle %}" + ] + }, + "alpha_x_circle_outline": { + "prefix": "svg.material.alpha_x_circle_outline", + "description": "SVG material - alpha_x_circle_outline", + "body": [ + "{% svg material alpha_x_circle_outline %}" + ] + }, + "alpha_y": { + "prefix": "svg.material.alpha_y", + "description": "SVG material - alpha_y", + "body": [ + "{% svg material alpha_y %}" + ] + }, + "alpha_y_box": { + "prefix": "svg.material.alpha_y_box", + "description": "SVG material - alpha_y_box", + "body": [ + "{% svg material alpha_y_box %}" + ] + }, + "alpha_y_box_outline": { + "prefix": "svg.material.alpha_y_box_outline", + "description": "SVG material - alpha_y_box_outline", + "body": [ + "{% svg material alpha_y_box_outline %}" + ] + }, + "alpha_y_circle": { + "prefix": "svg.material.alpha_y_circle", + "description": "SVG material - alpha_y_circle", + "body": [ + "{% svg material alpha_y_circle %}" + ] + }, + "alpha_y_circle_outline": { + "prefix": "svg.material.alpha_y_circle_outline", + "description": "SVG material - alpha_y_circle_outline", + "body": [ + "{% svg material alpha_y_circle_outline %}" + ] + }, + "alpha_z": { + "prefix": "svg.material.alpha_z", + "description": "SVG material - alpha_z", + "body": [ + "{% svg material alpha_z %}" + ] + }, + "alpha_z_box": { + "prefix": "svg.material.alpha_z_box", + "description": "SVG material - alpha_z_box", + "body": [ + "{% svg material alpha_z_box %}" + ] + }, + "alpha_z_box_outline": { + "prefix": "svg.material.alpha_z_box_outline", + "description": "SVG material - alpha_z_box_outline", + "body": [ + "{% svg material alpha_z_box_outline %}" + ] + }, + "alpha_z_circle": { + "prefix": "svg.material.alpha_z_circle", + "description": "SVG material - alpha_z_circle", + "body": [ + "{% svg material alpha_z_circle %}" + ] + }, + "alpha_z_circle_outline": { + "prefix": "svg.material.alpha_z_circle_outline", + "description": "SVG material - alpha_z_circle_outline", + "body": [ + "{% svg material alpha_z_circle_outline %}" + ] + }, + "alphabet_aurebesh": { + "prefix": "svg.material.alphabet_aurebesh", + "description": "SVG material - alphabet_aurebesh", + "body": [ + "{% svg material alphabet_aurebesh %}" + ] + }, + "alphabet_cyrillic": { + "prefix": "svg.material.alphabet_cyrillic", + "description": "SVG material - alphabet_cyrillic", + "body": [ + "{% svg material alphabet_cyrillic %}" + ] + }, + "alphabet_greek": { + "prefix": "svg.material.alphabet_greek", + "description": "SVG material - alphabet_greek", + "body": [ + "{% svg material alphabet_greek %}" + ] + }, + "alphabet_latin": { + "prefix": "svg.material.alphabet_latin", + "description": "SVG material - alphabet_latin", + "body": [ + "{% svg material alphabet_latin %}" + ] + }, + "alphabet_piqad": { + "prefix": "svg.material.alphabet_piqad", + "description": "SVG material - alphabet_piqad", + "body": [ + "{% svg material alphabet_piqad %}" + ] + }, + "alphabet_tengwar": { + "prefix": "svg.material.alphabet_tengwar", + "description": "SVG material - alphabet_tengwar", + "body": [ + "{% svg material alphabet_tengwar %}" + ] + }, + "alphabetical": { + "prefix": "svg.material.alphabetical", + "description": "SVG material - alphabetical", + "body": [ + "{% svg material alphabetical %}" + ] + }, + "alphabetical_off": { + "prefix": "svg.material.alphabetical_off", + "description": "SVG material - alphabetical_off", + "body": [ + "{% svg material alphabetical_off %}" + ] + }, + "alphabetical_variant": { + "prefix": "svg.material.alphabetical_variant", + "description": "SVG material - alphabetical_variant", + "body": [ + "{% svg material alphabetical_variant %}" + ] + }, + "alphabetical_variant_off": { + "prefix": "svg.material.alphabetical_variant_off", + "description": "SVG material - alphabetical_variant_off", + "body": [ + "{% svg material alphabetical_variant_off %}" + ] + }, + "altimeter": { + "prefix": "svg.material.altimeter", + "description": "SVG material - altimeter", + "body": [ + "{% svg material altimeter %}" + ] + }, + "ambulance": { + "prefix": "svg.material.ambulance", + "description": "SVG material - ambulance", + "body": [ + "{% svg material ambulance %}" + ] + }, + "ammunition": { + "prefix": "svg.material.ammunition", + "description": "SVG material - ammunition", + "body": [ + "{% svg material ammunition %}" + ] + }, + "ampersand": { + "prefix": "svg.material.ampersand", + "description": "SVG material - ampersand", + "body": [ + "{% svg material ampersand %}" + ] + }, + "amplifier": { + "prefix": "svg.material.amplifier", + "description": "SVG material - amplifier", + "body": [ + "{% svg material amplifier %}" + ] + }, + "amplifier_off": { + "prefix": "svg.material.amplifier_off", + "description": "SVG material - amplifier_off", + "body": [ + "{% svg material amplifier_off %}" + ] + }, + "anchor": { + "prefix": "svg.material.anchor", + "description": "SVG material - anchor", + "body": [ + "{% svg material anchor %}" + ] + }, + "android": { + "prefix": "svg.material.android", + "description": "SVG material - android", + "body": [ + "{% svg material android %}" + ] + }, + "android_studio": { + "prefix": "svg.material.android_studio", + "description": "SVG material - android_studio", + "body": [ + "{% svg material android_studio %}" + ] + }, + "angle_acute": { + "prefix": "svg.material.angle_acute", + "description": "SVG material - angle_acute", + "body": [ + "{% svg material angle_acute %}" + ] + }, + "angle_obtuse": { + "prefix": "svg.material.angle_obtuse", + "description": "SVG material - angle_obtuse", + "body": [ + "{% svg material angle_obtuse %}" + ] + }, + "angle_right": { + "prefix": "svg.material.angle_right", + "description": "SVG material - angle_right", + "body": [ + "{% svg material angle_right %}" + ] + }, + "angular": { + "prefix": "svg.material.angular", + "description": "SVG material - angular", + "body": [ + "{% svg material angular %}" + ] + }, + "angularjs": { + "prefix": "svg.material.angularjs", + "description": "SVG material - angularjs", + "body": [ + "{% svg material angularjs %}" + ] + }, + "animation": { + "prefix": "svg.material.animation", + "description": "SVG material - animation", + "body": [ + "{% svg material animation %}" + ] + }, + "animation_outline": { + "prefix": "svg.material.animation_outline", + "description": "SVG material - animation_outline", + "body": [ + "{% svg material animation_outline %}" + ] + }, + "animation_play": { + "prefix": "svg.material.animation_play", + "description": "SVG material - animation_play", + "body": [ + "{% svg material animation_play %}" + ] + }, + "animation_play_outline": { + "prefix": "svg.material.animation_play_outline", + "description": "SVG material - animation_play_outline", + "body": [ + "{% svg material animation_play_outline %}" + ] + }, + "ansible": { + "prefix": "svg.material.ansible", + "description": "SVG material - ansible", + "body": [ + "{% svg material ansible %}" + ] + }, + "antenna": { + "prefix": "svg.material.antenna", + "description": "SVG material - antenna", + "body": [ + "{% svg material antenna %}" + ] + }, + "anvil": { + "prefix": "svg.material.anvil", + "description": "SVG material - anvil", + "body": [ + "{% svg material anvil %}" + ] + }, + "apache_kafka": { + "prefix": "svg.material.apache_kafka", + "description": "SVG material - apache_kafka", + "body": [ + "{% svg material apache_kafka %}" + ] + }, + "api": { + "prefix": "svg.material.api", + "description": "SVG material - api", + "body": [ + "{% svg material api %}" + ] + }, + "api_off": { + "prefix": "svg.material.api_off", + "description": "SVG material - api_off", + "body": [ + "{% svg material api_off %}" + ] + }, + "apple": { + "prefix": "svg.material.apple", + "description": "SVG material - apple", + "body": [ + "{% svg material apple %}" + ] + }, + "apple_finder": { + "prefix": "svg.material.apple_finder", + "description": "SVG material - apple_finder", + "body": [ + "{% svg material apple_finder %}" + ] + }, + "apple_icloud": { + "prefix": "svg.material.apple_icloud", + "description": "SVG material - apple_icloud", + "body": [ + "{% svg material apple_icloud %}" + ] + }, + "apple_ios": { + "prefix": "svg.material.apple_ios", + "description": "SVG material - apple_ios", + "body": [ + "{% svg material apple_ios %}" + ] + }, + "apple_keyboard_caps": { + "prefix": "svg.material.apple_keyboard_caps", + "description": "SVG material - apple_keyboard_caps", + "body": [ + "{% svg material apple_keyboard_caps %}" + ] + }, + "apple_keyboard_command": { + "prefix": "svg.material.apple_keyboard_command", + "description": "SVG material - apple_keyboard_command", + "body": [ + "{% svg material apple_keyboard_command %}" + ] + }, + "apple_keyboard_control": { + "prefix": "svg.material.apple_keyboard_control", + "description": "SVG material - apple_keyboard_control", + "body": [ + "{% svg material apple_keyboard_control %}" + ] + }, + "apple_keyboard_option": { + "prefix": "svg.material.apple_keyboard_option", + "description": "SVG material - apple_keyboard_option", + "body": [ + "{% svg material apple_keyboard_option %}" + ] + }, + "apple_keyboard_shift": { + "prefix": "svg.material.apple_keyboard_shift", + "description": "SVG material - apple_keyboard_shift", + "body": [ + "{% svg material apple_keyboard_shift %}" + ] + }, + "apple_safari": { + "prefix": "svg.material.apple_safari", + "description": "SVG material - apple_safari", + "body": [ + "{% svg material apple_safari %}" + ] + }, + "application": { + "prefix": "svg.material.application", + "description": "SVG material - application", + "body": [ + "{% svg material application %}" + ] + }, + "application_array": { + "prefix": "svg.material.application_array", + "description": "SVG material - application_array", + "body": [ + "{% svg material application_array %}" + ] + }, + "application_array_outline": { + "prefix": "svg.material.application_array_outline", + "description": "SVG material - application_array_outline", + "body": [ + "{% svg material application_array_outline %}" + ] + }, + "application_braces": { + "prefix": "svg.material.application_braces", + "description": "SVG material - application_braces", + "body": [ + "{% svg material application_braces %}" + ] + }, + "application_braces_outline": { + "prefix": "svg.material.application_braces_outline", + "description": "SVG material - application_braces_outline", + "body": [ + "{% svg material application_braces_outline %}" + ] + }, + "application_brackets": { + "prefix": "svg.material.application_brackets", + "description": "SVG material - application_brackets", + "body": [ + "{% svg material application_brackets %}" + ] + }, + "application_brackets_outline": { + "prefix": "svg.material.application_brackets_outline", + "description": "SVG material - application_brackets_outline", + "body": [ + "{% svg material application_brackets_outline %}" + ] + }, + "application_cog": { + "prefix": "svg.material.application_cog", + "description": "SVG material - application_cog", + "body": [ + "{% svg material application_cog %}" + ] + }, + "application_cog_outline": { + "prefix": "svg.material.application_cog_outline", + "description": "SVG material - application_cog_outline", + "body": [ + "{% svg material application_cog_outline %}" + ] + }, + "application_edit": { + "prefix": "svg.material.application_edit", + "description": "SVG material - application_edit", + "body": [ + "{% svg material application_edit %}" + ] + }, + "application_edit_outline": { + "prefix": "svg.material.application_edit_outline", + "description": "SVG material - application_edit_outline", + "body": [ + "{% svg material application_edit_outline %}" + ] + }, + "application_export": { + "prefix": "svg.material.application_export", + "description": "SVG material - application_export", + "body": [ + "{% svg material application_export %}" + ] + }, + "application_import": { + "prefix": "svg.material.application_import", + "description": "SVG material - application_import", + "body": [ + "{% svg material application_import %}" + ] + }, + "application_outline": { + "prefix": "svg.material.application_outline", + "description": "SVG material - application_outline", + "body": [ + "{% svg material application_outline %}" + ] + }, + "application_parentheses": { + "prefix": "svg.material.application_parentheses", + "description": "SVG material - application_parentheses", + "body": [ + "{% svg material application_parentheses %}" + ] + }, + "application_parentheses_outline": { + "prefix": "svg.material.application_parentheses_outline", + "description": "SVG material - application_parentheses_outline", + "body": [ + "{% svg material application_parentheses_outline %}" + ] + }, + "application_settings": { + "prefix": "svg.material.application_settings", + "description": "SVG material - application_settings", + "body": [ + "{% svg material application_settings %}" + ] + }, + "application_settings_outline": { + "prefix": "svg.material.application_settings_outline", + "description": "SVG material - application_settings_outline", + "body": [ + "{% svg material application_settings_outline %}" + ] + }, + "application_variable": { + "prefix": "svg.material.application_variable", + "description": "SVG material - application_variable", + "body": [ + "{% svg material application_variable %}" + ] + }, + "application_variable_outline": { + "prefix": "svg.material.application_variable_outline", + "description": "SVG material - application_variable_outline", + "body": [ + "{% svg material application_variable_outline %}" + ] + }, + "approximately_equal": { + "prefix": "svg.material.approximately_equal", + "description": "SVG material - approximately_equal", + "body": [ + "{% svg material approximately_equal %}" + ] + }, + "approximately_equal_box": { + "prefix": "svg.material.approximately_equal_box", + "description": "SVG material - approximately_equal_box", + "body": [ + "{% svg material approximately_equal_box %}" + ] + }, + "apps": { + "prefix": "svg.material.apps", + "description": "SVG material - apps", + "body": [ + "{% svg material apps %}" + ] + }, + "apps_box": { + "prefix": "svg.material.apps_box", + "description": "SVG material - apps_box", + "body": [ + "{% svg material apps_box %}" + ] + }, + "arch": { + "prefix": "svg.material.arch", + "description": "SVG material - arch", + "body": [ + "{% svg material arch %}" + ] + }, + "archive": { + "prefix": "svg.material.archive", + "description": "SVG material - archive", + "body": [ + "{% svg material archive %}" + ] + }, + "archive_alert": { + "prefix": "svg.material.archive_alert", + "description": "SVG material - archive_alert", + "body": [ + "{% svg material archive_alert %}" + ] + }, + "archive_alert_outline": { + "prefix": "svg.material.archive_alert_outline", + "description": "SVG material - archive_alert_outline", + "body": [ + "{% svg material archive_alert_outline %}" + ] + }, + "archive_arrow_down": { + "prefix": "svg.material.archive_arrow_down", + "description": "SVG material - archive_arrow_down", + "body": [ + "{% svg material archive_arrow_down %}" + ] + }, + "archive_arrow_down_outline": { + "prefix": "svg.material.archive_arrow_down_outline", + "description": "SVG material - archive_arrow_down_outline", + "body": [ + "{% svg material archive_arrow_down_outline %}" + ] + }, + "archive_arrow_up": { + "prefix": "svg.material.archive_arrow_up", + "description": "SVG material - archive_arrow_up", + "body": [ + "{% svg material archive_arrow_up %}" + ] + }, + "archive_arrow_up_outline": { + "prefix": "svg.material.archive_arrow_up_outline", + "description": "SVG material - archive_arrow_up_outline", + "body": [ + "{% svg material archive_arrow_up_outline %}" + ] + }, + "archive_cancel": { + "prefix": "svg.material.archive_cancel", + "description": "SVG material - archive_cancel", + "body": [ + "{% svg material archive_cancel %}" + ] + }, + "archive_cancel_outline": { + "prefix": "svg.material.archive_cancel_outline", + "description": "SVG material - archive_cancel_outline", + "body": [ + "{% svg material archive_cancel_outline %}" + ] + }, + "archive_check": { + "prefix": "svg.material.archive_check", + "description": "SVG material - archive_check", + "body": [ + "{% svg material archive_check %}" + ] + }, + "archive_check_outline": { + "prefix": "svg.material.archive_check_outline", + "description": "SVG material - archive_check_outline", + "body": [ + "{% svg material archive_check_outline %}" + ] + }, + "archive_clock": { + "prefix": "svg.material.archive_clock", + "description": "SVG material - archive_clock", + "body": [ + "{% svg material archive_clock %}" + ] + }, + "archive_clock_outline": { + "prefix": "svg.material.archive_clock_outline", + "description": "SVG material - archive_clock_outline", + "body": [ + "{% svg material archive_clock_outline %}" + ] + }, + "archive_cog": { + "prefix": "svg.material.archive_cog", + "description": "SVG material - archive_cog", + "body": [ + "{% svg material archive_cog %}" + ] + }, + "archive_cog_outline": { + "prefix": "svg.material.archive_cog_outline", + "description": "SVG material - archive_cog_outline", + "body": [ + "{% svg material archive_cog_outline %}" + ] + }, + "archive_edit": { + "prefix": "svg.material.archive_edit", + "description": "SVG material - archive_edit", + "body": [ + "{% svg material archive_edit %}" + ] + }, + "archive_edit_outline": { + "prefix": "svg.material.archive_edit_outline", + "description": "SVG material - archive_edit_outline", + "body": [ + "{% svg material archive_edit_outline %}" + ] + }, + "archive_eye": { + "prefix": "svg.material.archive_eye", + "description": "SVG material - archive_eye", + "body": [ + "{% svg material archive_eye %}" + ] + }, + "archive_eye_outline": { + "prefix": "svg.material.archive_eye_outline", + "description": "SVG material - archive_eye_outline", + "body": [ + "{% svg material archive_eye_outline %}" + ] + }, + "archive_lock": { + "prefix": "svg.material.archive_lock", + "description": "SVG material - archive_lock", + "body": [ + "{% svg material archive_lock %}" + ] + }, + "archive_lock_open": { + "prefix": "svg.material.archive_lock_open", + "description": "SVG material - archive_lock_open", + "body": [ + "{% svg material archive_lock_open %}" + ] + }, + "archive_lock_open_outline": { + "prefix": "svg.material.archive_lock_open_outline", + "description": "SVG material - archive_lock_open_outline", + "body": [ + "{% svg material archive_lock_open_outline %}" + ] + }, + "archive_lock_outline": { + "prefix": "svg.material.archive_lock_outline", + "description": "SVG material - archive_lock_outline", + "body": [ + "{% svg material archive_lock_outline %}" + ] + }, + "archive_marker": { + "prefix": "svg.material.archive_marker", + "description": "SVG material - archive_marker", + "body": [ + "{% svg material archive_marker %}" + ] + }, + "archive_marker_outline": { + "prefix": "svg.material.archive_marker_outline", + "description": "SVG material - archive_marker_outline", + "body": [ + "{% svg material archive_marker_outline %}" + ] + }, + "archive_minus": { + "prefix": "svg.material.archive_minus", + "description": "SVG material - archive_minus", + "body": [ + "{% svg material archive_minus %}" + ] + }, + "archive_minus_outline": { + "prefix": "svg.material.archive_minus_outline", + "description": "SVG material - archive_minus_outline", + "body": [ + "{% svg material archive_minus_outline %}" + ] + }, + "archive_music": { + "prefix": "svg.material.archive_music", + "description": "SVG material - archive_music", + "body": [ + "{% svg material archive_music %}" + ] + }, + "archive_music_outline": { + "prefix": "svg.material.archive_music_outline", + "description": "SVG material - archive_music_outline", + "body": [ + "{% svg material archive_music_outline %}" + ] + }, + "archive_off": { + "prefix": "svg.material.archive_off", + "description": "SVG material - archive_off", + "body": [ + "{% svg material archive_off %}" + ] + }, + "archive_off_outline": { + "prefix": "svg.material.archive_off_outline", + "description": "SVG material - archive_off_outline", + "body": [ + "{% svg material archive_off_outline %}" + ] + }, + "archive_outline": { + "prefix": "svg.material.archive_outline", + "description": "SVG material - archive_outline", + "body": [ + "{% svg material archive_outline %}" + ] + }, + "archive_plus": { + "prefix": "svg.material.archive_plus", + "description": "SVG material - archive_plus", + "body": [ + "{% svg material archive_plus %}" + ] + }, + "archive_plus_outline": { + "prefix": "svg.material.archive_plus_outline", + "description": "SVG material - archive_plus_outline", + "body": [ + "{% svg material archive_plus_outline %}" + ] + }, + "archive_refresh": { + "prefix": "svg.material.archive_refresh", + "description": "SVG material - archive_refresh", + "body": [ + "{% svg material archive_refresh %}" + ] + }, + "archive_refresh_outline": { + "prefix": "svg.material.archive_refresh_outline", + "description": "SVG material - archive_refresh_outline", + "body": [ + "{% svg material archive_refresh_outline %}" + ] + }, + "archive_remove": { + "prefix": "svg.material.archive_remove", + "description": "SVG material - archive_remove", + "body": [ + "{% svg material archive_remove %}" + ] + }, + "archive_remove_outline": { + "prefix": "svg.material.archive_remove_outline", + "description": "SVG material - archive_remove_outline", + "body": [ + "{% svg material archive_remove_outline %}" + ] + }, + "archive_search": { + "prefix": "svg.material.archive_search", + "description": "SVG material - archive_search", + "body": [ + "{% svg material archive_search %}" + ] + }, + "archive_search_outline": { + "prefix": "svg.material.archive_search_outline", + "description": "SVG material - archive_search_outline", + "body": [ + "{% svg material archive_search_outline %}" + ] + }, + "archive_settings": { + "prefix": "svg.material.archive_settings", + "description": "SVG material - archive_settings", + "body": [ + "{% svg material archive_settings %}" + ] + }, + "archive_settings_outline": { + "prefix": "svg.material.archive_settings_outline", + "description": "SVG material - archive_settings_outline", + "body": [ + "{% svg material archive_settings_outline %}" + ] + }, + "archive_star": { + "prefix": "svg.material.archive_star", + "description": "SVG material - archive_star", + "body": [ + "{% svg material archive_star %}" + ] + }, + "archive_star_outline": { + "prefix": "svg.material.archive_star_outline", + "description": "SVG material - archive_star_outline", + "body": [ + "{% svg material archive_star_outline %}" + ] + }, + "archive_sync": { + "prefix": "svg.material.archive_sync", + "description": "SVG material - archive_sync", + "body": [ + "{% svg material archive_sync %}" + ] + }, + "archive_sync_outline": { + "prefix": "svg.material.archive_sync_outline", + "description": "SVG material - archive_sync_outline", + "body": [ + "{% svg material archive_sync_outline %}" + ] + }, + "arm_flex": { + "prefix": "svg.material.arm_flex", + "description": "SVG material - arm_flex", + "body": [ + "{% svg material arm_flex %}" + ] + }, + "arm_flex_outline": { + "prefix": "svg.material.arm_flex_outline", + "description": "SVG material - arm_flex_outline", + "body": [ + "{% svg material arm_flex_outline %}" + ] + }, + "arrange_bring_forward": { + "prefix": "svg.material.arrange_bring_forward", + "description": "SVG material - arrange_bring_forward", + "body": [ + "{% svg material arrange_bring_forward %}" + ] + }, + "arrange_bring_to_front": { + "prefix": "svg.material.arrange_bring_to_front", + "description": "SVG material - arrange_bring_to_front", + "body": [ + "{% svg material arrange_bring_to_front %}" + ] + }, + "arrange_send_backward": { + "prefix": "svg.material.arrange_send_backward", + "description": "SVG material - arrange_send_backward", + "body": [ + "{% svg material arrange_send_backward %}" + ] + }, + "arrange_send_to_back": { + "prefix": "svg.material.arrange_send_to_back", + "description": "SVG material - arrange_send_to_back", + "body": [ + "{% svg material arrange_send_to_back %}" + ] + }, + "arrow_all": { + "prefix": "svg.material.arrow_all", + "description": "SVG material - arrow_all", + "body": [ + "{% svg material arrow_all %}" + ] + }, + "arrow_bottom_left": { + "prefix": "svg.material.arrow_bottom_left", + "description": "SVG material - arrow_bottom_left", + "body": [ + "{% svg material arrow_bottom_left %}" + ] + }, + "arrow_bottom_left_bold_box": { + "prefix": "svg.material.arrow_bottom_left_bold_box", + "description": "SVG material - arrow_bottom_left_bold_box", + "body": [ + "{% svg material arrow_bottom_left_bold_box %}" + ] + }, + "arrow_bottom_left_bold_box_outline": { + "prefix": "svg.material.arrow_bottom_left_bold_box_outline", + "description": "SVG material - arrow_bottom_left_bold_box_outline", + "body": [ + "{% svg material arrow_bottom_left_bold_box_outline %}" + ] + }, + "arrow_bottom_left_bold_outline": { + "prefix": "svg.material.arrow_bottom_left_bold_outline", + "description": "SVG material - arrow_bottom_left_bold_outline", + "body": [ + "{% svg material arrow_bottom_left_bold_outline %}" + ] + }, + "arrow_bottom_left_thick": { + "prefix": "svg.material.arrow_bottom_left_thick", + "description": "SVG material - arrow_bottom_left_thick", + "body": [ + "{% svg material arrow_bottom_left_thick %}" + ] + }, + "arrow_bottom_left_thin": { + "prefix": "svg.material.arrow_bottom_left_thin", + "description": "SVG material - arrow_bottom_left_thin", + "body": [ + "{% svg material arrow_bottom_left_thin %}" + ] + }, + "arrow_bottom_left_thin_circle_outline": { + "prefix": "svg.material.arrow_bottom_left_thin_circle_outline", + "description": "SVG material - arrow_bottom_left_thin_circle_outline", + "body": [ + "{% svg material arrow_bottom_left_thin_circle_outline %}" + ] + }, + "arrow_bottom_right": { + "prefix": "svg.material.arrow_bottom_right", + "description": "SVG material - arrow_bottom_right", + "body": [ + "{% svg material arrow_bottom_right %}" + ] + }, + "arrow_bottom_right_bold_box": { + "prefix": "svg.material.arrow_bottom_right_bold_box", + "description": "SVG material - arrow_bottom_right_bold_box", + "body": [ + "{% svg material arrow_bottom_right_bold_box %}" + ] + }, + "arrow_bottom_right_bold_box_outline": { + "prefix": "svg.material.arrow_bottom_right_bold_box_outline", + "description": "SVG material - arrow_bottom_right_bold_box_outline", + "body": [ + "{% svg material arrow_bottom_right_bold_box_outline %}" + ] + }, + "arrow_bottom_right_bold_outline": { + "prefix": "svg.material.arrow_bottom_right_bold_outline", + "description": "SVG material - arrow_bottom_right_bold_outline", + "body": [ + "{% svg material arrow_bottom_right_bold_outline %}" + ] + }, + "arrow_bottom_right_thick": { + "prefix": "svg.material.arrow_bottom_right_thick", + "description": "SVG material - arrow_bottom_right_thick", + "body": [ + "{% svg material arrow_bottom_right_thick %}" + ] + }, + "arrow_bottom_right_thin": { + "prefix": "svg.material.arrow_bottom_right_thin", + "description": "SVG material - arrow_bottom_right_thin", + "body": [ + "{% svg material arrow_bottom_right_thin %}" + ] + }, + "arrow_bottom_right_thin_circle_outline": { + "prefix": "svg.material.arrow_bottom_right_thin_circle_outline", + "description": "SVG material - arrow_bottom_right_thin_circle_outline", + "body": [ + "{% svg material arrow_bottom_right_thin_circle_outline %}" + ] + }, + "arrow_collapse": { + "prefix": "svg.material.arrow_collapse", + "description": "SVG material - arrow_collapse", + "body": [ + "{% svg material arrow_collapse %}" + ] + }, + "arrow_collapse_all": { + "prefix": "svg.material.arrow_collapse_all", + "description": "SVG material - arrow_collapse_all", + "body": [ + "{% svg material arrow_collapse_all %}" + ] + }, + "arrow_collapse_down": { + "prefix": "svg.material.arrow_collapse_down", + "description": "SVG material - arrow_collapse_down", + "body": [ + "{% svg material arrow_collapse_down %}" + ] + }, + "arrow_collapse_horizontal": { + "prefix": "svg.material.arrow_collapse_horizontal", + "description": "SVG material - arrow_collapse_horizontal", + "body": [ + "{% svg material arrow_collapse_horizontal %}" + ] + }, + "arrow_collapse_left": { + "prefix": "svg.material.arrow_collapse_left", + "description": "SVG material - arrow_collapse_left", + "body": [ + "{% svg material arrow_collapse_left %}" + ] + }, + "arrow_collapse_right": { + "prefix": "svg.material.arrow_collapse_right", + "description": "SVG material - arrow_collapse_right", + "body": [ + "{% svg material arrow_collapse_right %}" + ] + }, + "arrow_collapse_up": { + "prefix": "svg.material.arrow_collapse_up", + "description": "SVG material - arrow_collapse_up", + "body": [ + "{% svg material arrow_collapse_up %}" + ] + }, + "arrow_collapse_vertical": { + "prefix": "svg.material.arrow_collapse_vertical", + "description": "SVG material - arrow_collapse_vertical", + "body": [ + "{% svg material arrow_collapse_vertical %}" + ] + }, + "arrow_decision": { + "prefix": "svg.material.arrow_decision", + "description": "SVG material - arrow_decision", + "body": [ + "{% svg material arrow_decision %}" + ] + }, + "arrow_decision_auto": { + "prefix": "svg.material.arrow_decision_auto", + "description": "SVG material - arrow_decision_auto", + "body": [ + "{% svg material arrow_decision_auto %}" + ] + }, + "arrow_decision_auto_outline": { + "prefix": "svg.material.arrow_decision_auto_outline", + "description": "SVG material - arrow_decision_auto_outline", + "body": [ + "{% svg material arrow_decision_auto_outline %}" + ] + }, + "arrow_decision_outline": { + "prefix": "svg.material.arrow_decision_outline", + "description": "SVG material - arrow_decision_outline", + "body": [ + "{% svg material arrow_decision_outline %}" + ] + }, + "arrow_down": { + "prefix": "svg.material.arrow_down", + "description": "SVG material - arrow_down", + "body": [ + "{% svg material arrow_down %}" + ] + }, + "arrow_down_bold": { + "prefix": "svg.material.arrow_down_bold", + "description": "SVG material - arrow_down_bold", + "body": [ + "{% svg material arrow_down_bold %}" + ] + }, + "arrow_down_bold_box": { + "prefix": "svg.material.arrow_down_bold_box", + "description": "SVG material - arrow_down_bold_box", + "body": [ + "{% svg material arrow_down_bold_box %}" + ] + }, + "arrow_down_bold_box_outline": { + "prefix": "svg.material.arrow_down_bold_box_outline", + "description": "SVG material - arrow_down_bold_box_outline", + "body": [ + "{% svg material arrow_down_bold_box_outline %}" + ] + }, + "arrow_down_bold_circle": { + "prefix": "svg.material.arrow_down_bold_circle", + "description": "SVG material - arrow_down_bold_circle", + "body": [ + "{% svg material arrow_down_bold_circle %}" + ] + }, + "arrow_down_bold_circle_outline": { + "prefix": "svg.material.arrow_down_bold_circle_outline", + "description": "SVG material - arrow_down_bold_circle_outline", + "body": [ + "{% svg material arrow_down_bold_circle_outline %}" + ] + }, + "arrow_down_bold_hexagon_outline": { + "prefix": "svg.material.arrow_down_bold_hexagon_outline", + "description": "SVG material - arrow_down_bold_hexagon_outline", + "body": [ + "{% svg material arrow_down_bold_hexagon_outline %}" + ] + }, + "arrow_down_bold_outline": { + "prefix": "svg.material.arrow_down_bold_outline", + "description": "SVG material - arrow_down_bold_outline", + "body": [ + "{% svg material arrow_down_bold_outline %}" + ] + }, + "arrow_down_box": { + "prefix": "svg.material.arrow_down_box", + "description": "SVG material - arrow_down_box", + "body": [ + "{% svg material arrow_down_box %}" + ] + }, + "arrow_down_circle": { + "prefix": "svg.material.arrow_down_circle", + "description": "SVG material - arrow_down_circle", + "body": [ + "{% svg material arrow_down_circle %}" + ] + }, + "arrow_down_circle_outline": { + "prefix": "svg.material.arrow_down_circle_outline", + "description": "SVG material - arrow_down_circle_outline", + "body": [ + "{% svg material arrow_down_circle_outline %}" + ] + }, + "arrow_down_drop_circle": { + "prefix": "svg.material.arrow_down_drop_circle", + "description": "SVG material - arrow_down_drop_circle", + "body": [ + "{% svg material arrow_down_drop_circle %}" + ] + }, + "arrow_down_drop_circle_outline": { + "prefix": "svg.material.arrow_down_drop_circle_outline", + "description": "SVG material - arrow_down_drop_circle_outline", + "body": [ + "{% svg material arrow_down_drop_circle_outline %}" + ] + }, + "arrow_down_left": { + "prefix": "svg.material.arrow_down_left", + "description": "SVG material - arrow_down_left", + "body": [ + "{% svg material arrow_down_left %}" + ] + }, + "arrow_down_left_bold": { + "prefix": "svg.material.arrow_down_left_bold", + "description": "SVG material - arrow_down_left_bold", + "body": [ + "{% svg material arrow_down_left_bold %}" + ] + }, + "arrow_down_right": { + "prefix": "svg.material.arrow_down_right", + "description": "SVG material - arrow_down_right", + "body": [ + "{% svg material arrow_down_right %}" + ] + }, + "arrow_down_right_bold": { + "prefix": "svg.material.arrow_down_right_bold", + "description": "SVG material - arrow_down_right_bold", + "body": [ + "{% svg material arrow_down_right_bold %}" + ] + }, + "arrow_down_thick": { + "prefix": "svg.material.arrow_down_thick", + "description": "SVG material - arrow_down_thick", + "body": [ + "{% svg material arrow_down_thick %}" + ] + }, + "arrow_down_thin": { + "prefix": "svg.material.arrow_down_thin", + "description": "SVG material - arrow_down_thin", + "body": [ + "{% svg material arrow_down_thin %}" + ] + }, + "arrow_down_thin_circle_outline": { + "prefix": "svg.material.arrow_down_thin_circle_outline", + "description": "SVG material - arrow_down_thin_circle_outline", + "body": [ + "{% svg material arrow_down_thin_circle_outline %}" + ] + }, + "arrow_expand": { + "prefix": "svg.material.arrow_expand", + "description": "SVG material - arrow_expand", + "body": [ + "{% svg material arrow_expand %}" + ] + }, + "arrow_expand_all": { + "prefix": "svg.material.arrow_expand_all", + "description": "SVG material - arrow_expand_all", + "body": [ + "{% svg material arrow_expand_all %}" + ] + }, + "arrow_expand_down": { + "prefix": "svg.material.arrow_expand_down", + "description": "SVG material - arrow_expand_down", + "body": [ + "{% svg material arrow_expand_down %}" + ] + }, + "arrow_expand_horizontal": { + "prefix": "svg.material.arrow_expand_horizontal", + "description": "SVG material - arrow_expand_horizontal", + "body": [ + "{% svg material arrow_expand_horizontal %}" + ] + }, + "arrow_expand_left": { + "prefix": "svg.material.arrow_expand_left", + "description": "SVG material - arrow_expand_left", + "body": [ + "{% svg material arrow_expand_left %}" + ] + }, + "arrow_expand_right": { + "prefix": "svg.material.arrow_expand_right", + "description": "SVG material - arrow_expand_right", + "body": [ + "{% svg material arrow_expand_right %}" + ] + }, + "arrow_expand_up": { + "prefix": "svg.material.arrow_expand_up", + "description": "SVG material - arrow_expand_up", + "body": [ + "{% svg material arrow_expand_up %}" + ] + }, + "arrow_expand_vertical": { + "prefix": "svg.material.arrow_expand_vertical", + "description": "SVG material - arrow_expand_vertical", + "body": [ + "{% svg material arrow_expand_vertical %}" + ] + }, + "arrow_horizontal_lock": { + "prefix": "svg.material.arrow_horizontal_lock", + "description": "SVG material - arrow_horizontal_lock", + "body": [ + "{% svg material arrow_horizontal_lock %}" + ] + }, + "arrow_left": { + "prefix": "svg.material.arrow_left", + "description": "SVG material - arrow_left", + "body": [ + "{% svg material arrow_left %}" + ] + }, + "arrow_left_bold": { + "prefix": "svg.material.arrow_left_bold", + "description": "SVG material - arrow_left_bold", + "body": [ + "{% svg material arrow_left_bold %}" + ] + }, + "arrow_left_bold_box": { + "prefix": "svg.material.arrow_left_bold_box", + "description": "SVG material - arrow_left_bold_box", + "body": [ + "{% svg material arrow_left_bold_box %}" + ] + }, + "arrow_left_bold_box_outline": { + "prefix": "svg.material.arrow_left_bold_box_outline", + "description": "SVG material - arrow_left_bold_box_outline", + "body": [ + "{% svg material arrow_left_bold_box_outline %}" + ] + }, + "arrow_left_bold_circle": { + "prefix": "svg.material.arrow_left_bold_circle", + "description": "SVG material - arrow_left_bold_circle", + "body": [ + "{% svg material arrow_left_bold_circle %}" + ] + }, + "arrow_left_bold_circle_outline": { + "prefix": "svg.material.arrow_left_bold_circle_outline", + "description": "SVG material - arrow_left_bold_circle_outline", + "body": [ + "{% svg material arrow_left_bold_circle_outline %}" + ] + }, + "arrow_left_bold_hexagon_outline": { + "prefix": "svg.material.arrow_left_bold_hexagon_outline", + "description": "SVG material - arrow_left_bold_hexagon_outline", + "body": [ + "{% svg material arrow_left_bold_hexagon_outline %}" + ] + }, + "arrow_left_bold_outline": { + "prefix": "svg.material.arrow_left_bold_outline", + "description": "SVG material - arrow_left_bold_outline", + "body": [ + "{% svg material arrow_left_bold_outline %}" + ] + }, + "arrow_left_bottom": { + "prefix": "svg.material.arrow_left_bottom", + "description": "SVG material - arrow_left_bottom", + "body": [ + "{% svg material arrow_left_bottom %}" + ] + }, + "arrow_left_bottom_bold": { + "prefix": "svg.material.arrow_left_bottom_bold", + "description": "SVG material - arrow_left_bottom_bold", + "body": [ + "{% svg material arrow_left_bottom_bold %}" + ] + }, + "arrow_left_box": { + "prefix": "svg.material.arrow_left_box", + "description": "SVG material - arrow_left_box", + "body": [ + "{% svg material arrow_left_box %}" + ] + }, + "arrow_left_circle": { + "prefix": "svg.material.arrow_left_circle", + "description": "SVG material - arrow_left_circle", + "body": [ + "{% svg material arrow_left_circle %}" + ] + }, + "arrow_left_circle_outline": { + "prefix": "svg.material.arrow_left_circle_outline", + "description": "SVG material - arrow_left_circle_outline", + "body": [ + "{% svg material arrow_left_circle_outline %}" + ] + }, + "arrow_left_drop_circle": { + "prefix": "svg.material.arrow_left_drop_circle", + "description": "SVG material - arrow_left_drop_circle", + "body": [ + "{% svg material arrow_left_drop_circle %}" + ] + }, + "arrow_left_drop_circle_outline": { + "prefix": "svg.material.arrow_left_drop_circle_outline", + "description": "SVG material - arrow_left_drop_circle_outline", + "body": [ + "{% svg material arrow_left_drop_circle_outline %}" + ] + }, + "arrow_left_right": { + "prefix": "svg.material.arrow_left_right", + "description": "SVG material - arrow_left_right", + "body": [ + "{% svg material arrow_left_right %}" + ] + }, + "arrow_left_right_bold": { + "prefix": "svg.material.arrow_left_right_bold", + "description": "SVG material - arrow_left_right_bold", + "body": [ + "{% svg material arrow_left_right_bold %}" + ] + }, + "arrow_left_right_bold_outline": { + "prefix": "svg.material.arrow_left_right_bold_outline", + "description": "SVG material - arrow_left_right_bold_outline", + "body": [ + "{% svg material arrow_left_right_bold_outline %}" + ] + }, + "arrow_left_thick": { + "prefix": "svg.material.arrow_left_thick", + "description": "SVG material - arrow_left_thick", + "body": [ + "{% svg material arrow_left_thick %}" + ] + }, + "arrow_left_thin": { + "prefix": "svg.material.arrow_left_thin", + "description": "SVG material - arrow_left_thin", + "body": [ + "{% svg material arrow_left_thin %}" + ] + }, + "arrow_left_thin_circle_outline": { + "prefix": "svg.material.arrow_left_thin_circle_outline", + "description": "SVG material - arrow_left_thin_circle_outline", + "body": [ + "{% svg material arrow_left_thin_circle_outline %}" + ] + }, + "arrow_left_top": { + "prefix": "svg.material.arrow_left_top", + "description": "SVG material - arrow_left_top", + "body": [ + "{% svg material arrow_left_top %}" + ] + }, + "arrow_left_top_bold": { + "prefix": "svg.material.arrow_left_top_bold", + "description": "SVG material - arrow_left_top_bold", + "body": [ + "{% svg material arrow_left_top_bold %}" + ] + }, + "arrow_oscillating": { + "prefix": "svg.material.arrow_oscillating", + "description": "SVG material - arrow_oscillating", + "body": [ + "{% svg material arrow_oscillating %}" + ] + }, + "arrow_oscillating_off": { + "prefix": "svg.material.arrow_oscillating_off", + "description": "SVG material - arrow_oscillating_off", + "body": [ + "{% svg material arrow_oscillating_off %}" + ] + }, + "arrow_projectile": { + "prefix": "svg.material.arrow_projectile", + "description": "SVG material - arrow_projectile", + "body": [ + "{% svg material arrow_projectile %}" + ] + }, + "arrow_projectile_multiple": { + "prefix": "svg.material.arrow_projectile_multiple", + "description": "SVG material - arrow_projectile_multiple", + "body": [ + "{% svg material arrow_projectile_multiple %}" + ] + }, + "arrow_right": { + "prefix": "svg.material.arrow_right", + "description": "SVG material - arrow_right", + "body": [ + "{% svg material arrow_right %}" + ] + }, + "arrow_right_bold": { + "prefix": "svg.material.arrow_right_bold", + "description": "SVG material - arrow_right_bold", + "body": [ + "{% svg material arrow_right_bold %}" + ] + }, + "arrow_right_bold_box": { + "prefix": "svg.material.arrow_right_bold_box", + "description": "SVG material - arrow_right_bold_box", + "body": [ + "{% svg material arrow_right_bold_box %}" + ] + }, + "arrow_right_bold_box_outline": { + "prefix": "svg.material.arrow_right_bold_box_outline", + "description": "SVG material - arrow_right_bold_box_outline", + "body": [ + "{% svg material arrow_right_bold_box_outline %}" + ] + }, + "arrow_right_bold_circle": { + "prefix": "svg.material.arrow_right_bold_circle", + "description": "SVG material - arrow_right_bold_circle", + "body": [ + "{% svg material arrow_right_bold_circle %}" + ] + }, + "arrow_right_bold_circle_outline": { + "prefix": "svg.material.arrow_right_bold_circle_outline", + "description": "SVG material - arrow_right_bold_circle_outline", + "body": [ + "{% svg material arrow_right_bold_circle_outline %}" + ] + }, + "arrow_right_bold_hexagon_outline": { + "prefix": "svg.material.arrow_right_bold_hexagon_outline", + "description": "SVG material - arrow_right_bold_hexagon_outline", + "body": [ + "{% svg material arrow_right_bold_hexagon_outline %}" + ] + }, + "arrow_right_bold_outline": { + "prefix": "svg.material.arrow_right_bold_outline", + "description": "SVG material - arrow_right_bold_outline", + "body": [ + "{% svg material arrow_right_bold_outline %}" + ] + }, + "arrow_right_bottom": { + "prefix": "svg.material.arrow_right_bottom", + "description": "SVG material - arrow_right_bottom", + "body": [ + "{% svg material arrow_right_bottom %}" + ] + }, + "arrow_right_bottom_bold": { + "prefix": "svg.material.arrow_right_bottom_bold", + "description": "SVG material - arrow_right_bottom_bold", + "body": [ + "{% svg material arrow_right_bottom_bold %}" + ] + }, + "arrow_right_box": { + "prefix": "svg.material.arrow_right_box", + "description": "SVG material - arrow_right_box", + "body": [ + "{% svg material arrow_right_box %}" + ] + }, + "arrow_right_circle": { + "prefix": "svg.material.arrow_right_circle", + "description": "SVG material - arrow_right_circle", + "body": [ + "{% svg material arrow_right_circle %}" + ] + }, + "arrow_right_circle_outline": { + "prefix": "svg.material.arrow_right_circle_outline", + "description": "SVG material - arrow_right_circle_outline", + "body": [ + "{% svg material arrow_right_circle_outline %}" + ] + }, + "arrow_right_drop_circle": { + "prefix": "svg.material.arrow_right_drop_circle", + "description": "SVG material - arrow_right_drop_circle", + "body": [ + "{% svg material arrow_right_drop_circle %}" + ] + }, + "arrow_right_drop_circle_outline": { + "prefix": "svg.material.arrow_right_drop_circle_outline", + "description": "SVG material - arrow_right_drop_circle_outline", + "body": [ + "{% svg material arrow_right_drop_circle_outline %}" + ] + }, + "arrow_right_thick": { + "prefix": "svg.material.arrow_right_thick", + "description": "SVG material - arrow_right_thick", + "body": [ + "{% svg material arrow_right_thick %}" + ] + }, + "arrow_right_thin": { + "prefix": "svg.material.arrow_right_thin", + "description": "SVG material - arrow_right_thin", + "body": [ + "{% svg material arrow_right_thin %}" + ] + }, + "arrow_right_thin_circle_outline": { + "prefix": "svg.material.arrow_right_thin_circle_outline", + "description": "SVG material - arrow_right_thin_circle_outline", + "body": [ + "{% svg material arrow_right_thin_circle_outline %}" + ] + }, + "arrow_right_top": { + "prefix": "svg.material.arrow_right_top", + "description": "SVG material - arrow_right_top", + "body": [ + "{% svg material arrow_right_top %}" + ] + }, + "arrow_right_top_bold": { + "prefix": "svg.material.arrow_right_top_bold", + "description": "SVG material - arrow_right_top_bold", + "body": [ + "{% svg material arrow_right_top_bold %}" + ] + }, + "arrow_split_horizontal": { + "prefix": "svg.material.arrow_split_horizontal", + "description": "SVG material - arrow_split_horizontal", + "body": [ + "{% svg material arrow_split_horizontal %}" + ] + }, + "arrow_split_vertical": { + "prefix": "svg.material.arrow_split_vertical", + "description": "SVG material - arrow_split_vertical", + "body": [ + "{% svg material arrow_split_vertical %}" + ] + }, + "arrow_top_left": { + "prefix": "svg.material.arrow_top_left", + "description": "SVG material - arrow_top_left", + "body": [ + "{% svg material arrow_top_left %}" + ] + }, + "arrow_top_left_bold_box": { + "prefix": "svg.material.arrow_top_left_bold_box", + "description": "SVG material - arrow_top_left_bold_box", + "body": [ + "{% svg material arrow_top_left_bold_box %}" + ] + }, + "arrow_top_left_bold_box_outline": { + "prefix": "svg.material.arrow_top_left_bold_box_outline", + "description": "SVG material - arrow_top_left_bold_box_outline", + "body": [ + "{% svg material arrow_top_left_bold_box_outline %}" + ] + }, + "arrow_top_left_bold_outline": { + "prefix": "svg.material.arrow_top_left_bold_outline", + "description": "SVG material - arrow_top_left_bold_outline", + "body": [ + "{% svg material arrow_top_left_bold_outline %}" + ] + }, + "arrow_top_left_bottom_right": { + "prefix": "svg.material.arrow_top_left_bottom_right", + "description": "SVG material - arrow_top_left_bottom_right", + "body": [ + "{% svg material arrow_top_left_bottom_right %}" + ] + }, + "arrow_top_left_bottom_right_bold": { + "prefix": "svg.material.arrow_top_left_bottom_right_bold", + "description": "SVG material - arrow_top_left_bottom_right_bold", + "body": [ + "{% svg material arrow_top_left_bottom_right_bold %}" + ] + }, + "arrow_top_left_thick": { + "prefix": "svg.material.arrow_top_left_thick", + "description": "SVG material - arrow_top_left_thick", + "body": [ + "{% svg material arrow_top_left_thick %}" + ] + }, + "arrow_top_left_thin": { + "prefix": "svg.material.arrow_top_left_thin", + "description": "SVG material - arrow_top_left_thin", + "body": [ + "{% svg material arrow_top_left_thin %}" + ] + }, + "arrow_top_left_thin_circle_outline": { + "prefix": "svg.material.arrow_top_left_thin_circle_outline", + "description": "SVG material - arrow_top_left_thin_circle_outline", + "body": [ + "{% svg material arrow_top_left_thin_circle_outline %}" + ] + }, + "arrow_top_right": { + "prefix": "svg.material.arrow_top_right", + "description": "SVG material - arrow_top_right", + "body": [ + "{% svg material arrow_top_right %}" + ] + }, + "arrow_top_right_bold_box": { + "prefix": "svg.material.arrow_top_right_bold_box", + "description": "SVG material - arrow_top_right_bold_box", + "body": [ + "{% svg material arrow_top_right_bold_box %}" + ] + }, + "arrow_top_right_bold_box_outline": { + "prefix": "svg.material.arrow_top_right_bold_box_outline", + "description": "SVG material - arrow_top_right_bold_box_outline", + "body": [ + "{% svg material arrow_top_right_bold_box_outline %}" + ] + }, + "arrow_top_right_bold_outline": { + "prefix": "svg.material.arrow_top_right_bold_outline", + "description": "SVG material - arrow_top_right_bold_outline", + "body": [ + "{% svg material arrow_top_right_bold_outline %}" + ] + }, + "arrow_top_right_bottom_left": { + "prefix": "svg.material.arrow_top_right_bottom_left", + "description": "SVG material - arrow_top_right_bottom_left", + "body": [ + "{% svg material arrow_top_right_bottom_left %}" + ] + }, + "arrow_top_right_bottom_left_bold": { + "prefix": "svg.material.arrow_top_right_bottom_left_bold", + "description": "SVG material - arrow_top_right_bottom_left_bold", + "body": [ + "{% svg material arrow_top_right_bottom_left_bold %}" + ] + }, + "arrow_top_right_thick": { + "prefix": "svg.material.arrow_top_right_thick", + "description": "SVG material - arrow_top_right_thick", + "body": [ + "{% svg material arrow_top_right_thick %}" + ] + }, + "arrow_top_right_thin": { + "prefix": "svg.material.arrow_top_right_thin", + "description": "SVG material - arrow_top_right_thin", + "body": [ + "{% svg material arrow_top_right_thin %}" + ] + }, + "arrow_top_right_thin_circle_outline": { + "prefix": "svg.material.arrow_top_right_thin_circle_outline", + "description": "SVG material - arrow_top_right_thin_circle_outline", + "body": [ + "{% svg material arrow_top_right_thin_circle_outline %}" + ] + }, + "arrow_u_down_left": { + "prefix": "svg.material.arrow_u_down_left", + "description": "SVG material - arrow_u_down_left", + "body": [ + "{% svg material arrow_u_down_left %}" + ] + }, + "arrow_u_down_left_bold": { + "prefix": "svg.material.arrow_u_down_left_bold", + "description": "SVG material - arrow_u_down_left_bold", + "body": [ + "{% svg material arrow_u_down_left_bold %}" + ] + }, + "arrow_u_down_right": { + "prefix": "svg.material.arrow_u_down_right", + "description": "SVG material - arrow_u_down_right", + "body": [ + "{% svg material arrow_u_down_right %}" + ] + }, + "arrow_u_down_right_bold": { + "prefix": "svg.material.arrow_u_down_right_bold", + "description": "SVG material - arrow_u_down_right_bold", + "body": [ + "{% svg material arrow_u_down_right_bold %}" + ] + }, + "arrow_u_left_bottom": { + "prefix": "svg.material.arrow_u_left_bottom", + "description": "SVG material - arrow_u_left_bottom", + "body": [ + "{% svg material arrow_u_left_bottom %}" + ] + }, + "arrow_u_left_bottom_bold": { + "prefix": "svg.material.arrow_u_left_bottom_bold", + "description": "SVG material - arrow_u_left_bottom_bold", + "body": [ + "{% svg material arrow_u_left_bottom_bold %}" + ] + }, + "arrow_u_left_top": { + "prefix": "svg.material.arrow_u_left_top", + "description": "SVG material - arrow_u_left_top", + "body": [ + "{% svg material arrow_u_left_top %}" + ] + }, + "arrow_u_left_top_bold": { + "prefix": "svg.material.arrow_u_left_top_bold", + "description": "SVG material - arrow_u_left_top_bold", + "body": [ + "{% svg material arrow_u_left_top_bold %}" + ] + }, + "arrow_u_right_bottom": { + "prefix": "svg.material.arrow_u_right_bottom", + "description": "SVG material - arrow_u_right_bottom", + "body": [ + "{% svg material arrow_u_right_bottom %}" + ] + }, + "arrow_u_right_bottom_bold": { + "prefix": "svg.material.arrow_u_right_bottom_bold", + "description": "SVG material - arrow_u_right_bottom_bold", + "body": [ + "{% svg material arrow_u_right_bottom_bold %}" + ] + }, + "arrow_u_right_top": { + "prefix": "svg.material.arrow_u_right_top", + "description": "SVG material - arrow_u_right_top", + "body": [ + "{% svg material arrow_u_right_top %}" + ] + }, + "arrow_u_right_top_bold": { + "prefix": "svg.material.arrow_u_right_top_bold", + "description": "SVG material - arrow_u_right_top_bold", + "body": [ + "{% svg material arrow_u_right_top_bold %}" + ] + }, + "arrow_u_up_left": { + "prefix": "svg.material.arrow_u_up_left", + "description": "SVG material - arrow_u_up_left", + "body": [ + "{% svg material arrow_u_up_left %}" + ] + }, + "arrow_u_up_left_bold": { + "prefix": "svg.material.arrow_u_up_left_bold", + "description": "SVG material - arrow_u_up_left_bold", + "body": [ + "{% svg material arrow_u_up_left_bold %}" + ] + }, + "arrow_u_up_right": { + "prefix": "svg.material.arrow_u_up_right", + "description": "SVG material - arrow_u_up_right", + "body": [ + "{% svg material arrow_u_up_right %}" + ] + }, + "arrow_u_up_right_bold": { + "prefix": "svg.material.arrow_u_up_right_bold", + "description": "SVG material - arrow_u_up_right_bold", + "body": [ + "{% svg material arrow_u_up_right_bold %}" + ] + }, + "arrow_up": { + "prefix": "svg.material.arrow_up", + "description": "SVG material - arrow_up", + "body": [ + "{% svg material arrow_up %}" + ] + }, + "arrow_up_bold": { + "prefix": "svg.material.arrow_up_bold", + "description": "SVG material - arrow_up_bold", + "body": [ + "{% svg material arrow_up_bold %}" + ] + }, + "arrow_up_bold_box": { + "prefix": "svg.material.arrow_up_bold_box", + "description": "SVG material - arrow_up_bold_box", + "body": [ + "{% svg material arrow_up_bold_box %}" + ] + }, + "arrow_up_bold_box_outline": { + "prefix": "svg.material.arrow_up_bold_box_outline", + "description": "SVG material - arrow_up_bold_box_outline", + "body": [ + "{% svg material arrow_up_bold_box_outline %}" + ] + }, + "arrow_up_bold_circle": { + "prefix": "svg.material.arrow_up_bold_circle", + "description": "SVG material - arrow_up_bold_circle", + "body": [ + "{% svg material arrow_up_bold_circle %}" + ] + }, + "arrow_up_bold_circle_outline": { + "prefix": "svg.material.arrow_up_bold_circle_outline", + "description": "SVG material - arrow_up_bold_circle_outline", + "body": [ + "{% svg material arrow_up_bold_circle_outline %}" + ] + }, + "arrow_up_bold_hexagon_outline": { + "prefix": "svg.material.arrow_up_bold_hexagon_outline", + "description": "SVG material - arrow_up_bold_hexagon_outline", + "body": [ + "{% svg material arrow_up_bold_hexagon_outline %}" + ] + }, + "arrow_up_bold_outline": { + "prefix": "svg.material.arrow_up_bold_outline", + "description": "SVG material - arrow_up_bold_outline", + "body": [ + "{% svg material arrow_up_bold_outline %}" + ] + }, + "arrow_up_box": { + "prefix": "svg.material.arrow_up_box", + "description": "SVG material - arrow_up_box", + "body": [ + "{% svg material arrow_up_box %}" + ] + }, + "arrow_up_circle": { + "prefix": "svg.material.arrow_up_circle", + "description": "SVG material - arrow_up_circle", + "body": [ + "{% svg material arrow_up_circle %}" + ] + }, + "arrow_up_circle_outline": { + "prefix": "svg.material.arrow_up_circle_outline", + "description": "SVG material - arrow_up_circle_outline", + "body": [ + "{% svg material arrow_up_circle_outline %}" + ] + }, + "arrow_up_down": { + "prefix": "svg.material.arrow_up_down", + "description": "SVG material - arrow_up_down", + "body": [ + "{% svg material arrow_up_down %}" + ] + }, + "arrow_up_down_bold": { + "prefix": "svg.material.arrow_up_down_bold", + "description": "SVG material - arrow_up_down_bold", + "body": [ + "{% svg material arrow_up_down_bold %}" + ] + }, + "arrow_up_down_bold_outline": { + "prefix": "svg.material.arrow_up_down_bold_outline", + "description": "SVG material - arrow_up_down_bold_outline", + "body": [ + "{% svg material arrow_up_down_bold_outline %}" + ] + }, + "arrow_up_drop_circle": { + "prefix": "svg.material.arrow_up_drop_circle", + "description": "SVG material - arrow_up_drop_circle", + "body": [ + "{% svg material arrow_up_drop_circle %}" + ] + }, + "arrow_up_drop_circle_outline": { + "prefix": "svg.material.arrow_up_drop_circle_outline", + "description": "SVG material - arrow_up_drop_circle_outline", + "body": [ + "{% svg material arrow_up_drop_circle_outline %}" + ] + }, + "arrow_up_left": { + "prefix": "svg.material.arrow_up_left", + "description": "SVG material - arrow_up_left", + "body": [ + "{% svg material arrow_up_left %}" + ] + }, + "arrow_up_left_bold": { + "prefix": "svg.material.arrow_up_left_bold", + "description": "SVG material - arrow_up_left_bold", + "body": [ + "{% svg material arrow_up_left_bold %}" + ] + }, + "arrow_up_right": { + "prefix": "svg.material.arrow_up_right", + "description": "SVG material - arrow_up_right", + "body": [ + "{% svg material arrow_up_right %}" + ] + }, + "arrow_up_right_bold": { + "prefix": "svg.material.arrow_up_right_bold", + "description": "SVG material - arrow_up_right_bold", + "body": [ + "{% svg material arrow_up_right_bold %}" + ] + }, + "arrow_up_thick": { + "prefix": "svg.material.arrow_up_thick", + "description": "SVG material - arrow_up_thick", + "body": [ + "{% svg material arrow_up_thick %}" + ] + }, + "arrow_up_thin": { + "prefix": "svg.material.arrow_up_thin", + "description": "SVG material - arrow_up_thin", + "body": [ + "{% svg material arrow_up_thin %}" + ] + }, + "arrow_up_thin_circle_outline": { + "prefix": "svg.material.arrow_up_thin_circle_outline", + "description": "SVG material - arrow_up_thin_circle_outline", + "body": [ + "{% svg material arrow_up_thin_circle_outline %}" + ] + }, + "arrow_vertical_lock": { + "prefix": "svg.material.arrow_vertical_lock", + "description": "SVG material - arrow_vertical_lock", + "body": [ + "{% svg material arrow_vertical_lock %}" + ] + }, + "artboard": { + "prefix": "svg.material.artboard", + "description": "SVG material - artboard", + "body": [ + "{% svg material artboard %}" + ] + }, + "artstation": { + "prefix": "svg.material.artstation", + "description": "SVG material - artstation", + "body": [ + "{% svg material artstation %}" + ] + }, + "aspect_ratio": { + "prefix": "svg.material.aspect_ratio", + "description": "SVG material - aspect_ratio", + "body": [ + "{% svg material aspect_ratio %}" + ] + }, + "assistant": { + "prefix": "svg.material.assistant", + "description": "SVG material - assistant", + "body": [ + "{% svg material assistant %}" + ] + }, + "asterisk": { + "prefix": "svg.material.asterisk", + "description": "SVG material - asterisk", + "body": [ + "{% svg material asterisk %}" + ] + }, + "asterisk_circle_outline": { + "prefix": "svg.material.asterisk_circle_outline", + "description": "SVG material - asterisk_circle_outline", + "body": [ + "{% svg material asterisk_circle_outline %}" + ] + }, + "at": { + "prefix": "svg.material.at", + "description": "SVG material - at", + "body": [ + "{% svg material at %}" + ] + }, + "atlassian": { + "prefix": "svg.material.atlassian", + "description": "SVG material - atlassian", + "body": [ + "{% svg material atlassian %}" + ] + }, + "atm": { + "prefix": "svg.material.atm", + "description": "SVG material - atm", + "body": [ + "{% svg material atm %}" + ] + }, + "atom": { + "prefix": "svg.material.atom", + "description": "SVG material - atom", + "body": [ + "{% svg material atom %}" + ] + }, + "atom_variant": { + "prefix": "svg.material.atom_variant", + "description": "SVG material - atom_variant", + "body": [ + "{% svg material atom_variant %}" + ] + }, + "attachment": { + "prefix": "svg.material.attachment", + "description": "SVG material - attachment", + "body": [ + "{% svg material attachment %}" + ] + }, + "attachment_check": { + "prefix": "svg.material.attachment_check", + "description": "SVG material - attachment_check", + "body": [ + "{% svg material attachment_check %}" + ] + }, + "attachment_lock": { + "prefix": "svg.material.attachment_lock", + "description": "SVG material - attachment_lock", + "body": [ + "{% svg material attachment_lock %}" + ] + }, + "attachment_minus": { + "prefix": "svg.material.attachment_minus", + "description": "SVG material - attachment_minus", + "body": [ + "{% svg material attachment_minus %}" + ] + }, + "attachment_off": { + "prefix": "svg.material.attachment_off", + "description": "SVG material - attachment_off", + "body": [ + "{% svg material attachment_off %}" + ] + }, + "attachment_plus": { + "prefix": "svg.material.attachment_plus", + "description": "SVG material - attachment_plus", + "body": [ + "{% svg material attachment_plus %}" + ] + }, + "attachment_remove": { + "prefix": "svg.material.attachment_remove", + "description": "SVG material - attachment_remove", + "body": [ + "{% svg material attachment_remove %}" + ] + }, + "atv": { + "prefix": "svg.material.atv", + "description": "SVG material - atv", + "body": [ + "{% svg material atv %}" + ] + }, + "audio_input_rca": { + "prefix": "svg.material.audio_input_rca", + "description": "SVG material - audio_input_rca", + "body": [ + "{% svg material audio_input_rca %}" + ] + }, + "audio_input_stereo_minijack": { + "prefix": "svg.material.audio_input_stereo_minijack", + "description": "SVG material - audio_input_stereo_minijack", + "body": [ + "{% svg material audio_input_stereo_minijack %}" + ] + }, + "audio_input_xlr": { + "prefix": "svg.material.audio_input_xlr", + "description": "SVG material - audio_input_xlr", + "body": [ + "{% svg material audio_input_xlr %}" + ] + }, + "audio_video": { + "prefix": "svg.material.audio_video", + "description": "SVG material - audio_video", + "body": [ + "{% svg material audio_video %}" + ] + }, + "audio_video_off": { + "prefix": "svg.material.audio_video_off", + "description": "SVG material - audio_video_off", + "body": [ + "{% svg material audio_video_off %}" + ] + }, + "augmented_reality": { + "prefix": "svg.material.augmented_reality", + "description": "SVG material - augmented_reality", + "body": [ + "{% svg material augmented_reality %}" + ] + }, + "aurora": { + "prefix": "svg.material.aurora", + "description": "SVG material - aurora", + "body": [ + "{% svg material aurora %}" + ] + }, + "auto_download": { + "prefix": "svg.material.auto_download", + "description": "SVG material - auto_download", + "body": [ + "{% svg material auto_download %}" + ] + }, + "auto_fix": { + "prefix": "svg.material.auto_fix", + "description": "SVG material - auto_fix", + "body": [ + "{% svg material auto_fix %}" + ] + }, + "auto_mode": { + "prefix": "svg.material.auto_mode", + "description": "SVG material - auto_mode", + "body": [ + "{% svg material auto_mode %}" + ] + }, + "auto_upload": { + "prefix": "svg.material.auto_upload", + "description": "SVG material - auto_upload", + "body": [ + "{% svg material auto_upload %}" + ] + }, + "autorenew": { + "prefix": "svg.material.autorenew", + "description": "SVG material - autorenew", + "body": [ + "{% svg material autorenew %}" + ] + }, + "autorenew_off": { + "prefix": "svg.material.autorenew_off", + "description": "SVG material - autorenew_off", + "body": [ + "{% svg material autorenew_off %}" + ] + }, + "av_timer": { + "prefix": "svg.material.av_timer", + "description": "SVG material - av_timer", + "body": [ + "{% svg material av_timer %}" + ] + }, + "awning": { + "prefix": "svg.material.awning", + "description": "SVG material - awning", + "body": [ + "{% svg material awning %}" + ] + }, + "awning_outline": { + "prefix": "svg.material.awning_outline", + "description": "SVG material - awning_outline", + "body": [ + "{% svg material awning_outline %}" + ] + }, + "aws": { + "prefix": "svg.material.aws", + "description": "SVG material - aws", + "body": [ + "{% svg material aws %}" + ] + }, + "axe": { + "prefix": "svg.material.axe", + "description": "SVG material - axe", + "body": [ + "{% svg material axe %}" + ] + }, + "axe_battle": { + "prefix": "svg.material.axe_battle", + "description": "SVG material - axe_battle", + "body": [ + "{% svg material axe_battle %}" + ] + }, + "axis": { + "prefix": "svg.material.axis", + "description": "SVG material - axis", + "body": [ + "{% svg material axis %}" + ] + }, + "axis_arrow": { + "prefix": "svg.material.axis_arrow", + "description": "SVG material - axis_arrow", + "body": [ + "{% svg material axis_arrow %}" + ] + }, + "axis_arrow_info": { + "prefix": "svg.material.axis_arrow_info", + "description": "SVG material - axis_arrow_info", + "body": [ + "{% svg material axis_arrow_info %}" + ] + }, + "axis_arrow_lock": { + "prefix": "svg.material.axis_arrow_lock", + "description": "SVG material - axis_arrow_lock", + "body": [ + "{% svg material axis_arrow_lock %}" + ] + }, + "axis_lock": { + "prefix": "svg.material.axis_lock", + "description": "SVG material - axis_lock", + "body": [ + "{% svg material axis_lock %}" + ] + }, + "axis_x_arrow": { + "prefix": "svg.material.axis_x_arrow", + "description": "SVG material - axis_x_arrow", + "body": [ + "{% svg material axis_x_arrow %}" + ] + }, + "axis_x_arrow_lock": { + "prefix": "svg.material.axis_x_arrow_lock", + "description": "SVG material - axis_x_arrow_lock", + "body": [ + "{% svg material axis_x_arrow_lock %}" + ] + }, + "axis_x_rotate_clockwise": { + "prefix": "svg.material.axis_x_rotate_clockwise", + "description": "SVG material - axis_x_rotate_clockwise", + "body": [ + "{% svg material axis_x_rotate_clockwise %}" + ] + }, + "axis_x_rotate_counterclockwise": { + "prefix": "svg.material.axis_x_rotate_counterclockwise", + "description": "SVG material - axis_x_rotate_counterclockwise", + "body": [ + "{% svg material axis_x_rotate_counterclockwise %}" + ] + }, + "axis_x_y_arrow_lock": { + "prefix": "svg.material.axis_x_y_arrow_lock", + "description": "SVG material - axis_x_y_arrow_lock", + "body": [ + "{% svg material axis_x_y_arrow_lock %}" + ] + }, + "axis_y_arrow": { + "prefix": "svg.material.axis_y_arrow", + "description": "SVG material - axis_y_arrow", + "body": [ + "{% svg material axis_y_arrow %}" + ] + }, + "axis_y_arrow_lock": { + "prefix": "svg.material.axis_y_arrow_lock", + "description": "SVG material - axis_y_arrow_lock", + "body": [ + "{% svg material axis_y_arrow_lock %}" + ] + }, + "axis_y_rotate_clockwise": { + "prefix": "svg.material.axis_y_rotate_clockwise", + "description": "SVG material - axis_y_rotate_clockwise", + "body": [ + "{% svg material axis_y_rotate_clockwise %}" + ] + }, + "axis_y_rotate_counterclockwise": { + "prefix": "svg.material.axis_y_rotate_counterclockwise", + "description": "SVG material - axis_y_rotate_counterclockwise", + "body": [ + "{% svg material axis_y_rotate_counterclockwise %}" + ] + }, + "axis_z_arrow": { + "prefix": "svg.material.axis_z_arrow", + "description": "SVG material - axis_z_arrow", + "body": [ + "{% svg material axis_z_arrow %}" + ] + }, + "axis_z_arrow_lock": { + "prefix": "svg.material.axis_z_arrow_lock", + "description": "SVG material - axis_z_arrow_lock", + "body": [ + "{% svg material axis_z_arrow_lock %}" + ] + }, + "axis_z_rotate_clockwise": { + "prefix": "svg.material.axis_z_rotate_clockwise", + "description": "SVG material - axis_z_rotate_clockwise", + "body": [ + "{% svg material axis_z_rotate_clockwise %}" + ] + }, + "axis_z_rotate_counterclockwise": { + "prefix": "svg.material.axis_z_rotate_counterclockwise", + "description": "SVG material - axis_z_rotate_counterclockwise", + "body": [ + "{% svg material axis_z_rotate_counterclockwise %}" + ] + }, + "babel": { + "prefix": "svg.material.babel", + "description": "SVG material - babel", + "body": [ + "{% svg material babel %}" + ] + }, + "baby": { + "prefix": "svg.material.baby", + "description": "SVG material - baby", + "body": [ + "{% svg material baby %}" + ] + }, + "baby_bottle": { + "prefix": "svg.material.baby_bottle", + "description": "SVG material - baby_bottle", + "body": [ + "{% svg material baby_bottle %}" + ] + }, + "baby_bottle_outline": { + "prefix": "svg.material.baby_bottle_outline", + "description": "SVG material - baby_bottle_outline", + "body": [ + "{% svg material baby_bottle_outline %}" + ] + }, + "baby_buggy": { + "prefix": "svg.material.baby_buggy", + "description": "SVG material - baby_buggy", + "body": [ + "{% svg material baby_buggy %}" + ] + }, + "baby_buggy_off": { + "prefix": "svg.material.baby_buggy_off", + "description": "SVG material - baby_buggy_off", + "body": [ + "{% svg material baby_buggy_off %}" + ] + }, + "baby_carriage": { + "prefix": "svg.material.baby_carriage", + "description": "SVG material - baby_carriage", + "body": [ + "{% svg material baby_carriage %}" + ] + }, + "baby_carriage_off": { + "prefix": "svg.material.baby_carriage_off", + "description": "SVG material - baby_carriage_off", + "body": [ + "{% svg material baby_carriage_off %}" + ] + }, + "baby_face": { + "prefix": "svg.material.baby_face", + "description": "SVG material - baby_face", + "body": [ + "{% svg material baby_face %}" + ] + }, + "baby_face_outline": { + "prefix": "svg.material.baby_face_outline", + "description": "SVG material - baby_face_outline", + "body": [ + "{% svg material baby_face_outline %}" + ] + }, + "backburger": { + "prefix": "svg.material.backburger", + "description": "SVG material - backburger", + "body": [ + "{% svg material backburger %}" + ] + }, + "backspace": { + "prefix": "svg.material.backspace", + "description": "SVG material - backspace", + "body": [ + "{% svg material backspace %}" + ] + }, + "backspace_outline": { + "prefix": "svg.material.backspace_outline", + "description": "SVG material - backspace_outline", + "body": [ + "{% svg material backspace_outline %}" + ] + }, + "backspace_reverse": { + "prefix": "svg.material.backspace_reverse", + "description": "SVG material - backspace_reverse", + "body": [ + "{% svg material backspace_reverse %}" + ] + }, + "backspace_reverse_outline": { + "prefix": "svg.material.backspace_reverse_outline", + "description": "SVG material - backspace_reverse_outline", + "body": [ + "{% svg material backspace_reverse_outline %}" + ] + }, + "backup_restore": { + "prefix": "svg.material.backup_restore", + "description": "SVG material - backup_restore", + "body": [ + "{% svg material backup_restore %}" + ] + }, + "bacteria": { + "prefix": "svg.material.bacteria", + "description": "SVG material - bacteria", + "body": [ + "{% svg material bacteria %}" + ] + }, + "bacteria_outline": { + "prefix": "svg.material.bacteria_outline", + "description": "SVG material - bacteria_outline", + "body": [ + "{% svg material bacteria_outline %}" + ] + }, + "badge_account": { + "prefix": "svg.material.badge_account", + "description": "SVG material - badge_account", + "body": [ + "{% svg material badge_account %}" + ] + }, + "badge_account_alert": { + "prefix": "svg.material.badge_account_alert", + "description": "SVG material - badge_account_alert", + "body": [ + "{% svg material badge_account_alert %}" + ] + }, + "badge_account_alert_outline": { + "prefix": "svg.material.badge_account_alert_outline", + "description": "SVG material - badge_account_alert_outline", + "body": [ + "{% svg material badge_account_alert_outline %}" + ] + }, + "badge_account_horizontal": { + "prefix": "svg.material.badge_account_horizontal", + "description": "SVG material - badge_account_horizontal", + "body": [ + "{% svg material badge_account_horizontal %}" + ] + }, + "badge_account_horizontal_outline": { + "prefix": "svg.material.badge_account_horizontal_outline", + "description": "SVG material - badge_account_horizontal_outline", + "body": [ + "{% svg material badge_account_horizontal_outline %}" + ] + }, + "badge_account_outline": { + "prefix": "svg.material.badge_account_outline", + "description": "SVG material - badge_account_outline", + "body": [ + "{% svg material badge_account_outline %}" + ] + }, + "badminton": { + "prefix": "svg.material.badminton", + "description": "SVG material - badminton", + "body": [ + "{% svg material badminton %}" + ] + }, + "bag_carry_on": { + "prefix": "svg.material.bag_carry_on", + "description": "SVG material - bag_carry_on", + "body": [ + "{% svg material bag_carry_on %}" + ] + }, + "bag_carry_on_check": { + "prefix": "svg.material.bag_carry_on_check", + "description": "SVG material - bag_carry_on_check", + "body": [ + "{% svg material bag_carry_on_check %}" + ] + }, + "bag_carry_on_off": { + "prefix": "svg.material.bag_carry_on_off", + "description": "SVG material - bag_carry_on_off", + "body": [ + "{% svg material bag_carry_on_off %}" + ] + }, + "bag_checked": { + "prefix": "svg.material.bag_checked", + "description": "SVG material - bag_checked", + "body": [ + "{% svg material bag_checked %}" + ] + }, + "bag_personal": { + "prefix": "svg.material.bag_personal", + "description": "SVG material - bag_personal", + "body": [ + "{% svg material bag_personal %}" + ] + }, + "bag_personal_off": { + "prefix": "svg.material.bag_personal_off", + "description": "SVG material - bag_personal_off", + "body": [ + "{% svg material bag_personal_off %}" + ] + }, + "bag_personal_off_outline": { + "prefix": "svg.material.bag_personal_off_outline", + "description": "SVG material - bag_personal_off_outline", + "body": [ + "{% svg material bag_personal_off_outline %}" + ] + }, + "bag_personal_outline": { + "prefix": "svg.material.bag_personal_outline", + "description": "SVG material - bag_personal_outline", + "body": [ + "{% svg material bag_personal_outline %}" + ] + }, + "bag_personal_plus": { + "prefix": "svg.material.bag_personal_plus", + "description": "SVG material - bag_personal_plus", + "body": [ + "{% svg material bag_personal_plus %}" + ] + }, + "bag_personal_plus_outline": { + "prefix": "svg.material.bag_personal_plus_outline", + "description": "SVG material - bag_personal_plus_outline", + "body": [ + "{% svg material bag_personal_plus_outline %}" + ] + }, + "bag_personal_tag": { + "prefix": "svg.material.bag_personal_tag", + "description": "SVG material - bag_personal_tag", + "body": [ + "{% svg material bag_personal_tag %}" + ] + }, + "bag_personal_tag_outline": { + "prefix": "svg.material.bag_personal_tag_outline", + "description": "SVG material - bag_personal_tag_outline", + "body": [ + "{% svg material bag_personal_tag_outline %}" + ] + }, + "bag_suitcase": { + "prefix": "svg.material.bag_suitcase", + "description": "SVG material - bag_suitcase", + "body": [ + "{% svg material bag_suitcase %}" + ] + }, + "bag_suitcase_off": { + "prefix": "svg.material.bag_suitcase_off", + "description": "SVG material - bag_suitcase_off", + "body": [ + "{% svg material bag_suitcase_off %}" + ] + }, + "bag_suitcase_off_outline": { + "prefix": "svg.material.bag_suitcase_off_outline", + "description": "SVG material - bag_suitcase_off_outline", + "body": [ + "{% svg material bag_suitcase_off_outline %}" + ] + }, + "bag_suitcase_outline": { + "prefix": "svg.material.bag_suitcase_outline", + "description": "SVG material - bag_suitcase_outline", + "body": [ + "{% svg material bag_suitcase_outline %}" + ] + }, + "baguette": { + "prefix": "svg.material.baguette", + "description": "SVG material - baguette", + "body": [ + "{% svg material baguette %}" + ] + }, + "balcony": { + "prefix": "svg.material.balcony", + "description": "SVG material - balcony", + "body": [ + "{% svg material balcony %}" + ] + }, + "balloon": { + "prefix": "svg.material.balloon", + "description": "SVG material - balloon", + "body": [ + "{% svg material balloon %}" + ] + }, + "ballot": { + "prefix": "svg.material.ballot", + "description": "SVG material - ballot", + "body": [ + "{% svg material ballot %}" + ] + }, + "ballot_outline": { + "prefix": "svg.material.ballot_outline", + "description": "SVG material - ballot_outline", + "body": [ + "{% svg material ballot_outline %}" + ] + }, + "ballot_recount": { + "prefix": "svg.material.ballot_recount", + "description": "SVG material - ballot_recount", + "body": [ + "{% svg material ballot_recount %}" + ] + }, + "ballot_recount_outline": { + "prefix": "svg.material.ballot_recount_outline", + "description": "SVG material - ballot_recount_outline", + "body": [ + "{% svg material ballot_recount_outline %}" + ] + }, + "bandage": { + "prefix": "svg.material.bandage", + "description": "SVG material - bandage", + "body": [ + "{% svg material bandage %}" + ] + }, + "bank": { + "prefix": "svg.material.bank", + "description": "SVG material - bank", + "body": [ + "{% svg material bank %}" + ] + }, + "bank_check": { + "prefix": "svg.material.bank_check", + "description": "SVG material - bank_check", + "body": [ + "{% svg material bank_check %}" + ] + }, + "bank_circle": { + "prefix": "svg.material.bank_circle", + "description": "SVG material - bank_circle", + "body": [ + "{% svg material bank_circle %}" + ] + }, + "bank_circle_outline": { + "prefix": "svg.material.bank_circle_outline", + "description": "SVG material - bank_circle_outline", + "body": [ + "{% svg material bank_circle_outline %}" + ] + }, + "bank_minus": { + "prefix": "svg.material.bank_minus", + "description": "SVG material - bank_minus", + "body": [ + "{% svg material bank_minus %}" + ] + }, + "bank_off": { + "prefix": "svg.material.bank_off", + "description": "SVG material - bank_off", + "body": [ + "{% svg material bank_off %}" + ] + }, + "bank_off_outline": { + "prefix": "svg.material.bank_off_outline", + "description": "SVG material - bank_off_outline", + "body": [ + "{% svg material bank_off_outline %}" + ] + }, + "bank_outline": { + "prefix": "svg.material.bank_outline", + "description": "SVG material - bank_outline", + "body": [ + "{% svg material bank_outline %}" + ] + }, + "bank_plus": { + "prefix": "svg.material.bank_plus", + "description": "SVG material - bank_plus", + "body": [ + "{% svg material bank_plus %}" + ] + }, + "bank_remove": { + "prefix": "svg.material.bank_remove", + "description": "SVG material - bank_remove", + "body": [ + "{% svg material bank_remove %}" + ] + }, + "bank_transfer": { + "prefix": "svg.material.bank_transfer", + "description": "SVG material - bank_transfer", + "body": [ + "{% svg material bank_transfer %}" + ] + }, + "bank_transfer_in": { + "prefix": "svg.material.bank_transfer_in", + "description": "SVG material - bank_transfer_in", + "body": [ + "{% svg material bank_transfer_in %}" + ] + }, + "bank_transfer_out": { + "prefix": "svg.material.bank_transfer_out", + "description": "SVG material - bank_transfer_out", + "body": [ + "{% svg material bank_transfer_out %}" + ] + }, + "barcode": { + "prefix": "svg.material.barcode", + "description": "SVG material - barcode", + "body": [ + "{% svg material barcode %}" + ] + }, + "barcode_off": { + "prefix": "svg.material.barcode_off", + "description": "SVG material - barcode_off", + "body": [ + "{% svg material barcode_off %}" + ] + }, + "barcode_scan": { + "prefix": "svg.material.barcode_scan", + "description": "SVG material - barcode_scan", + "body": [ + "{% svg material barcode_scan %}" + ] + }, + "barley": { + "prefix": "svg.material.barley", + "description": "SVG material - barley", + "body": [ + "{% svg material barley %}" + ] + }, + "barley_off": { + "prefix": "svg.material.barley_off", + "description": "SVG material - barley_off", + "body": [ + "{% svg material barley_off %}" + ] + }, + "barn": { + "prefix": "svg.material.barn", + "description": "SVG material - barn", + "body": [ + "{% svg material barn %}" + ] + }, + "barrel": { + "prefix": "svg.material.barrel", + "description": "SVG material - barrel", + "body": [ + "{% svg material barrel %}" + ] + }, + "barrel_outline": { + "prefix": "svg.material.barrel_outline", + "description": "SVG material - barrel_outline", + "body": [ + "{% svg material barrel_outline %}" + ] + }, + "baseball": { + "prefix": "svg.material.baseball", + "description": "SVG material - baseball", + "body": [ + "{% svg material baseball %}" + ] + }, + "baseball_bat": { + "prefix": "svg.material.baseball_bat", + "description": "SVG material - baseball_bat", + "body": [ + "{% svg material baseball_bat %}" + ] + }, + "baseball_diamond": { + "prefix": "svg.material.baseball_diamond", + "description": "SVG material - baseball_diamond", + "body": [ + "{% svg material baseball_diamond %}" + ] + }, + "baseball_diamond_outline": { + "prefix": "svg.material.baseball_diamond_outline", + "description": "SVG material - baseball_diamond_outline", + "body": [ + "{% svg material baseball_diamond_outline %}" + ] + }, + "baseball_outline": { + "prefix": "svg.material.baseball_outline", + "description": "SVG material - baseball_outline", + "body": [ + "{% svg material baseball_outline %}" + ] + }, + "bash": { + "prefix": "svg.material.bash", + "description": "SVG material - bash", + "body": [ + "{% svg material bash %}" + ] + }, + "basket": { + "prefix": "svg.material.basket", + "description": "SVG material - basket", + "body": [ + "{% svg material basket %}" + ] + }, + "basket_check": { + "prefix": "svg.material.basket_check", + "description": "SVG material - basket_check", + "body": [ + "{% svg material basket_check %}" + ] + }, + "basket_check_outline": { + "prefix": "svg.material.basket_check_outline", + "description": "SVG material - basket_check_outline", + "body": [ + "{% svg material basket_check_outline %}" + ] + }, + "basket_fill": { + "prefix": "svg.material.basket_fill", + "description": "SVG material - basket_fill", + "body": [ + "{% svg material basket_fill %}" + ] + }, + "basket_minus": { + "prefix": "svg.material.basket_minus", + "description": "SVG material - basket_minus", + "body": [ + "{% svg material basket_minus %}" + ] + }, + "basket_minus_outline": { + "prefix": "svg.material.basket_minus_outline", + "description": "SVG material - basket_minus_outline", + "body": [ + "{% svg material basket_minus_outline %}" + ] + }, + "basket_off": { + "prefix": "svg.material.basket_off", + "description": "SVG material - basket_off", + "body": [ + "{% svg material basket_off %}" + ] + }, + "basket_off_outline": { + "prefix": "svg.material.basket_off_outline", + "description": "SVG material - basket_off_outline", + "body": [ + "{% svg material basket_off_outline %}" + ] + }, + "basket_outline": { + "prefix": "svg.material.basket_outline", + "description": "SVG material - basket_outline", + "body": [ + "{% svg material basket_outline %}" + ] + }, + "basket_plus": { + "prefix": "svg.material.basket_plus", + "description": "SVG material - basket_plus", + "body": [ + "{% svg material basket_plus %}" + ] + }, + "basket_plus_outline": { + "prefix": "svg.material.basket_plus_outline", + "description": "SVG material - basket_plus_outline", + "body": [ + "{% svg material basket_plus_outline %}" + ] + }, + "basket_remove": { + "prefix": "svg.material.basket_remove", + "description": "SVG material - basket_remove", + "body": [ + "{% svg material basket_remove %}" + ] + }, + "basket_remove_outline": { + "prefix": "svg.material.basket_remove_outline", + "description": "SVG material - basket_remove_outline", + "body": [ + "{% svg material basket_remove_outline %}" + ] + }, + "basket_unfill": { + "prefix": "svg.material.basket_unfill", + "description": "SVG material - basket_unfill", + "body": [ + "{% svg material basket_unfill %}" + ] + }, + "basketball": { + "prefix": "svg.material.basketball", + "description": "SVG material - basketball", + "body": [ + "{% svg material basketball %}" + ] + }, + "basketball_hoop": { + "prefix": "svg.material.basketball_hoop", + "description": "SVG material - basketball_hoop", + "body": [ + "{% svg material basketball_hoop %}" + ] + }, + "basketball_hoop_outline": { + "prefix": "svg.material.basketball_hoop_outline", + "description": "SVG material - basketball_hoop_outline", + "body": [ + "{% svg material basketball_hoop_outline %}" + ] + }, + "bat": { + "prefix": "svg.material.bat", + "description": "SVG material - bat", + "body": [ + "{% svg material bat %}" + ] + }, + "bathtub": { + "prefix": "svg.material.bathtub", + "description": "SVG material - bathtub", + "body": [ + "{% svg material bathtub %}" + ] + }, + "bathtub_outline": { + "prefix": "svg.material.bathtub_outline", + "description": "SVG material - bathtub_outline", + "body": [ + "{% svg material bathtub_outline %}" + ] + }, + "battery": { + "prefix": "svg.material.battery", + "description": "SVG material - battery", + "body": [ + "{% svg material battery %}" + ] + }, + "battery_10": { + "prefix": "svg.material.battery_10", + "description": "SVG material - battery_10", + "body": [ + "{% svg material battery_10 %}" + ] + }, + "battery_10_bluetooth": { + "prefix": "svg.material.battery_10_bluetooth", + "description": "SVG material - battery_10_bluetooth", + "body": [ + "{% svg material battery_10_bluetooth %}" + ] + }, + "battery_20": { + "prefix": "svg.material.battery_20", + "description": "SVG material - battery_20", + "body": [ + "{% svg material battery_20 %}" + ] + }, + "battery_20_bluetooth": { + "prefix": "svg.material.battery_20_bluetooth", + "description": "SVG material - battery_20_bluetooth", + "body": [ + "{% svg material battery_20_bluetooth %}" + ] + }, + "battery_30": { + "prefix": "svg.material.battery_30", + "description": "SVG material - battery_30", + "body": [ + "{% svg material battery_30 %}" + ] + }, + "battery_30_bluetooth": { + "prefix": "svg.material.battery_30_bluetooth", + "description": "SVG material - battery_30_bluetooth", + "body": [ + "{% svg material battery_30_bluetooth %}" + ] + }, + "battery_40": { + "prefix": "svg.material.battery_40", + "description": "SVG material - battery_40", + "body": [ + "{% svg material battery_40 %}" + ] + }, + "battery_40_bluetooth": { + "prefix": "svg.material.battery_40_bluetooth", + "description": "SVG material - battery_40_bluetooth", + "body": [ + "{% svg material battery_40_bluetooth %}" + ] + }, + "battery_50": { + "prefix": "svg.material.battery_50", + "description": "SVG material - battery_50", + "body": [ + "{% svg material battery_50 %}" + ] + }, + "battery_50_bluetooth": { + "prefix": "svg.material.battery_50_bluetooth", + "description": "SVG material - battery_50_bluetooth", + "body": [ + "{% svg material battery_50_bluetooth %}" + ] + }, + "battery_60": { + "prefix": "svg.material.battery_60", + "description": "SVG material - battery_60", + "body": [ + "{% svg material battery_60 %}" + ] + }, + "battery_60_bluetooth": { + "prefix": "svg.material.battery_60_bluetooth", + "description": "SVG material - battery_60_bluetooth", + "body": [ + "{% svg material battery_60_bluetooth %}" + ] + }, + "battery_70": { + "prefix": "svg.material.battery_70", + "description": "SVG material - battery_70", + "body": [ + "{% svg material battery_70 %}" + ] + }, + "battery_70_bluetooth": { + "prefix": "svg.material.battery_70_bluetooth", + "description": "SVG material - battery_70_bluetooth", + "body": [ + "{% svg material battery_70_bluetooth %}" + ] + }, + "battery_80": { + "prefix": "svg.material.battery_80", + "description": "SVG material - battery_80", + "body": [ + "{% svg material battery_80 %}" + ] + }, + "battery_80_bluetooth": { + "prefix": "svg.material.battery_80_bluetooth", + "description": "SVG material - battery_80_bluetooth", + "body": [ + "{% svg material battery_80_bluetooth %}" + ] + }, + "battery_90": { + "prefix": "svg.material.battery_90", + "description": "SVG material - battery_90", + "body": [ + "{% svg material battery_90 %}" + ] + }, + "battery_90_bluetooth": { + "prefix": "svg.material.battery_90_bluetooth", + "description": "SVG material - battery_90_bluetooth", + "body": [ + "{% svg material battery_90_bluetooth %}" + ] + }, + "battery_alert": { + "prefix": "svg.material.battery_alert", + "description": "SVG material - battery_alert", + "body": [ + "{% svg material battery_alert %}" + ] + }, + "battery_alert_bluetooth": { + "prefix": "svg.material.battery_alert_bluetooth", + "description": "SVG material - battery_alert_bluetooth", + "body": [ + "{% svg material battery_alert_bluetooth %}" + ] + }, + "battery_alert_variant": { + "prefix": "svg.material.battery_alert_variant", + "description": "SVG material - battery_alert_variant", + "body": [ + "{% svg material battery_alert_variant %}" + ] + }, + "battery_alert_variant_outline": { + "prefix": "svg.material.battery_alert_variant_outline", + "description": "SVG material - battery_alert_variant_outline", + "body": [ + "{% svg material battery_alert_variant_outline %}" + ] + }, + "battery_arrow_down": { + "prefix": "svg.material.battery_arrow_down", + "description": "SVG material - battery_arrow_down", + "body": [ + "{% svg material battery_arrow_down %}" + ] + }, + "battery_arrow_down_outline": { + "prefix": "svg.material.battery_arrow_down_outline", + "description": "SVG material - battery_arrow_down_outline", + "body": [ + "{% svg material battery_arrow_down_outline %}" + ] + }, + "battery_arrow_up": { + "prefix": "svg.material.battery_arrow_up", + "description": "SVG material - battery_arrow_up", + "body": [ + "{% svg material battery_arrow_up %}" + ] + }, + "battery_arrow_up_outline": { + "prefix": "svg.material.battery_arrow_up_outline", + "description": "SVG material - battery_arrow_up_outline", + "body": [ + "{% svg material battery_arrow_up_outline %}" + ] + }, + "battery_bluetooth": { + "prefix": "svg.material.battery_bluetooth", + "description": "SVG material - battery_bluetooth", + "body": [ + "{% svg material battery_bluetooth %}" + ] + }, + "battery_bluetooth_variant": { + "prefix": "svg.material.battery_bluetooth_variant", + "description": "SVG material - battery_bluetooth_variant", + "body": [ + "{% svg material battery_bluetooth_variant %}" + ] + }, + "battery_charging": { + "prefix": "svg.material.battery_charging", + "description": "SVG material - battery_charging", + "body": [ + "{% svg material battery_charging %}" + ] + }, + "battery_charging_10": { + "prefix": "svg.material.battery_charging_10", + "description": "SVG material - battery_charging_10", + "body": [ + "{% svg material battery_charging_10 %}" + ] + }, + "battery_charging_100": { + "prefix": "svg.material.battery_charging_100", + "description": "SVG material - battery_charging_100", + "body": [ + "{% svg material battery_charging_100 %}" + ] + }, + "battery_charging_20": { + "prefix": "svg.material.battery_charging_20", + "description": "SVG material - battery_charging_20", + "body": [ + "{% svg material battery_charging_20 %}" + ] + }, + "battery_charging_30": { + "prefix": "svg.material.battery_charging_30", + "description": "SVG material - battery_charging_30", + "body": [ + "{% svg material battery_charging_30 %}" + ] + }, + "battery_charging_40": { + "prefix": "svg.material.battery_charging_40", + "description": "SVG material - battery_charging_40", + "body": [ + "{% svg material battery_charging_40 %}" + ] + }, + "battery_charging_50": { + "prefix": "svg.material.battery_charging_50", + "description": "SVG material - battery_charging_50", + "body": [ + "{% svg material battery_charging_50 %}" + ] + }, + "battery_charging_60": { + "prefix": "svg.material.battery_charging_60", + "description": "SVG material - battery_charging_60", + "body": [ + "{% svg material battery_charging_60 %}" + ] + }, + "battery_charging_70": { + "prefix": "svg.material.battery_charging_70", + "description": "SVG material - battery_charging_70", + "body": [ + "{% svg material battery_charging_70 %}" + ] + }, + "battery_charging_80": { + "prefix": "svg.material.battery_charging_80", + "description": "SVG material - battery_charging_80", + "body": [ + "{% svg material battery_charging_80 %}" + ] + }, + "battery_charging_90": { + "prefix": "svg.material.battery_charging_90", + "description": "SVG material - battery_charging_90", + "body": [ + "{% svg material battery_charging_90 %}" + ] + }, + "battery_charging_high": { + "prefix": "svg.material.battery_charging_high", + "description": "SVG material - battery_charging_high", + "body": [ + "{% svg material battery_charging_high %}" + ] + }, + "battery_charging_low": { + "prefix": "svg.material.battery_charging_low", + "description": "SVG material - battery_charging_low", + "body": [ + "{% svg material battery_charging_low %}" + ] + }, + "battery_charging_medium": { + "prefix": "svg.material.battery_charging_medium", + "description": "SVG material - battery_charging_medium", + "body": [ + "{% svg material battery_charging_medium %}" + ] + }, + "battery_charging_outline": { + "prefix": "svg.material.battery_charging_outline", + "description": "SVG material - battery_charging_outline", + "body": [ + "{% svg material battery_charging_outline %}" + ] + }, + "battery_charging_wireless": { + "prefix": "svg.material.battery_charging_wireless", + "description": "SVG material - battery_charging_wireless", + "body": [ + "{% svg material battery_charging_wireless %}" + ] + }, + "battery_charging_wireless_10": { + "prefix": "svg.material.battery_charging_wireless_10", + "description": "SVG material - battery_charging_wireless_10", + "body": [ + "{% svg material battery_charging_wireless_10 %}" + ] + }, + "battery_charging_wireless_20": { + "prefix": "svg.material.battery_charging_wireless_20", + "description": "SVG material - battery_charging_wireless_20", + "body": [ + "{% svg material battery_charging_wireless_20 %}" + ] + }, + "battery_charging_wireless_30": { + "prefix": "svg.material.battery_charging_wireless_30", + "description": "SVG material - battery_charging_wireless_30", + "body": [ + "{% svg material battery_charging_wireless_30 %}" + ] + }, + "battery_charging_wireless_40": { + "prefix": "svg.material.battery_charging_wireless_40", + "description": "SVG material - battery_charging_wireless_40", + "body": [ + "{% svg material battery_charging_wireless_40 %}" + ] + }, + "battery_charging_wireless_50": { + "prefix": "svg.material.battery_charging_wireless_50", + "description": "SVG material - battery_charging_wireless_50", + "body": [ + "{% svg material battery_charging_wireless_50 %}" + ] + }, + "battery_charging_wireless_60": { + "prefix": "svg.material.battery_charging_wireless_60", + "description": "SVG material - battery_charging_wireless_60", + "body": [ + "{% svg material battery_charging_wireless_60 %}" + ] + }, + "battery_charging_wireless_70": { + "prefix": "svg.material.battery_charging_wireless_70", + "description": "SVG material - battery_charging_wireless_70", + "body": [ + "{% svg material battery_charging_wireless_70 %}" + ] + }, + "battery_charging_wireless_80": { + "prefix": "svg.material.battery_charging_wireless_80", + "description": "SVG material - battery_charging_wireless_80", + "body": [ + "{% svg material battery_charging_wireless_80 %}" + ] + }, + "battery_charging_wireless_90": { + "prefix": "svg.material.battery_charging_wireless_90", + "description": "SVG material - battery_charging_wireless_90", + "body": [ + "{% svg material battery_charging_wireless_90 %}" + ] + }, + "battery_charging_wireless_alert": { + "prefix": "svg.material.battery_charging_wireless_alert", + "description": "SVG material - battery_charging_wireless_alert", + "body": [ + "{% svg material battery_charging_wireless_alert %}" + ] + }, + "battery_charging_wireless_outline": { + "prefix": "svg.material.battery_charging_wireless_outline", + "description": "SVG material - battery_charging_wireless_outline", + "body": [ + "{% svg material battery_charging_wireless_outline %}" + ] + }, + "battery_check": { + "prefix": "svg.material.battery_check", + "description": "SVG material - battery_check", + "body": [ + "{% svg material battery_check %}" + ] + }, + "battery_check_outline": { + "prefix": "svg.material.battery_check_outline", + "description": "SVG material - battery_check_outline", + "body": [ + "{% svg material battery_check_outline %}" + ] + }, + "battery_clock": { + "prefix": "svg.material.battery_clock", + "description": "SVG material - battery_clock", + "body": [ + "{% svg material battery_clock %}" + ] + }, + "battery_clock_outline": { + "prefix": "svg.material.battery_clock_outline", + "description": "SVG material - battery_clock_outline", + "body": [ + "{% svg material battery_clock_outline %}" + ] + }, + "battery_heart": { + "prefix": "svg.material.battery_heart", + "description": "SVG material - battery_heart", + "body": [ + "{% svg material battery_heart %}" + ] + }, + "battery_heart_outline": { + "prefix": "svg.material.battery_heart_outline", + "description": "SVG material - battery_heart_outline", + "body": [ + "{% svg material battery_heart_outline %}" + ] + }, + "battery_heart_variant": { + "prefix": "svg.material.battery_heart_variant", + "description": "SVG material - battery_heart_variant", + "body": [ + "{% svg material battery_heart_variant %}" + ] + }, + "battery_high": { + "prefix": "svg.material.battery_high", + "description": "SVG material - battery_high", + "body": [ + "{% svg material battery_high %}" + ] + }, + "battery_lock": { + "prefix": "svg.material.battery_lock", + "description": "SVG material - battery_lock", + "body": [ + "{% svg material battery_lock %}" + ] + }, + "battery_lock_open": { + "prefix": "svg.material.battery_lock_open", + "description": "SVG material - battery_lock_open", + "body": [ + "{% svg material battery_lock_open %}" + ] + }, + "battery_low": { + "prefix": "svg.material.battery_low", + "description": "SVG material - battery_low", + "body": [ + "{% svg material battery_low %}" + ] + }, + "battery_medium": { + "prefix": "svg.material.battery_medium", + "description": "SVG material - battery_medium", + "body": [ + "{% svg material battery_medium %}" + ] + }, + "battery_minus": { + "prefix": "svg.material.battery_minus", + "description": "SVG material - battery_minus", + "body": [ + "{% svg material battery_minus %}" + ] + }, + "battery_minus_outline": { + "prefix": "svg.material.battery_minus_outline", + "description": "SVG material - battery_minus_outline", + "body": [ + "{% svg material battery_minus_outline %}" + ] + }, + "battery_minus_variant": { + "prefix": "svg.material.battery_minus_variant", + "description": "SVG material - battery_minus_variant", + "body": [ + "{% svg material battery_minus_variant %}" + ] + }, + "battery_negative": { + "prefix": "svg.material.battery_negative", + "description": "SVG material - battery_negative", + "body": [ + "{% svg material battery_negative %}" + ] + }, + "battery_off": { + "prefix": "svg.material.battery_off", + "description": "SVG material - battery_off", + "body": [ + "{% svg material battery_off %}" + ] + }, + "battery_off_outline": { + "prefix": "svg.material.battery_off_outline", + "description": "SVG material - battery_off_outline", + "body": [ + "{% svg material battery_off_outline %}" + ] + }, + "battery_outline": { + "prefix": "svg.material.battery_outline", + "description": "SVG material - battery_outline", + "body": [ + "{% svg material battery_outline %}" + ] + }, + "battery_plus": { + "prefix": "svg.material.battery_plus", + "description": "SVG material - battery_plus", + "body": [ + "{% svg material battery_plus %}" + ] + }, + "battery_plus_outline": { + "prefix": "svg.material.battery_plus_outline", + "description": "SVG material - battery_plus_outline", + "body": [ + "{% svg material battery_plus_outline %}" + ] + }, + "battery_plus_variant": { + "prefix": "svg.material.battery_plus_variant", + "description": "SVG material - battery_plus_variant", + "body": [ + "{% svg material battery_plus_variant %}" + ] + }, + "battery_positive": { + "prefix": "svg.material.battery_positive", + "description": "SVG material - battery_positive", + "body": [ + "{% svg material battery_positive %}" + ] + }, + "battery_remove": { + "prefix": "svg.material.battery_remove", + "description": "SVG material - battery_remove", + "body": [ + "{% svg material battery_remove %}" + ] + }, + "battery_remove_outline": { + "prefix": "svg.material.battery_remove_outline", + "description": "SVG material - battery_remove_outline", + "body": [ + "{% svg material battery_remove_outline %}" + ] + }, + "battery_sync": { + "prefix": "svg.material.battery_sync", + "description": "SVG material - battery_sync", + "body": [ + "{% svg material battery_sync %}" + ] + }, + "battery_sync_outline": { + "prefix": "svg.material.battery_sync_outline", + "description": "SVG material - battery_sync_outline", + "body": [ + "{% svg material battery_sync_outline %}" + ] + }, + "battery_unknown": { + "prefix": "svg.material.battery_unknown", + "description": "SVG material - battery_unknown", + "body": [ + "{% svg material battery_unknown %}" + ] + }, + "battery_unknown_bluetooth": { + "prefix": "svg.material.battery_unknown_bluetooth", + "description": "SVG material - battery_unknown_bluetooth", + "body": [ + "{% svg material battery_unknown_bluetooth %}" + ] + }, + "beach": { + "prefix": "svg.material.beach", + "description": "SVG material - beach", + "body": [ + "{% svg material beach %}" + ] + }, + "beaker": { + "prefix": "svg.material.beaker", + "description": "SVG material - beaker", + "body": [ + "{% svg material beaker %}" + ] + }, + "beaker_alert": { + "prefix": "svg.material.beaker_alert", + "description": "SVG material - beaker_alert", + "body": [ + "{% svg material beaker_alert %}" + ] + }, + "beaker_alert_outline": { + "prefix": "svg.material.beaker_alert_outline", + "description": "SVG material - beaker_alert_outline", + "body": [ + "{% svg material beaker_alert_outline %}" + ] + }, + "beaker_check": { + "prefix": "svg.material.beaker_check", + "description": "SVG material - beaker_check", + "body": [ + "{% svg material beaker_check %}" + ] + }, + "beaker_check_outline": { + "prefix": "svg.material.beaker_check_outline", + "description": "SVG material - beaker_check_outline", + "body": [ + "{% svg material beaker_check_outline %}" + ] + }, + "beaker_minus": { + "prefix": "svg.material.beaker_minus", + "description": "SVG material - beaker_minus", + "body": [ + "{% svg material beaker_minus %}" + ] + }, + "beaker_minus_outline": { + "prefix": "svg.material.beaker_minus_outline", + "description": "SVG material - beaker_minus_outline", + "body": [ + "{% svg material beaker_minus_outline %}" + ] + }, + "beaker_outline": { + "prefix": "svg.material.beaker_outline", + "description": "SVG material - beaker_outline", + "body": [ + "{% svg material beaker_outline %}" + ] + }, + "beaker_plus": { + "prefix": "svg.material.beaker_plus", + "description": "SVG material - beaker_plus", + "body": [ + "{% svg material beaker_plus %}" + ] + }, + "beaker_plus_outline": { + "prefix": "svg.material.beaker_plus_outline", + "description": "SVG material - beaker_plus_outline", + "body": [ + "{% svg material beaker_plus_outline %}" + ] + }, + "beaker_question": { + "prefix": "svg.material.beaker_question", + "description": "SVG material - beaker_question", + "body": [ + "{% svg material beaker_question %}" + ] + }, + "beaker_question_outline": { + "prefix": "svg.material.beaker_question_outline", + "description": "SVG material - beaker_question_outline", + "body": [ + "{% svg material beaker_question_outline %}" + ] + }, + "beaker_remove": { + "prefix": "svg.material.beaker_remove", + "description": "SVG material - beaker_remove", + "body": [ + "{% svg material beaker_remove %}" + ] + }, + "beaker_remove_outline": { + "prefix": "svg.material.beaker_remove_outline", + "description": "SVG material - beaker_remove_outline", + "body": [ + "{% svg material beaker_remove_outline %}" + ] + }, + "bed": { + "prefix": "svg.material.bed", + "description": "SVG material - bed", + "body": [ + "{% svg material bed %}" + ] + }, + "bed_clock": { + "prefix": "svg.material.bed_clock", + "description": "SVG material - bed_clock", + "body": [ + "{% svg material bed_clock %}" + ] + }, + "bed_double": { + "prefix": "svg.material.bed_double", + "description": "SVG material - bed_double", + "body": [ + "{% svg material bed_double %}" + ] + }, + "bed_double_outline": { + "prefix": "svg.material.bed_double_outline", + "description": "SVG material - bed_double_outline", + "body": [ + "{% svg material bed_double_outline %}" + ] + }, + "bed_empty": { + "prefix": "svg.material.bed_empty", + "description": "SVG material - bed_empty", + "body": [ + "{% svg material bed_empty %}" + ] + }, + "bed_king": { + "prefix": "svg.material.bed_king", + "description": "SVG material - bed_king", + "body": [ + "{% svg material bed_king %}" + ] + }, + "bed_king_outline": { + "prefix": "svg.material.bed_king_outline", + "description": "SVG material - bed_king_outline", + "body": [ + "{% svg material bed_king_outline %}" + ] + }, + "bed_outline": { + "prefix": "svg.material.bed_outline", + "description": "SVG material - bed_outline", + "body": [ + "{% svg material bed_outline %}" + ] + }, + "bed_queen": { + "prefix": "svg.material.bed_queen", + "description": "SVG material - bed_queen", + "body": [ + "{% svg material bed_queen %}" + ] + }, + "bed_queen_outline": { + "prefix": "svg.material.bed_queen_outline", + "description": "SVG material - bed_queen_outline", + "body": [ + "{% svg material bed_queen_outline %}" + ] + }, + "bed_single": { + "prefix": "svg.material.bed_single", + "description": "SVG material - bed_single", + "body": [ + "{% svg material bed_single %}" + ] + }, + "bed_single_outline": { + "prefix": "svg.material.bed_single_outline", + "description": "SVG material - bed_single_outline", + "body": [ + "{% svg material bed_single_outline %}" + ] + }, + "bee": { + "prefix": "svg.material.bee", + "description": "SVG material - bee", + "body": [ + "{% svg material bee %}" + ] + }, + "bee_flower": { + "prefix": "svg.material.bee_flower", + "description": "SVG material - bee_flower", + "body": [ + "{% svg material bee_flower %}" + ] + }, + "beehive_off_outline": { + "prefix": "svg.material.beehive_off_outline", + "description": "SVG material - beehive_off_outline", + "body": [ + "{% svg material beehive_off_outline %}" + ] + }, + "beehive_outline": { + "prefix": "svg.material.beehive_outline", + "description": "SVG material - beehive_outline", + "body": [ + "{% svg material beehive_outline %}" + ] + }, + "beekeeper": { + "prefix": "svg.material.beekeeper", + "description": "SVG material - beekeeper", + "body": [ + "{% svg material beekeeper %}" + ] + }, + "beer": { + "prefix": "svg.material.beer", + "description": "SVG material - beer", + "body": [ + "{% svg material beer %}" + ] + }, + "beer_outline": { + "prefix": "svg.material.beer_outline", + "description": "SVG material - beer_outline", + "body": [ + "{% svg material beer_outline %}" + ] + }, + "bell": { + "prefix": "svg.material.bell", + "description": "SVG material - bell", + "body": [ + "{% svg material bell %}" + ] + }, + "bell_alert": { + "prefix": "svg.material.bell_alert", + "description": "SVG material - bell_alert", + "body": [ + "{% svg material bell_alert %}" + ] + }, + "bell_alert_outline": { + "prefix": "svg.material.bell_alert_outline", + "description": "SVG material - bell_alert_outline", + "body": [ + "{% svg material bell_alert_outline %}" + ] + }, + "bell_badge": { + "prefix": "svg.material.bell_badge", + "description": "SVG material - bell_badge", + "body": [ + "{% svg material bell_badge %}" + ] + }, + "bell_badge_outline": { + "prefix": "svg.material.bell_badge_outline", + "description": "SVG material - bell_badge_outline", + "body": [ + "{% svg material bell_badge_outline %}" + ] + }, + "bell_cancel": { + "prefix": "svg.material.bell_cancel", + "description": "SVG material - bell_cancel", + "body": [ + "{% svg material bell_cancel %}" + ] + }, + "bell_cancel_outline": { + "prefix": "svg.material.bell_cancel_outline", + "description": "SVG material - bell_cancel_outline", + "body": [ + "{% svg material bell_cancel_outline %}" + ] + }, + "bell_check": { + "prefix": "svg.material.bell_check", + "description": "SVG material - bell_check", + "body": [ + "{% svg material bell_check %}" + ] + }, + "bell_check_outline": { + "prefix": "svg.material.bell_check_outline", + "description": "SVG material - bell_check_outline", + "body": [ + "{% svg material bell_check_outline %}" + ] + }, + "bell_circle": { + "prefix": "svg.material.bell_circle", + "description": "SVG material - bell_circle", + "body": [ + "{% svg material bell_circle %}" + ] + }, + "bell_circle_outline": { + "prefix": "svg.material.bell_circle_outline", + "description": "SVG material - bell_circle_outline", + "body": [ + "{% svg material bell_circle_outline %}" + ] + }, + "bell_cog": { + "prefix": "svg.material.bell_cog", + "description": "SVG material - bell_cog", + "body": [ + "{% svg material bell_cog %}" + ] + }, + "bell_cog_outline": { + "prefix": "svg.material.bell_cog_outline", + "description": "SVG material - bell_cog_outline", + "body": [ + "{% svg material bell_cog_outline %}" + ] + }, + "bell_minus": { + "prefix": "svg.material.bell_minus", + "description": "SVG material - bell_minus", + "body": [ + "{% svg material bell_minus %}" + ] + }, + "bell_minus_outline": { + "prefix": "svg.material.bell_minus_outline", + "description": "SVG material - bell_minus_outline", + "body": [ + "{% svg material bell_minus_outline %}" + ] + }, + "bell_off": { + "prefix": "svg.material.bell_off", + "description": "SVG material - bell_off", + "body": [ + "{% svg material bell_off %}" + ] + }, + "bell_off_outline": { + "prefix": "svg.material.bell_off_outline", + "description": "SVG material - bell_off_outline", + "body": [ + "{% svg material bell_off_outline %}" + ] + }, + "bell_outline": { + "prefix": "svg.material.bell_outline", + "description": "SVG material - bell_outline", + "body": [ + "{% svg material bell_outline %}" + ] + }, + "bell_plus": { + "prefix": "svg.material.bell_plus", + "description": "SVG material - bell_plus", + "body": [ + "{% svg material bell_plus %}" + ] + }, + "bell_plus_outline": { + "prefix": "svg.material.bell_plus_outline", + "description": "SVG material - bell_plus_outline", + "body": [ + "{% svg material bell_plus_outline %}" + ] + }, + "bell_remove": { + "prefix": "svg.material.bell_remove", + "description": "SVG material - bell_remove", + "body": [ + "{% svg material bell_remove %}" + ] + }, + "bell_remove_outline": { + "prefix": "svg.material.bell_remove_outline", + "description": "SVG material - bell_remove_outline", + "body": [ + "{% svg material bell_remove_outline %}" + ] + }, + "bell_ring": { + "prefix": "svg.material.bell_ring", + "description": "SVG material - bell_ring", + "body": [ + "{% svg material bell_ring %}" + ] + }, + "bell_ring_outline": { + "prefix": "svg.material.bell_ring_outline", + "description": "SVG material - bell_ring_outline", + "body": [ + "{% svg material bell_ring_outline %}" + ] + }, + "bell_sleep": { + "prefix": "svg.material.bell_sleep", + "description": "SVG material - bell_sleep", + "body": [ + "{% svg material bell_sleep %}" + ] + }, + "bell_sleep_outline": { + "prefix": "svg.material.bell_sleep_outline", + "description": "SVG material - bell_sleep_outline", + "body": [ + "{% svg material bell_sleep_outline %}" + ] + }, + "bench": { + "prefix": "svg.material.bench", + "description": "SVG material - bench", + "body": [ + "{% svg material bench %}" + ] + }, + "bench_back": { + "prefix": "svg.material.bench_back", + "description": "SVG material - bench_back", + "body": [ + "{% svg material bench_back %}" + ] + }, + "beta": { + "prefix": "svg.material.beta", + "description": "SVG material - beta", + "body": [ + "{% svg material beta %}" + ] + }, + "betamax": { + "prefix": "svg.material.betamax", + "description": "SVG material - betamax", + "body": [ + "{% svg material betamax %}" + ] + }, + "biathlon": { + "prefix": "svg.material.biathlon", + "description": "SVG material - biathlon", + "body": [ + "{% svg material biathlon %}" + ] + }, + "bicycle": { + "prefix": "svg.material.bicycle", + "description": "SVG material - bicycle", + "body": [ + "{% svg material bicycle %}" + ] + }, + "bicycle_basket": { + "prefix": "svg.material.bicycle_basket", + "description": "SVG material - bicycle_basket", + "body": [ + "{% svg material bicycle_basket %}" + ] + }, + "bicycle_cargo": { + "prefix": "svg.material.bicycle_cargo", + "description": "SVG material - bicycle_cargo", + "body": [ + "{% svg material bicycle_cargo %}" + ] + }, + "bicycle_electric": { + "prefix": "svg.material.bicycle_electric", + "description": "SVG material - bicycle_electric", + "body": [ + "{% svg material bicycle_electric %}" + ] + }, + "bicycle_penny_farthing": { + "prefix": "svg.material.bicycle_penny_farthing", + "description": "SVG material - bicycle_penny_farthing", + "body": [ + "{% svg material bicycle_penny_farthing %}" + ] + }, + "bike": { + "prefix": "svg.material.bike", + "description": "SVG material - bike", + "body": [ + "{% svg material bike %}" + ] + }, + "bike_fast": { + "prefix": "svg.material.bike_fast", + "description": "SVG material - bike_fast", + "body": [ + "{% svg material bike_fast %}" + ] + }, + "bike_pedal": { + "prefix": "svg.material.bike_pedal", + "description": "SVG material - bike_pedal", + "body": [ + "{% svg material bike_pedal %}" + ] + }, + "bike_pedal_clipless": { + "prefix": "svg.material.bike_pedal_clipless", + "description": "SVG material - bike_pedal_clipless", + "body": [ + "{% svg material bike_pedal_clipless %}" + ] + }, + "bike_pedal_mountain": { + "prefix": "svg.material.bike_pedal_mountain", + "description": "SVG material - bike_pedal_mountain", + "body": [ + "{% svg material bike_pedal_mountain %}" + ] + }, + "billboard": { + "prefix": "svg.material.billboard", + "description": "SVG material - billboard", + "body": [ + "{% svg material billboard %}" + ] + }, + "billiards": { + "prefix": "svg.material.billiards", + "description": "SVG material - billiards", + "body": [ + "{% svg material billiards %}" + ] + }, + "billiards_rack": { + "prefix": "svg.material.billiards_rack", + "description": "SVG material - billiards_rack", + "body": [ + "{% svg material billiards_rack %}" + ] + }, + "binoculars": { + "prefix": "svg.material.binoculars", + "description": "SVG material - binoculars", + "body": [ + "{% svg material binoculars %}" + ] + }, + "bio": { + "prefix": "svg.material.bio", + "description": "SVG material - bio", + "body": [ + "{% svg material bio %}" + ] + }, + "biohazard": { + "prefix": "svg.material.biohazard", + "description": "SVG material - biohazard", + "body": [ + "{% svg material biohazard %}" + ] + }, + "bird": { + "prefix": "svg.material.bird", + "description": "SVG material - bird", + "body": [ + "{% svg material bird %}" + ] + }, + "bitbucket": { + "prefix": "svg.material.bitbucket", + "description": "SVG material - bitbucket", + "body": [ + "{% svg material bitbucket %}" + ] + }, + "bitcoin": { + "prefix": "svg.material.bitcoin", + "description": "SVG material - bitcoin", + "body": [ + "{% svg material bitcoin %}" + ] + }, + "black_mesa": { + "prefix": "svg.material.black_mesa", + "description": "SVG material - black_mesa", + "body": [ + "{% svg material black_mesa %}" + ] + }, + "blender": { + "prefix": "svg.material.blender", + "description": "SVG material - blender", + "body": [ + "{% svg material blender %}" + ] + }, + "blender_outline": { + "prefix": "svg.material.blender_outline", + "description": "SVG material - blender_outline", + "body": [ + "{% svg material blender_outline %}" + ] + }, + "blender_software": { + "prefix": "svg.material.blender_software", + "description": "SVG material - blender_software", + "body": [ + "{% svg material blender_software %}" + ] + }, + "blinds": { + "prefix": "svg.material.blinds", + "description": "SVG material - blinds", + "body": [ + "{% svg material blinds %}" + ] + }, + "blinds_horizontal": { + "prefix": "svg.material.blinds_horizontal", + "description": "SVG material - blinds_horizontal", + "body": [ + "{% svg material blinds_horizontal %}" + ] + }, + "blinds_horizontal_closed": { + "prefix": "svg.material.blinds_horizontal_closed", + "description": "SVG material - blinds_horizontal_closed", + "body": [ + "{% svg material blinds_horizontal_closed %}" + ] + }, + "blinds_open": { + "prefix": "svg.material.blinds_open", + "description": "SVG material - blinds_open", + "body": [ + "{% svg material blinds_open %}" + ] + }, + "blinds_vertical": { + "prefix": "svg.material.blinds_vertical", + "description": "SVG material - blinds_vertical", + "body": [ + "{% svg material blinds_vertical %}" + ] + }, + "blinds_vertical_closed": { + "prefix": "svg.material.blinds_vertical_closed", + "description": "SVG material - blinds_vertical_closed", + "body": [ + "{% svg material blinds_vertical_closed %}" + ] + }, + "block_helper": { + "prefix": "svg.material.block_helper", + "description": "SVG material - block_helper", + "body": [ + "{% svg material block_helper %}" + ] + }, + "blood_bag": { + "prefix": "svg.material.blood_bag", + "description": "SVG material - blood_bag", + "body": [ + "{% svg material blood_bag %}" + ] + }, + "bluetooth": { + "prefix": "svg.material.bluetooth", + "description": "SVG material - bluetooth", + "body": [ + "{% svg material bluetooth %}" + ] + }, + "bluetooth_audio": { + "prefix": "svg.material.bluetooth_audio", + "description": "SVG material - bluetooth_audio", + "body": [ + "{% svg material bluetooth_audio %}" + ] + }, + "bluetooth_connect": { + "prefix": "svg.material.bluetooth_connect", + "description": "SVG material - bluetooth_connect", + "body": [ + "{% svg material bluetooth_connect %}" + ] + }, + "bluetooth_off": { + "prefix": "svg.material.bluetooth_off", + "description": "SVG material - bluetooth_off", + "body": [ + "{% svg material bluetooth_off %}" + ] + }, + "bluetooth_settings": { + "prefix": "svg.material.bluetooth_settings", + "description": "SVG material - bluetooth_settings", + "body": [ + "{% svg material bluetooth_settings %}" + ] + }, + "bluetooth_transfer": { + "prefix": "svg.material.bluetooth_transfer", + "description": "SVG material - bluetooth_transfer", + "body": [ + "{% svg material bluetooth_transfer %}" + ] + }, + "blur": { + "prefix": "svg.material.blur", + "description": "SVG material - blur", + "body": [ + "{% svg material blur %}" + ] + }, + "blur_linear": { + "prefix": "svg.material.blur_linear", + "description": "SVG material - blur_linear", + "body": [ + "{% svg material blur_linear %}" + ] + }, + "blur_off": { + "prefix": "svg.material.blur_off", + "description": "SVG material - blur_off", + "body": [ + "{% svg material blur_off %}" + ] + }, + "blur_radial": { + "prefix": "svg.material.blur_radial", + "description": "SVG material - blur_radial", + "body": [ + "{% svg material blur_radial %}" + ] + }, + "bolt": { + "prefix": "svg.material.bolt", + "description": "SVG material - bolt", + "body": [ + "{% svg material bolt %}" + ] + }, + "bomb": { + "prefix": "svg.material.bomb", + "description": "SVG material - bomb", + "body": [ + "{% svg material bomb %}" + ] + }, + "bomb_off": { + "prefix": "svg.material.bomb_off", + "description": "SVG material - bomb_off", + "body": [ + "{% svg material bomb_off %}" + ] + }, + "bone": { + "prefix": "svg.material.bone", + "description": "SVG material - bone", + "body": [ + "{% svg material bone %}" + ] + }, + "bone_off": { + "prefix": "svg.material.bone_off", + "description": "SVG material - bone_off", + "body": [ + "{% svg material bone_off %}" + ] + }, + "book": { + "prefix": "svg.material.book", + "description": "SVG material - book", + "body": [ + "{% svg material book %}" + ] + }, + "book_account": { + "prefix": "svg.material.book_account", + "description": "SVG material - book_account", + "body": [ + "{% svg material book_account %}" + ] + }, + "book_account_outline": { + "prefix": "svg.material.book_account_outline", + "description": "SVG material - book_account_outline", + "body": [ + "{% svg material book_account_outline %}" + ] + }, + "book_alert": { + "prefix": "svg.material.book_alert", + "description": "SVG material - book_alert", + "body": [ + "{% svg material book_alert %}" + ] + }, + "book_alert_outline": { + "prefix": "svg.material.book_alert_outline", + "description": "SVG material - book_alert_outline", + "body": [ + "{% svg material book_alert_outline %}" + ] + }, + "book_alphabet": { + "prefix": "svg.material.book_alphabet", + "description": "SVG material - book_alphabet", + "body": [ + "{% svg material book_alphabet %}" + ] + }, + "book_arrow_down": { + "prefix": "svg.material.book_arrow_down", + "description": "SVG material - book_arrow_down", + "body": [ + "{% svg material book_arrow_down %}" + ] + }, + "book_arrow_down_outline": { + "prefix": "svg.material.book_arrow_down_outline", + "description": "SVG material - book_arrow_down_outline", + "body": [ + "{% svg material book_arrow_down_outline %}" + ] + }, + "book_arrow_left": { + "prefix": "svg.material.book_arrow_left", + "description": "SVG material - book_arrow_left", + "body": [ + "{% svg material book_arrow_left %}" + ] + }, + "book_arrow_left_outline": { + "prefix": "svg.material.book_arrow_left_outline", + "description": "SVG material - book_arrow_left_outline", + "body": [ + "{% svg material book_arrow_left_outline %}" + ] + }, + "book_arrow_right": { + "prefix": "svg.material.book_arrow_right", + "description": "SVG material - book_arrow_right", + "body": [ + "{% svg material book_arrow_right %}" + ] + }, + "book_arrow_right_outline": { + "prefix": "svg.material.book_arrow_right_outline", + "description": "SVG material - book_arrow_right_outline", + "body": [ + "{% svg material book_arrow_right_outline %}" + ] + }, + "book_arrow_up": { + "prefix": "svg.material.book_arrow_up", + "description": "SVG material - book_arrow_up", + "body": [ + "{% svg material book_arrow_up %}" + ] + }, + "book_arrow_up_outline": { + "prefix": "svg.material.book_arrow_up_outline", + "description": "SVG material - book_arrow_up_outline", + "body": [ + "{% svg material book_arrow_up_outline %}" + ] + }, + "book_cancel": { + "prefix": "svg.material.book_cancel", + "description": "SVG material - book_cancel", + "body": [ + "{% svg material book_cancel %}" + ] + }, + "book_cancel_outline": { + "prefix": "svg.material.book_cancel_outline", + "description": "SVG material - book_cancel_outline", + "body": [ + "{% svg material book_cancel_outline %}" + ] + }, + "book_check": { + "prefix": "svg.material.book_check", + "description": "SVG material - book_check", + "body": [ + "{% svg material book_check %}" + ] + }, + "book_check_outline": { + "prefix": "svg.material.book_check_outline", + "description": "SVG material - book_check_outline", + "body": [ + "{% svg material book_check_outline %}" + ] + }, + "book_clock": { + "prefix": "svg.material.book_clock", + "description": "SVG material - book_clock", + "body": [ + "{% svg material book_clock %}" + ] + }, + "book_clock_outline": { + "prefix": "svg.material.book_clock_outline", + "description": "SVG material - book_clock_outline", + "body": [ + "{% svg material book_clock_outline %}" + ] + }, + "book_cog": { + "prefix": "svg.material.book_cog", + "description": "SVG material - book_cog", + "body": [ + "{% svg material book_cog %}" + ] + }, + "book_cog_outline": { + "prefix": "svg.material.book_cog_outline", + "description": "SVG material - book_cog_outline", + "body": [ + "{% svg material book_cog_outline %}" + ] + }, + "book_cross": { + "prefix": "svg.material.book_cross", + "description": "SVG material - book_cross", + "body": [ + "{% svg material book_cross %}" + ] + }, + "book_edit": { + "prefix": "svg.material.book_edit", + "description": "SVG material - book_edit", + "body": [ + "{% svg material book_edit %}" + ] + }, + "book_edit_outline": { + "prefix": "svg.material.book_edit_outline", + "description": "SVG material - book_edit_outline", + "body": [ + "{% svg material book_edit_outline %}" + ] + }, + "book_education": { + "prefix": "svg.material.book_education", + "description": "SVG material - book_education", + "body": [ + "{% svg material book_education %}" + ] + }, + "book_education_outline": { + "prefix": "svg.material.book_education_outline", + "description": "SVG material - book_education_outline", + "body": [ + "{% svg material book_education_outline %}" + ] + }, + "book_heart": { + "prefix": "svg.material.book_heart", + "description": "SVG material - book_heart", + "body": [ + "{% svg material book_heart %}" + ] + }, + "book_heart_outline": { + "prefix": "svg.material.book_heart_outline", + "description": "SVG material - book_heart_outline", + "body": [ + "{% svg material book_heart_outline %}" + ] + }, + "book_information_variant": { + "prefix": "svg.material.book_information_variant", + "description": "SVG material - book_information_variant", + "body": [ + "{% svg material book_information_variant %}" + ] + }, + "book_lock": { + "prefix": "svg.material.book_lock", + "description": "SVG material - book_lock", + "body": [ + "{% svg material book_lock %}" + ] + }, + "book_lock_open": { + "prefix": "svg.material.book_lock_open", + "description": "SVG material - book_lock_open", + "body": [ + "{% svg material book_lock_open %}" + ] + }, + "book_lock_open_outline": { + "prefix": "svg.material.book_lock_open_outline", + "description": "SVG material - book_lock_open_outline", + "body": [ + "{% svg material book_lock_open_outline %}" + ] + }, + "book_lock_outline": { + "prefix": "svg.material.book_lock_outline", + "description": "SVG material - book_lock_outline", + "body": [ + "{% svg material book_lock_outline %}" + ] + }, + "book_marker": { + "prefix": "svg.material.book_marker", + "description": "SVG material - book_marker", + "body": [ + "{% svg material book_marker %}" + ] + }, + "book_marker_outline": { + "prefix": "svg.material.book_marker_outline", + "description": "SVG material - book_marker_outline", + "body": [ + "{% svg material book_marker_outline %}" + ] + }, + "book_minus": { + "prefix": "svg.material.book_minus", + "description": "SVG material - book_minus", + "body": [ + "{% svg material book_minus %}" + ] + }, + "book_minus_multiple": { + "prefix": "svg.material.book_minus_multiple", + "description": "SVG material - book_minus_multiple", + "body": [ + "{% svg material book_minus_multiple %}" + ] + }, + "book_minus_multiple_outline": { + "prefix": "svg.material.book_minus_multiple_outline", + "description": "SVG material - book_minus_multiple_outline", + "body": [ + "{% svg material book_minus_multiple_outline %}" + ] + }, + "book_minus_outline": { + "prefix": "svg.material.book_minus_outline", + "description": "SVG material - book_minus_outline", + "body": [ + "{% svg material book_minus_outline %}" + ] + }, + "book_multiple": { + "prefix": "svg.material.book_multiple", + "description": "SVG material - book_multiple", + "body": [ + "{% svg material book_multiple %}" + ] + }, + "book_multiple_outline": { + "prefix": "svg.material.book_multiple_outline", + "description": "SVG material - book_multiple_outline", + "body": [ + "{% svg material book_multiple_outline %}" + ] + }, + "book_music": { + "prefix": "svg.material.book_music", + "description": "SVG material - book_music", + "body": [ + "{% svg material book_music %}" + ] + }, + "book_music_outline": { + "prefix": "svg.material.book_music_outline", + "description": "SVG material - book_music_outline", + "body": [ + "{% svg material book_music_outline %}" + ] + }, + "book_off": { + "prefix": "svg.material.book_off", + "description": "SVG material - book_off", + "body": [ + "{% svg material book_off %}" + ] + }, + "book_off_outline": { + "prefix": "svg.material.book_off_outline", + "description": "SVG material - book_off_outline", + "body": [ + "{% svg material book_off_outline %}" + ] + }, + "book_open": { + "prefix": "svg.material.book_open", + "description": "SVG material - book_open", + "body": [ + "{% svg material book_open %}" + ] + }, + "book_open_blank_variant": { + "prefix": "svg.material.book_open_blank_variant", + "description": "SVG material - book_open_blank_variant", + "body": [ + "{% svg material book_open_blank_variant %}" + ] + }, + "book_open_blank_variant_outline": { + "prefix": "svg.material.book_open_blank_variant_outline", + "description": "SVG material - book_open_blank_variant_outline", + "body": [ + "{% svg material book_open_blank_variant_outline %}" + ] + }, + "book_open_outline": { + "prefix": "svg.material.book_open_outline", + "description": "SVG material - book_open_outline", + "body": [ + "{% svg material book_open_outline %}" + ] + }, + "book_open_page_variant": { + "prefix": "svg.material.book_open_page_variant", + "description": "SVG material - book_open_page_variant", + "body": [ + "{% svg material book_open_page_variant %}" + ] + }, + "book_open_page_variant_outline": { + "prefix": "svg.material.book_open_page_variant_outline", + "description": "SVG material - book_open_page_variant_outline", + "body": [ + "{% svg material book_open_page_variant_outline %}" + ] + }, + "book_open_variant": { + "prefix": "svg.material.book_open_variant", + "description": "SVG material - book_open_variant", + "body": [ + "{% svg material book_open_variant %}" + ] + }, + "book_open_variant_outline": { + "prefix": "svg.material.book_open_variant_outline", + "description": "SVG material - book_open_variant_outline", + "body": [ + "{% svg material book_open_variant_outline %}" + ] + }, + "book_outline": { + "prefix": "svg.material.book_outline", + "description": "SVG material - book_outline", + "body": [ + "{% svg material book_outline %}" + ] + }, + "book_play": { + "prefix": "svg.material.book_play", + "description": "SVG material - book_play", + "body": [ + "{% svg material book_play %}" + ] + }, + "book_play_outline": { + "prefix": "svg.material.book_play_outline", + "description": "SVG material - book_play_outline", + "body": [ + "{% svg material book_play_outline %}" + ] + }, + "book_plus": { + "prefix": "svg.material.book_plus", + "description": "SVG material - book_plus", + "body": [ + "{% svg material book_plus %}" + ] + }, + "book_plus_multiple": { + "prefix": "svg.material.book_plus_multiple", + "description": "SVG material - book_plus_multiple", + "body": [ + "{% svg material book_plus_multiple %}" + ] + }, + "book_plus_multiple_outline": { + "prefix": "svg.material.book_plus_multiple_outline", + "description": "SVG material - book_plus_multiple_outline", + "body": [ + "{% svg material book_plus_multiple_outline %}" + ] + }, + "book_plus_outline": { + "prefix": "svg.material.book_plus_outline", + "description": "SVG material - book_plus_outline", + "body": [ + "{% svg material book_plus_outline %}" + ] + }, + "book_refresh": { + "prefix": "svg.material.book_refresh", + "description": "SVG material - book_refresh", + "body": [ + "{% svg material book_refresh %}" + ] + }, + "book_refresh_outline": { + "prefix": "svg.material.book_refresh_outline", + "description": "SVG material - book_refresh_outline", + "body": [ + "{% svg material book_refresh_outline %}" + ] + }, + "book_remove": { + "prefix": "svg.material.book_remove", + "description": "SVG material - book_remove", + "body": [ + "{% svg material book_remove %}" + ] + }, + "book_remove_multiple": { + "prefix": "svg.material.book_remove_multiple", + "description": "SVG material - book_remove_multiple", + "body": [ + "{% svg material book_remove_multiple %}" + ] + }, + "book_remove_multiple_outline": { + "prefix": "svg.material.book_remove_multiple_outline", + "description": "SVG material - book_remove_multiple_outline", + "body": [ + "{% svg material book_remove_multiple_outline %}" + ] + }, + "book_remove_outline": { + "prefix": "svg.material.book_remove_outline", + "description": "SVG material - book_remove_outline", + "body": [ + "{% svg material book_remove_outline %}" + ] + }, + "book_search": { + "prefix": "svg.material.book_search", + "description": "SVG material - book_search", + "body": [ + "{% svg material book_search %}" + ] + }, + "book_search_outline": { + "prefix": "svg.material.book_search_outline", + "description": "SVG material - book_search_outline", + "body": [ + "{% svg material book_search_outline %}" + ] + }, + "book_settings": { + "prefix": "svg.material.book_settings", + "description": "SVG material - book_settings", + "body": [ + "{% svg material book_settings %}" + ] + }, + "book_settings_outline": { + "prefix": "svg.material.book_settings_outline", + "description": "SVG material - book_settings_outline", + "body": [ + "{% svg material book_settings_outline %}" + ] + }, + "book_sync": { + "prefix": "svg.material.book_sync", + "description": "SVG material - book_sync", + "body": [ + "{% svg material book_sync %}" + ] + }, + "book_sync_outline": { + "prefix": "svg.material.book_sync_outline", + "description": "SVG material - book_sync_outline", + "body": [ + "{% svg material book_sync_outline %}" + ] + }, + "book_variant": { + "prefix": "svg.material.book_variant", + "description": "SVG material - book_variant", + "body": [ + "{% svg material book_variant %}" + ] + }, + "bookmark": { + "prefix": "svg.material.bookmark", + "description": "SVG material - bookmark", + "body": [ + "{% svg material bookmark %}" + ] + }, + "bookmark_box": { + "prefix": "svg.material.bookmark_box", + "description": "SVG material - bookmark_box", + "body": [ + "{% svg material bookmark_box %}" + ] + }, + "bookmark_box_multiple": { + "prefix": "svg.material.bookmark_box_multiple", + "description": "SVG material - bookmark_box_multiple", + "body": [ + "{% svg material bookmark_box_multiple %}" + ] + }, + "bookmark_box_multiple_outline": { + "prefix": "svg.material.bookmark_box_multiple_outline", + "description": "SVG material - bookmark_box_multiple_outline", + "body": [ + "{% svg material bookmark_box_multiple_outline %}" + ] + }, + "bookmark_box_outline": { + "prefix": "svg.material.bookmark_box_outline", + "description": "SVG material - bookmark_box_outline", + "body": [ + "{% svg material bookmark_box_outline %}" + ] + }, + "bookmark_check": { + "prefix": "svg.material.bookmark_check", + "description": "SVG material - bookmark_check", + "body": [ + "{% svg material bookmark_check %}" + ] + }, + "bookmark_check_outline": { + "prefix": "svg.material.bookmark_check_outline", + "description": "SVG material - bookmark_check_outline", + "body": [ + "{% svg material bookmark_check_outline %}" + ] + }, + "bookmark_minus": { + "prefix": "svg.material.bookmark_minus", + "description": "SVG material - bookmark_minus", + "body": [ + "{% svg material bookmark_minus %}" + ] + }, + "bookmark_minus_outline": { + "prefix": "svg.material.bookmark_minus_outline", + "description": "SVG material - bookmark_minus_outline", + "body": [ + "{% svg material bookmark_minus_outline %}" + ] + }, + "bookmark_multiple": { + "prefix": "svg.material.bookmark_multiple", + "description": "SVG material - bookmark_multiple", + "body": [ + "{% svg material bookmark_multiple %}" + ] + }, + "bookmark_multiple_outline": { + "prefix": "svg.material.bookmark_multiple_outline", + "description": "SVG material - bookmark_multiple_outline", + "body": [ + "{% svg material bookmark_multiple_outline %}" + ] + }, + "bookmark_music": { + "prefix": "svg.material.bookmark_music", + "description": "SVG material - bookmark_music", + "body": [ + "{% svg material bookmark_music %}" + ] + }, + "bookmark_music_outline": { + "prefix": "svg.material.bookmark_music_outline", + "description": "SVG material - bookmark_music_outline", + "body": [ + "{% svg material bookmark_music_outline %}" + ] + }, + "bookmark_off": { + "prefix": "svg.material.bookmark_off", + "description": "SVG material - bookmark_off", + "body": [ + "{% svg material bookmark_off %}" + ] + }, + "bookmark_off_outline": { + "prefix": "svg.material.bookmark_off_outline", + "description": "SVG material - bookmark_off_outline", + "body": [ + "{% svg material bookmark_off_outline %}" + ] + }, + "bookmark_outline": { + "prefix": "svg.material.bookmark_outline", + "description": "SVG material - bookmark_outline", + "body": [ + "{% svg material bookmark_outline %}" + ] + }, + "bookmark_plus": { + "prefix": "svg.material.bookmark_plus", + "description": "SVG material - bookmark_plus", + "body": [ + "{% svg material bookmark_plus %}" + ] + }, + "bookmark_plus_outline": { + "prefix": "svg.material.bookmark_plus_outline", + "description": "SVG material - bookmark_plus_outline", + "body": [ + "{% svg material bookmark_plus_outline %}" + ] + }, + "bookmark_remove": { + "prefix": "svg.material.bookmark_remove", + "description": "SVG material - bookmark_remove", + "body": [ + "{% svg material bookmark_remove %}" + ] + }, + "bookmark_remove_outline": { + "prefix": "svg.material.bookmark_remove_outline", + "description": "SVG material - bookmark_remove_outline", + "body": [ + "{% svg material bookmark_remove_outline %}" + ] + }, + "bookshelf": { + "prefix": "svg.material.bookshelf", + "description": "SVG material - bookshelf", + "body": [ + "{% svg material bookshelf %}" + ] + }, + "boom_gate": { + "prefix": "svg.material.boom_gate", + "description": "SVG material - boom_gate", + "body": [ + "{% svg material boom_gate %}" + ] + }, + "boom_gate_alert": { + "prefix": "svg.material.boom_gate_alert", + "description": "SVG material - boom_gate_alert", + "body": [ + "{% svg material boom_gate_alert %}" + ] + }, + "boom_gate_alert_outline": { + "prefix": "svg.material.boom_gate_alert_outline", + "description": "SVG material - boom_gate_alert_outline", + "body": [ + "{% svg material boom_gate_alert_outline %}" + ] + }, + "boom_gate_arrow_down": { + "prefix": "svg.material.boom_gate_arrow_down", + "description": "SVG material - boom_gate_arrow_down", + "body": [ + "{% svg material boom_gate_arrow_down %}" + ] + }, + "boom_gate_arrow_down_outline": { + "prefix": "svg.material.boom_gate_arrow_down_outline", + "description": "SVG material - boom_gate_arrow_down_outline", + "body": [ + "{% svg material boom_gate_arrow_down_outline %}" + ] + }, + "boom_gate_arrow_up": { + "prefix": "svg.material.boom_gate_arrow_up", + "description": "SVG material - boom_gate_arrow_up", + "body": [ + "{% svg material boom_gate_arrow_up %}" + ] + }, + "boom_gate_arrow_up_outline": { + "prefix": "svg.material.boom_gate_arrow_up_outline", + "description": "SVG material - boom_gate_arrow_up_outline", + "body": [ + "{% svg material boom_gate_arrow_up_outline %}" + ] + }, + "boom_gate_outline": { + "prefix": "svg.material.boom_gate_outline", + "description": "SVG material - boom_gate_outline", + "body": [ + "{% svg material boom_gate_outline %}" + ] + }, + "boom_gate_up": { + "prefix": "svg.material.boom_gate_up", + "description": "SVG material - boom_gate_up", + "body": [ + "{% svg material boom_gate_up %}" + ] + }, + "boom_gate_up_outline": { + "prefix": "svg.material.boom_gate_up_outline", + "description": "SVG material - boom_gate_up_outline", + "body": [ + "{% svg material boom_gate_up_outline %}" + ] + }, + "boombox": { + "prefix": "svg.material.boombox", + "description": "SVG material - boombox", + "body": [ + "{% svg material boombox %}" + ] + }, + "boomerang": { + "prefix": "svg.material.boomerang", + "description": "SVG material - boomerang", + "body": [ + "{% svg material boomerang %}" + ] + }, + "bootstrap": { + "prefix": "svg.material.bootstrap", + "description": "SVG material - bootstrap", + "body": [ + "{% svg material bootstrap %}" + ] + }, + "border_all": { + "prefix": "svg.material.border_all", + "description": "SVG material - border_all", + "body": [ + "{% svg material border_all %}" + ] + }, + "border_all_variant": { + "prefix": "svg.material.border_all_variant", + "description": "SVG material - border_all_variant", + "body": [ + "{% svg material border_all_variant %}" + ] + }, + "border_bottom": { + "prefix": "svg.material.border_bottom", + "description": "SVG material - border_bottom", + "body": [ + "{% svg material border_bottom %}" + ] + }, + "border_bottom_variant": { + "prefix": "svg.material.border_bottom_variant", + "description": "SVG material - border_bottom_variant", + "body": [ + "{% svg material border_bottom_variant %}" + ] + }, + "border_color": { + "prefix": "svg.material.border_color", + "description": "SVG material - border_color", + "body": [ + "{% svg material border_color %}" + ] + }, + "border_horizontal": { + "prefix": "svg.material.border_horizontal", + "description": "SVG material - border_horizontal", + "body": [ + "{% svg material border_horizontal %}" + ] + }, + "border_inside": { + "prefix": "svg.material.border_inside", + "description": "SVG material - border_inside", + "body": [ + "{% svg material border_inside %}" + ] + }, + "border_left": { + "prefix": "svg.material.border_left", + "description": "SVG material - border_left", + "body": [ + "{% svg material border_left %}" + ] + }, + "border_left_variant": { + "prefix": "svg.material.border_left_variant", + "description": "SVG material - border_left_variant", + "body": [ + "{% svg material border_left_variant %}" + ] + }, + "border_none": { + "prefix": "svg.material.border_none", + "description": "SVG material - border_none", + "body": [ + "{% svg material border_none %}" + ] + }, + "border_none_variant": { + "prefix": "svg.material.border_none_variant", + "description": "SVG material - border_none_variant", + "body": [ + "{% svg material border_none_variant %}" + ] + }, + "border_outside": { + "prefix": "svg.material.border_outside", + "description": "SVG material - border_outside", + "body": [ + "{% svg material border_outside %}" + ] + }, + "border_radius": { + "prefix": "svg.material.border_radius", + "description": "SVG material - border_radius", + "body": [ + "{% svg material border_radius %}" + ] + }, + "border_right": { + "prefix": "svg.material.border_right", + "description": "SVG material - border_right", + "body": [ + "{% svg material border_right %}" + ] + }, + "border_right_variant": { + "prefix": "svg.material.border_right_variant", + "description": "SVG material - border_right_variant", + "body": [ + "{% svg material border_right_variant %}" + ] + }, + "border_style": { + "prefix": "svg.material.border_style", + "description": "SVG material - border_style", + "body": [ + "{% svg material border_style %}" + ] + }, + "border_top": { + "prefix": "svg.material.border_top", + "description": "SVG material - border_top", + "body": [ + "{% svg material border_top %}" + ] + }, + "border_top_variant": { + "prefix": "svg.material.border_top_variant", + "description": "SVG material - border_top_variant", + "body": [ + "{% svg material border_top_variant %}" + ] + }, + "border_vertical": { + "prefix": "svg.material.border_vertical", + "description": "SVG material - border_vertical", + "body": [ + "{% svg material border_vertical %}" + ] + }, + "bottle_soda": { + "prefix": "svg.material.bottle_soda", + "description": "SVG material - bottle_soda", + "body": [ + "{% svg material bottle_soda %}" + ] + }, + "bottle_soda_classic": { + "prefix": "svg.material.bottle_soda_classic", + "description": "SVG material - bottle_soda_classic", + "body": [ + "{% svg material bottle_soda_classic %}" + ] + }, + "bottle_soda_classic_outline": { + "prefix": "svg.material.bottle_soda_classic_outline", + "description": "SVG material - bottle_soda_classic_outline", + "body": [ + "{% svg material bottle_soda_classic_outline %}" + ] + }, + "bottle_soda_outline": { + "prefix": "svg.material.bottle_soda_outline", + "description": "SVG material - bottle_soda_outline", + "body": [ + "{% svg material bottle_soda_outline %}" + ] + }, + "bottle_tonic": { + "prefix": "svg.material.bottle_tonic", + "description": "SVG material - bottle_tonic", + "body": [ + "{% svg material bottle_tonic %}" + ] + }, + "bottle_tonic_outline": { + "prefix": "svg.material.bottle_tonic_outline", + "description": "SVG material - bottle_tonic_outline", + "body": [ + "{% svg material bottle_tonic_outline %}" + ] + }, + "bottle_tonic_plus": { + "prefix": "svg.material.bottle_tonic_plus", + "description": "SVG material - bottle_tonic_plus", + "body": [ + "{% svg material bottle_tonic_plus %}" + ] + }, + "bottle_tonic_plus_outline": { + "prefix": "svg.material.bottle_tonic_plus_outline", + "description": "SVG material - bottle_tonic_plus_outline", + "body": [ + "{% svg material bottle_tonic_plus_outline %}" + ] + }, + "bottle_tonic_skull": { + "prefix": "svg.material.bottle_tonic_skull", + "description": "SVG material - bottle_tonic_skull", + "body": [ + "{% svg material bottle_tonic_skull %}" + ] + }, + "bottle_tonic_skull_outline": { + "prefix": "svg.material.bottle_tonic_skull_outline", + "description": "SVG material - bottle_tonic_skull_outline", + "body": [ + "{% svg material bottle_tonic_skull_outline %}" + ] + }, + "bottle_wine": { + "prefix": "svg.material.bottle_wine", + "description": "SVG material - bottle_wine", + "body": [ + "{% svg material bottle_wine %}" + ] + }, + "bottle_wine_outline": { + "prefix": "svg.material.bottle_wine_outline", + "description": "SVG material - bottle_wine_outline", + "body": [ + "{% svg material bottle_wine_outline %}" + ] + }, + "bow_arrow": { + "prefix": "svg.material.bow_arrow", + "description": "SVG material - bow_arrow", + "body": [ + "{% svg material bow_arrow %}" + ] + }, + "bow_tie": { + "prefix": "svg.material.bow_tie", + "description": "SVG material - bow_tie", + "body": [ + "{% svg material bow_tie %}" + ] + }, + "bowl": { + "prefix": "svg.material.bowl", + "description": "SVG material - bowl", + "body": [ + "{% svg material bowl %}" + ] + }, + "bowl_mix": { + "prefix": "svg.material.bowl_mix", + "description": "SVG material - bowl_mix", + "body": [ + "{% svg material bowl_mix %}" + ] + }, + "bowl_mix_outline": { + "prefix": "svg.material.bowl_mix_outline", + "description": "SVG material - bowl_mix_outline", + "body": [ + "{% svg material bowl_mix_outline %}" + ] + }, + "bowl_outline": { + "prefix": "svg.material.bowl_outline", + "description": "SVG material - bowl_outline", + "body": [ + "{% svg material bowl_outline %}" + ] + }, + "bowling": { + "prefix": "svg.material.bowling", + "description": "SVG material - bowling", + "body": [ + "{% svg material bowling %}" + ] + }, + "box": { + "prefix": "svg.material.box", + "description": "SVG material - box", + "body": [ + "{% svg material box %}" + ] + }, + "box_cutter": { + "prefix": "svg.material.box_cutter", + "description": "SVG material - box_cutter", + "body": [ + "{% svg material box_cutter %}" + ] + }, + "box_cutter_off": { + "prefix": "svg.material.box_cutter_off", + "description": "SVG material - box_cutter_off", + "body": [ + "{% svg material box_cutter_off %}" + ] + }, + "box_shadow": { + "prefix": "svg.material.box_shadow", + "description": "SVG material - box_shadow", + "body": [ + "{% svg material box_shadow %}" + ] + }, + "boxing_glove": { + "prefix": "svg.material.boxing_glove", + "description": "SVG material - boxing_glove", + "body": [ + "{% svg material boxing_glove %}" + ] + }, + "braille": { + "prefix": "svg.material.braille", + "description": "SVG material - braille", + "body": [ + "{% svg material braille %}" + ] + }, + "brain": { + "prefix": "svg.material.brain", + "description": "SVG material - brain", + "body": [ + "{% svg material brain %}" + ] + }, + "bread_slice": { + "prefix": "svg.material.bread_slice", + "description": "SVG material - bread_slice", + "body": [ + "{% svg material bread_slice %}" + ] + }, + "bread_slice_outline": { + "prefix": "svg.material.bread_slice_outline", + "description": "SVG material - bread_slice_outline", + "body": [ + "{% svg material bread_slice_outline %}" + ] + }, + "bridge": { + "prefix": "svg.material.bridge", + "description": "SVG material - bridge", + "body": [ + "{% svg material bridge %}" + ] + }, + "briefcase": { + "prefix": "svg.material.briefcase", + "description": "SVG material - briefcase", + "body": [ + "{% svg material briefcase %}" + ] + }, + "briefcase_account": { + "prefix": "svg.material.briefcase_account", + "description": "SVG material - briefcase_account", + "body": [ + "{% svg material briefcase_account %}" + ] + }, + "briefcase_account_outline": { + "prefix": "svg.material.briefcase_account_outline", + "description": "SVG material - briefcase_account_outline", + "body": [ + "{% svg material briefcase_account_outline %}" + ] + }, + "briefcase_arrow_left_right": { + "prefix": "svg.material.briefcase_arrow_left_right", + "description": "SVG material - briefcase_arrow_left_right", + "body": [ + "{% svg material briefcase_arrow_left_right %}" + ] + }, + "briefcase_arrow_left_right_outline": { + "prefix": "svg.material.briefcase_arrow_left_right_outline", + "description": "SVG material - briefcase_arrow_left_right_outline", + "body": [ + "{% svg material briefcase_arrow_left_right_outline %}" + ] + }, + "briefcase_arrow_up_down": { + "prefix": "svg.material.briefcase_arrow_up_down", + "description": "SVG material - briefcase_arrow_up_down", + "body": [ + "{% svg material briefcase_arrow_up_down %}" + ] + }, + "briefcase_arrow_up_down_outline": { + "prefix": "svg.material.briefcase_arrow_up_down_outline", + "description": "SVG material - briefcase_arrow_up_down_outline", + "body": [ + "{% svg material briefcase_arrow_up_down_outline %}" + ] + }, + "briefcase_check": { + "prefix": "svg.material.briefcase_check", + "description": "SVG material - briefcase_check", + "body": [ + "{% svg material briefcase_check %}" + ] + }, + "briefcase_check_outline": { + "prefix": "svg.material.briefcase_check_outline", + "description": "SVG material - briefcase_check_outline", + "body": [ + "{% svg material briefcase_check_outline %}" + ] + }, + "briefcase_clock": { + "prefix": "svg.material.briefcase_clock", + "description": "SVG material - briefcase_clock", + "body": [ + "{% svg material briefcase_clock %}" + ] + }, + "briefcase_clock_outline": { + "prefix": "svg.material.briefcase_clock_outline", + "description": "SVG material - briefcase_clock_outline", + "body": [ + "{% svg material briefcase_clock_outline %}" + ] + }, + "briefcase_download": { + "prefix": "svg.material.briefcase_download", + "description": "SVG material - briefcase_download", + "body": [ + "{% svg material briefcase_download %}" + ] + }, + "briefcase_download_outline": { + "prefix": "svg.material.briefcase_download_outline", + "description": "SVG material - briefcase_download_outline", + "body": [ + "{% svg material briefcase_download_outline %}" + ] + }, + "briefcase_edit": { + "prefix": "svg.material.briefcase_edit", + "description": "SVG material - briefcase_edit", + "body": [ + "{% svg material briefcase_edit %}" + ] + }, + "briefcase_edit_outline": { + "prefix": "svg.material.briefcase_edit_outline", + "description": "SVG material - briefcase_edit_outline", + "body": [ + "{% svg material briefcase_edit_outline %}" + ] + }, + "briefcase_eye": { + "prefix": "svg.material.briefcase_eye", + "description": "SVG material - briefcase_eye", + "body": [ + "{% svg material briefcase_eye %}" + ] + }, + "briefcase_eye_outline": { + "prefix": "svg.material.briefcase_eye_outline", + "description": "SVG material - briefcase_eye_outline", + "body": [ + "{% svg material briefcase_eye_outline %}" + ] + }, + "briefcase_minus": { + "prefix": "svg.material.briefcase_minus", + "description": "SVG material - briefcase_minus", + "body": [ + "{% svg material briefcase_minus %}" + ] + }, + "briefcase_minus_outline": { + "prefix": "svg.material.briefcase_minus_outline", + "description": "SVG material - briefcase_minus_outline", + "body": [ + "{% svg material briefcase_minus_outline %}" + ] + }, + "briefcase_off": { + "prefix": "svg.material.briefcase_off", + "description": "SVG material - briefcase_off", + "body": [ + "{% svg material briefcase_off %}" + ] + }, + "briefcase_off_outline": { + "prefix": "svg.material.briefcase_off_outline", + "description": "SVG material - briefcase_off_outline", + "body": [ + "{% svg material briefcase_off_outline %}" + ] + }, + "briefcase_outline": { + "prefix": "svg.material.briefcase_outline", + "description": "SVG material - briefcase_outline", + "body": [ + "{% svg material briefcase_outline %}" + ] + }, + "briefcase_plus": { + "prefix": "svg.material.briefcase_plus", + "description": "SVG material - briefcase_plus", + "body": [ + "{% svg material briefcase_plus %}" + ] + }, + "briefcase_plus_outline": { + "prefix": "svg.material.briefcase_plus_outline", + "description": "SVG material - briefcase_plus_outline", + "body": [ + "{% svg material briefcase_plus_outline %}" + ] + }, + "briefcase_remove": { + "prefix": "svg.material.briefcase_remove", + "description": "SVG material - briefcase_remove", + "body": [ + "{% svg material briefcase_remove %}" + ] + }, + "briefcase_remove_outline": { + "prefix": "svg.material.briefcase_remove_outline", + "description": "SVG material - briefcase_remove_outline", + "body": [ + "{% svg material briefcase_remove_outline %}" + ] + }, + "briefcase_search": { + "prefix": "svg.material.briefcase_search", + "description": "SVG material - briefcase_search", + "body": [ + "{% svg material briefcase_search %}" + ] + }, + "briefcase_search_outline": { + "prefix": "svg.material.briefcase_search_outline", + "description": "SVG material - briefcase_search_outline", + "body": [ + "{% svg material briefcase_search_outline %}" + ] + }, + "briefcase_upload": { + "prefix": "svg.material.briefcase_upload", + "description": "SVG material - briefcase_upload", + "body": [ + "{% svg material briefcase_upload %}" + ] + }, + "briefcase_upload_outline": { + "prefix": "svg.material.briefcase_upload_outline", + "description": "SVG material - briefcase_upload_outline", + "body": [ + "{% svg material briefcase_upload_outline %}" + ] + }, + "briefcase_variant": { + "prefix": "svg.material.briefcase_variant", + "description": "SVG material - briefcase_variant", + "body": [ + "{% svg material briefcase_variant %}" + ] + }, + "briefcase_variant_off": { + "prefix": "svg.material.briefcase_variant_off", + "description": "SVG material - briefcase_variant_off", + "body": [ + "{% svg material briefcase_variant_off %}" + ] + }, + "briefcase_variant_off_outline": { + "prefix": "svg.material.briefcase_variant_off_outline", + "description": "SVG material - briefcase_variant_off_outline", + "body": [ + "{% svg material briefcase_variant_off_outline %}" + ] + }, + "briefcase_variant_outline": { + "prefix": "svg.material.briefcase_variant_outline", + "description": "SVG material - briefcase_variant_outline", + "body": [ + "{% svg material briefcase_variant_outline %}" + ] + }, + "brightness_1": { + "prefix": "svg.material.brightness_1", + "description": "SVG material - brightness_1", + "body": [ + "{% svg material brightness_1 %}" + ] + }, + "brightness_2": { + "prefix": "svg.material.brightness_2", + "description": "SVG material - brightness_2", + "body": [ + "{% svg material brightness_2 %}" + ] + }, + "brightness_3": { + "prefix": "svg.material.brightness_3", + "description": "SVG material - brightness_3", + "body": [ + "{% svg material brightness_3 %}" + ] + }, + "brightness_4": { + "prefix": "svg.material.brightness_4", + "description": "SVG material - brightness_4", + "body": [ + "{% svg material brightness_4 %}" + ] + }, + "brightness_5": { + "prefix": "svg.material.brightness_5", + "description": "SVG material - brightness_5", + "body": [ + "{% svg material brightness_5 %}" + ] + }, + "brightness_6": { + "prefix": "svg.material.brightness_6", + "description": "SVG material - brightness_6", + "body": [ + "{% svg material brightness_6 %}" + ] + }, + "brightness_7": { + "prefix": "svg.material.brightness_7", + "description": "SVG material - brightness_7", + "body": [ + "{% svg material brightness_7 %}" + ] + }, + "brightness_auto": { + "prefix": "svg.material.brightness_auto", + "description": "SVG material - brightness_auto", + "body": [ + "{% svg material brightness_auto %}" + ] + }, + "brightness_percent": { + "prefix": "svg.material.brightness_percent", + "description": "SVG material - brightness_percent", + "body": [ + "{% svg material brightness_percent %}" + ] + }, + "broadcast": { + "prefix": "svg.material.broadcast", + "description": "SVG material - broadcast", + "body": [ + "{% svg material broadcast %}" + ] + }, + "broadcast_off": { + "prefix": "svg.material.broadcast_off", + "description": "SVG material - broadcast_off", + "body": [ + "{% svg material broadcast_off %}" + ] + }, + "broom": { + "prefix": "svg.material.broom", + "description": "SVG material - broom", + "body": [ + "{% svg material broom %}" + ] + }, + "brush": { + "prefix": "svg.material.brush", + "description": "SVG material - brush", + "body": [ + "{% svg material brush %}" + ] + }, + "brush_off": { + "prefix": "svg.material.brush_off", + "description": "SVG material - brush_off", + "body": [ + "{% svg material brush_off %}" + ] + }, + "brush_outline": { + "prefix": "svg.material.brush_outline", + "description": "SVG material - brush_outline", + "body": [ + "{% svg material brush_outline %}" + ] + }, + "brush_variant": { + "prefix": "svg.material.brush_variant", + "description": "SVG material - brush_variant", + "body": [ + "{% svg material brush_variant %}" + ] + }, + "bucket": { + "prefix": "svg.material.bucket", + "description": "SVG material - bucket", + "body": [ + "{% svg material bucket %}" + ] + }, + "bucket_outline": { + "prefix": "svg.material.bucket_outline", + "description": "SVG material - bucket_outline", + "body": [ + "{% svg material bucket_outline %}" + ] + }, + "buffet": { + "prefix": "svg.material.buffet", + "description": "SVG material - buffet", + "body": [ + "{% svg material buffet %}" + ] + }, + "bug": { + "prefix": "svg.material.bug", + "description": "SVG material - bug", + "body": [ + "{% svg material bug %}" + ] + }, + "bug_check": { + "prefix": "svg.material.bug_check", + "description": "SVG material - bug_check", + "body": [ + "{% svg material bug_check %}" + ] + }, + "bug_check_outline": { + "prefix": "svg.material.bug_check_outline", + "description": "SVG material - bug_check_outline", + "body": [ + "{% svg material bug_check_outline %}" + ] + }, + "bug_outline": { + "prefix": "svg.material.bug_outline", + "description": "SVG material - bug_outline", + "body": [ + "{% svg material bug_outline %}" + ] + }, + "bug_pause": { + "prefix": "svg.material.bug_pause", + "description": "SVG material - bug_pause", + "body": [ + "{% svg material bug_pause %}" + ] + }, + "bug_pause_outline": { + "prefix": "svg.material.bug_pause_outline", + "description": "SVG material - bug_pause_outline", + "body": [ + "{% svg material bug_pause_outline %}" + ] + }, + "bug_play": { + "prefix": "svg.material.bug_play", + "description": "SVG material - bug_play", + "body": [ + "{% svg material bug_play %}" + ] + }, + "bug_play_outline": { + "prefix": "svg.material.bug_play_outline", + "description": "SVG material - bug_play_outline", + "body": [ + "{% svg material bug_play_outline %}" + ] + }, + "bug_stop": { + "prefix": "svg.material.bug_stop", + "description": "SVG material - bug_stop", + "body": [ + "{% svg material bug_stop %}" + ] + }, + "bug_stop_outline": { + "prefix": "svg.material.bug_stop_outline", + "description": "SVG material - bug_stop_outline", + "body": [ + "{% svg material bug_stop_outline %}" + ] + }, + "bugle": { + "prefix": "svg.material.bugle", + "description": "SVG material - bugle", + "body": [ + "{% svg material bugle %}" + ] + }, + "bulkhead_light": { + "prefix": "svg.material.bulkhead_light", + "description": "SVG material - bulkhead_light", + "body": [ + "{% svg material bulkhead_light %}" + ] + }, + "bulldozer": { + "prefix": "svg.material.bulldozer", + "description": "SVG material - bulldozer", + "body": [ + "{% svg material bulldozer %}" + ] + }, + "bullet": { + "prefix": "svg.material.bullet", + "description": "SVG material - bullet", + "body": [ + "{% svg material bullet %}" + ] + }, + "bulletin_board": { + "prefix": "svg.material.bulletin_board", + "description": "SVG material - bulletin_board", + "body": [ + "{% svg material bulletin_board %}" + ] + }, + "bullhorn": { + "prefix": "svg.material.bullhorn", + "description": "SVG material - bullhorn", + "body": [ + "{% svg material bullhorn %}" + ] + }, + "bullhorn_outline": { + "prefix": "svg.material.bullhorn_outline", + "description": "SVG material - bullhorn_outline", + "body": [ + "{% svg material bullhorn_outline %}" + ] + }, + "bullhorn_variant": { + "prefix": "svg.material.bullhorn_variant", + "description": "SVG material - bullhorn_variant", + "body": [ + "{% svg material bullhorn_variant %}" + ] + }, + "bullhorn_variant_outline": { + "prefix": "svg.material.bullhorn_variant_outline", + "description": "SVG material - bullhorn_variant_outline", + "body": [ + "{% svg material bullhorn_variant_outline %}" + ] + }, + "bullseye": { + "prefix": "svg.material.bullseye", + "description": "SVG material - bullseye", + "body": [ + "{% svg material bullseye %}" + ] + }, + "bullseye_arrow": { + "prefix": "svg.material.bullseye_arrow", + "description": "SVG material - bullseye_arrow", + "body": [ + "{% svg material bullseye_arrow %}" + ] + }, + "bulma": { + "prefix": "svg.material.bulma", + "description": "SVG material - bulma", + "body": [ + "{% svg material bulma %}" + ] + }, + "bunk_bed": { + "prefix": "svg.material.bunk_bed", + "description": "SVG material - bunk_bed", + "body": [ + "{% svg material bunk_bed %}" + ] + }, + "bunk_bed_outline": { + "prefix": "svg.material.bunk_bed_outline", + "description": "SVG material - bunk_bed_outline", + "body": [ + "{% svg material bunk_bed_outline %}" + ] + }, + "bus": { + "prefix": "svg.material.bus", + "description": "SVG material - bus", + "body": [ + "{% svg material bus %}" + ] + }, + "bus_alert": { + "prefix": "svg.material.bus_alert", + "description": "SVG material - bus_alert", + "body": [ + "{% svg material bus_alert %}" + ] + }, + "bus_articulated_end": { + "prefix": "svg.material.bus_articulated_end", + "description": "SVG material - bus_articulated_end", + "body": [ + "{% svg material bus_articulated_end %}" + ] + }, + "bus_articulated_front": { + "prefix": "svg.material.bus_articulated_front", + "description": "SVG material - bus_articulated_front", + "body": [ + "{% svg material bus_articulated_front %}" + ] + }, + "bus_clock": { + "prefix": "svg.material.bus_clock", + "description": "SVG material - bus_clock", + "body": [ + "{% svg material bus_clock %}" + ] + }, + "bus_double_decker": { + "prefix": "svg.material.bus_double_decker", + "description": "SVG material - bus_double_decker", + "body": [ + "{% svg material bus_double_decker %}" + ] + }, + "bus_electric": { + "prefix": "svg.material.bus_electric", + "description": "SVG material - bus_electric", + "body": [ + "{% svg material bus_electric %}" + ] + }, + "bus_marker": { + "prefix": "svg.material.bus_marker", + "description": "SVG material - bus_marker", + "body": [ + "{% svg material bus_marker %}" + ] + }, + "bus_multiple": { + "prefix": "svg.material.bus_multiple", + "description": "SVG material - bus_multiple", + "body": [ + "{% svg material bus_multiple %}" + ] + }, + "bus_school": { + "prefix": "svg.material.bus_school", + "description": "SVG material - bus_school", + "body": [ + "{% svg material bus_school %}" + ] + }, + "bus_side": { + "prefix": "svg.material.bus_side", + "description": "SVG material - bus_side", + "body": [ + "{% svg material bus_side %}" + ] + }, + "bus_sign": { + "prefix": "svg.material.bus_sign", + "description": "SVG material - bus_sign", + "body": [ + "{% svg material bus_sign %}" + ] + }, + "bus_stop": { + "prefix": "svg.material.bus_stop", + "description": "SVG material - bus_stop", + "body": [ + "{% svg material bus_stop %}" + ] + }, + "bus_stop_covered": { + "prefix": "svg.material.bus_stop_covered", + "description": "SVG material - bus_stop_covered", + "body": [ + "{% svg material bus_stop_covered %}" + ] + }, + "bus_stop_uncovered": { + "prefix": "svg.material.bus_stop_uncovered", + "description": "SVG material - bus_stop_uncovered", + "body": [ + "{% svg material bus_stop_uncovered %}" + ] + }, + "bus_wrench": { + "prefix": "svg.material.bus_wrench", + "description": "SVG material - bus_wrench", + "body": [ + "{% svg material bus_wrench %}" + ] + }, + "butterfly": { + "prefix": "svg.material.butterfly", + "description": "SVG material - butterfly", + "body": [ + "{% svg material butterfly %}" + ] + }, + "butterfly_outline": { + "prefix": "svg.material.butterfly_outline", + "description": "SVG material - butterfly_outline", + "body": [ + "{% svg material butterfly_outline %}" + ] + }, + "button_cursor": { + "prefix": "svg.material.button_cursor", + "description": "SVG material - button_cursor", + "body": [ + "{% svg material button_cursor %}" + ] + }, + "button_pointer": { + "prefix": "svg.material.button_pointer", + "description": "SVG material - button_pointer", + "body": [ + "{% svg material button_pointer %}" + ] + }, + "cabin_a_frame": { + "prefix": "svg.material.cabin_a_frame", + "description": "SVG material - cabin_a_frame", + "body": [ + "{% svg material cabin_a_frame %}" + ] + }, + "cable_data": { + "prefix": "svg.material.cable_data", + "description": "SVG material - cable_data", + "body": [ + "{% svg material cable_data %}" + ] + }, + "cached": { + "prefix": "svg.material.cached", + "description": "SVG material - cached", + "body": [ + "{% svg material cached %}" + ] + }, + "cactus": { + "prefix": "svg.material.cactus", + "description": "SVG material - cactus", + "body": [ + "{% svg material cactus %}" + ] + }, + "cake": { + "prefix": "svg.material.cake", + "description": "SVG material - cake", + "body": [ + "{% svg material cake %}" + ] + }, + "cake_layered": { + "prefix": "svg.material.cake_layered", + "description": "SVG material - cake_layered", + "body": [ + "{% svg material cake_layered %}" + ] + }, + "cake_variant": { + "prefix": "svg.material.cake_variant", + "description": "SVG material - cake_variant", + "body": [ + "{% svg material cake_variant %}" + ] + }, + "cake_variant_outline": { + "prefix": "svg.material.cake_variant_outline", + "description": "SVG material - cake_variant_outline", + "body": [ + "{% svg material cake_variant_outline %}" + ] + }, + "calculator": { + "prefix": "svg.material.calculator", + "description": "SVG material - calculator", + "body": [ + "{% svg material calculator %}" + ] + }, + "calculator_variant": { + "prefix": "svg.material.calculator_variant", + "description": "SVG material - calculator_variant", + "body": [ + "{% svg material calculator_variant %}" + ] + }, + "calculator_variant_outline": { + "prefix": "svg.material.calculator_variant_outline", + "description": "SVG material - calculator_variant_outline", + "body": [ + "{% svg material calculator_variant_outline %}" + ] + }, + "calendar": { + "prefix": "svg.material.calendar", + "description": "SVG material - calendar", + "body": [ + "{% svg material calendar %}" + ] + }, + "calendar_account": { + "prefix": "svg.material.calendar_account", + "description": "SVG material - calendar_account", + "body": [ + "{% svg material calendar_account %}" + ] + }, + "calendar_account_outline": { + "prefix": "svg.material.calendar_account_outline", + "description": "SVG material - calendar_account_outline", + "body": [ + "{% svg material calendar_account_outline %}" + ] + }, + "calendar_alert": { + "prefix": "svg.material.calendar_alert", + "description": "SVG material - calendar_alert", + "body": [ + "{% svg material calendar_alert %}" + ] + }, + "calendar_alert_outline": { + "prefix": "svg.material.calendar_alert_outline", + "description": "SVG material - calendar_alert_outline", + "body": [ + "{% svg material calendar_alert_outline %}" + ] + }, + "calendar_arrow_left": { + "prefix": "svg.material.calendar_arrow_left", + "description": "SVG material - calendar_arrow_left", + "body": [ + "{% svg material calendar_arrow_left %}" + ] + }, + "calendar_arrow_right": { + "prefix": "svg.material.calendar_arrow_right", + "description": "SVG material - calendar_arrow_right", + "body": [ + "{% svg material calendar_arrow_right %}" + ] + }, + "calendar_badge": { + "prefix": "svg.material.calendar_badge", + "description": "SVG material - calendar_badge", + "body": [ + "{% svg material calendar_badge %}" + ] + }, + "calendar_badge_outline": { + "prefix": "svg.material.calendar_badge_outline", + "description": "SVG material - calendar_badge_outline", + "body": [ + "{% svg material calendar_badge_outline %}" + ] + }, + "calendar_blank": { + "prefix": "svg.material.calendar_blank", + "description": "SVG material - calendar_blank", + "body": [ + "{% svg material calendar_blank %}" + ] + }, + "calendar_blank_multiple": { + "prefix": "svg.material.calendar_blank_multiple", + "description": "SVG material - calendar_blank_multiple", + "body": [ + "{% svg material calendar_blank_multiple %}" + ] + }, + "calendar_blank_outline": { + "prefix": "svg.material.calendar_blank_outline", + "description": "SVG material - calendar_blank_outline", + "body": [ + "{% svg material calendar_blank_outline %}" + ] + }, + "calendar_check": { + "prefix": "svg.material.calendar_check", + "description": "SVG material - calendar_check", + "body": [ + "{% svg material calendar_check %}" + ] + }, + "calendar_check_outline": { + "prefix": "svg.material.calendar_check_outline", + "description": "SVG material - calendar_check_outline", + "body": [ + "{% svg material calendar_check_outline %}" + ] + }, + "calendar_clock": { + "prefix": "svg.material.calendar_clock", + "description": "SVG material - calendar_clock", + "body": [ + "{% svg material calendar_clock %}" + ] + }, + "calendar_clock_outline": { + "prefix": "svg.material.calendar_clock_outline", + "description": "SVG material - calendar_clock_outline", + "body": [ + "{% svg material calendar_clock_outline %}" + ] + }, + "calendar_collapse_horizontal": { + "prefix": "svg.material.calendar_collapse_horizontal", + "description": "SVG material - calendar_collapse_horizontal", + "body": [ + "{% svg material calendar_collapse_horizontal %}" + ] + }, + "calendar_collapse_horizontal_outline": { + "prefix": "svg.material.calendar_collapse_horizontal_outline", + "description": "SVG material - calendar_collapse_horizontal_outline", + "body": [ + "{% svg material calendar_collapse_horizontal_outline %}" + ] + }, + "calendar_cursor": { + "prefix": "svg.material.calendar_cursor", + "description": "SVG material - calendar_cursor", + "body": [ + "{% svg material calendar_cursor %}" + ] + }, + "calendar_cursor_outline": { + "prefix": "svg.material.calendar_cursor_outline", + "description": "SVG material - calendar_cursor_outline", + "body": [ + "{% svg material calendar_cursor_outline %}" + ] + }, + "calendar_edit": { + "prefix": "svg.material.calendar_edit", + "description": "SVG material - calendar_edit", + "body": [ + "{% svg material calendar_edit %}" + ] + }, + "calendar_edit_outline": { + "prefix": "svg.material.calendar_edit_outline", + "description": "SVG material - calendar_edit_outline", + "body": [ + "{% svg material calendar_edit_outline %}" + ] + }, + "calendar_end": { + "prefix": "svg.material.calendar_end", + "description": "SVG material - calendar_end", + "body": [ + "{% svg material calendar_end %}" + ] + }, + "calendar_end_outline": { + "prefix": "svg.material.calendar_end_outline", + "description": "SVG material - calendar_end_outline", + "body": [ + "{% svg material calendar_end_outline %}" + ] + }, + "calendar_expand_horizontal": { + "prefix": "svg.material.calendar_expand_horizontal", + "description": "SVG material - calendar_expand_horizontal", + "body": [ + "{% svg material calendar_expand_horizontal %}" + ] + }, + "calendar_expand_horizontal_outline": { + "prefix": "svg.material.calendar_expand_horizontal_outline", + "description": "SVG material - calendar_expand_horizontal_outline", + "body": [ + "{% svg material calendar_expand_horizontal_outline %}" + ] + }, + "calendar_export": { + "prefix": "svg.material.calendar_export", + "description": "SVG material - calendar_export", + "body": [ + "{% svg material calendar_export %}" + ] + }, + "calendar_export_outline": { + "prefix": "svg.material.calendar_export_outline", + "description": "SVG material - calendar_export_outline", + "body": [ + "{% svg material calendar_export_outline %}" + ] + }, + "calendar_filter": { + "prefix": "svg.material.calendar_filter", + "description": "SVG material - calendar_filter", + "body": [ + "{% svg material calendar_filter %}" + ] + }, + "calendar_filter_outline": { + "prefix": "svg.material.calendar_filter_outline", + "description": "SVG material - calendar_filter_outline", + "body": [ + "{% svg material calendar_filter_outline %}" + ] + }, + "calendar_heart": { + "prefix": "svg.material.calendar_heart", + "description": "SVG material - calendar_heart", + "body": [ + "{% svg material calendar_heart %}" + ] + }, + "calendar_heart_outline": { + "prefix": "svg.material.calendar_heart_outline", + "description": "SVG material - calendar_heart_outline", + "body": [ + "{% svg material calendar_heart_outline %}" + ] + }, + "calendar_import": { + "prefix": "svg.material.calendar_import", + "description": "SVG material - calendar_import", + "body": [ + "{% svg material calendar_import %}" + ] + }, + "calendar_import_outline": { + "prefix": "svg.material.calendar_import_outline", + "description": "SVG material - calendar_import_outline", + "body": [ + "{% svg material calendar_import_outline %}" + ] + }, + "calendar_lock": { + "prefix": "svg.material.calendar_lock", + "description": "SVG material - calendar_lock", + "body": [ + "{% svg material calendar_lock %}" + ] + }, + "calendar_lock_open": { + "prefix": "svg.material.calendar_lock_open", + "description": "SVG material - calendar_lock_open", + "body": [ + "{% svg material calendar_lock_open %}" + ] + }, + "calendar_lock_open_outline": { + "prefix": "svg.material.calendar_lock_open_outline", + "description": "SVG material - calendar_lock_open_outline", + "body": [ + "{% svg material calendar_lock_open_outline %}" + ] + }, + "calendar_lock_outline": { + "prefix": "svg.material.calendar_lock_outline", + "description": "SVG material - calendar_lock_outline", + "body": [ + "{% svg material calendar_lock_outline %}" + ] + }, + "calendar_minus": { + "prefix": "svg.material.calendar_minus", + "description": "SVG material - calendar_minus", + "body": [ + "{% svg material calendar_minus %}" + ] + }, + "calendar_minus_outline": { + "prefix": "svg.material.calendar_minus_outline", + "description": "SVG material - calendar_minus_outline", + "body": [ + "{% svg material calendar_minus_outline %}" + ] + }, + "calendar_month": { + "prefix": "svg.material.calendar_month", + "description": "SVG material - calendar_month", + "body": [ + "{% svg material calendar_month %}" + ] + }, + "calendar_month_outline": { + "prefix": "svg.material.calendar_month_outline", + "description": "SVG material - calendar_month_outline", + "body": [ + "{% svg material calendar_month_outline %}" + ] + }, + "calendar_multiple": { + "prefix": "svg.material.calendar_multiple", + "description": "SVG material - calendar_multiple", + "body": [ + "{% svg material calendar_multiple %}" + ] + }, + "calendar_multiple_check": { + "prefix": "svg.material.calendar_multiple_check", + "description": "SVG material - calendar_multiple_check", + "body": [ + "{% svg material calendar_multiple_check %}" + ] + }, + "calendar_multiselect": { + "prefix": "svg.material.calendar_multiselect", + "description": "SVG material - calendar_multiselect", + "body": [ + "{% svg material calendar_multiselect %}" + ] + }, + "calendar_multiselect_outline": { + "prefix": "svg.material.calendar_multiselect_outline", + "description": "SVG material - calendar_multiselect_outline", + "body": [ + "{% svg material calendar_multiselect_outline %}" + ] + }, + "calendar_outline": { + "prefix": "svg.material.calendar_outline", + "description": "SVG material - calendar_outline", + "body": [ + "{% svg material calendar_outline %}" + ] + }, + "calendar_plus": { + "prefix": "svg.material.calendar_plus", + "description": "SVG material - calendar_plus", + "body": [ + "{% svg material calendar_plus %}" + ] + }, + "calendar_plus_outline": { + "prefix": "svg.material.calendar_plus_outline", + "description": "SVG material - calendar_plus_outline", + "body": [ + "{% svg material calendar_plus_outline %}" + ] + }, + "calendar_question": { + "prefix": "svg.material.calendar_question", + "description": "SVG material - calendar_question", + "body": [ + "{% svg material calendar_question %}" + ] + }, + "calendar_question_outline": { + "prefix": "svg.material.calendar_question_outline", + "description": "SVG material - calendar_question_outline", + "body": [ + "{% svg material calendar_question_outline %}" + ] + }, + "calendar_range": { + "prefix": "svg.material.calendar_range", + "description": "SVG material - calendar_range", + "body": [ + "{% svg material calendar_range %}" + ] + }, + "calendar_range_outline": { + "prefix": "svg.material.calendar_range_outline", + "description": "SVG material - calendar_range_outline", + "body": [ + "{% svg material calendar_range_outline %}" + ] + }, + "calendar_refresh": { + "prefix": "svg.material.calendar_refresh", + "description": "SVG material - calendar_refresh", + "body": [ + "{% svg material calendar_refresh %}" + ] + }, + "calendar_refresh_outline": { + "prefix": "svg.material.calendar_refresh_outline", + "description": "SVG material - calendar_refresh_outline", + "body": [ + "{% svg material calendar_refresh_outline %}" + ] + }, + "calendar_remove": { + "prefix": "svg.material.calendar_remove", + "description": "SVG material - calendar_remove", + "body": [ + "{% svg material calendar_remove %}" + ] + }, + "calendar_remove_outline": { + "prefix": "svg.material.calendar_remove_outline", + "description": "SVG material - calendar_remove_outline", + "body": [ + "{% svg material calendar_remove_outline %}" + ] + }, + "calendar_search": { + "prefix": "svg.material.calendar_search", + "description": "SVG material - calendar_search", + "body": [ + "{% svg material calendar_search %}" + ] + }, + "calendar_search_outline": { + "prefix": "svg.material.calendar_search_outline", + "description": "SVG material - calendar_search_outline", + "body": [ + "{% svg material calendar_search_outline %}" + ] + }, + "calendar_star": { + "prefix": "svg.material.calendar_star", + "description": "SVG material - calendar_star", + "body": [ + "{% svg material calendar_star %}" + ] + }, + "calendar_star_four_points": { + "prefix": "svg.material.calendar_star_four_points", + "description": "SVG material - calendar_star_four_points", + "body": [ + "{% svg material calendar_star_four_points %}" + ] + }, + "calendar_star_outline": { + "prefix": "svg.material.calendar_star_outline", + "description": "SVG material - calendar_star_outline", + "body": [ + "{% svg material calendar_star_outline %}" + ] + }, + "calendar_start": { + "prefix": "svg.material.calendar_start", + "description": "SVG material - calendar_start", + "body": [ + "{% svg material calendar_start %}" + ] + }, + "calendar_start_outline": { + "prefix": "svg.material.calendar_start_outline", + "description": "SVG material - calendar_start_outline", + "body": [ + "{% svg material calendar_start_outline %}" + ] + }, + "calendar_sync": { + "prefix": "svg.material.calendar_sync", + "description": "SVG material - calendar_sync", + "body": [ + "{% svg material calendar_sync %}" + ] + }, + "calendar_sync_outline": { + "prefix": "svg.material.calendar_sync_outline", + "description": "SVG material - calendar_sync_outline", + "body": [ + "{% svg material calendar_sync_outline %}" + ] + }, + "calendar_text": { + "prefix": "svg.material.calendar_text", + "description": "SVG material - calendar_text", + "body": [ + "{% svg material calendar_text %}" + ] + }, + "calendar_text_outline": { + "prefix": "svg.material.calendar_text_outline", + "description": "SVG material - calendar_text_outline", + "body": [ + "{% svg material calendar_text_outline %}" + ] + }, + "calendar_today": { + "prefix": "svg.material.calendar_today", + "description": "SVG material - calendar_today", + "body": [ + "{% svg material calendar_today %}" + ] + }, + "calendar_today_outline": { + "prefix": "svg.material.calendar_today_outline", + "description": "SVG material - calendar_today_outline", + "body": [ + "{% svg material calendar_today_outline %}" + ] + }, + "calendar_week": { + "prefix": "svg.material.calendar_week", + "description": "SVG material - calendar_week", + "body": [ + "{% svg material calendar_week %}" + ] + }, + "calendar_week_begin": { + "prefix": "svg.material.calendar_week_begin", + "description": "SVG material - calendar_week_begin", + "body": [ + "{% svg material calendar_week_begin %}" + ] + }, + "calendar_week_begin_outline": { + "prefix": "svg.material.calendar_week_begin_outline", + "description": "SVG material - calendar_week_begin_outline", + "body": [ + "{% svg material calendar_week_begin_outline %}" + ] + }, + "calendar_week_outline": { + "prefix": "svg.material.calendar_week_outline", + "description": "SVG material - calendar_week_outline", + "body": [ + "{% svg material calendar_week_outline %}" + ] + }, + "calendar_weekend": { + "prefix": "svg.material.calendar_weekend", + "description": "SVG material - calendar_weekend", + "body": [ + "{% svg material calendar_weekend %}" + ] + }, + "calendar_weekend_outline": { + "prefix": "svg.material.calendar_weekend_outline", + "description": "SVG material - calendar_weekend_outline", + "body": [ + "{% svg material calendar_weekend_outline %}" + ] + }, + "call_made": { + "prefix": "svg.material.call_made", + "description": "SVG material - call_made", + "body": [ + "{% svg material call_made %}" + ] + }, + "call_merge": { + "prefix": "svg.material.call_merge", + "description": "SVG material - call_merge", + "body": [ + "{% svg material call_merge %}" + ] + }, + "call_missed": { + "prefix": "svg.material.call_missed", + "description": "SVG material - call_missed", + "body": [ + "{% svg material call_missed %}" + ] + }, + "call_received": { + "prefix": "svg.material.call_received", + "description": "SVG material - call_received", + "body": [ + "{% svg material call_received %}" + ] + }, + "call_split": { + "prefix": "svg.material.call_split", + "description": "SVG material - call_split", + "body": [ + "{% svg material call_split %}" + ] + }, + "camcorder": { + "prefix": "svg.material.camcorder", + "description": "SVG material - camcorder", + "body": [ + "{% svg material camcorder %}" + ] + }, + "camcorder_off": { + "prefix": "svg.material.camcorder_off", + "description": "SVG material - camcorder_off", + "body": [ + "{% svg material camcorder_off %}" + ] + }, + "camera": { + "prefix": "svg.material.camera", + "description": "SVG material - camera", + "body": [ + "{% svg material camera %}" + ] + }, + "camera_account": { + "prefix": "svg.material.camera_account", + "description": "SVG material - camera_account", + "body": [ + "{% svg material camera_account %}" + ] + }, + "camera_burst": { + "prefix": "svg.material.camera_burst", + "description": "SVG material - camera_burst", + "body": [ + "{% svg material camera_burst %}" + ] + }, + "camera_control": { + "prefix": "svg.material.camera_control", + "description": "SVG material - camera_control", + "body": [ + "{% svg material camera_control %}" + ] + }, + "camera_document": { + "prefix": "svg.material.camera_document", + "description": "SVG material - camera_document", + "body": [ + "{% svg material camera_document %}" + ] + }, + "camera_document_off": { + "prefix": "svg.material.camera_document_off", + "description": "SVG material - camera_document_off", + "body": [ + "{% svg material camera_document_off %}" + ] + }, + "camera_enhance": { + "prefix": "svg.material.camera_enhance", + "description": "SVG material - camera_enhance", + "body": [ + "{% svg material camera_enhance %}" + ] + }, + "camera_enhance_outline": { + "prefix": "svg.material.camera_enhance_outline", + "description": "SVG material - camera_enhance_outline", + "body": [ + "{% svg material camera_enhance_outline %}" + ] + }, + "camera_flip": { + "prefix": "svg.material.camera_flip", + "description": "SVG material - camera_flip", + "body": [ + "{% svg material camera_flip %}" + ] + }, + "camera_flip_outline": { + "prefix": "svg.material.camera_flip_outline", + "description": "SVG material - camera_flip_outline", + "body": [ + "{% svg material camera_flip_outline %}" + ] + }, + "camera_front": { + "prefix": "svg.material.camera_front", + "description": "SVG material - camera_front", + "body": [ + "{% svg material camera_front %}" + ] + }, + "camera_front_variant": { + "prefix": "svg.material.camera_front_variant", + "description": "SVG material - camera_front_variant", + "body": [ + "{% svg material camera_front_variant %}" + ] + }, + "camera_gopro": { + "prefix": "svg.material.camera_gopro", + "description": "SVG material - camera_gopro", + "body": [ + "{% svg material camera_gopro %}" + ] + }, + "camera_image": { + "prefix": "svg.material.camera_image", + "description": "SVG material - camera_image", + "body": [ + "{% svg material camera_image %}" + ] + }, + "camera_iris": { + "prefix": "svg.material.camera_iris", + "description": "SVG material - camera_iris", + "body": [ + "{% svg material camera_iris %}" + ] + }, + "camera_lock": { + "prefix": "svg.material.camera_lock", + "description": "SVG material - camera_lock", + "body": [ + "{% svg material camera_lock %}" + ] + }, + "camera_lock_open": { + "prefix": "svg.material.camera_lock_open", + "description": "SVG material - camera_lock_open", + "body": [ + "{% svg material camera_lock_open %}" + ] + }, + "camera_lock_open_outline": { + "prefix": "svg.material.camera_lock_open_outline", + "description": "SVG material - camera_lock_open_outline", + "body": [ + "{% svg material camera_lock_open_outline %}" + ] + }, + "camera_lock_outline": { + "prefix": "svg.material.camera_lock_outline", + "description": "SVG material - camera_lock_outline", + "body": [ + "{% svg material camera_lock_outline %}" + ] + }, + "camera_marker": { + "prefix": "svg.material.camera_marker", + "description": "SVG material - camera_marker", + "body": [ + "{% svg material camera_marker %}" + ] + }, + "camera_marker_outline": { + "prefix": "svg.material.camera_marker_outline", + "description": "SVG material - camera_marker_outline", + "body": [ + "{% svg material camera_marker_outline %}" + ] + }, + "camera_metering_center": { + "prefix": "svg.material.camera_metering_center", + "description": "SVG material - camera_metering_center", + "body": [ + "{% svg material camera_metering_center %}" + ] + }, + "camera_metering_matrix": { + "prefix": "svg.material.camera_metering_matrix", + "description": "SVG material - camera_metering_matrix", + "body": [ + "{% svg material camera_metering_matrix %}" + ] + }, + "camera_metering_partial": { + "prefix": "svg.material.camera_metering_partial", + "description": "SVG material - camera_metering_partial", + "body": [ + "{% svg material camera_metering_partial %}" + ] + }, + "camera_metering_spot": { + "prefix": "svg.material.camera_metering_spot", + "description": "SVG material - camera_metering_spot", + "body": [ + "{% svg material camera_metering_spot %}" + ] + }, + "camera_off": { + "prefix": "svg.material.camera_off", + "description": "SVG material - camera_off", + "body": [ + "{% svg material camera_off %}" + ] + }, + "camera_off_outline": { + "prefix": "svg.material.camera_off_outline", + "description": "SVG material - camera_off_outline", + "body": [ + "{% svg material camera_off_outline %}" + ] + }, + "camera_outline": { + "prefix": "svg.material.camera_outline", + "description": "SVG material - camera_outline", + "body": [ + "{% svg material camera_outline %}" + ] + }, + "camera_party_mode": { + "prefix": "svg.material.camera_party_mode", + "description": "SVG material - camera_party_mode", + "body": [ + "{% svg material camera_party_mode %}" + ] + }, + "camera_plus": { + "prefix": "svg.material.camera_plus", + "description": "SVG material - camera_plus", + "body": [ + "{% svg material camera_plus %}" + ] + }, + "camera_plus_outline": { + "prefix": "svg.material.camera_plus_outline", + "description": "SVG material - camera_plus_outline", + "body": [ + "{% svg material camera_plus_outline %}" + ] + }, + "camera_rear": { + "prefix": "svg.material.camera_rear", + "description": "SVG material - camera_rear", + "body": [ + "{% svg material camera_rear %}" + ] + }, + "camera_rear_variant": { + "prefix": "svg.material.camera_rear_variant", + "description": "SVG material - camera_rear_variant", + "body": [ + "{% svg material camera_rear_variant %}" + ] + }, + "camera_retake": { + "prefix": "svg.material.camera_retake", + "description": "SVG material - camera_retake", + "body": [ + "{% svg material camera_retake %}" + ] + }, + "camera_retake_outline": { + "prefix": "svg.material.camera_retake_outline", + "description": "SVG material - camera_retake_outline", + "body": [ + "{% svg material camera_retake_outline %}" + ] + }, + "camera_switch": { + "prefix": "svg.material.camera_switch", + "description": "SVG material - camera_switch", + "body": [ + "{% svg material camera_switch %}" + ] + }, + "camera_switch_outline": { + "prefix": "svg.material.camera_switch_outline", + "description": "SVG material - camera_switch_outline", + "body": [ + "{% svg material camera_switch_outline %}" + ] + }, + "camera_timer": { + "prefix": "svg.material.camera_timer", + "description": "SVG material - camera_timer", + "body": [ + "{% svg material camera_timer %}" + ] + }, + "camera_wireless": { + "prefix": "svg.material.camera_wireless", + "description": "SVG material - camera_wireless", + "body": [ + "{% svg material camera_wireless %}" + ] + }, + "camera_wireless_outline": { + "prefix": "svg.material.camera_wireless_outline", + "description": "SVG material - camera_wireless_outline", + "body": [ + "{% svg material camera_wireless_outline %}" + ] + }, + "campfire": { + "prefix": "svg.material.campfire", + "description": "SVG material - campfire", + "body": [ + "{% svg material campfire %}" + ] + }, + "cancel": { + "prefix": "svg.material.cancel", + "description": "SVG material - cancel", + "body": [ + "{% svg material cancel %}" + ] + }, + "candelabra": { + "prefix": "svg.material.candelabra", + "description": "SVG material - candelabra", + "body": [ + "{% svg material candelabra %}" + ] + }, + "candelabra_fire": { + "prefix": "svg.material.candelabra_fire", + "description": "SVG material - candelabra_fire", + "body": [ + "{% svg material candelabra_fire %}" + ] + }, + "candle": { + "prefix": "svg.material.candle", + "description": "SVG material - candle", + "body": [ + "{% svg material candle %}" + ] + }, + "candy": { + "prefix": "svg.material.candy", + "description": "SVG material - candy", + "body": [ + "{% svg material candy %}" + ] + }, + "candy_off": { + "prefix": "svg.material.candy_off", + "description": "SVG material - candy_off", + "body": [ + "{% svg material candy_off %}" + ] + }, + "candy_off_outline": { + "prefix": "svg.material.candy_off_outline", + "description": "SVG material - candy_off_outline", + "body": [ + "{% svg material candy_off_outline %}" + ] + }, + "candy_outline": { + "prefix": "svg.material.candy_outline", + "description": "SVG material - candy_outline", + "body": [ + "{% svg material candy_outline %}" + ] + }, + "candycane": { + "prefix": "svg.material.candycane", + "description": "SVG material - candycane", + "body": [ + "{% svg material candycane %}" + ] + }, + "cannabis": { + "prefix": "svg.material.cannabis", + "description": "SVG material - cannabis", + "body": [ + "{% svg material cannabis %}" + ] + }, + "cannabis_off": { + "prefix": "svg.material.cannabis_off", + "description": "SVG material - cannabis_off", + "body": [ + "{% svg material cannabis_off %}" + ] + }, + "caps_lock": { + "prefix": "svg.material.caps_lock", + "description": "SVG material - caps_lock", + "body": [ + "{% svg material caps_lock %}" + ] + }, + "car": { + "prefix": "svg.material.car", + "description": "SVG material - car", + "body": [ + "{% svg material car %}" + ] + }, + "car_2_plus": { + "prefix": "svg.material.car_2_plus", + "description": "SVG material - car_2_plus", + "body": [ + "{% svg material car_2_plus %}" + ] + }, + "car_3_plus": { + "prefix": "svg.material.car_3_plus", + "description": "SVG material - car_3_plus", + "body": [ + "{% svg material car_3_plus %}" + ] + }, + "car_arrow_left": { + "prefix": "svg.material.car_arrow_left", + "description": "SVG material - car_arrow_left", + "body": [ + "{% svg material car_arrow_left %}" + ] + }, + "car_arrow_right": { + "prefix": "svg.material.car_arrow_right", + "description": "SVG material - car_arrow_right", + "body": [ + "{% svg material car_arrow_right %}" + ] + }, + "car_back": { + "prefix": "svg.material.car_back", + "description": "SVG material - car_back", + "body": [ + "{% svg material car_back %}" + ] + }, + "car_battery": { + "prefix": "svg.material.car_battery", + "description": "SVG material - car_battery", + "body": [ + "{% svg material car_battery %}" + ] + }, + "car_brake_abs": { + "prefix": "svg.material.car_brake_abs", + "description": "SVG material - car_brake_abs", + "body": [ + "{% svg material car_brake_abs %}" + ] + }, + "car_brake_alert": { + "prefix": "svg.material.car_brake_alert", + "description": "SVG material - car_brake_alert", + "body": [ + "{% svg material car_brake_alert %}" + ] + }, + "car_brake_fluid_level": { + "prefix": "svg.material.car_brake_fluid_level", + "description": "SVG material - car_brake_fluid_level", + "body": [ + "{% svg material car_brake_fluid_level %}" + ] + }, + "car_brake_hold": { + "prefix": "svg.material.car_brake_hold", + "description": "SVG material - car_brake_hold", + "body": [ + "{% svg material car_brake_hold %}" + ] + }, + "car_brake_low_pressure": { + "prefix": "svg.material.car_brake_low_pressure", + "description": "SVG material - car_brake_low_pressure", + "body": [ + "{% svg material car_brake_low_pressure %}" + ] + }, + "car_brake_parking": { + "prefix": "svg.material.car_brake_parking", + "description": "SVG material - car_brake_parking", + "body": [ + "{% svg material car_brake_parking %}" + ] + }, + "car_brake_retarder": { + "prefix": "svg.material.car_brake_retarder", + "description": "SVG material - car_brake_retarder", + "body": [ + "{% svg material car_brake_retarder %}" + ] + }, + "car_brake_temperature": { + "prefix": "svg.material.car_brake_temperature", + "description": "SVG material - car_brake_temperature", + "body": [ + "{% svg material car_brake_temperature %}" + ] + }, + "car_brake_worn_linings": { + "prefix": "svg.material.car_brake_worn_linings", + "description": "SVG material - car_brake_worn_linings", + "body": [ + "{% svg material car_brake_worn_linings %}" + ] + }, + "car_child_seat": { + "prefix": "svg.material.car_child_seat", + "description": "SVG material - car_child_seat", + "body": [ + "{% svg material car_child_seat %}" + ] + }, + "car_clock": { + "prefix": "svg.material.car_clock", + "description": "SVG material - car_clock", + "body": [ + "{% svg material car_clock %}" + ] + }, + "car_clutch": { + "prefix": "svg.material.car_clutch", + "description": "SVG material - car_clutch", + "body": [ + "{% svg material car_clutch %}" + ] + }, + "car_cog": { + "prefix": "svg.material.car_cog", + "description": "SVG material - car_cog", + "body": [ + "{% svg material car_cog %}" + ] + }, + "car_connected": { + "prefix": "svg.material.car_connected", + "description": "SVG material - car_connected", + "body": [ + "{% svg material car_connected %}" + ] + }, + "car_convertible": { + "prefix": "svg.material.car_convertible", + "description": "SVG material - car_convertible", + "body": [ + "{% svg material car_convertible %}" + ] + }, + "car_coolant_level": { + "prefix": "svg.material.car_coolant_level", + "description": "SVG material - car_coolant_level", + "body": [ + "{% svg material car_coolant_level %}" + ] + }, + "car_cruise_control": { + "prefix": "svg.material.car_cruise_control", + "description": "SVG material - car_cruise_control", + "body": [ + "{% svg material car_cruise_control %}" + ] + }, + "car_defrost_front": { + "prefix": "svg.material.car_defrost_front", + "description": "SVG material - car_defrost_front", + "body": [ + "{% svg material car_defrost_front %}" + ] + }, + "car_defrost_rear": { + "prefix": "svg.material.car_defrost_rear", + "description": "SVG material - car_defrost_rear", + "body": [ + "{% svg material car_defrost_rear %}" + ] + }, + "car_door": { + "prefix": "svg.material.car_door", + "description": "SVG material - car_door", + "body": [ + "{% svg material car_door %}" + ] + }, + "car_door_lock": { + "prefix": "svg.material.car_door_lock", + "description": "SVG material - car_door_lock", + "body": [ + "{% svg material car_door_lock %}" + ] + }, + "car_door_lock_open": { + "prefix": "svg.material.car_door_lock_open", + "description": "SVG material - car_door_lock_open", + "body": [ + "{% svg material car_door_lock_open %}" + ] + }, + "car_electric": { + "prefix": "svg.material.car_electric", + "description": "SVG material - car_electric", + "body": [ + "{% svg material car_electric %}" + ] + }, + "car_electric_outline": { + "prefix": "svg.material.car_electric_outline", + "description": "SVG material - car_electric_outline", + "body": [ + "{% svg material car_electric_outline %}" + ] + }, + "car_emergency": { + "prefix": "svg.material.car_emergency", + "description": "SVG material - car_emergency", + "body": [ + "{% svg material car_emergency %}" + ] + }, + "car_esp": { + "prefix": "svg.material.car_esp", + "description": "SVG material - car_esp", + "body": [ + "{% svg material car_esp %}" + ] + }, + "car_estate": { + "prefix": "svg.material.car_estate", + "description": "SVG material - car_estate", + "body": [ + "{% svg material car_estate %}" + ] + }, + "car_hatchback": { + "prefix": "svg.material.car_hatchback", + "description": "SVG material - car_hatchback", + "body": [ + "{% svg material car_hatchback %}" + ] + }, + "car_info": { + "prefix": "svg.material.car_info", + "description": "SVG material - car_info", + "body": [ + "{% svg material car_info %}" + ] + }, + "car_key": { + "prefix": "svg.material.car_key", + "description": "SVG material - car_key", + "body": [ + "{% svg material car_key %}" + ] + }, + "car_lifted_pickup": { + "prefix": "svg.material.car_lifted_pickup", + "description": "SVG material - car_lifted_pickup", + "body": [ + "{% svg material car_lifted_pickup %}" + ] + }, + "car_light_alert": { + "prefix": "svg.material.car_light_alert", + "description": "SVG material - car_light_alert", + "body": [ + "{% svg material car_light_alert %}" + ] + }, + "car_light_dimmed": { + "prefix": "svg.material.car_light_dimmed", + "description": "SVG material - car_light_dimmed", + "body": [ + "{% svg material car_light_dimmed %}" + ] + }, + "car_light_fog": { + "prefix": "svg.material.car_light_fog", + "description": "SVG material - car_light_fog", + "body": [ + "{% svg material car_light_fog %}" + ] + }, + "car_light_high": { + "prefix": "svg.material.car_light_high", + "description": "SVG material - car_light_high", + "body": [ + "{% svg material car_light_high %}" + ] + }, + "car_limousine": { + "prefix": "svg.material.car_limousine", + "description": "SVG material - car_limousine", + "body": [ + "{% svg material car_limousine %}" + ] + }, + "car_multiple": { + "prefix": "svg.material.car_multiple", + "description": "SVG material - car_multiple", + "body": [ + "{% svg material car_multiple %}" + ] + }, + "car_off": { + "prefix": "svg.material.car_off", + "description": "SVG material - car_off", + "body": [ + "{% svg material car_off %}" + ] + }, + "car_outline": { + "prefix": "svg.material.car_outline", + "description": "SVG material - car_outline", + "body": [ + "{% svg material car_outline %}" + ] + }, + "car_parking_lights": { + "prefix": "svg.material.car_parking_lights", + "description": "SVG material - car_parking_lights", + "body": [ + "{% svg material car_parking_lights %}" + ] + }, + "car_pickup": { + "prefix": "svg.material.car_pickup", + "description": "SVG material - car_pickup", + "body": [ + "{% svg material car_pickup %}" + ] + }, + "car_search": { + "prefix": "svg.material.car_search", + "description": "SVG material - car_search", + "body": [ + "{% svg material car_search %}" + ] + }, + "car_search_outline": { + "prefix": "svg.material.car_search_outline", + "description": "SVG material - car_search_outline", + "body": [ + "{% svg material car_search_outline %}" + ] + }, + "car_seat": { + "prefix": "svg.material.car_seat", + "description": "SVG material - car_seat", + "body": [ + "{% svg material car_seat %}" + ] + }, + "car_seat_cooler": { + "prefix": "svg.material.car_seat_cooler", + "description": "SVG material - car_seat_cooler", + "body": [ + "{% svg material car_seat_cooler %}" + ] + }, + "car_seat_heater": { + "prefix": "svg.material.car_seat_heater", + "description": "SVG material - car_seat_heater", + "body": [ + "{% svg material car_seat_heater %}" + ] + }, + "car_select": { + "prefix": "svg.material.car_select", + "description": "SVG material - car_select", + "body": [ + "{% svg material car_select %}" + ] + }, + "car_settings": { + "prefix": "svg.material.car_settings", + "description": "SVG material - car_settings", + "body": [ + "{% svg material car_settings %}" + ] + }, + "car_shift_pattern": { + "prefix": "svg.material.car_shift_pattern", + "description": "SVG material - car_shift_pattern", + "body": [ + "{% svg material car_shift_pattern %}" + ] + }, + "car_side": { + "prefix": "svg.material.car_side", + "description": "SVG material - car_side", + "body": [ + "{% svg material car_side %}" + ] + }, + "car_speed_limiter": { + "prefix": "svg.material.car_speed_limiter", + "description": "SVG material - car_speed_limiter", + "body": [ + "{% svg material car_speed_limiter %}" + ] + }, + "car_sports": { + "prefix": "svg.material.car_sports", + "description": "SVG material - car_sports", + "body": [ + "{% svg material car_sports %}" + ] + }, + "car_tire_alert": { + "prefix": "svg.material.car_tire_alert", + "description": "SVG material - car_tire_alert", + "body": [ + "{% svg material car_tire_alert %}" + ] + }, + "car_traction_control": { + "prefix": "svg.material.car_traction_control", + "description": "SVG material - car_traction_control", + "body": [ + "{% svg material car_traction_control %}" + ] + }, + "car_turbocharger": { + "prefix": "svg.material.car_turbocharger", + "description": "SVG material - car_turbocharger", + "body": [ + "{% svg material car_turbocharger %}" + ] + }, + "car_wash": { + "prefix": "svg.material.car_wash", + "description": "SVG material - car_wash", + "body": [ + "{% svg material car_wash %}" + ] + }, + "car_windshield": { + "prefix": "svg.material.car_windshield", + "description": "SVG material - car_windshield", + "body": [ + "{% svg material car_windshield %}" + ] + }, + "car_windshield_outline": { + "prefix": "svg.material.car_windshield_outline", + "description": "SVG material - car_windshield_outline", + "body": [ + "{% svg material car_windshield_outline %}" + ] + }, + "car_wireless": { + "prefix": "svg.material.car_wireless", + "description": "SVG material - car_wireless", + "body": [ + "{% svg material car_wireless %}" + ] + }, + "car_wrench": { + "prefix": "svg.material.car_wrench", + "description": "SVG material - car_wrench", + "body": [ + "{% svg material car_wrench %}" + ] + }, + "carabiner": { + "prefix": "svg.material.carabiner", + "description": "SVG material - carabiner", + "body": [ + "{% svg material carabiner %}" + ] + }, + "caravan": { + "prefix": "svg.material.caravan", + "description": "SVG material - caravan", + "body": [ + "{% svg material caravan %}" + ] + }, + "card": { + "prefix": "svg.material.card", + "description": "SVG material - card", + "body": [ + "{% svg material card %}" + ] + }, + "card_account_details": { + "prefix": "svg.material.card_account_details", + "description": "SVG material - card_account_details", + "body": [ + "{% svg material card_account_details %}" + ] + }, + "card_account_details_outline": { + "prefix": "svg.material.card_account_details_outline", + "description": "SVG material - card_account_details_outline", + "body": [ + "{% svg material card_account_details_outline %}" + ] + }, + "card_account_details_star": { + "prefix": "svg.material.card_account_details_star", + "description": "SVG material - card_account_details_star", + "body": [ + "{% svg material card_account_details_star %}" + ] + }, + "card_account_details_star_outline": { + "prefix": "svg.material.card_account_details_star_outline", + "description": "SVG material - card_account_details_star_outline", + "body": [ + "{% svg material card_account_details_star_outline %}" + ] + }, + "card_account_mail": { + "prefix": "svg.material.card_account_mail", + "description": "SVG material - card_account_mail", + "body": [ + "{% svg material card_account_mail %}" + ] + }, + "card_account_mail_outline": { + "prefix": "svg.material.card_account_mail_outline", + "description": "SVG material - card_account_mail_outline", + "body": [ + "{% svg material card_account_mail_outline %}" + ] + }, + "card_account_phone": { + "prefix": "svg.material.card_account_phone", + "description": "SVG material - card_account_phone", + "body": [ + "{% svg material card_account_phone %}" + ] + }, + "card_account_phone_outline": { + "prefix": "svg.material.card_account_phone_outline", + "description": "SVG material - card_account_phone_outline", + "body": [ + "{% svg material card_account_phone_outline %}" + ] + }, + "card_bulleted": { + "prefix": "svg.material.card_bulleted", + "description": "SVG material - card_bulleted", + "body": [ + "{% svg material card_bulleted %}" + ] + }, + "card_bulleted_off": { + "prefix": "svg.material.card_bulleted_off", + "description": "SVG material - card_bulleted_off", + "body": [ + "{% svg material card_bulleted_off %}" + ] + }, + "card_bulleted_off_outline": { + "prefix": "svg.material.card_bulleted_off_outline", + "description": "SVG material - card_bulleted_off_outline", + "body": [ + "{% svg material card_bulleted_off_outline %}" + ] + }, + "card_bulleted_outline": { + "prefix": "svg.material.card_bulleted_outline", + "description": "SVG material - card_bulleted_outline", + "body": [ + "{% svg material card_bulleted_outline %}" + ] + }, + "card_bulleted_settings": { + "prefix": "svg.material.card_bulleted_settings", + "description": "SVG material - card_bulleted_settings", + "body": [ + "{% svg material card_bulleted_settings %}" + ] + }, + "card_bulleted_settings_outline": { + "prefix": "svg.material.card_bulleted_settings_outline", + "description": "SVG material - card_bulleted_settings_outline", + "body": [ + "{% svg material card_bulleted_settings_outline %}" + ] + }, + "card_minus": { + "prefix": "svg.material.card_minus", + "description": "SVG material - card_minus", + "body": [ + "{% svg material card_minus %}" + ] + }, + "card_minus_outline": { + "prefix": "svg.material.card_minus_outline", + "description": "SVG material - card_minus_outline", + "body": [ + "{% svg material card_minus_outline %}" + ] + }, + "card_multiple": { + "prefix": "svg.material.card_multiple", + "description": "SVG material - card_multiple", + "body": [ + "{% svg material card_multiple %}" + ] + }, + "card_multiple_outline": { + "prefix": "svg.material.card_multiple_outline", + "description": "SVG material - card_multiple_outline", + "body": [ + "{% svg material card_multiple_outline %}" + ] + }, + "card_off": { + "prefix": "svg.material.card_off", + "description": "SVG material - card_off", + "body": [ + "{% svg material card_off %}" + ] + }, + "card_off_outline": { + "prefix": "svg.material.card_off_outline", + "description": "SVG material - card_off_outline", + "body": [ + "{% svg material card_off_outline %}" + ] + }, + "card_outline": { + "prefix": "svg.material.card_outline", + "description": "SVG material - card_outline", + "body": [ + "{% svg material card_outline %}" + ] + }, + "card_plus": { + "prefix": "svg.material.card_plus", + "description": "SVG material - card_plus", + "body": [ + "{% svg material card_plus %}" + ] + }, + "card_plus_outline": { + "prefix": "svg.material.card_plus_outline", + "description": "SVG material - card_plus_outline", + "body": [ + "{% svg material card_plus_outline %}" + ] + }, + "card_remove": { + "prefix": "svg.material.card_remove", + "description": "SVG material - card_remove", + "body": [ + "{% svg material card_remove %}" + ] + }, + "card_remove_outline": { + "prefix": "svg.material.card_remove_outline", + "description": "SVG material - card_remove_outline", + "body": [ + "{% svg material card_remove_outline %}" + ] + }, + "card_search": { + "prefix": "svg.material.card_search", + "description": "SVG material - card_search", + "body": [ + "{% svg material card_search %}" + ] + }, + "card_search_outline": { + "prefix": "svg.material.card_search_outline", + "description": "SVG material - card_search_outline", + "body": [ + "{% svg material card_search_outline %}" + ] + }, + "card_text": { + "prefix": "svg.material.card_text", + "description": "SVG material - card_text", + "body": [ + "{% svg material card_text %}" + ] + }, + "card_text_outline": { + "prefix": "svg.material.card_text_outline", + "description": "SVG material - card_text_outline", + "body": [ + "{% svg material card_text_outline %}" + ] + }, + "cards": { + "prefix": "svg.material.cards", + "description": "SVG material - cards", + "body": [ + "{% svg material cards %}" + ] + }, + "cards_club": { + "prefix": "svg.material.cards_club", + "description": "SVG material - cards_club", + "body": [ + "{% svg material cards_club %}" + ] + }, + "cards_club_outline": { + "prefix": "svg.material.cards_club_outline", + "description": "SVG material - cards_club_outline", + "body": [ + "{% svg material cards_club_outline %}" + ] + }, + "cards_diamond": { + "prefix": "svg.material.cards_diamond", + "description": "SVG material - cards_diamond", + "body": [ + "{% svg material cards_diamond %}" + ] + }, + "cards_diamond_outline": { + "prefix": "svg.material.cards_diamond_outline", + "description": "SVG material - cards_diamond_outline", + "body": [ + "{% svg material cards_diamond_outline %}" + ] + }, + "cards_heart": { + "prefix": "svg.material.cards_heart", + "description": "SVG material - cards_heart", + "body": [ + "{% svg material cards_heart %}" + ] + }, + "cards_heart_outline": { + "prefix": "svg.material.cards_heart_outline", + "description": "SVG material - cards_heart_outline", + "body": [ + "{% svg material cards_heart_outline %}" + ] + }, + "cards_outline": { + "prefix": "svg.material.cards_outline", + "description": "SVG material - cards_outline", + "body": [ + "{% svg material cards_outline %}" + ] + }, + "cards_playing": { + "prefix": "svg.material.cards_playing", + "description": "SVG material - cards_playing", + "body": [ + "{% svg material cards_playing %}" + ] + }, + "cards_playing_club": { + "prefix": "svg.material.cards_playing_club", + "description": "SVG material - cards_playing_club", + "body": [ + "{% svg material cards_playing_club %}" + ] + }, + "cards_playing_club_multiple": { + "prefix": "svg.material.cards_playing_club_multiple", + "description": "SVG material - cards_playing_club_multiple", + "body": [ + "{% svg material cards_playing_club_multiple %}" + ] + }, + "cards_playing_club_multiple_outline": { + "prefix": "svg.material.cards_playing_club_multiple_outline", + "description": "SVG material - cards_playing_club_multiple_outline", + "body": [ + "{% svg material cards_playing_club_multiple_outline %}" + ] + }, + "cards_playing_club_outline": { + "prefix": "svg.material.cards_playing_club_outline", + "description": "SVG material - cards_playing_club_outline", + "body": [ + "{% svg material cards_playing_club_outline %}" + ] + }, + "cards_playing_diamond": { + "prefix": "svg.material.cards_playing_diamond", + "description": "SVG material - cards_playing_diamond", + "body": [ + "{% svg material cards_playing_diamond %}" + ] + }, + "cards_playing_diamond_multiple": { + "prefix": "svg.material.cards_playing_diamond_multiple", + "description": "SVG material - cards_playing_diamond_multiple", + "body": [ + "{% svg material cards_playing_diamond_multiple %}" + ] + }, + "cards_playing_diamond_multiple_outline": { + "prefix": "svg.material.cards_playing_diamond_multiple_outline", + "description": "SVG material - cards_playing_diamond_multiple_outline", + "body": [ + "{% svg material cards_playing_diamond_multiple_outline %}" + ] + }, + "cards_playing_diamond_outline": { + "prefix": "svg.material.cards_playing_diamond_outline", + "description": "SVG material - cards_playing_diamond_outline", + "body": [ + "{% svg material cards_playing_diamond_outline %}" + ] + }, + "cards_playing_heart": { + "prefix": "svg.material.cards_playing_heart", + "description": "SVG material - cards_playing_heart", + "body": [ + "{% svg material cards_playing_heart %}" + ] + }, + "cards_playing_heart_multiple": { + "prefix": "svg.material.cards_playing_heart_multiple", + "description": "SVG material - cards_playing_heart_multiple", + "body": [ + "{% svg material cards_playing_heart_multiple %}" + ] + }, + "cards_playing_heart_multiple_outline": { + "prefix": "svg.material.cards_playing_heart_multiple_outline", + "description": "SVG material - cards_playing_heart_multiple_outline", + "body": [ + "{% svg material cards_playing_heart_multiple_outline %}" + ] + }, + "cards_playing_heart_outline": { + "prefix": "svg.material.cards_playing_heart_outline", + "description": "SVG material - cards_playing_heart_outline", + "body": [ + "{% svg material cards_playing_heart_outline %}" + ] + }, + "cards_playing_outline": { + "prefix": "svg.material.cards_playing_outline", + "description": "SVG material - cards_playing_outline", + "body": [ + "{% svg material cards_playing_outline %}" + ] + }, + "cards_playing_spade": { + "prefix": "svg.material.cards_playing_spade", + "description": "SVG material - cards_playing_spade", + "body": [ + "{% svg material cards_playing_spade %}" + ] + }, + "cards_playing_spade_multiple": { + "prefix": "svg.material.cards_playing_spade_multiple", + "description": "SVG material - cards_playing_spade_multiple", + "body": [ + "{% svg material cards_playing_spade_multiple %}" + ] + }, + "cards_playing_spade_multiple_outline": { + "prefix": "svg.material.cards_playing_spade_multiple_outline", + "description": "SVG material - cards_playing_spade_multiple_outline", + "body": [ + "{% svg material cards_playing_spade_multiple_outline %}" + ] + }, + "cards_playing_spade_outline": { + "prefix": "svg.material.cards_playing_spade_outline", + "description": "SVG material - cards_playing_spade_outline", + "body": [ + "{% svg material cards_playing_spade_outline %}" + ] + }, + "cards_spade": { + "prefix": "svg.material.cards_spade", + "description": "SVG material - cards_spade", + "body": [ + "{% svg material cards_spade %}" + ] + }, + "cards_spade_outline": { + "prefix": "svg.material.cards_spade_outline", + "description": "SVG material - cards_spade_outline", + "body": [ + "{% svg material cards_spade_outline %}" + ] + }, + "cards_variant": { + "prefix": "svg.material.cards_variant", + "description": "SVG material - cards_variant", + "body": [ + "{% svg material cards_variant %}" + ] + }, + "carrot": { + "prefix": "svg.material.carrot", + "description": "SVG material - carrot", + "body": [ + "{% svg material carrot %}" + ] + }, + "cart": { + "prefix": "svg.material.cart", + "description": "SVG material - cart", + "body": [ + "{% svg material cart %}" + ] + }, + "cart_arrow_down": { + "prefix": "svg.material.cart_arrow_down", + "description": "SVG material - cart_arrow_down", + "body": [ + "{% svg material cart_arrow_down %}" + ] + }, + "cart_arrow_right": { + "prefix": "svg.material.cart_arrow_right", + "description": "SVG material - cart_arrow_right", + "body": [ + "{% svg material cart_arrow_right %}" + ] + }, + "cart_arrow_up": { + "prefix": "svg.material.cart_arrow_up", + "description": "SVG material - cart_arrow_up", + "body": [ + "{% svg material cart_arrow_up %}" + ] + }, + "cart_check": { + "prefix": "svg.material.cart_check", + "description": "SVG material - cart_check", + "body": [ + "{% svg material cart_check %}" + ] + }, + "cart_heart": { + "prefix": "svg.material.cart_heart", + "description": "SVG material - cart_heart", + "body": [ + "{% svg material cart_heart %}" + ] + }, + "cart_minus": { + "prefix": "svg.material.cart_minus", + "description": "SVG material - cart_minus", + "body": [ + "{% svg material cart_minus %}" + ] + }, + "cart_off": { + "prefix": "svg.material.cart_off", + "description": "SVG material - cart_off", + "body": [ + "{% svg material cart_off %}" + ] + }, + "cart_outline": { + "prefix": "svg.material.cart_outline", + "description": "SVG material - cart_outline", + "body": [ + "{% svg material cart_outline %}" + ] + }, + "cart_percent": { + "prefix": "svg.material.cart_percent", + "description": "SVG material - cart_percent", + "body": [ + "{% svg material cart_percent %}" + ] + }, + "cart_plus": { + "prefix": "svg.material.cart_plus", + "description": "SVG material - cart_plus", + "body": [ + "{% svg material cart_plus %}" + ] + }, + "cart_remove": { + "prefix": "svg.material.cart_remove", + "description": "SVG material - cart_remove", + "body": [ + "{% svg material cart_remove %}" + ] + }, + "cart_variant": { + "prefix": "svg.material.cart_variant", + "description": "SVG material - cart_variant", + "body": [ + "{% svg material cart_variant %}" + ] + }, + "case_sensitive_alt": { + "prefix": "svg.material.case_sensitive_alt", + "description": "SVG material - case_sensitive_alt", + "body": [ + "{% svg material case_sensitive_alt %}" + ] + }, + "cash": { + "prefix": "svg.material.cash", + "description": "SVG material - cash", + "body": [ + "{% svg material cash %}" + ] + }, + "cash_100": { + "prefix": "svg.material.cash_100", + "description": "SVG material - cash_100", + "body": [ + "{% svg material cash_100 %}" + ] + }, + "cash_check": { + "prefix": "svg.material.cash_check", + "description": "SVG material - cash_check", + "body": [ + "{% svg material cash_check %}" + ] + }, + "cash_clock": { + "prefix": "svg.material.cash_clock", + "description": "SVG material - cash_clock", + "body": [ + "{% svg material cash_clock %}" + ] + }, + "cash_edit": { + "prefix": "svg.material.cash_edit", + "description": "SVG material - cash_edit", + "body": [ + "{% svg material cash_edit %}" + ] + }, + "cash_fast": { + "prefix": "svg.material.cash_fast", + "description": "SVG material - cash_fast", + "body": [ + "{% svg material cash_fast %}" + ] + }, + "cash_lock": { + "prefix": "svg.material.cash_lock", + "description": "SVG material - cash_lock", + "body": [ + "{% svg material cash_lock %}" + ] + }, + "cash_lock_open": { + "prefix": "svg.material.cash_lock_open", + "description": "SVG material - cash_lock_open", + "body": [ + "{% svg material cash_lock_open %}" + ] + }, + "cash_marker": { + "prefix": "svg.material.cash_marker", + "description": "SVG material - cash_marker", + "body": [ + "{% svg material cash_marker %}" + ] + }, + "cash_minus": { + "prefix": "svg.material.cash_minus", + "description": "SVG material - cash_minus", + "body": [ + "{% svg material cash_minus %}" + ] + }, + "cash_multiple": { + "prefix": "svg.material.cash_multiple", + "description": "SVG material - cash_multiple", + "body": [ + "{% svg material cash_multiple %}" + ] + }, + "cash_off": { + "prefix": "svg.material.cash_off", + "description": "SVG material - cash_off", + "body": [ + "{% svg material cash_off %}" + ] + }, + "cash_plus": { + "prefix": "svg.material.cash_plus", + "description": "SVG material - cash_plus", + "body": [ + "{% svg material cash_plus %}" + ] + }, + "cash_refund": { + "prefix": "svg.material.cash_refund", + "description": "SVG material - cash_refund", + "body": [ + "{% svg material cash_refund %}" + ] + }, + "cash_register": { + "prefix": "svg.material.cash_register", + "description": "SVG material - cash_register", + "body": [ + "{% svg material cash_register %}" + ] + }, + "cash_remove": { + "prefix": "svg.material.cash_remove", + "description": "SVG material - cash_remove", + "body": [ + "{% svg material cash_remove %}" + ] + }, + "cash_sync": { + "prefix": "svg.material.cash_sync", + "description": "SVG material - cash_sync", + "body": [ + "{% svg material cash_sync %}" + ] + }, + "cassette": { + "prefix": "svg.material.cassette", + "description": "SVG material - cassette", + "body": [ + "{% svg material cassette %}" + ] + }, + "cast": { + "prefix": "svg.material.cast", + "description": "SVG material - cast", + "body": [ + "{% svg material cast %}" + ] + }, + "cast_audio": { + "prefix": "svg.material.cast_audio", + "description": "SVG material - cast_audio", + "body": [ + "{% svg material cast_audio %}" + ] + }, + "cast_audio_variant": { + "prefix": "svg.material.cast_audio_variant", + "description": "SVG material - cast_audio_variant", + "body": [ + "{% svg material cast_audio_variant %}" + ] + }, + "cast_connected": { + "prefix": "svg.material.cast_connected", + "description": "SVG material - cast_connected", + "body": [ + "{% svg material cast_connected %}" + ] + }, + "cast_education": { + "prefix": "svg.material.cast_education", + "description": "SVG material - cast_education", + "body": [ + "{% svg material cast_education %}" + ] + }, + "cast_off": { + "prefix": "svg.material.cast_off", + "description": "SVG material - cast_off", + "body": [ + "{% svg material cast_off %}" + ] + }, + "cast_variant": { + "prefix": "svg.material.cast_variant", + "description": "SVG material - cast_variant", + "body": [ + "{% svg material cast_variant %}" + ] + }, + "castle": { + "prefix": "svg.material.castle", + "description": "SVG material - castle", + "body": [ + "{% svg material castle %}" + ] + }, + "cat": { + "prefix": "svg.material.cat", + "description": "SVG material - cat", + "body": [ + "{% svg material cat %}" + ] + }, + "cctv": { + "prefix": "svg.material.cctv", + "description": "SVG material - cctv", + "body": [ + "{% svg material cctv %}" + ] + }, + "cctv_off": { + "prefix": "svg.material.cctv_off", + "description": "SVG material - cctv_off", + "body": [ + "{% svg material cctv_off %}" + ] + }, + "ceiling_fan": { + "prefix": "svg.material.ceiling_fan", + "description": "SVG material - ceiling_fan", + "body": [ + "{% svg material ceiling_fan %}" + ] + }, + "ceiling_fan_light": { + "prefix": "svg.material.ceiling_fan_light", + "description": "SVG material - ceiling_fan_light", + "body": [ + "{% svg material ceiling_fan_light %}" + ] + }, + "ceiling_light": { + "prefix": "svg.material.ceiling_light", + "description": "SVG material - ceiling_light", + "body": [ + "{% svg material ceiling_light %}" + ] + }, + "ceiling_light_multiple": { + "prefix": "svg.material.ceiling_light_multiple", + "description": "SVG material - ceiling_light_multiple", + "body": [ + "{% svg material ceiling_light_multiple %}" + ] + }, + "ceiling_light_multiple_outline": { + "prefix": "svg.material.ceiling_light_multiple_outline", + "description": "SVG material - ceiling_light_multiple_outline", + "body": [ + "{% svg material ceiling_light_multiple_outline %}" + ] + }, + "ceiling_light_outline": { + "prefix": "svg.material.ceiling_light_outline", + "description": "SVG material - ceiling_light_outline", + "body": [ + "{% svg material ceiling_light_outline %}" + ] + }, + "cellphone": { + "prefix": "svg.material.cellphone", + "description": "SVG material - cellphone", + "body": [ + "{% svg material cellphone %}" + ] + }, + "cellphone_arrow_down": { + "prefix": "svg.material.cellphone_arrow_down", + "description": "SVG material - cellphone_arrow_down", + "body": [ + "{% svg material cellphone_arrow_down %}" + ] + }, + "cellphone_arrow_down_variant": { + "prefix": "svg.material.cellphone_arrow_down_variant", + "description": "SVG material - cellphone_arrow_down_variant", + "body": [ + "{% svg material cellphone_arrow_down_variant %}" + ] + }, + "cellphone_basic": { + "prefix": "svg.material.cellphone_basic", + "description": "SVG material - cellphone_basic", + "body": [ + "{% svg material cellphone_basic %}" + ] + }, + "cellphone_charging": { + "prefix": "svg.material.cellphone_charging", + "description": "SVG material - cellphone_charging", + "body": [ + "{% svg material cellphone_charging %}" + ] + }, + "cellphone_check": { + "prefix": "svg.material.cellphone_check", + "description": "SVG material - cellphone_check", + "body": [ + "{% svg material cellphone_check %}" + ] + }, + "cellphone_cog": { + "prefix": "svg.material.cellphone_cog", + "description": "SVG material - cellphone_cog", + "body": [ + "{% svg material cellphone_cog %}" + ] + }, + "cellphone_dock": { + "prefix": "svg.material.cellphone_dock", + "description": "SVG material - cellphone_dock", + "body": [ + "{% svg material cellphone_dock %}" + ] + }, + "cellphone_information": { + "prefix": "svg.material.cellphone_information", + "description": "SVG material - cellphone_information", + "body": [ + "{% svg material cellphone_information %}" + ] + }, + "cellphone_key": { + "prefix": "svg.material.cellphone_key", + "description": "SVG material - cellphone_key", + "body": [ + "{% svg material cellphone_key %}" + ] + }, + "cellphone_link": { + "prefix": "svg.material.cellphone_link", + "description": "SVG material - cellphone_link", + "body": [ + "{% svg material cellphone_link %}" + ] + }, + "cellphone_link_off": { + "prefix": "svg.material.cellphone_link_off", + "description": "SVG material - cellphone_link_off", + "body": [ + "{% svg material cellphone_link_off %}" + ] + }, + "cellphone_lock": { + "prefix": "svg.material.cellphone_lock", + "description": "SVG material - cellphone_lock", + "body": [ + "{% svg material cellphone_lock %}" + ] + }, + "cellphone_marker": { + "prefix": "svg.material.cellphone_marker", + "description": "SVG material - cellphone_marker", + "body": [ + "{% svg material cellphone_marker %}" + ] + }, + "cellphone_message": { + "prefix": "svg.material.cellphone_message", + "description": "SVG material - cellphone_message", + "body": [ + "{% svg material cellphone_message %}" + ] + }, + "cellphone_message_off": { + "prefix": "svg.material.cellphone_message_off", + "description": "SVG material - cellphone_message_off", + "body": [ + "{% svg material cellphone_message_off %}" + ] + }, + "cellphone_nfc": { + "prefix": "svg.material.cellphone_nfc", + "description": "SVG material - cellphone_nfc", + "body": [ + "{% svg material cellphone_nfc %}" + ] + }, + "cellphone_nfc_off": { + "prefix": "svg.material.cellphone_nfc_off", + "description": "SVG material - cellphone_nfc_off", + "body": [ + "{% svg material cellphone_nfc_off %}" + ] + }, + "cellphone_off": { + "prefix": "svg.material.cellphone_off", + "description": "SVG material - cellphone_off", + "body": [ + "{% svg material cellphone_off %}" + ] + }, + "cellphone_play": { + "prefix": "svg.material.cellphone_play", + "description": "SVG material - cellphone_play", + "body": [ + "{% svg material cellphone_play %}" + ] + }, + "cellphone_remove": { + "prefix": "svg.material.cellphone_remove", + "description": "SVG material - cellphone_remove", + "body": [ + "{% svg material cellphone_remove %}" + ] + }, + "cellphone_screenshot": { + "prefix": "svg.material.cellphone_screenshot", + "description": "SVG material - cellphone_screenshot", + "body": [ + "{% svg material cellphone_screenshot %}" + ] + }, + "cellphone_settings": { + "prefix": "svg.material.cellphone_settings", + "description": "SVG material - cellphone_settings", + "body": [ + "{% svg material cellphone_settings %}" + ] + }, + "cellphone_sound": { + "prefix": "svg.material.cellphone_sound", + "description": "SVG material - cellphone_sound", + "body": [ + "{% svg material cellphone_sound %}" + ] + }, + "cellphone_text": { + "prefix": "svg.material.cellphone_text", + "description": "SVG material - cellphone_text", + "body": [ + "{% svg material cellphone_text %}" + ] + }, + "cellphone_wireless": { + "prefix": "svg.material.cellphone_wireless", + "description": "SVG material - cellphone_wireless", + "body": [ + "{% svg material cellphone_wireless %}" + ] + }, + "centos": { + "prefix": "svg.material.centos", + "description": "SVG material - centos", + "body": [ + "{% svg material centos %}" + ] + }, + "certificate": { + "prefix": "svg.material.certificate", + "description": "SVG material - certificate", + "body": [ + "{% svg material certificate %}" + ] + }, + "certificate_outline": { + "prefix": "svg.material.certificate_outline", + "description": "SVG material - certificate_outline", + "body": [ + "{% svg material certificate_outline %}" + ] + }, + "chair_rolling": { + "prefix": "svg.material.chair_rolling", + "description": "SVG material - chair_rolling", + "body": [ + "{% svg material chair_rolling %}" + ] + }, + "chair_school": { + "prefix": "svg.material.chair_school", + "description": "SVG material - chair_school", + "body": [ + "{% svg material chair_school %}" + ] + }, + "chandelier": { + "prefix": "svg.material.chandelier", + "description": "SVG material - chandelier", + "body": [ + "{% svg material chandelier %}" + ] + }, + "charity": { + "prefix": "svg.material.charity", + "description": "SVG material - charity", + "body": [ + "{% svg material charity %}" + ] + }, + "charity_search": { + "prefix": "svg.material.charity_search", + "description": "SVG material - charity_search", + "body": [ + "{% svg material charity_search %}" + ] + }, + "chart_arc": { + "prefix": "svg.material.chart_arc", + "description": "SVG material - chart_arc", + "body": [ + "{% svg material chart_arc %}" + ] + }, + "chart_areaspline": { + "prefix": "svg.material.chart_areaspline", + "description": "SVG material - chart_areaspline", + "body": [ + "{% svg material chart_areaspline %}" + ] + }, + "chart_areaspline_variant": { + "prefix": "svg.material.chart_areaspline_variant", + "description": "SVG material - chart_areaspline_variant", + "body": [ + "{% svg material chart_areaspline_variant %}" + ] + }, + "chart_bar": { + "prefix": "svg.material.chart_bar", + "description": "SVG material - chart_bar", + "body": [ + "{% svg material chart_bar %}" + ] + }, + "chart_bar_stacked": { + "prefix": "svg.material.chart_bar_stacked", + "description": "SVG material - chart_bar_stacked", + "body": [ + "{% svg material chart_bar_stacked %}" + ] + }, + "chart_bell_curve": { + "prefix": "svg.material.chart_bell_curve", + "description": "SVG material - chart_bell_curve", + "body": [ + "{% svg material chart_bell_curve %}" + ] + }, + "chart_bell_curve_cumulative": { + "prefix": "svg.material.chart_bell_curve_cumulative", + "description": "SVG material - chart_bell_curve_cumulative", + "body": [ + "{% svg material chart_bell_curve_cumulative %}" + ] + }, + "chart_box": { + "prefix": "svg.material.chart_box", + "description": "SVG material - chart_box", + "body": [ + "{% svg material chart_box %}" + ] + }, + "chart_box_multiple": { + "prefix": "svg.material.chart_box_multiple", + "description": "SVG material - chart_box_multiple", + "body": [ + "{% svg material chart_box_multiple %}" + ] + }, + "chart_box_multiple_outline": { + "prefix": "svg.material.chart_box_multiple_outline", + "description": "SVG material - chart_box_multiple_outline", + "body": [ + "{% svg material chart_box_multiple_outline %}" + ] + }, + "chart_box_outline": { + "prefix": "svg.material.chart_box_outline", + "description": "SVG material - chart_box_outline", + "body": [ + "{% svg material chart_box_outline %}" + ] + }, + "chart_box_plus_outline": { + "prefix": "svg.material.chart_box_plus_outline", + "description": "SVG material - chart_box_plus_outline", + "body": [ + "{% svg material chart_box_plus_outline %}" + ] + }, + "chart_bubble": { + "prefix": "svg.material.chart_bubble", + "description": "SVG material - chart_bubble", + "body": [ + "{% svg material chart_bubble %}" + ] + }, + "chart_donut": { + "prefix": "svg.material.chart_donut", + "description": "SVG material - chart_donut", + "body": [ + "{% svg material chart_donut %}" + ] + }, + "chart_donut_variant": { + "prefix": "svg.material.chart_donut_variant", + "description": "SVG material - chart_donut_variant", + "body": [ + "{% svg material chart_donut_variant %}" + ] + }, + "chart_gantt": { + "prefix": "svg.material.chart_gantt", + "description": "SVG material - chart_gantt", + "body": [ + "{% svg material chart_gantt %}" + ] + }, + "chart_histogram": { + "prefix": "svg.material.chart_histogram", + "description": "SVG material - chart_histogram", + "body": [ + "{% svg material chart_histogram %}" + ] + }, + "chart_line": { + "prefix": "svg.material.chart_line", + "description": "SVG material - chart_line", + "body": [ + "{% svg material chart_line %}" + ] + }, + "chart_line_stacked": { + "prefix": "svg.material.chart_line_stacked", + "description": "SVG material - chart_line_stacked", + "body": [ + "{% svg material chart_line_stacked %}" + ] + }, + "chart_line_variant": { + "prefix": "svg.material.chart_line_variant", + "description": "SVG material - chart_line_variant", + "body": [ + "{% svg material chart_line_variant %}" + ] + }, + "chart_multiline": { + "prefix": "svg.material.chart_multiline", + "description": "SVG material - chart_multiline", + "body": [ + "{% svg material chart_multiline %}" + ] + }, + "chart_multiple": { + "prefix": "svg.material.chart_multiple", + "description": "SVG material - chart_multiple", + "body": [ + "{% svg material chart_multiple %}" + ] + }, + "chart_pie": { + "prefix": "svg.material.chart_pie", + "description": "SVG material - chart_pie", + "body": [ + "{% svg material chart_pie %}" + ] + }, + "chart_pie_outline": { + "prefix": "svg.material.chart_pie_outline", + "description": "SVG material - chart_pie_outline", + "body": [ + "{% svg material chart_pie_outline %}" + ] + }, + "chart_ppf": { + "prefix": "svg.material.chart_ppf", + "description": "SVG material - chart_ppf", + "body": [ + "{% svg material chart_ppf %}" + ] + }, + "chart_sankey": { + "prefix": "svg.material.chart_sankey", + "description": "SVG material - chart_sankey", + "body": [ + "{% svg material chart_sankey %}" + ] + }, + "chart_sankey_variant": { + "prefix": "svg.material.chart_sankey_variant", + "description": "SVG material - chart_sankey_variant", + "body": [ + "{% svg material chart_sankey_variant %}" + ] + }, + "chart_scatter_plot": { + "prefix": "svg.material.chart_scatter_plot", + "description": "SVG material - chart_scatter_plot", + "body": [ + "{% svg material chart_scatter_plot %}" + ] + }, + "chart_scatter_plot_hexbin": { + "prefix": "svg.material.chart_scatter_plot_hexbin", + "description": "SVG material - chart_scatter_plot_hexbin", + "body": [ + "{% svg material chart_scatter_plot_hexbin %}" + ] + }, + "chart_timeline": { + "prefix": "svg.material.chart_timeline", + "description": "SVG material - chart_timeline", + "body": [ + "{% svg material chart_timeline %}" + ] + }, + "chart_timeline_variant": { + "prefix": "svg.material.chart_timeline_variant", + "description": "SVG material - chart_timeline_variant", + "body": [ + "{% svg material chart_timeline_variant %}" + ] + }, + "chart_timeline_variant_shimmer": { + "prefix": "svg.material.chart_timeline_variant_shimmer", + "description": "SVG material - chart_timeline_variant_shimmer", + "body": [ + "{% svg material chart_timeline_variant_shimmer %}" + ] + }, + "chart_tree": { + "prefix": "svg.material.chart_tree", + "description": "SVG material - chart_tree", + "body": [ + "{% svg material chart_tree %}" + ] + }, + "chart_waterfall": { + "prefix": "svg.material.chart_waterfall", + "description": "SVG material - chart_waterfall", + "body": [ + "{% svg material chart_waterfall %}" + ] + }, + "chat": { + "prefix": "svg.material.chat", + "description": "SVG material - chat", + "body": [ + "{% svg material chat %}" + ] + }, + "chat_alert": { + "prefix": "svg.material.chat_alert", + "description": "SVG material - chat_alert", + "body": [ + "{% svg material chat_alert %}" + ] + }, + "chat_alert_outline": { + "prefix": "svg.material.chat_alert_outline", + "description": "SVG material - chat_alert_outline", + "body": [ + "{% svg material chat_alert_outline %}" + ] + }, + "chat_minus": { + "prefix": "svg.material.chat_minus", + "description": "SVG material - chat_minus", + "body": [ + "{% svg material chat_minus %}" + ] + }, + "chat_minus_outline": { + "prefix": "svg.material.chat_minus_outline", + "description": "SVG material - chat_minus_outline", + "body": [ + "{% svg material chat_minus_outline %}" + ] + }, + "chat_outline": { + "prefix": "svg.material.chat_outline", + "description": "SVG material - chat_outline", + "body": [ + "{% svg material chat_outline %}" + ] + }, + "chat_plus": { + "prefix": "svg.material.chat_plus", + "description": "SVG material - chat_plus", + "body": [ + "{% svg material chat_plus %}" + ] + }, + "chat_plus_outline": { + "prefix": "svg.material.chat_plus_outline", + "description": "SVG material - chat_plus_outline", + "body": [ + "{% svg material chat_plus_outline %}" + ] + }, + "chat_processing": { + "prefix": "svg.material.chat_processing", + "description": "SVG material - chat_processing", + "body": [ + "{% svg material chat_processing %}" + ] + }, + "chat_processing_outline": { + "prefix": "svg.material.chat_processing_outline", + "description": "SVG material - chat_processing_outline", + "body": [ + "{% svg material chat_processing_outline %}" + ] + }, + "chat_question": { + "prefix": "svg.material.chat_question", + "description": "SVG material - chat_question", + "body": [ + "{% svg material chat_question %}" + ] + }, + "chat_question_outline": { + "prefix": "svg.material.chat_question_outline", + "description": "SVG material - chat_question_outline", + "body": [ + "{% svg material chat_question_outline %}" + ] + }, + "chat_remove": { + "prefix": "svg.material.chat_remove", + "description": "SVG material - chat_remove", + "body": [ + "{% svg material chat_remove %}" + ] + }, + "chat_remove_outline": { + "prefix": "svg.material.chat_remove_outline", + "description": "SVG material - chat_remove_outline", + "body": [ + "{% svg material chat_remove_outline %}" + ] + }, + "chat_sleep": { + "prefix": "svg.material.chat_sleep", + "description": "SVG material - chat_sleep", + "body": [ + "{% svg material chat_sleep %}" + ] + }, + "chat_sleep_outline": { + "prefix": "svg.material.chat_sleep_outline", + "description": "SVG material - chat_sleep_outline", + "body": [ + "{% svg material chat_sleep_outline %}" + ] + }, + "check": { + "prefix": "svg.material.check", + "description": "SVG material - check", + "body": [ + "{% svg material check %}" + ] + }, + "check_all": { + "prefix": "svg.material.check_all", + "description": "SVG material - check_all", + "body": [ + "{% svg material check_all %}" + ] + }, + "check_bold": { + "prefix": "svg.material.check_bold", + "description": "SVG material - check_bold", + "body": [ + "{% svg material check_bold %}" + ] + }, + "check_circle": { + "prefix": "svg.material.check_circle", + "description": "SVG material - check_circle", + "body": [ + "{% svg material check_circle %}" + ] + }, + "check_circle_outline": { + "prefix": "svg.material.check_circle_outline", + "description": "SVG material - check_circle_outline", + "body": [ + "{% svg material check_circle_outline %}" + ] + }, + "check_decagram": { + "prefix": "svg.material.check_decagram", + "description": "SVG material - check_decagram", + "body": [ + "{% svg material check_decagram %}" + ] + }, + "check_decagram_outline": { + "prefix": "svg.material.check_decagram_outline", + "description": "SVG material - check_decagram_outline", + "body": [ + "{% svg material check_decagram_outline %}" + ] + }, + "check_network": { + "prefix": "svg.material.check_network", + "description": "SVG material - check_network", + "body": [ + "{% svg material check_network %}" + ] + }, + "check_network_outline": { + "prefix": "svg.material.check_network_outline", + "description": "SVG material - check_network_outline", + "body": [ + "{% svg material check_network_outline %}" + ] + }, + "check_outline": { + "prefix": "svg.material.check_outline", + "description": "SVG material - check_outline", + "body": [ + "{% svg material check_outline %}" + ] + }, + "check_underline": { + "prefix": "svg.material.check_underline", + "description": "SVG material - check_underline", + "body": [ + "{% svg material check_underline %}" + ] + }, + "check_underline_circle": { + "prefix": "svg.material.check_underline_circle", + "description": "SVG material - check_underline_circle", + "body": [ + "{% svg material check_underline_circle %}" + ] + }, + "check_underline_circle_outline": { + "prefix": "svg.material.check_underline_circle_outline", + "description": "SVG material - check_underline_circle_outline", + "body": [ + "{% svg material check_underline_circle_outline %}" + ] + }, + "checkbook": { + "prefix": "svg.material.checkbook", + "description": "SVG material - checkbook", + "body": [ + "{% svg material checkbook %}" + ] + }, + "checkbook_arrow_left": { + "prefix": "svg.material.checkbook_arrow_left", + "description": "SVG material - checkbook_arrow_left", + "body": [ + "{% svg material checkbook_arrow_left %}" + ] + }, + "checkbook_arrow_right": { + "prefix": "svg.material.checkbook_arrow_right", + "description": "SVG material - checkbook_arrow_right", + "body": [ + "{% svg material checkbook_arrow_right %}" + ] + }, + "checkbox_blank": { + "prefix": "svg.material.checkbox_blank", + "description": "SVG material - checkbox_blank", + "body": [ + "{% svg material checkbox_blank %}" + ] + }, + "checkbox_blank_badge": { + "prefix": "svg.material.checkbox_blank_badge", + "description": "SVG material - checkbox_blank_badge", + "body": [ + "{% svg material checkbox_blank_badge %}" + ] + }, + "checkbox_blank_badge_outline": { + "prefix": "svg.material.checkbox_blank_badge_outline", + "description": "SVG material - checkbox_blank_badge_outline", + "body": [ + "{% svg material checkbox_blank_badge_outline %}" + ] + }, + "checkbox_blank_circle": { + "prefix": "svg.material.checkbox_blank_circle", + "description": "SVG material - checkbox_blank_circle", + "body": [ + "{% svg material checkbox_blank_circle %}" + ] + }, + "checkbox_blank_circle_outline": { + "prefix": "svg.material.checkbox_blank_circle_outline", + "description": "SVG material - checkbox_blank_circle_outline", + "body": [ + "{% svg material checkbox_blank_circle_outline %}" + ] + }, + "checkbox_blank_off": { + "prefix": "svg.material.checkbox_blank_off", + "description": "SVG material - checkbox_blank_off", + "body": [ + "{% svg material checkbox_blank_off %}" + ] + }, + "checkbox_blank_off_outline": { + "prefix": "svg.material.checkbox_blank_off_outline", + "description": "SVG material - checkbox_blank_off_outline", + "body": [ + "{% svg material checkbox_blank_off_outline %}" + ] + }, + "checkbox_blank_outline": { + "prefix": "svg.material.checkbox_blank_outline", + "description": "SVG material - checkbox_blank_outline", + "body": [ + "{% svg material checkbox_blank_outline %}" + ] + }, + "checkbox_intermediate": { + "prefix": "svg.material.checkbox_intermediate", + "description": "SVG material - checkbox_intermediate", + "body": [ + "{% svg material checkbox_intermediate %}" + ] + }, + "checkbox_intermediate_variant": { + "prefix": "svg.material.checkbox_intermediate_variant", + "description": "SVG material - checkbox_intermediate_variant", + "body": [ + "{% svg material checkbox_intermediate_variant %}" + ] + }, + "checkbox_marked": { + "prefix": "svg.material.checkbox_marked", + "description": "SVG material - checkbox_marked", + "body": [ + "{% svg material checkbox_marked %}" + ] + }, + "checkbox_marked_circle": { + "prefix": "svg.material.checkbox_marked_circle", + "description": "SVG material - checkbox_marked_circle", + "body": [ + "{% svg material checkbox_marked_circle %}" + ] + }, + "checkbox_marked_circle_auto_outline": { + "prefix": "svg.material.checkbox_marked_circle_auto_outline", + "description": "SVG material - checkbox_marked_circle_auto_outline", + "body": [ + "{% svg material checkbox_marked_circle_auto_outline %}" + ] + }, + "checkbox_marked_circle_minus_outline": { + "prefix": "svg.material.checkbox_marked_circle_minus_outline", + "description": "SVG material - checkbox_marked_circle_minus_outline", + "body": [ + "{% svg material checkbox_marked_circle_minus_outline %}" + ] + }, + "checkbox_marked_circle_outline": { + "prefix": "svg.material.checkbox_marked_circle_outline", + "description": "SVG material - checkbox_marked_circle_outline", + "body": [ + "{% svg material checkbox_marked_circle_outline %}" + ] + }, + "checkbox_marked_circle_plus_outline": { + "prefix": "svg.material.checkbox_marked_circle_plus_outline", + "description": "SVG material - checkbox_marked_circle_plus_outline", + "body": [ + "{% svg material checkbox_marked_circle_plus_outline %}" + ] + }, + "checkbox_marked_outline": { + "prefix": "svg.material.checkbox_marked_outline", + "description": "SVG material - checkbox_marked_outline", + "body": [ + "{% svg material checkbox_marked_outline %}" + ] + }, + "checkbox_multiple_blank": { + "prefix": "svg.material.checkbox_multiple_blank", + "description": "SVG material - checkbox_multiple_blank", + "body": [ + "{% svg material checkbox_multiple_blank %}" + ] + }, + "checkbox_multiple_blank_circle": { + "prefix": "svg.material.checkbox_multiple_blank_circle", + "description": "SVG material - checkbox_multiple_blank_circle", + "body": [ + "{% svg material checkbox_multiple_blank_circle %}" + ] + }, + "checkbox_multiple_blank_circle_outline": { + "prefix": "svg.material.checkbox_multiple_blank_circle_outline", + "description": "SVG material - checkbox_multiple_blank_circle_outline", + "body": [ + "{% svg material checkbox_multiple_blank_circle_outline %}" + ] + }, + "checkbox_multiple_blank_outline": { + "prefix": "svg.material.checkbox_multiple_blank_outline", + "description": "SVG material - checkbox_multiple_blank_outline", + "body": [ + "{% svg material checkbox_multiple_blank_outline %}" + ] + }, + "checkbox_multiple_marked": { + "prefix": "svg.material.checkbox_multiple_marked", + "description": "SVG material - checkbox_multiple_marked", + "body": [ + "{% svg material checkbox_multiple_marked %}" + ] + }, + "checkbox_multiple_marked_circle": { + "prefix": "svg.material.checkbox_multiple_marked_circle", + "description": "SVG material - checkbox_multiple_marked_circle", + "body": [ + "{% svg material checkbox_multiple_marked_circle %}" + ] + }, + "checkbox_multiple_marked_circle_outline": { + "prefix": "svg.material.checkbox_multiple_marked_circle_outline", + "description": "SVG material - checkbox_multiple_marked_circle_outline", + "body": [ + "{% svg material checkbox_multiple_marked_circle_outline %}" + ] + }, + "checkbox_multiple_marked_outline": { + "prefix": "svg.material.checkbox_multiple_marked_outline", + "description": "SVG material - checkbox_multiple_marked_outline", + "body": [ + "{% svg material checkbox_multiple_marked_outline %}" + ] + }, + "checkbox_multiple_outline": { + "prefix": "svg.material.checkbox_multiple_outline", + "description": "SVG material - checkbox_multiple_outline", + "body": [ + "{% svg material checkbox_multiple_outline %}" + ] + }, + "checkbox_outline": { + "prefix": "svg.material.checkbox_outline", + "description": "SVG material - checkbox_outline", + "body": [ + "{% svg material checkbox_outline %}" + ] + }, + "checkerboard": { + "prefix": "svg.material.checkerboard", + "description": "SVG material - checkerboard", + "body": [ + "{% svg material checkerboard %}" + ] + }, + "checkerboard_minus": { + "prefix": "svg.material.checkerboard_minus", + "description": "SVG material - checkerboard_minus", + "body": [ + "{% svg material checkerboard_minus %}" + ] + }, + "checkerboard_plus": { + "prefix": "svg.material.checkerboard_plus", + "description": "SVG material - checkerboard_plus", + "body": [ + "{% svg material checkerboard_plus %}" + ] + }, + "checkerboard_remove": { + "prefix": "svg.material.checkerboard_remove", + "description": "SVG material - checkerboard_remove", + "body": [ + "{% svg material checkerboard_remove %}" + ] + }, + "cheese": { + "prefix": "svg.material.cheese", + "description": "SVG material - cheese", + "body": [ + "{% svg material cheese %}" + ] + }, + "cheese_off": { + "prefix": "svg.material.cheese_off", + "description": "SVG material - cheese_off", + "body": [ + "{% svg material cheese_off %}" + ] + }, + "chef_hat": { + "prefix": "svg.material.chef_hat", + "description": "SVG material - chef_hat", + "body": [ + "{% svg material chef_hat %}" + ] + }, + "chemical_weapon": { + "prefix": "svg.material.chemical_weapon", + "description": "SVG material - chemical_weapon", + "body": [ + "{% svg material chemical_weapon %}" + ] + }, + "chess_bishop": { + "prefix": "svg.material.chess_bishop", + "description": "SVG material - chess_bishop", + "body": [ + "{% svg material chess_bishop %}" + ] + }, + "chess_king": { + "prefix": "svg.material.chess_king", + "description": "SVG material - chess_king", + "body": [ + "{% svg material chess_king %}" + ] + }, + "chess_knight": { + "prefix": "svg.material.chess_knight", + "description": "SVG material - chess_knight", + "body": [ + "{% svg material chess_knight %}" + ] + }, + "chess_pawn": { + "prefix": "svg.material.chess_pawn", + "description": "SVG material - chess_pawn", + "body": [ + "{% svg material chess_pawn %}" + ] + }, + "chess_queen": { + "prefix": "svg.material.chess_queen", + "description": "SVG material - chess_queen", + "body": [ + "{% svg material chess_queen %}" + ] + }, + "chess_rook": { + "prefix": "svg.material.chess_rook", + "description": "SVG material - chess_rook", + "body": [ + "{% svg material chess_rook %}" + ] + }, + "chevron_double_down": { + "prefix": "svg.material.chevron_double_down", + "description": "SVG material - chevron_double_down", + "body": [ + "{% svg material chevron_double_down %}" + ] + }, + "chevron_double_left": { + "prefix": "svg.material.chevron_double_left", + "description": "SVG material - chevron_double_left", + "body": [ + "{% svg material chevron_double_left %}" + ] + }, + "chevron_double_right": { + "prefix": "svg.material.chevron_double_right", + "description": "SVG material - chevron_double_right", + "body": [ + "{% svg material chevron_double_right %}" + ] + }, + "chevron_double_up": { + "prefix": "svg.material.chevron_double_up", + "description": "SVG material - chevron_double_up", + "body": [ + "{% svg material chevron_double_up %}" + ] + }, + "chevron_down": { + "prefix": "svg.material.chevron_down", + "description": "SVG material - chevron_down", + "body": [ + "{% svg material chevron_down %}" + ] + }, + "chevron_down_box": { + "prefix": "svg.material.chevron_down_box", + "description": "SVG material - chevron_down_box", + "body": [ + "{% svg material chevron_down_box %}" + ] + }, + "chevron_down_box_outline": { + "prefix": "svg.material.chevron_down_box_outline", + "description": "SVG material - chevron_down_box_outline", + "body": [ + "{% svg material chevron_down_box_outline %}" + ] + }, + "chevron_down_circle": { + "prefix": "svg.material.chevron_down_circle", + "description": "SVG material - chevron_down_circle", + "body": [ + "{% svg material chevron_down_circle %}" + ] + }, + "chevron_down_circle_outline": { + "prefix": "svg.material.chevron_down_circle_outline", + "description": "SVG material - chevron_down_circle_outline", + "body": [ + "{% svg material chevron_down_circle_outline %}" + ] + }, + "chevron_left": { + "prefix": "svg.material.chevron_left", + "description": "SVG material - chevron_left", + "body": [ + "{% svg material chevron_left %}" + ] + }, + "chevron_left_box": { + "prefix": "svg.material.chevron_left_box", + "description": "SVG material - chevron_left_box", + "body": [ + "{% svg material chevron_left_box %}" + ] + }, + "chevron_left_box_outline": { + "prefix": "svg.material.chevron_left_box_outline", + "description": "SVG material - chevron_left_box_outline", + "body": [ + "{% svg material chevron_left_box_outline %}" + ] + }, + "chevron_left_circle": { + "prefix": "svg.material.chevron_left_circle", + "description": "SVG material - chevron_left_circle", + "body": [ + "{% svg material chevron_left_circle %}" + ] + }, + "chevron_left_circle_outline": { + "prefix": "svg.material.chevron_left_circle_outline", + "description": "SVG material - chevron_left_circle_outline", + "body": [ + "{% svg material chevron_left_circle_outline %}" + ] + }, + "chevron_right": { + "prefix": "svg.material.chevron_right", + "description": "SVG material - chevron_right", + "body": [ + "{% svg material chevron_right %}" + ] + }, + "chevron_right_box": { + "prefix": "svg.material.chevron_right_box", + "description": "SVG material - chevron_right_box", + "body": [ + "{% svg material chevron_right_box %}" + ] + }, + "chevron_right_box_outline": { + "prefix": "svg.material.chevron_right_box_outline", + "description": "SVG material - chevron_right_box_outline", + "body": [ + "{% svg material chevron_right_box_outline %}" + ] + }, + "chevron_right_circle": { + "prefix": "svg.material.chevron_right_circle", + "description": "SVG material - chevron_right_circle", + "body": [ + "{% svg material chevron_right_circle %}" + ] + }, + "chevron_right_circle_outline": { + "prefix": "svg.material.chevron_right_circle_outline", + "description": "SVG material - chevron_right_circle_outline", + "body": [ + "{% svg material chevron_right_circle_outline %}" + ] + }, + "chevron_triple_down": { + "prefix": "svg.material.chevron_triple_down", + "description": "SVG material - chevron_triple_down", + "body": [ + "{% svg material chevron_triple_down %}" + ] + }, + "chevron_triple_left": { + "prefix": "svg.material.chevron_triple_left", + "description": "SVG material - chevron_triple_left", + "body": [ + "{% svg material chevron_triple_left %}" + ] + }, + "chevron_triple_right": { + "prefix": "svg.material.chevron_triple_right", + "description": "SVG material - chevron_triple_right", + "body": [ + "{% svg material chevron_triple_right %}" + ] + }, + "chevron_triple_up": { + "prefix": "svg.material.chevron_triple_up", + "description": "SVG material - chevron_triple_up", + "body": [ + "{% svg material chevron_triple_up %}" + ] + }, + "chevron_up": { + "prefix": "svg.material.chevron_up", + "description": "SVG material - chevron_up", + "body": [ + "{% svg material chevron_up %}" + ] + }, + "chevron_up_box": { + "prefix": "svg.material.chevron_up_box", + "description": "SVG material - chevron_up_box", + "body": [ + "{% svg material chevron_up_box %}" + ] + }, + "chevron_up_box_outline": { + "prefix": "svg.material.chevron_up_box_outline", + "description": "SVG material - chevron_up_box_outline", + "body": [ + "{% svg material chevron_up_box_outline %}" + ] + }, + "chevron_up_circle": { + "prefix": "svg.material.chevron_up_circle", + "description": "SVG material - chevron_up_circle", + "body": [ + "{% svg material chevron_up_circle %}" + ] + }, + "chevron_up_circle_outline": { + "prefix": "svg.material.chevron_up_circle_outline", + "description": "SVG material - chevron_up_circle_outline", + "body": [ + "{% svg material chevron_up_circle_outline %}" + ] + }, + "chili_alert": { + "prefix": "svg.material.chili_alert", + "description": "SVG material - chili_alert", + "body": [ + "{% svg material chili_alert %}" + ] + }, + "chili_alert_outline": { + "prefix": "svg.material.chili_alert_outline", + "description": "SVG material - chili_alert_outline", + "body": [ + "{% svg material chili_alert_outline %}" + ] + }, + "chili_hot": { + "prefix": "svg.material.chili_hot", + "description": "SVG material - chili_hot", + "body": [ + "{% svg material chili_hot %}" + ] + }, + "chili_hot_outline": { + "prefix": "svg.material.chili_hot_outline", + "description": "SVG material - chili_hot_outline", + "body": [ + "{% svg material chili_hot_outline %}" + ] + }, + "chili_medium": { + "prefix": "svg.material.chili_medium", + "description": "SVG material - chili_medium", + "body": [ + "{% svg material chili_medium %}" + ] + }, + "chili_medium_outline": { + "prefix": "svg.material.chili_medium_outline", + "description": "SVG material - chili_medium_outline", + "body": [ + "{% svg material chili_medium_outline %}" + ] + }, + "chili_mild": { + "prefix": "svg.material.chili_mild", + "description": "SVG material - chili_mild", + "body": [ + "{% svg material chili_mild %}" + ] + }, + "chili_mild_outline": { + "prefix": "svg.material.chili_mild_outline", + "description": "SVG material - chili_mild_outline", + "body": [ + "{% svg material chili_mild_outline %}" + ] + }, + "chili_off": { + "prefix": "svg.material.chili_off", + "description": "SVG material - chili_off", + "body": [ + "{% svg material chili_off %}" + ] + }, + "chili_off_outline": { + "prefix": "svg.material.chili_off_outline", + "description": "SVG material - chili_off_outline", + "body": [ + "{% svg material chili_off_outline %}" + ] + }, + "chip": { + "prefix": "svg.material.chip", + "description": "SVG material - chip", + "body": [ + "{% svg material chip %}" + ] + }, + "church": { + "prefix": "svg.material.church", + "description": "SVG material - church", + "body": [ + "{% svg material church %}" + ] + }, + "church_outline": { + "prefix": "svg.material.church_outline", + "description": "SVG material - church_outline", + "body": [ + "{% svg material church_outline %}" + ] + }, + "cigar": { + "prefix": "svg.material.cigar", + "description": "SVG material - cigar", + "body": [ + "{% svg material cigar %}" + ] + }, + "cigar_off": { + "prefix": "svg.material.cigar_off", + "description": "SVG material - cigar_off", + "body": [ + "{% svg material cigar_off %}" + ] + }, + "circle": { + "prefix": "svg.material.circle", + "description": "SVG material - circle", + "body": [ + "{% svg material circle %}" + ] + }, + "circle_box": { + "prefix": "svg.material.circle_box", + "description": "SVG material - circle_box", + "body": [ + "{% svg material circle_box %}" + ] + }, + "circle_box_outline": { + "prefix": "svg.material.circle_box_outline", + "description": "SVG material - circle_box_outline", + "body": [ + "{% svg material circle_box_outline %}" + ] + }, + "circle_double": { + "prefix": "svg.material.circle_double", + "description": "SVG material - circle_double", + "body": [ + "{% svg material circle_double %}" + ] + }, + "circle_edit_outline": { + "prefix": "svg.material.circle_edit_outline", + "description": "SVG material - circle_edit_outline", + "body": [ + "{% svg material circle_edit_outline %}" + ] + }, + "circle_expand": { + "prefix": "svg.material.circle_expand", + "description": "SVG material - circle_expand", + "body": [ + "{% svg material circle_expand %}" + ] + }, + "circle_half": { + "prefix": "svg.material.circle_half", + "description": "SVG material - circle_half", + "body": [ + "{% svg material circle_half %}" + ] + }, + "circle_half_full": { + "prefix": "svg.material.circle_half_full", + "description": "SVG material - circle_half_full", + "body": [ + "{% svg material circle_half_full %}" + ] + }, + "circle_medium": { + "prefix": "svg.material.circle_medium", + "description": "SVG material - circle_medium", + "body": [ + "{% svg material circle_medium %}" + ] + }, + "circle_multiple": { + "prefix": "svg.material.circle_multiple", + "description": "SVG material - circle_multiple", + "body": [ + "{% svg material circle_multiple %}" + ] + }, + "circle_multiple_outline": { + "prefix": "svg.material.circle_multiple_outline", + "description": "SVG material - circle_multiple_outline", + "body": [ + "{% svg material circle_multiple_outline %}" + ] + }, + "circle_off_outline": { + "prefix": "svg.material.circle_off_outline", + "description": "SVG material - circle_off_outline", + "body": [ + "{% svg material circle_off_outline %}" + ] + }, + "circle_opacity": { + "prefix": "svg.material.circle_opacity", + "description": "SVG material - circle_opacity", + "body": [ + "{% svg material circle_opacity %}" + ] + }, + "circle_outline": { + "prefix": "svg.material.circle_outline", + "description": "SVG material - circle_outline", + "body": [ + "{% svg material circle_outline %}" + ] + }, + "circle_slice_1": { + "prefix": "svg.material.circle_slice_1", + "description": "SVG material - circle_slice_1", + "body": [ + "{% svg material circle_slice_1 %}" + ] + }, + "circle_slice_2": { + "prefix": "svg.material.circle_slice_2", + "description": "SVG material - circle_slice_2", + "body": [ + "{% svg material circle_slice_2 %}" + ] + }, + "circle_slice_3": { + "prefix": "svg.material.circle_slice_3", + "description": "SVG material - circle_slice_3", + "body": [ + "{% svg material circle_slice_3 %}" + ] + }, + "circle_slice_4": { + "prefix": "svg.material.circle_slice_4", + "description": "SVG material - circle_slice_4", + "body": [ + "{% svg material circle_slice_4 %}" + ] + }, + "circle_slice_5": { + "prefix": "svg.material.circle_slice_5", + "description": "SVG material - circle_slice_5", + "body": [ + "{% svg material circle_slice_5 %}" + ] + }, + "circle_slice_6": { + "prefix": "svg.material.circle_slice_6", + "description": "SVG material - circle_slice_6", + "body": [ + "{% svg material circle_slice_6 %}" + ] + }, + "circle_slice_7": { + "prefix": "svg.material.circle_slice_7", + "description": "SVG material - circle_slice_7", + "body": [ + "{% svg material circle_slice_7 %}" + ] + }, + "circle_slice_8": { + "prefix": "svg.material.circle_slice_8", + "description": "SVG material - circle_slice_8", + "body": [ + "{% svg material circle_slice_8 %}" + ] + }, + "circle_small": { + "prefix": "svg.material.circle_small", + "description": "SVG material - circle_small", + "body": [ + "{% svg material circle_small %}" + ] + }, + "circular_saw": { + "prefix": "svg.material.circular_saw", + "description": "SVG material - circular_saw", + "body": [ + "{% svg material circular_saw %}" + ] + }, + "city": { + "prefix": "svg.material.city", + "description": "SVG material - city", + "body": [ + "{% svg material city %}" + ] + }, + "city_switch": { + "prefix": "svg.material.city_switch", + "description": "SVG material - city_switch", + "body": [ + "{% svg material city_switch %}" + ] + }, + "city_variant": { + "prefix": "svg.material.city_variant", + "description": "SVG material - city_variant", + "body": [ + "{% svg material city_variant %}" + ] + }, + "city_variant_outline": { + "prefix": "svg.material.city_variant_outline", + "description": "SVG material - city_variant_outline", + "body": [ + "{% svg material city_variant_outline %}" + ] + }, + "clipboard": { + "prefix": "svg.material.clipboard", + "description": "SVG material - clipboard", + "body": [ + "{% svg material clipboard %}" + ] + }, + "clipboard_account": { + "prefix": "svg.material.clipboard_account", + "description": "SVG material - clipboard_account", + "body": [ + "{% svg material clipboard_account %}" + ] + }, + "clipboard_account_outline": { + "prefix": "svg.material.clipboard_account_outline", + "description": "SVG material - clipboard_account_outline", + "body": [ + "{% svg material clipboard_account_outline %}" + ] + }, + "clipboard_alert": { + "prefix": "svg.material.clipboard_alert", + "description": "SVG material - clipboard_alert", + "body": [ + "{% svg material clipboard_alert %}" + ] + }, + "clipboard_alert_outline": { + "prefix": "svg.material.clipboard_alert_outline", + "description": "SVG material - clipboard_alert_outline", + "body": [ + "{% svg material clipboard_alert_outline %}" + ] + }, + "clipboard_arrow_down": { + "prefix": "svg.material.clipboard_arrow_down", + "description": "SVG material - clipboard_arrow_down", + "body": [ + "{% svg material clipboard_arrow_down %}" + ] + }, + "clipboard_arrow_down_outline": { + "prefix": "svg.material.clipboard_arrow_down_outline", + "description": "SVG material - clipboard_arrow_down_outline", + "body": [ + "{% svg material clipboard_arrow_down_outline %}" + ] + }, + "clipboard_arrow_left": { + "prefix": "svg.material.clipboard_arrow_left", + "description": "SVG material - clipboard_arrow_left", + "body": [ + "{% svg material clipboard_arrow_left %}" + ] + }, + "clipboard_arrow_left_outline": { + "prefix": "svg.material.clipboard_arrow_left_outline", + "description": "SVG material - clipboard_arrow_left_outline", + "body": [ + "{% svg material clipboard_arrow_left_outline %}" + ] + }, + "clipboard_arrow_right": { + "prefix": "svg.material.clipboard_arrow_right", + "description": "SVG material - clipboard_arrow_right", + "body": [ + "{% svg material clipboard_arrow_right %}" + ] + }, + "clipboard_arrow_right_outline": { + "prefix": "svg.material.clipboard_arrow_right_outline", + "description": "SVG material - clipboard_arrow_right_outline", + "body": [ + "{% svg material clipboard_arrow_right_outline %}" + ] + }, + "clipboard_arrow_up": { + "prefix": "svg.material.clipboard_arrow_up", + "description": "SVG material - clipboard_arrow_up", + "body": [ + "{% svg material clipboard_arrow_up %}" + ] + }, + "clipboard_arrow_up_outline": { + "prefix": "svg.material.clipboard_arrow_up_outline", + "description": "SVG material - clipboard_arrow_up_outline", + "body": [ + "{% svg material clipboard_arrow_up_outline %}" + ] + }, + "clipboard_check": { + "prefix": "svg.material.clipboard_check", + "description": "SVG material - clipboard_check", + "body": [ + "{% svg material clipboard_check %}" + ] + }, + "clipboard_check_multiple": { + "prefix": "svg.material.clipboard_check_multiple", + "description": "SVG material - clipboard_check_multiple", + "body": [ + "{% svg material clipboard_check_multiple %}" + ] + }, + "clipboard_check_multiple_outline": { + "prefix": "svg.material.clipboard_check_multiple_outline", + "description": "SVG material - clipboard_check_multiple_outline", + "body": [ + "{% svg material clipboard_check_multiple_outline %}" + ] + }, + "clipboard_check_outline": { + "prefix": "svg.material.clipboard_check_outline", + "description": "SVG material - clipboard_check_outline", + "body": [ + "{% svg material clipboard_check_outline %}" + ] + }, + "clipboard_clock": { + "prefix": "svg.material.clipboard_clock", + "description": "SVG material - clipboard_clock", + "body": [ + "{% svg material clipboard_clock %}" + ] + }, + "clipboard_clock_outline": { + "prefix": "svg.material.clipboard_clock_outline", + "description": "SVG material - clipboard_clock_outline", + "body": [ + "{% svg material clipboard_clock_outline %}" + ] + }, + "clipboard_edit": { + "prefix": "svg.material.clipboard_edit", + "description": "SVG material - clipboard_edit", + "body": [ + "{% svg material clipboard_edit %}" + ] + }, + "clipboard_edit_outline": { + "prefix": "svg.material.clipboard_edit_outline", + "description": "SVG material - clipboard_edit_outline", + "body": [ + "{% svg material clipboard_edit_outline %}" + ] + }, + "clipboard_file": { + "prefix": "svg.material.clipboard_file", + "description": "SVG material - clipboard_file", + "body": [ + "{% svg material clipboard_file %}" + ] + }, + "clipboard_file_outline": { + "prefix": "svg.material.clipboard_file_outline", + "description": "SVG material - clipboard_file_outline", + "body": [ + "{% svg material clipboard_file_outline %}" + ] + }, + "clipboard_flow": { + "prefix": "svg.material.clipboard_flow", + "description": "SVG material - clipboard_flow", + "body": [ + "{% svg material clipboard_flow %}" + ] + }, + "clipboard_flow_outline": { + "prefix": "svg.material.clipboard_flow_outline", + "description": "SVG material - clipboard_flow_outline", + "body": [ + "{% svg material clipboard_flow_outline %}" + ] + }, + "clipboard_list": { + "prefix": "svg.material.clipboard_list", + "description": "SVG material - clipboard_list", + "body": [ + "{% svg material clipboard_list %}" + ] + }, + "clipboard_list_outline": { + "prefix": "svg.material.clipboard_list_outline", + "description": "SVG material - clipboard_list_outline", + "body": [ + "{% svg material clipboard_list_outline %}" + ] + }, + "clipboard_minus": { + "prefix": "svg.material.clipboard_minus", + "description": "SVG material - clipboard_minus", + "body": [ + "{% svg material clipboard_minus %}" + ] + }, + "clipboard_minus_outline": { + "prefix": "svg.material.clipboard_minus_outline", + "description": "SVG material - clipboard_minus_outline", + "body": [ + "{% svg material clipboard_minus_outline %}" + ] + }, + "clipboard_multiple": { + "prefix": "svg.material.clipboard_multiple", + "description": "SVG material - clipboard_multiple", + "body": [ + "{% svg material clipboard_multiple %}" + ] + }, + "clipboard_multiple_outline": { + "prefix": "svg.material.clipboard_multiple_outline", + "description": "SVG material - clipboard_multiple_outline", + "body": [ + "{% svg material clipboard_multiple_outline %}" + ] + }, + "clipboard_off": { + "prefix": "svg.material.clipboard_off", + "description": "SVG material - clipboard_off", + "body": [ + "{% svg material clipboard_off %}" + ] + }, + "clipboard_off_outline": { + "prefix": "svg.material.clipboard_off_outline", + "description": "SVG material - clipboard_off_outline", + "body": [ + "{% svg material clipboard_off_outline %}" + ] + }, + "clipboard_outline": { + "prefix": "svg.material.clipboard_outline", + "description": "SVG material - clipboard_outline", + "body": [ + "{% svg material clipboard_outline %}" + ] + }, + "clipboard_play": { + "prefix": "svg.material.clipboard_play", + "description": "SVG material - clipboard_play", + "body": [ + "{% svg material clipboard_play %}" + ] + }, + "clipboard_play_multiple": { + "prefix": "svg.material.clipboard_play_multiple", + "description": "SVG material - clipboard_play_multiple", + "body": [ + "{% svg material clipboard_play_multiple %}" + ] + }, + "clipboard_play_multiple_outline": { + "prefix": "svg.material.clipboard_play_multiple_outline", + "description": "SVG material - clipboard_play_multiple_outline", + "body": [ + "{% svg material clipboard_play_multiple_outline %}" + ] + }, + "clipboard_play_outline": { + "prefix": "svg.material.clipboard_play_outline", + "description": "SVG material - clipboard_play_outline", + "body": [ + "{% svg material clipboard_play_outline %}" + ] + }, + "clipboard_plus": { + "prefix": "svg.material.clipboard_plus", + "description": "SVG material - clipboard_plus", + "body": [ + "{% svg material clipboard_plus %}" + ] + }, + "clipboard_plus_outline": { + "prefix": "svg.material.clipboard_plus_outline", + "description": "SVG material - clipboard_plus_outline", + "body": [ + "{% svg material clipboard_plus_outline %}" + ] + }, + "clipboard_pulse": { + "prefix": "svg.material.clipboard_pulse", + "description": "SVG material - clipboard_pulse", + "body": [ + "{% svg material clipboard_pulse %}" + ] + }, + "clipboard_pulse_outline": { + "prefix": "svg.material.clipboard_pulse_outline", + "description": "SVG material - clipboard_pulse_outline", + "body": [ + "{% svg material clipboard_pulse_outline %}" + ] + }, + "clipboard_remove": { + "prefix": "svg.material.clipboard_remove", + "description": "SVG material - clipboard_remove", + "body": [ + "{% svg material clipboard_remove %}" + ] + }, + "clipboard_remove_outline": { + "prefix": "svg.material.clipboard_remove_outline", + "description": "SVG material - clipboard_remove_outline", + "body": [ + "{% svg material clipboard_remove_outline %}" + ] + }, + "clipboard_search": { + "prefix": "svg.material.clipboard_search", + "description": "SVG material - clipboard_search", + "body": [ + "{% svg material clipboard_search %}" + ] + }, + "clipboard_search_outline": { + "prefix": "svg.material.clipboard_search_outline", + "description": "SVG material - clipboard_search_outline", + "body": [ + "{% svg material clipboard_search_outline %}" + ] + }, + "clipboard_text": { + "prefix": "svg.material.clipboard_text", + "description": "SVG material - clipboard_text", + "body": [ + "{% svg material clipboard_text %}" + ] + }, + "clipboard_text_clock": { + "prefix": "svg.material.clipboard_text_clock", + "description": "SVG material - clipboard_text_clock", + "body": [ + "{% svg material clipboard_text_clock %}" + ] + }, + "clipboard_text_clock_outline": { + "prefix": "svg.material.clipboard_text_clock_outline", + "description": "SVG material - clipboard_text_clock_outline", + "body": [ + "{% svg material clipboard_text_clock_outline %}" + ] + }, + "clipboard_text_multiple": { + "prefix": "svg.material.clipboard_text_multiple", + "description": "SVG material - clipboard_text_multiple", + "body": [ + "{% svg material clipboard_text_multiple %}" + ] + }, + "clipboard_text_multiple_outline": { + "prefix": "svg.material.clipboard_text_multiple_outline", + "description": "SVG material - clipboard_text_multiple_outline", + "body": [ + "{% svg material clipboard_text_multiple_outline %}" + ] + }, + "clipboard_text_off": { + "prefix": "svg.material.clipboard_text_off", + "description": "SVG material - clipboard_text_off", + "body": [ + "{% svg material clipboard_text_off %}" + ] + }, + "clipboard_text_off_outline": { + "prefix": "svg.material.clipboard_text_off_outline", + "description": "SVG material - clipboard_text_off_outline", + "body": [ + "{% svg material clipboard_text_off_outline %}" + ] + }, + "clipboard_text_outline": { + "prefix": "svg.material.clipboard_text_outline", + "description": "SVG material - clipboard_text_outline", + "body": [ + "{% svg material clipboard_text_outline %}" + ] + }, + "clipboard_text_play": { + "prefix": "svg.material.clipboard_text_play", + "description": "SVG material - clipboard_text_play", + "body": [ + "{% svg material clipboard_text_play %}" + ] + }, + "clipboard_text_play_outline": { + "prefix": "svg.material.clipboard_text_play_outline", + "description": "SVG material - clipboard_text_play_outline", + "body": [ + "{% svg material clipboard_text_play_outline %}" + ] + }, + "clipboard_text_search": { + "prefix": "svg.material.clipboard_text_search", + "description": "SVG material - clipboard_text_search", + "body": [ + "{% svg material clipboard_text_search %}" + ] + }, + "clipboard_text_search_outline": { + "prefix": "svg.material.clipboard_text_search_outline", + "description": "SVG material - clipboard_text_search_outline", + "body": [ + "{% svg material clipboard_text_search_outline %}" + ] + }, + "clippy": { + "prefix": "svg.material.clippy", + "description": "SVG material - clippy", + "body": [ + "{% svg material clippy %}" + ] + }, + "clock": { + "prefix": "svg.material.clock", + "description": "SVG material - clock", + "body": [ + "{% svg material clock %}" + ] + }, + "clock_alert": { + "prefix": "svg.material.clock_alert", + "description": "SVG material - clock_alert", + "body": [ + "{% svg material clock_alert %}" + ] + }, + "clock_alert_outline": { + "prefix": "svg.material.clock_alert_outline", + "description": "SVG material - clock_alert_outline", + "body": [ + "{% svg material clock_alert_outline %}" + ] + }, + "clock_check": { + "prefix": "svg.material.clock_check", + "description": "SVG material - clock_check", + "body": [ + "{% svg material clock_check %}" + ] + }, + "clock_check_outline": { + "prefix": "svg.material.clock_check_outline", + "description": "SVG material - clock_check_outline", + "body": [ + "{% svg material clock_check_outline %}" + ] + }, + "clock_digital": { + "prefix": "svg.material.clock_digital", + "description": "SVG material - clock_digital", + "body": [ + "{% svg material clock_digital %}" + ] + }, + "clock_edit": { + "prefix": "svg.material.clock_edit", + "description": "SVG material - clock_edit", + "body": [ + "{% svg material clock_edit %}" + ] + }, + "clock_edit_outline": { + "prefix": "svg.material.clock_edit_outline", + "description": "SVG material - clock_edit_outline", + "body": [ + "{% svg material clock_edit_outline %}" + ] + }, + "clock_end": { + "prefix": "svg.material.clock_end", + "description": "SVG material - clock_end", + "body": [ + "{% svg material clock_end %}" + ] + }, + "clock_fast": { + "prefix": "svg.material.clock_fast", + "description": "SVG material - clock_fast", + "body": [ + "{% svg material clock_fast %}" + ] + }, + "clock_in": { + "prefix": "svg.material.clock_in", + "description": "SVG material - clock_in", + "body": [ + "{% svg material clock_in %}" + ] + }, + "clock_minus": { + "prefix": "svg.material.clock_minus", + "description": "SVG material - clock_minus", + "body": [ + "{% svg material clock_minus %}" + ] + }, + "clock_minus_outline": { + "prefix": "svg.material.clock_minus_outline", + "description": "SVG material - clock_minus_outline", + "body": [ + "{% svg material clock_minus_outline %}" + ] + }, + "clock_out": { + "prefix": "svg.material.clock_out", + "description": "SVG material - clock_out", + "body": [ + "{% svg material clock_out %}" + ] + }, + "clock_outline": { + "prefix": "svg.material.clock_outline", + "description": "SVG material - clock_outline", + "body": [ + "{% svg material clock_outline %}" + ] + }, + "clock_plus": { + "prefix": "svg.material.clock_plus", + "description": "SVG material - clock_plus", + "body": [ + "{% svg material clock_plus %}" + ] + }, + "clock_plus_outline": { + "prefix": "svg.material.clock_plus_outline", + "description": "SVG material - clock_plus_outline", + "body": [ + "{% svg material clock_plus_outline %}" + ] + }, + "clock_remove": { + "prefix": "svg.material.clock_remove", + "description": "SVG material - clock_remove", + "body": [ + "{% svg material clock_remove %}" + ] + }, + "clock_remove_outline": { + "prefix": "svg.material.clock_remove_outline", + "description": "SVG material - clock_remove_outline", + "body": [ + "{% svg material clock_remove_outline %}" + ] + }, + "clock_star_four_points": { + "prefix": "svg.material.clock_star_four_points", + "description": "SVG material - clock_star_four_points", + "body": [ + "{% svg material clock_star_four_points %}" + ] + }, + "clock_star_four_points_outline": { + "prefix": "svg.material.clock_star_four_points_outline", + "description": "SVG material - clock_star_four_points_outline", + "body": [ + "{% svg material clock_star_four_points_outline %}" + ] + }, + "clock_start": { + "prefix": "svg.material.clock_start", + "description": "SVG material - clock_start", + "body": [ + "{% svg material clock_start %}" + ] + }, + "clock_time_eight": { + "prefix": "svg.material.clock_time_eight", + "description": "SVG material - clock_time_eight", + "body": [ + "{% svg material clock_time_eight %}" + ] + }, + "clock_time_eight_outline": { + "prefix": "svg.material.clock_time_eight_outline", + "description": "SVG material - clock_time_eight_outline", + "body": [ + "{% svg material clock_time_eight_outline %}" + ] + }, + "clock_time_eleven": { + "prefix": "svg.material.clock_time_eleven", + "description": "SVG material - clock_time_eleven", + "body": [ + "{% svg material clock_time_eleven %}" + ] + }, + "clock_time_eleven_outline": { + "prefix": "svg.material.clock_time_eleven_outline", + "description": "SVG material - clock_time_eleven_outline", + "body": [ + "{% svg material clock_time_eleven_outline %}" + ] + }, + "clock_time_five": { + "prefix": "svg.material.clock_time_five", + "description": "SVG material - clock_time_five", + "body": [ + "{% svg material clock_time_five %}" + ] + }, + "clock_time_five_outline": { + "prefix": "svg.material.clock_time_five_outline", + "description": "SVG material - clock_time_five_outline", + "body": [ + "{% svg material clock_time_five_outline %}" + ] + }, + "clock_time_four": { + "prefix": "svg.material.clock_time_four", + "description": "SVG material - clock_time_four", + "body": [ + "{% svg material clock_time_four %}" + ] + }, + "clock_time_four_outline": { + "prefix": "svg.material.clock_time_four_outline", + "description": "SVG material - clock_time_four_outline", + "body": [ + "{% svg material clock_time_four_outline %}" + ] + }, + "clock_time_nine": { + "prefix": "svg.material.clock_time_nine", + "description": "SVG material - clock_time_nine", + "body": [ + "{% svg material clock_time_nine %}" + ] + }, + "clock_time_nine_outline": { + "prefix": "svg.material.clock_time_nine_outline", + "description": "SVG material - clock_time_nine_outline", + "body": [ + "{% svg material clock_time_nine_outline %}" + ] + }, + "clock_time_one": { + "prefix": "svg.material.clock_time_one", + "description": "SVG material - clock_time_one", + "body": [ + "{% svg material clock_time_one %}" + ] + }, + "clock_time_one_outline": { + "prefix": "svg.material.clock_time_one_outline", + "description": "SVG material - clock_time_one_outline", + "body": [ + "{% svg material clock_time_one_outline %}" + ] + }, + "clock_time_seven": { + "prefix": "svg.material.clock_time_seven", + "description": "SVG material - clock_time_seven", + "body": [ + "{% svg material clock_time_seven %}" + ] + }, + "clock_time_seven_outline": { + "prefix": "svg.material.clock_time_seven_outline", + "description": "SVG material - clock_time_seven_outline", + "body": [ + "{% svg material clock_time_seven_outline %}" + ] + }, + "clock_time_six": { + "prefix": "svg.material.clock_time_six", + "description": "SVG material - clock_time_six", + "body": [ + "{% svg material clock_time_six %}" + ] + }, + "clock_time_six_outline": { + "prefix": "svg.material.clock_time_six_outline", + "description": "SVG material - clock_time_six_outline", + "body": [ + "{% svg material clock_time_six_outline %}" + ] + }, + "clock_time_ten": { + "prefix": "svg.material.clock_time_ten", + "description": "SVG material - clock_time_ten", + "body": [ + "{% svg material clock_time_ten %}" + ] + }, + "clock_time_ten_outline": { + "prefix": "svg.material.clock_time_ten_outline", + "description": "SVG material - clock_time_ten_outline", + "body": [ + "{% svg material clock_time_ten_outline %}" + ] + }, + "clock_time_three": { + "prefix": "svg.material.clock_time_three", + "description": "SVG material - clock_time_three", + "body": [ + "{% svg material clock_time_three %}" + ] + }, + "clock_time_three_outline": { + "prefix": "svg.material.clock_time_three_outline", + "description": "SVG material - clock_time_three_outline", + "body": [ + "{% svg material clock_time_three_outline %}" + ] + }, + "clock_time_twelve": { + "prefix": "svg.material.clock_time_twelve", + "description": "SVG material - clock_time_twelve", + "body": [ + "{% svg material clock_time_twelve %}" + ] + }, + "clock_time_twelve_outline": { + "prefix": "svg.material.clock_time_twelve_outline", + "description": "SVG material - clock_time_twelve_outline", + "body": [ + "{% svg material clock_time_twelve_outline %}" + ] + }, + "clock_time_two": { + "prefix": "svg.material.clock_time_two", + "description": "SVG material - clock_time_two", + "body": [ + "{% svg material clock_time_two %}" + ] + }, + "clock_time_two_outline": { + "prefix": "svg.material.clock_time_two_outline", + "description": "SVG material - clock_time_two_outline", + "body": [ + "{% svg material clock_time_two_outline %}" + ] + }, + "close": { + "prefix": "svg.material.close", + "description": "SVG material - close", + "body": [ + "{% svg material close %}" + ] + }, + "close_box": { + "prefix": "svg.material.close_box", + "description": "SVG material - close_box", + "body": [ + "{% svg material close_box %}" + ] + }, + "close_box_multiple": { + "prefix": "svg.material.close_box_multiple", + "description": "SVG material - close_box_multiple", + "body": [ + "{% svg material close_box_multiple %}" + ] + }, + "close_box_multiple_outline": { + "prefix": "svg.material.close_box_multiple_outline", + "description": "SVG material - close_box_multiple_outline", + "body": [ + "{% svg material close_box_multiple_outline %}" + ] + }, + "close_box_outline": { + "prefix": "svg.material.close_box_outline", + "description": "SVG material - close_box_outline", + "body": [ + "{% svg material close_box_outline %}" + ] + }, + "close_circle": { + "prefix": "svg.material.close_circle", + "description": "SVG material - close_circle", + "body": [ + "{% svg material close_circle %}" + ] + }, + "close_circle_multiple": { + "prefix": "svg.material.close_circle_multiple", + "description": "SVG material - close_circle_multiple", + "body": [ + "{% svg material close_circle_multiple %}" + ] + }, + "close_circle_multiple_outline": { + "prefix": "svg.material.close_circle_multiple_outline", + "description": "SVG material - close_circle_multiple_outline", + "body": [ + "{% svg material close_circle_multiple_outline %}" + ] + }, + "close_circle_outline": { + "prefix": "svg.material.close_circle_outline", + "description": "SVG material - close_circle_outline", + "body": [ + "{% svg material close_circle_outline %}" + ] + }, + "close_network": { + "prefix": "svg.material.close_network", + "description": "SVG material - close_network", + "body": [ + "{% svg material close_network %}" + ] + }, + "close_network_outline": { + "prefix": "svg.material.close_network_outline", + "description": "SVG material - close_network_outline", + "body": [ + "{% svg material close_network_outline %}" + ] + }, + "close_octagon": { + "prefix": "svg.material.close_octagon", + "description": "SVG material - close_octagon", + "body": [ + "{% svg material close_octagon %}" + ] + }, + "close_octagon_outline": { + "prefix": "svg.material.close_octagon_outline", + "description": "SVG material - close_octagon_outline", + "body": [ + "{% svg material close_octagon_outline %}" + ] + }, + "close_outline": { + "prefix": "svg.material.close_outline", + "description": "SVG material - close_outline", + "body": [ + "{% svg material close_outline %}" + ] + }, + "close_thick": { + "prefix": "svg.material.close_thick", + "description": "SVG material - close_thick", + "body": [ + "{% svg material close_thick %}" + ] + }, + "closed_caption": { + "prefix": "svg.material.closed_caption", + "description": "SVG material - closed_caption", + "body": [ + "{% svg material closed_caption %}" + ] + }, + "closed_caption_outline": { + "prefix": "svg.material.closed_caption_outline", + "description": "SVG material - closed_caption_outline", + "body": [ + "{% svg material closed_caption_outline %}" + ] + }, + "cloud": { + "prefix": "svg.material.cloud", + "description": "SVG material - cloud", + "body": [ + "{% svg material cloud %}" + ] + }, + "cloud_alert": { + "prefix": "svg.material.cloud_alert", + "description": "SVG material - cloud_alert", + "body": [ + "{% svg material cloud_alert %}" + ] + }, + "cloud_alert_outline": { + "prefix": "svg.material.cloud_alert_outline", + "description": "SVG material - cloud_alert_outline", + "body": [ + "{% svg material cloud_alert_outline %}" + ] + }, + "cloud_arrow_down": { + "prefix": "svg.material.cloud_arrow_down", + "description": "SVG material - cloud_arrow_down", + "body": [ + "{% svg material cloud_arrow_down %}" + ] + }, + "cloud_arrow_down_outline": { + "prefix": "svg.material.cloud_arrow_down_outline", + "description": "SVG material - cloud_arrow_down_outline", + "body": [ + "{% svg material cloud_arrow_down_outline %}" + ] + }, + "cloud_arrow_left": { + "prefix": "svg.material.cloud_arrow_left", + "description": "SVG material - cloud_arrow_left", + "body": [ + "{% svg material cloud_arrow_left %}" + ] + }, + "cloud_arrow_left_outline": { + "prefix": "svg.material.cloud_arrow_left_outline", + "description": "SVG material - cloud_arrow_left_outline", + "body": [ + "{% svg material cloud_arrow_left_outline %}" + ] + }, + "cloud_arrow_right": { + "prefix": "svg.material.cloud_arrow_right", + "description": "SVG material - cloud_arrow_right", + "body": [ + "{% svg material cloud_arrow_right %}" + ] + }, + "cloud_arrow_right_outline": { + "prefix": "svg.material.cloud_arrow_right_outline", + "description": "SVG material - cloud_arrow_right_outline", + "body": [ + "{% svg material cloud_arrow_right_outline %}" + ] + }, + "cloud_arrow_up": { + "prefix": "svg.material.cloud_arrow_up", + "description": "SVG material - cloud_arrow_up", + "body": [ + "{% svg material cloud_arrow_up %}" + ] + }, + "cloud_arrow_up_outline": { + "prefix": "svg.material.cloud_arrow_up_outline", + "description": "SVG material - cloud_arrow_up_outline", + "body": [ + "{% svg material cloud_arrow_up_outline %}" + ] + }, + "cloud_braces": { + "prefix": "svg.material.cloud_braces", + "description": "SVG material - cloud_braces", + "body": [ + "{% svg material cloud_braces %}" + ] + }, + "cloud_cancel": { + "prefix": "svg.material.cloud_cancel", + "description": "SVG material - cloud_cancel", + "body": [ + "{% svg material cloud_cancel %}" + ] + }, + "cloud_cancel_outline": { + "prefix": "svg.material.cloud_cancel_outline", + "description": "SVG material - cloud_cancel_outline", + "body": [ + "{% svg material cloud_cancel_outline %}" + ] + }, + "cloud_check": { + "prefix": "svg.material.cloud_check", + "description": "SVG material - cloud_check", + "body": [ + "{% svg material cloud_check %}" + ] + }, + "cloud_check_outline": { + "prefix": "svg.material.cloud_check_outline", + "description": "SVG material - cloud_check_outline", + "body": [ + "{% svg material cloud_check_outline %}" + ] + }, + "cloud_check_variant": { + "prefix": "svg.material.cloud_check_variant", + "description": "SVG material - cloud_check_variant", + "body": [ + "{% svg material cloud_check_variant %}" + ] + }, + "cloud_check_variant_outline": { + "prefix": "svg.material.cloud_check_variant_outline", + "description": "SVG material - cloud_check_variant_outline", + "body": [ + "{% svg material cloud_check_variant_outline %}" + ] + }, + "cloud_circle": { + "prefix": "svg.material.cloud_circle", + "description": "SVG material - cloud_circle", + "body": [ + "{% svg material cloud_circle %}" + ] + }, + "cloud_circle_outline": { + "prefix": "svg.material.cloud_circle_outline", + "description": "SVG material - cloud_circle_outline", + "body": [ + "{% svg material cloud_circle_outline %}" + ] + }, + "cloud_clock": { + "prefix": "svg.material.cloud_clock", + "description": "SVG material - cloud_clock", + "body": [ + "{% svg material cloud_clock %}" + ] + }, + "cloud_clock_outline": { + "prefix": "svg.material.cloud_clock_outline", + "description": "SVG material - cloud_clock_outline", + "body": [ + "{% svg material cloud_clock_outline %}" + ] + }, + "cloud_cog": { + "prefix": "svg.material.cloud_cog", + "description": "SVG material - cloud_cog", + "body": [ + "{% svg material cloud_cog %}" + ] + }, + "cloud_cog_outline": { + "prefix": "svg.material.cloud_cog_outline", + "description": "SVG material - cloud_cog_outline", + "body": [ + "{% svg material cloud_cog_outline %}" + ] + }, + "cloud_download": { + "prefix": "svg.material.cloud_download", + "description": "SVG material - cloud_download", + "body": [ + "{% svg material cloud_download %}" + ] + }, + "cloud_download_outline": { + "prefix": "svg.material.cloud_download_outline", + "description": "SVG material - cloud_download_outline", + "body": [ + "{% svg material cloud_download_outline %}" + ] + }, + "cloud_key": { + "prefix": "svg.material.cloud_key", + "description": "SVG material - cloud_key", + "body": [ + "{% svg material cloud_key %}" + ] + }, + "cloud_key_outline": { + "prefix": "svg.material.cloud_key_outline", + "description": "SVG material - cloud_key_outline", + "body": [ + "{% svg material cloud_key_outline %}" + ] + }, + "cloud_lock": { + "prefix": "svg.material.cloud_lock", + "description": "SVG material - cloud_lock", + "body": [ + "{% svg material cloud_lock %}" + ] + }, + "cloud_lock_open": { + "prefix": "svg.material.cloud_lock_open", + "description": "SVG material - cloud_lock_open", + "body": [ + "{% svg material cloud_lock_open %}" + ] + }, + "cloud_lock_open_outline": { + "prefix": "svg.material.cloud_lock_open_outline", + "description": "SVG material - cloud_lock_open_outline", + "body": [ + "{% svg material cloud_lock_open_outline %}" + ] + }, + "cloud_lock_outline": { + "prefix": "svg.material.cloud_lock_outline", + "description": "SVG material - cloud_lock_outline", + "body": [ + "{% svg material cloud_lock_outline %}" + ] + }, + "cloud_minus": { + "prefix": "svg.material.cloud_minus", + "description": "SVG material - cloud_minus", + "body": [ + "{% svg material cloud_minus %}" + ] + }, + "cloud_minus_outline": { + "prefix": "svg.material.cloud_minus_outline", + "description": "SVG material - cloud_minus_outline", + "body": [ + "{% svg material cloud_minus_outline %}" + ] + }, + "cloud_off": { + "prefix": "svg.material.cloud_off", + "description": "SVG material - cloud_off", + "body": [ + "{% svg material cloud_off %}" + ] + }, + "cloud_off_outline": { + "prefix": "svg.material.cloud_off_outline", + "description": "SVG material - cloud_off_outline", + "body": [ + "{% svg material cloud_off_outline %}" + ] + }, + "cloud_outline": { + "prefix": "svg.material.cloud_outline", + "description": "SVG material - cloud_outline", + "body": [ + "{% svg material cloud_outline %}" + ] + }, + "cloud_percent": { + "prefix": "svg.material.cloud_percent", + "description": "SVG material - cloud_percent", + "body": [ + "{% svg material cloud_percent %}" + ] + }, + "cloud_percent_outline": { + "prefix": "svg.material.cloud_percent_outline", + "description": "SVG material - cloud_percent_outline", + "body": [ + "{% svg material cloud_percent_outline %}" + ] + }, + "cloud_plus": { + "prefix": "svg.material.cloud_plus", + "description": "SVG material - cloud_plus", + "body": [ + "{% svg material cloud_plus %}" + ] + }, + "cloud_plus_outline": { + "prefix": "svg.material.cloud_plus_outline", + "description": "SVG material - cloud_plus_outline", + "body": [ + "{% svg material cloud_plus_outline %}" + ] + }, + "cloud_print": { + "prefix": "svg.material.cloud_print", + "description": "SVG material - cloud_print", + "body": [ + "{% svg material cloud_print %}" + ] + }, + "cloud_print_outline": { + "prefix": "svg.material.cloud_print_outline", + "description": "SVG material - cloud_print_outline", + "body": [ + "{% svg material cloud_print_outline %}" + ] + }, + "cloud_question": { + "prefix": "svg.material.cloud_question", + "description": "SVG material - cloud_question", + "body": [ + "{% svg material cloud_question %}" + ] + }, + "cloud_question_outline": { + "prefix": "svg.material.cloud_question_outline", + "description": "SVG material - cloud_question_outline", + "body": [ + "{% svg material cloud_question_outline %}" + ] + }, + "cloud_refresh": { + "prefix": "svg.material.cloud_refresh", + "description": "SVG material - cloud_refresh", + "body": [ + "{% svg material cloud_refresh %}" + ] + }, + "cloud_refresh_outline": { + "prefix": "svg.material.cloud_refresh_outline", + "description": "SVG material - cloud_refresh_outline", + "body": [ + "{% svg material cloud_refresh_outline %}" + ] + }, + "cloud_refresh_variant": { + "prefix": "svg.material.cloud_refresh_variant", + "description": "SVG material - cloud_refresh_variant", + "body": [ + "{% svg material cloud_refresh_variant %}" + ] + }, + "cloud_refresh_variant_outline": { + "prefix": "svg.material.cloud_refresh_variant_outline", + "description": "SVG material - cloud_refresh_variant_outline", + "body": [ + "{% svg material cloud_refresh_variant_outline %}" + ] + }, + "cloud_remove": { + "prefix": "svg.material.cloud_remove", + "description": "SVG material - cloud_remove", + "body": [ + "{% svg material cloud_remove %}" + ] + }, + "cloud_remove_outline": { + "prefix": "svg.material.cloud_remove_outline", + "description": "SVG material - cloud_remove_outline", + "body": [ + "{% svg material cloud_remove_outline %}" + ] + }, + "cloud_search": { + "prefix": "svg.material.cloud_search", + "description": "SVG material - cloud_search", + "body": [ + "{% svg material cloud_search %}" + ] + }, + "cloud_search_outline": { + "prefix": "svg.material.cloud_search_outline", + "description": "SVG material - cloud_search_outline", + "body": [ + "{% svg material cloud_search_outline %}" + ] + }, + "cloud_sync": { + "prefix": "svg.material.cloud_sync", + "description": "SVG material - cloud_sync", + "body": [ + "{% svg material cloud_sync %}" + ] + }, + "cloud_sync_outline": { + "prefix": "svg.material.cloud_sync_outline", + "description": "SVG material - cloud_sync_outline", + "body": [ + "{% svg material cloud_sync_outline %}" + ] + }, + "cloud_tags": { + "prefix": "svg.material.cloud_tags", + "description": "SVG material - cloud_tags", + "body": [ + "{% svg material cloud_tags %}" + ] + }, + "cloud_upload": { + "prefix": "svg.material.cloud_upload", + "description": "SVG material - cloud_upload", + "body": [ + "{% svg material cloud_upload %}" + ] + }, + "cloud_upload_outline": { + "prefix": "svg.material.cloud_upload_outline", + "description": "SVG material - cloud_upload_outline", + "body": [ + "{% svg material cloud_upload_outline %}" + ] + }, + "clouds": { + "prefix": "svg.material.clouds", + "description": "SVG material - clouds", + "body": [ + "{% svg material clouds %}" + ] + }, + "clover": { + "prefix": "svg.material.clover", + "description": "SVG material - clover", + "body": [ + "{% svg material clover %}" + ] + }, + "clover_outline": { + "prefix": "svg.material.clover_outline", + "description": "SVG material - clover_outline", + "body": [ + "{% svg material clover_outline %}" + ] + }, + "coach_lamp": { + "prefix": "svg.material.coach_lamp", + "description": "SVG material - coach_lamp", + "body": [ + "{% svg material coach_lamp %}" + ] + }, + "coach_lamp_variant": { + "prefix": "svg.material.coach_lamp_variant", + "description": "SVG material - coach_lamp_variant", + "body": [ + "{% svg material coach_lamp_variant %}" + ] + }, + "coat_rack": { + "prefix": "svg.material.coat_rack", + "description": "SVG material - coat_rack", + "body": [ + "{% svg material coat_rack %}" + ] + }, + "code_array": { + "prefix": "svg.material.code_array", + "description": "SVG material - code_array", + "body": [ + "{% svg material code_array %}" + ] + }, + "code_block_braces": { + "prefix": "svg.material.code_block_braces", + "description": "SVG material - code_block_braces", + "body": [ + "{% svg material code_block_braces %}" + ] + }, + "code_block_brackets": { + "prefix": "svg.material.code_block_brackets", + "description": "SVG material - code_block_brackets", + "body": [ + "{% svg material code_block_brackets %}" + ] + }, + "code_block_parentheses": { + "prefix": "svg.material.code_block_parentheses", + "description": "SVG material - code_block_parentheses", + "body": [ + "{% svg material code_block_parentheses %}" + ] + }, + "code_block_tags": { + "prefix": "svg.material.code_block_tags", + "description": "SVG material - code_block_tags", + "body": [ + "{% svg material code_block_tags %}" + ] + }, + "code_braces": { + "prefix": "svg.material.code_braces", + "description": "SVG material - code_braces", + "body": [ + "{% svg material code_braces %}" + ] + }, + "code_braces_box": { + "prefix": "svg.material.code_braces_box", + "description": "SVG material - code_braces_box", + "body": [ + "{% svg material code_braces_box %}" + ] + }, + "code_brackets": { + "prefix": "svg.material.code_brackets", + "description": "SVG material - code_brackets", + "body": [ + "{% svg material code_brackets %}" + ] + }, + "code_equal": { + "prefix": "svg.material.code_equal", + "description": "SVG material - code_equal", + "body": [ + "{% svg material code_equal %}" + ] + }, + "code_greater_than": { + "prefix": "svg.material.code_greater_than", + "description": "SVG material - code_greater_than", + "body": [ + "{% svg material code_greater_than %}" + ] + }, + "code_greater_than_or_equal": { + "prefix": "svg.material.code_greater_than_or_equal", + "description": "SVG material - code_greater_than_or_equal", + "body": [ + "{% svg material code_greater_than_or_equal %}" + ] + }, + "code_json": { + "prefix": "svg.material.code_json", + "description": "SVG material - code_json", + "body": [ + "{% svg material code_json %}" + ] + }, + "code_less_than": { + "prefix": "svg.material.code_less_than", + "description": "SVG material - code_less_than", + "body": [ + "{% svg material code_less_than %}" + ] + }, + "code_less_than_or_equal": { + "prefix": "svg.material.code_less_than_or_equal", + "description": "SVG material - code_less_than_or_equal", + "body": [ + "{% svg material code_less_than_or_equal %}" + ] + }, + "code_not_equal": { + "prefix": "svg.material.code_not_equal", + "description": "SVG material - code_not_equal", + "body": [ + "{% svg material code_not_equal %}" + ] + }, + "code_not_equal_variant": { + "prefix": "svg.material.code_not_equal_variant", + "description": "SVG material - code_not_equal_variant", + "body": [ + "{% svg material code_not_equal_variant %}" + ] + }, + "code_parentheses": { + "prefix": "svg.material.code_parentheses", + "description": "SVG material - code_parentheses", + "body": [ + "{% svg material code_parentheses %}" + ] + }, + "code_parentheses_box": { + "prefix": "svg.material.code_parentheses_box", + "description": "SVG material - code_parentheses_box", + "body": [ + "{% svg material code_parentheses_box %}" + ] + }, + "code_string": { + "prefix": "svg.material.code_string", + "description": "SVG material - code_string", + "body": [ + "{% svg material code_string %}" + ] + }, + "code_tags": { + "prefix": "svg.material.code_tags", + "description": "SVG material - code_tags", + "body": [ + "{% svg material code_tags %}" + ] + }, + "code_tags_check": { + "prefix": "svg.material.code_tags_check", + "description": "SVG material - code_tags_check", + "body": [ + "{% svg material code_tags_check %}" + ] + }, + "codepen": { + "prefix": "svg.material.codepen", + "description": "SVG material - codepen", + "body": [ + "{% svg material codepen %}" + ] + }, + "coffee": { + "prefix": "svg.material.coffee", + "description": "SVG material - coffee", + "body": [ + "{% svg material coffee %}" + ] + }, + "coffee_maker": { + "prefix": "svg.material.coffee_maker", + "description": "SVG material - coffee_maker", + "body": [ + "{% svg material coffee_maker %}" + ] + }, + "coffee_maker_check": { + "prefix": "svg.material.coffee_maker_check", + "description": "SVG material - coffee_maker_check", + "body": [ + "{% svg material coffee_maker_check %}" + ] + }, + "coffee_maker_check_outline": { + "prefix": "svg.material.coffee_maker_check_outline", + "description": "SVG material - coffee_maker_check_outline", + "body": [ + "{% svg material coffee_maker_check_outline %}" + ] + }, + "coffee_maker_outline": { + "prefix": "svg.material.coffee_maker_outline", + "description": "SVG material - coffee_maker_outline", + "body": [ + "{% svg material coffee_maker_outline %}" + ] + }, + "coffee_off": { + "prefix": "svg.material.coffee_off", + "description": "SVG material - coffee_off", + "body": [ + "{% svg material coffee_off %}" + ] + }, + "coffee_off_outline": { + "prefix": "svg.material.coffee_off_outline", + "description": "SVG material - coffee_off_outline", + "body": [ + "{% svg material coffee_off_outline %}" + ] + }, + "coffee_outline": { + "prefix": "svg.material.coffee_outline", + "description": "SVG material - coffee_outline", + "body": [ + "{% svg material coffee_outline %}" + ] + }, + "coffee_to_go": { + "prefix": "svg.material.coffee_to_go", + "description": "SVG material - coffee_to_go", + "body": [ + "{% svg material coffee_to_go %}" + ] + }, + "coffee_to_go_outline": { + "prefix": "svg.material.coffee_to_go_outline", + "description": "SVG material - coffee_to_go_outline", + "body": [ + "{% svg material coffee_to_go_outline %}" + ] + }, + "coffin": { + "prefix": "svg.material.coffin", + "description": "SVG material - coffin", + "body": [ + "{% svg material coffin %}" + ] + }, + "cog": { + "prefix": "svg.material.cog", + "description": "SVG material - cog", + "body": [ + "{% svg material cog %}" + ] + }, + "cog_box": { + "prefix": "svg.material.cog_box", + "description": "SVG material - cog_box", + "body": [ + "{% svg material cog_box %}" + ] + }, + "cog_clockwise": { + "prefix": "svg.material.cog_clockwise", + "description": "SVG material - cog_clockwise", + "body": [ + "{% svg material cog_clockwise %}" + ] + }, + "cog_counterclockwise": { + "prefix": "svg.material.cog_counterclockwise", + "description": "SVG material - cog_counterclockwise", + "body": [ + "{% svg material cog_counterclockwise %}" + ] + }, + "cog_off": { + "prefix": "svg.material.cog_off", + "description": "SVG material - cog_off", + "body": [ + "{% svg material cog_off %}" + ] + }, + "cog_off_outline": { + "prefix": "svg.material.cog_off_outline", + "description": "SVG material - cog_off_outline", + "body": [ + "{% svg material cog_off_outline %}" + ] + }, + "cog_outline": { + "prefix": "svg.material.cog_outline", + "description": "SVG material - cog_outline", + "body": [ + "{% svg material cog_outline %}" + ] + }, + "cog_pause": { + "prefix": "svg.material.cog_pause", + "description": "SVG material - cog_pause", + "body": [ + "{% svg material cog_pause %}" + ] + }, + "cog_pause_outline": { + "prefix": "svg.material.cog_pause_outline", + "description": "SVG material - cog_pause_outline", + "body": [ + "{% svg material cog_pause_outline %}" + ] + }, + "cog_play": { + "prefix": "svg.material.cog_play", + "description": "SVG material - cog_play", + "body": [ + "{% svg material cog_play %}" + ] + }, + "cog_play_outline": { + "prefix": "svg.material.cog_play_outline", + "description": "SVG material - cog_play_outline", + "body": [ + "{% svg material cog_play_outline %}" + ] + }, + "cog_refresh": { + "prefix": "svg.material.cog_refresh", + "description": "SVG material - cog_refresh", + "body": [ + "{% svg material cog_refresh %}" + ] + }, + "cog_refresh_outline": { + "prefix": "svg.material.cog_refresh_outline", + "description": "SVG material - cog_refresh_outline", + "body": [ + "{% svg material cog_refresh_outline %}" + ] + }, + "cog_stop": { + "prefix": "svg.material.cog_stop", + "description": "SVG material - cog_stop", + "body": [ + "{% svg material cog_stop %}" + ] + }, + "cog_stop_outline": { + "prefix": "svg.material.cog_stop_outline", + "description": "SVG material - cog_stop_outline", + "body": [ + "{% svg material cog_stop_outline %}" + ] + }, + "cog_sync": { + "prefix": "svg.material.cog_sync", + "description": "SVG material - cog_sync", + "body": [ + "{% svg material cog_sync %}" + ] + }, + "cog_sync_outline": { + "prefix": "svg.material.cog_sync_outline", + "description": "SVG material - cog_sync_outline", + "body": [ + "{% svg material cog_sync_outline %}" + ] + }, + "cog_transfer": { + "prefix": "svg.material.cog_transfer", + "description": "SVG material - cog_transfer", + "body": [ + "{% svg material cog_transfer %}" + ] + }, + "cog_transfer_outline": { + "prefix": "svg.material.cog_transfer_outline", + "description": "SVG material - cog_transfer_outline", + "body": [ + "{% svg material cog_transfer_outline %}" + ] + }, + "cogs": { + "prefix": "svg.material.cogs", + "description": "SVG material - cogs", + "body": [ + "{% svg material cogs %}" + ] + }, + "collage": { + "prefix": "svg.material.collage", + "description": "SVG material - collage", + "body": [ + "{% svg material collage %}" + ] + }, + "collapse_all": { + "prefix": "svg.material.collapse_all", + "description": "SVG material - collapse_all", + "body": [ + "{% svg material collapse_all %}" + ] + }, + "collapse_all_outline": { + "prefix": "svg.material.collapse_all_outline", + "description": "SVG material - collapse_all_outline", + "body": [ + "{% svg material collapse_all_outline %}" + ] + }, + "color_helper": { + "prefix": "svg.material.color_helper", + "description": "SVG material - color_helper", + "body": [ + "{% svg material color_helper %}" + ] + }, + "comma": { + "prefix": "svg.material.comma", + "description": "SVG material - comma", + "body": [ + "{% svg material comma %}" + ] + }, + "comma_box": { + "prefix": "svg.material.comma_box", + "description": "SVG material - comma_box", + "body": [ + "{% svg material comma_box %}" + ] + }, + "comma_box_outline": { + "prefix": "svg.material.comma_box_outline", + "description": "SVG material - comma_box_outline", + "body": [ + "{% svg material comma_box_outline %}" + ] + }, + "comma_circle": { + "prefix": "svg.material.comma_circle", + "description": "SVG material - comma_circle", + "body": [ + "{% svg material comma_circle %}" + ] + }, + "comma_circle_outline": { + "prefix": "svg.material.comma_circle_outline", + "description": "SVG material - comma_circle_outline", + "body": [ + "{% svg material comma_circle_outline %}" + ] + }, + "comment": { + "prefix": "svg.material.comment", + "description": "SVG material - comment", + "body": [ + "{% svg material comment %}" + ] + }, + "comment_account": { + "prefix": "svg.material.comment_account", + "description": "SVG material - comment_account", + "body": [ + "{% svg material comment_account %}" + ] + }, + "comment_account_outline": { + "prefix": "svg.material.comment_account_outline", + "description": "SVG material - comment_account_outline", + "body": [ + "{% svg material comment_account_outline %}" + ] + }, + "comment_alert": { + "prefix": "svg.material.comment_alert", + "description": "SVG material - comment_alert", + "body": [ + "{% svg material comment_alert %}" + ] + }, + "comment_alert_outline": { + "prefix": "svg.material.comment_alert_outline", + "description": "SVG material - comment_alert_outline", + "body": [ + "{% svg material comment_alert_outline %}" + ] + }, + "comment_arrow_left": { + "prefix": "svg.material.comment_arrow_left", + "description": "SVG material - comment_arrow_left", + "body": [ + "{% svg material comment_arrow_left %}" + ] + }, + "comment_arrow_left_outline": { + "prefix": "svg.material.comment_arrow_left_outline", + "description": "SVG material - comment_arrow_left_outline", + "body": [ + "{% svg material comment_arrow_left_outline %}" + ] + }, + "comment_arrow_right": { + "prefix": "svg.material.comment_arrow_right", + "description": "SVG material - comment_arrow_right", + "body": [ + "{% svg material comment_arrow_right %}" + ] + }, + "comment_arrow_right_outline": { + "prefix": "svg.material.comment_arrow_right_outline", + "description": "SVG material - comment_arrow_right_outline", + "body": [ + "{% svg material comment_arrow_right_outline %}" + ] + }, + "comment_bookmark": { + "prefix": "svg.material.comment_bookmark", + "description": "SVG material - comment_bookmark", + "body": [ + "{% svg material comment_bookmark %}" + ] + }, + "comment_bookmark_outline": { + "prefix": "svg.material.comment_bookmark_outline", + "description": "SVG material - comment_bookmark_outline", + "body": [ + "{% svg material comment_bookmark_outline %}" + ] + }, + "comment_check": { + "prefix": "svg.material.comment_check", + "description": "SVG material - comment_check", + "body": [ + "{% svg material comment_check %}" + ] + }, + "comment_check_outline": { + "prefix": "svg.material.comment_check_outline", + "description": "SVG material - comment_check_outline", + "body": [ + "{% svg material comment_check_outline %}" + ] + }, + "comment_edit": { + "prefix": "svg.material.comment_edit", + "description": "SVG material - comment_edit", + "body": [ + "{% svg material comment_edit %}" + ] + }, + "comment_edit_outline": { + "prefix": "svg.material.comment_edit_outline", + "description": "SVG material - comment_edit_outline", + "body": [ + "{% svg material comment_edit_outline %}" + ] + }, + "comment_eye": { + "prefix": "svg.material.comment_eye", + "description": "SVG material - comment_eye", + "body": [ + "{% svg material comment_eye %}" + ] + }, + "comment_eye_outline": { + "prefix": "svg.material.comment_eye_outline", + "description": "SVG material - comment_eye_outline", + "body": [ + "{% svg material comment_eye_outline %}" + ] + }, + "comment_flash": { + "prefix": "svg.material.comment_flash", + "description": "SVG material - comment_flash", + "body": [ + "{% svg material comment_flash %}" + ] + }, + "comment_flash_outline": { + "prefix": "svg.material.comment_flash_outline", + "description": "SVG material - comment_flash_outline", + "body": [ + "{% svg material comment_flash_outline %}" + ] + }, + "comment_minus": { + "prefix": "svg.material.comment_minus", + "description": "SVG material - comment_minus", + "body": [ + "{% svg material comment_minus %}" + ] + }, + "comment_minus_outline": { + "prefix": "svg.material.comment_minus_outline", + "description": "SVG material - comment_minus_outline", + "body": [ + "{% svg material comment_minus_outline %}" + ] + }, + "comment_multiple": { + "prefix": "svg.material.comment_multiple", + "description": "SVG material - comment_multiple", + "body": [ + "{% svg material comment_multiple %}" + ] + }, + "comment_multiple_outline": { + "prefix": "svg.material.comment_multiple_outline", + "description": "SVG material - comment_multiple_outline", + "body": [ + "{% svg material comment_multiple_outline %}" + ] + }, + "comment_off": { + "prefix": "svg.material.comment_off", + "description": "SVG material - comment_off", + "body": [ + "{% svg material comment_off %}" + ] + }, + "comment_off_outline": { + "prefix": "svg.material.comment_off_outline", + "description": "SVG material - comment_off_outline", + "body": [ + "{% svg material comment_off_outline %}" + ] + }, + "comment_outline": { + "prefix": "svg.material.comment_outline", + "description": "SVG material - comment_outline", + "body": [ + "{% svg material comment_outline %}" + ] + }, + "comment_plus": { + "prefix": "svg.material.comment_plus", + "description": "SVG material - comment_plus", + "body": [ + "{% svg material comment_plus %}" + ] + }, + "comment_plus_outline": { + "prefix": "svg.material.comment_plus_outline", + "description": "SVG material - comment_plus_outline", + "body": [ + "{% svg material comment_plus_outline %}" + ] + }, + "comment_processing": { + "prefix": "svg.material.comment_processing", + "description": "SVG material - comment_processing", + "body": [ + "{% svg material comment_processing %}" + ] + }, + "comment_processing_outline": { + "prefix": "svg.material.comment_processing_outline", + "description": "SVG material - comment_processing_outline", + "body": [ + "{% svg material comment_processing_outline %}" + ] + }, + "comment_question": { + "prefix": "svg.material.comment_question", + "description": "SVG material - comment_question", + "body": [ + "{% svg material comment_question %}" + ] + }, + "comment_question_outline": { + "prefix": "svg.material.comment_question_outline", + "description": "SVG material - comment_question_outline", + "body": [ + "{% svg material comment_question_outline %}" + ] + }, + "comment_quote": { + "prefix": "svg.material.comment_quote", + "description": "SVG material - comment_quote", + "body": [ + "{% svg material comment_quote %}" + ] + }, + "comment_quote_outline": { + "prefix": "svg.material.comment_quote_outline", + "description": "SVG material - comment_quote_outline", + "body": [ + "{% svg material comment_quote_outline %}" + ] + }, + "comment_remove": { + "prefix": "svg.material.comment_remove", + "description": "SVG material - comment_remove", + "body": [ + "{% svg material comment_remove %}" + ] + }, + "comment_remove_outline": { + "prefix": "svg.material.comment_remove_outline", + "description": "SVG material - comment_remove_outline", + "body": [ + "{% svg material comment_remove_outline %}" + ] + }, + "comment_search": { + "prefix": "svg.material.comment_search", + "description": "SVG material - comment_search", + "body": [ + "{% svg material comment_search %}" + ] + }, + "comment_search_outline": { + "prefix": "svg.material.comment_search_outline", + "description": "SVG material - comment_search_outline", + "body": [ + "{% svg material comment_search_outline %}" + ] + }, + "comment_text": { + "prefix": "svg.material.comment_text", + "description": "SVG material - comment_text", + "body": [ + "{% svg material comment_text %}" + ] + }, + "comment_text_multiple": { + "prefix": "svg.material.comment_text_multiple", + "description": "SVG material - comment_text_multiple", + "body": [ + "{% svg material comment_text_multiple %}" + ] + }, + "comment_text_multiple_outline": { + "prefix": "svg.material.comment_text_multiple_outline", + "description": "SVG material - comment_text_multiple_outline", + "body": [ + "{% svg material comment_text_multiple_outline %}" + ] + }, + "comment_text_outline": { + "prefix": "svg.material.comment_text_outline", + "description": "SVG material - comment_text_outline", + "body": [ + "{% svg material comment_text_outline %}" + ] + }, + "compare": { + "prefix": "svg.material.compare", + "description": "SVG material - compare", + "body": [ + "{% svg material compare %}" + ] + }, + "compare_horizontal": { + "prefix": "svg.material.compare_horizontal", + "description": "SVG material - compare_horizontal", + "body": [ + "{% svg material compare_horizontal %}" + ] + }, + "compare_remove": { + "prefix": "svg.material.compare_remove", + "description": "SVG material - compare_remove", + "body": [ + "{% svg material compare_remove %}" + ] + }, + "compare_vertical": { + "prefix": "svg.material.compare_vertical", + "description": "SVG material - compare_vertical", + "body": [ + "{% svg material compare_vertical %}" + ] + }, + "compass": { + "prefix": "svg.material.compass", + "description": "SVG material - compass", + "body": [ + "{% svg material compass %}" + ] + }, + "compass_off": { + "prefix": "svg.material.compass_off", + "description": "SVG material - compass_off", + "body": [ + "{% svg material compass_off %}" + ] + }, + "compass_off_outline": { + "prefix": "svg.material.compass_off_outline", + "description": "SVG material - compass_off_outline", + "body": [ + "{% svg material compass_off_outline %}" + ] + }, + "compass_outline": { + "prefix": "svg.material.compass_outline", + "description": "SVG material - compass_outline", + "body": [ + "{% svg material compass_outline %}" + ] + }, + "compass_rose": { + "prefix": "svg.material.compass_rose", + "description": "SVG material - compass_rose", + "body": [ + "{% svg material compass_rose %}" + ] + }, + "compost": { + "prefix": "svg.material.compost", + "description": "SVG material - compost", + "body": [ + "{% svg material compost %}" + ] + }, + "cone": { + "prefix": "svg.material.cone", + "description": "SVG material - cone", + "body": [ + "{% svg material cone %}" + ] + }, + "cone_off": { + "prefix": "svg.material.cone_off", + "description": "SVG material - cone_off", + "body": [ + "{% svg material cone_off %}" + ] + }, + "connection": { + "prefix": "svg.material.connection", + "description": "SVG material - connection", + "body": [ + "{% svg material connection %}" + ] + }, + "console": { + "prefix": "svg.material.console", + "description": "SVG material - console", + "body": [ + "{% svg material console %}" + ] + }, + "console_line": { + "prefix": "svg.material.console_line", + "description": "SVG material - console_line", + "body": [ + "{% svg material console_line %}" + ] + }, + "console_network": { + "prefix": "svg.material.console_network", + "description": "SVG material - console_network", + "body": [ + "{% svg material console_network %}" + ] + }, + "console_network_outline": { + "prefix": "svg.material.console_network_outline", + "description": "SVG material - console_network_outline", + "body": [ + "{% svg material console_network_outline %}" + ] + }, + "consolidate": { + "prefix": "svg.material.consolidate", + "description": "SVG material - consolidate", + "body": [ + "{% svg material consolidate %}" + ] + }, + "contactless_payment": { + "prefix": "svg.material.contactless_payment", + "description": "SVG material - contactless_payment", + "body": [ + "{% svg material contactless_payment %}" + ] + }, + "contactless_payment_circle": { + "prefix": "svg.material.contactless_payment_circle", + "description": "SVG material - contactless_payment_circle", + "body": [ + "{% svg material contactless_payment_circle %}" + ] + }, + "contactless_payment_circle_outline": { + "prefix": "svg.material.contactless_payment_circle_outline", + "description": "SVG material - contactless_payment_circle_outline", + "body": [ + "{% svg material contactless_payment_circle_outline %}" + ] + }, + "contacts": { + "prefix": "svg.material.contacts", + "description": "SVG material - contacts", + "body": [ + "{% svg material contacts %}" + ] + }, + "contacts_outline": { + "prefix": "svg.material.contacts_outline", + "description": "SVG material - contacts_outline", + "body": [ + "{% svg material contacts_outline %}" + ] + }, + "contain": { + "prefix": "svg.material.contain", + "description": "SVG material - contain", + "body": [ + "{% svg material contain %}" + ] + }, + "contain_end": { + "prefix": "svg.material.contain_end", + "description": "SVG material - contain_end", + "body": [ + "{% svg material contain_end %}" + ] + }, + "contain_start": { + "prefix": "svg.material.contain_start", + "description": "SVG material - contain_start", + "body": [ + "{% svg material contain_start %}" + ] + }, + "content_copy": { + "prefix": "svg.material.content_copy", + "description": "SVG material - content_copy", + "body": [ + "{% svg material content_copy %}" + ] + }, + "content_cut": { + "prefix": "svg.material.content_cut", + "description": "SVG material - content_cut", + "body": [ + "{% svg material content_cut %}" + ] + }, + "content_duplicate": { + "prefix": "svg.material.content_duplicate", + "description": "SVG material - content_duplicate", + "body": [ + "{% svg material content_duplicate %}" + ] + }, + "content_paste": { + "prefix": "svg.material.content_paste", + "description": "SVG material - content_paste", + "body": [ + "{% svg material content_paste %}" + ] + }, + "content_save": { + "prefix": "svg.material.content_save", + "description": "SVG material - content_save", + "body": [ + "{% svg material content_save %}" + ] + }, + "content_save_alert": { + "prefix": "svg.material.content_save_alert", + "description": "SVG material - content_save_alert", + "body": [ + "{% svg material content_save_alert %}" + ] + }, + "content_save_alert_outline": { + "prefix": "svg.material.content_save_alert_outline", + "description": "SVG material - content_save_alert_outline", + "body": [ + "{% svg material content_save_alert_outline %}" + ] + }, + "content_save_all": { + "prefix": "svg.material.content_save_all", + "description": "SVG material - content_save_all", + "body": [ + "{% svg material content_save_all %}" + ] + }, + "content_save_all_outline": { + "prefix": "svg.material.content_save_all_outline", + "description": "SVG material - content_save_all_outline", + "body": [ + "{% svg material content_save_all_outline %}" + ] + }, + "content_save_check": { + "prefix": "svg.material.content_save_check", + "description": "SVG material - content_save_check", + "body": [ + "{% svg material content_save_check %}" + ] + }, + "content_save_check_outline": { + "prefix": "svg.material.content_save_check_outline", + "description": "SVG material - content_save_check_outline", + "body": [ + "{% svg material content_save_check_outline %}" + ] + }, + "content_save_cog": { + "prefix": "svg.material.content_save_cog", + "description": "SVG material - content_save_cog", + "body": [ + "{% svg material content_save_cog %}" + ] + }, + "content_save_cog_outline": { + "prefix": "svg.material.content_save_cog_outline", + "description": "SVG material - content_save_cog_outline", + "body": [ + "{% svg material content_save_cog_outline %}" + ] + }, + "content_save_edit": { + "prefix": "svg.material.content_save_edit", + "description": "SVG material - content_save_edit", + "body": [ + "{% svg material content_save_edit %}" + ] + }, + "content_save_edit_outline": { + "prefix": "svg.material.content_save_edit_outline", + "description": "SVG material - content_save_edit_outline", + "body": [ + "{% svg material content_save_edit_outline %}" + ] + }, + "content_save_minus": { + "prefix": "svg.material.content_save_minus", + "description": "SVG material - content_save_minus", + "body": [ + "{% svg material content_save_minus %}" + ] + }, + "content_save_minus_outline": { + "prefix": "svg.material.content_save_minus_outline", + "description": "SVG material - content_save_minus_outline", + "body": [ + "{% svg material content_save_minus_outline %}" + ] + }, + "content_save_move": { + "prefix": "svg.material.content_save_move", + "description": "SVG material - content_save_move", + "body": [ + "{% svg material content_save_move %}" + ] + }, + "content_save_move_outline": { + "prefix": "svg.material.content_save_move_outline", + "description": "SVG material - content_save_move_outline", + "body": [ + "{% svg material content_save_move_outline %}" + ] + }, + "content_save_off": { + "prefix": "svg.material.content_save_off", + "description": "SVG material - content_save_off", + "body": [ + "{% svg material content_save_off %}" + ] + }, + "content_save_off_outline": { + "prefix": "svg.material.content_save_off_outline", + "description": "SVG material - content_save_off_outline", + "body": [ + "{% svg material content_save_off_outline %}" + ] + }, + "content_save_outline": { + "prefix": "svg.material.content_save_outline", + "description": "SVG material - content_save_outline", + "body": [ + "{% svg material content_save_outline %}" + ] + }, + "content_save_plus": { + "prefix": "svg.material.content_save_plus", + "description": "SVG material - content_save_plus", + "body": [ + "{% svg material content_save_plus %}" + ] + }, + "content_save_plus_outline": { + "prefix": "svg.material.content_save_plus_outline", + "description": "SVG material - content_save_plus_outline", + "body": [ + "{% svg material content_save_plus_outline %}" + ] + }, + "content_save_settings": { + "prefix": "svg.material.content_save_settings", + "description": "SVG material - content_save_settings", + "body": [ + "{% svg material content_save_settings %}" + ] + }, + "content_save_settings_outline": { + "prefix": "svg.material.content_save_settings_outline", + "description": "SVG material - content_save_settings_outline", + "body": [ + "{% svg material content_save_settings_outline %}" + ] + }, + "contrast": { + "prefix": "svg.material.contrast", + "description": "SVG material - contrast", + "body": [ + "{% svg material contrast %}" + ] + }, + "contrast_box": { + "prefix": "svg.material.contrast_box", + "description": "SVG material - contrast_box", + "body": [ + "{% svg material contrast_box %}" + ] + }, + "contrast_circle": { + "prefix": "svg.material.contrast_circle", + "description": "SVG material - contrast_circle", + "body": [ + "{% svg material contrast_circle %}" + ] + }, + "controller": { + "prefix": "svg.material.controller", + "description": "SVG material - controller", + "body": [ + "{% svg material controller %}" + ] + }, + "controller_classic": { + "prefix": "svg.material.controller_classic", + "description": "SVG material - controller_classic", + "body": [ + "{% svg material controller_classic %}" + ] + }, + "controller_classic_outline": { + "prefix": "svg.material.controller_classic_outline", + "description": "SVG material - controller_classic_outline", + "body": [ + "{% svg material controller_classic_outline %}" + ] + }, + "controller_off": { + "prefix": "svg.material.controller_off", + "description": "SVG material - controller_off", + "body": [ + "{% svg material controller_off %}" + ] + }, + "cookie": { + "prefix": "svg.material.cookie", + "description": "SVG material - cookie", + "body": [ + "{% svg material cookie %}" + ] + }, + "cookie_alert": { + "prefix": "svg.material.cookie_alert", + "description": "SVG material - cookie_alert", + "body": [ + "{% svg material cookie_alert %}" + ] + }, + "cookie_alert_outline": { + "prefix": "svg.material.cookie_alert_outline", + "description": "SVG material - cookie_alert_outline", + "body": [ + "{% svg material cookie_alert_outline %}" + ] + }, + "cookie_check": { + "prefix": "svg.material.cookie_check", + "description": "SVG material - cookie_check", + "body": [ + "{% svg material cookie_check %}" + ] + }, + "cookie_check_outline": { + "prefix": "svg.material.cookie_check_outline", + "description": "SVG material - cookie_check_outline", + "body": [ + "{% svg material cookie_check_outline %}" + ] + }, + "cookie_clock": { + "prefix": "svg.material.cookie_clock", + "description": "SVG material - cookie_clock", + "body": [ + "{% svg material cookie_clock %}" + ] + }, + "cookie_clock_outline": { + "prefix": "svg.material.cookie_clock_outline", + "description": "SVG material - cookie_clock_outline", + "body": [ + "{% svg material cookie_clock_outline %}" + ] + }, + "cookie_cog": { + "prefix": "svg.material.cookie_cog", + "description": "SVG material - cookie_cog", + "body": [ + "{% svg material cookie_cog %}" + ] + }, + "cookie_cog_outline": { + "prefix": "svg.material.cookie_cog_outline", + "description": "SVG material - cookie_cog_outline", + "body": [ + "{% svg material cookie_cog_outline %}" + ] + }, + "cookie_edit": { + "prefix": "svg.material.cookie_edit", + "description": "SVG material - cookie_edit", + "body": [ + "{% svg material cookie_edit %}" + ] + }, + "cookie_edit_outline": { + "prefix": "svg.material.cookie_edit_outline", + "description": "SVG material - cookie_edit_outline", + "body": [ + "{% svg material cookie_edit_outline %}" + ] + }, + "cookie_lock": { + "prefix": "svg.material.cookie_lock", + "description": "SVG material - cookie_lock", + "body": [ + "{% svg material cookie_lock %}" + ] + }, + "cookie_lock_outline": { + "prefix": "svg.material.cookie_lock_outline", + "description": "SVG material - cookie_lock_outline", + "body": [ + "{% svg material cookie_lock_outline %}" + ] + }, + "cookie_minus": { + "prefix": "svg.material.cookie_minus", + "description": "SVG material - cookie_minus", + "body": [ + "{% svg material cookie_minus %}" + ] + }, + "cookie_minus_outline": { + "prefix": "svg.material.cookie_minus_outline", + "description": "SVG material - cookie_minus_outline", + "body": [ + "{% svg material cookie_minus_outline %}" + ] + }, + "cookie_off": { + "prefix": "svg.material.cookie_off", + "description": "SVG material - cookie_off", + "body": [ + "{% svg material cookie_off %}" + ] + }, + "cookie_off_outline": { + "prefix": "svg.material.cookie_off_outline", + "description": "SVG material - cookie_off_outline", + "body": [ + "{% svg material cookie_off_outline %}" + ] + }, + "cookie_outline": { + "prefix": "svg.material.cookie_outline", + "description": "SVG material - cookie_outline", + "body": [ + "{% svg material cookie_outline %}" + ] + }, + "cookie_plus": { + "prefix": "svg.material.cookie_plus", + "description": "SVG material - cookie_plus", + "body": [ + "{% svg material cookie_plus %}" + ] + }, + "cookie_plus_outline": { + "prefix": "svg.material.cookie_plus_outline", + "description": "SVG material - cookie_plus_outline", + "body": [ + "{% svg material cookie_plus_outline %}" + ] + }, + "cookie_refresh": { + "prefix": "svg.material.cookie_refresh", + "description": "SVG material - cookie_refresh", + "body": [ + "{% svg material cookie_refresh %}" + ] + }, + "cookie_refresh_outline": { + "prefix": "svg.material.cookie_refresh_outline", + "description": "SVG material - cookie_refresh_outline", + "body": [ + "{% svg material cookie_refresh_outline %}" + ] + }, + "cookie_remove": { + "prefix": "svg.material.cookie_remove", + "description": "SVG material - cookie_remove", + "body": [ + "{% svg material cookie_remove %}" + ] + }, + "cookie_remove_outline": { + "prefix": "svg.material.cookie_remove_outline", + "description": "SVG material - cookie_remove_outline", + "body": [ + "{% svg material cookie_remove_outline %}" + ] + }, + "cookie_settings": { + "prefix": "svg.material.cookie_settings", + "description": "SVG material - cookie_settings", + "body": [ + "{% svg material cookie_settings %}" + ] + }, + "cookie_settings_outline": { + "prefix": "svg.material.cookie_settings_outline", + "description": "SVG material - cookie_settings_outline", + "body": [ + "{% svg material cookie_settings_outline %}" + ] + }, + "coolant_temperature": { + "prefix": "svg.material.coolant_temperature", + "description": "SVG material - coolant_temperature", + "body": [ + "{% svg material coolant_temperature %}" + ] + }, + "copyleft": { + "prefix": "svg.material.copyleft", + "description": "SVG material - copyleft", + "body": [ + "{% svg material copyleft %}" + ] + }, + "copyright": { + "prefix": "svg.material.copyright", + "description": "SVG material - copyright", + "body": [ + "{% svg material copyright %}" + ] + }, + "cordova": { + "prefix": "svg.material.cordova", + "description": "SVG material - cordova", + "body": [ + "{% svg material cordova %}" + ] + }, + "corn": { + "prefix": "svg.material.corn", + "description": "SVG material - corn", + "body": [ + "{% svg material corn %}" + ] + }, + "corn_off": { + "prefix": "svg.material.corn_off", + "description": "SVG material - corn_off", + "body": [ + "{% svg material corn_off %}" + ] + }, + "cosine_wave": { + "prefix": "svg.material.cosine_wave", + "description": "SVG material - cosine_wave", + "body": [ + "{% svg material cosine_wave %}" + ] + }, + "counter": { + "prefix": "svg.material.counter", + "description": "SVG material - counter", + "body": [ + "{% svg material counter %}" + ] + }, + "countertop": { + "prefix": "svg.material.countertop", + "description": "SVG material - countertop", + "body": [ + "{% svg material countertop %}" + ] + }, + "countertop_outline": { + "prefix": "svg.material.countertop_outline", + "description": "SVG material - countertop_outline", + "body": [ + "{% svg material countertop_outline %}" + ] + }, + "cow": { + "prefix": "svg.material.cow", + "description": "SVG material - cow", + "body": [ + "{% svg material cow %}" + ] + }, + "cow_off": { + "prefix": "svg.material.cow_off", + "description": "SVG material - cow_off", + "body": [ + "{% svg material cow_off %}" + ] + }, + "cpu_32_bit": { + "prefix": "svg.material.cpu_32_bit", + "description": "SVG material - cpu_32_bit", + "body": [ + "{% svg material cpu_32_bit %}" + ] + }, + "cpu_64_bit": { + "prefix": "svg.material.cpu_64_bit", + "description": "SVG material - cpu_64_bit", + "body": [ + "{% svg material cpu_64_bit %}" + ] + }, + "cradle": { + "prefix": "svg.material.cradle", + "description": "SVG material - cradle", + "body": [ + "{% svg material cradle %}" + ] + }, + "cradle_outline": { + "prefix": "svg.material.cradle_outline", + "description": "SVG material - cradle_outline", + "body": [ + "{% svg material cradle_outline %}" + ] + }, + "crane": { + "prefix": "svg.material.crane", + "description": "SVG material - crane", + "body": [ + "{% svg material crane %}" + ] + }, + "creation": { + "prefix": "svg.material.creation", + "description": "SVG material - creation", + "body": [ + "{% svg material creation %}" + ] + }, + "creation_outline": { + "prefix": "svg.material.creation_outline", + "description": "SVG material - creation_outline", + "body": [ + "{% svg material creation_outline %}" + ] + }, + "creative_commons": { + "prefix": "svg.material.creative_commons", + "description": "SVG material - creative_commons", + "body": [ + "{% svg material creative_commons %}" + ] + }, + "credit_card": { + "prefix": "svg.material.credit_card", + "description": "SVG material - credit_card", + "body": [ + "{% svg material credit_card %}" + ] + }, + "credit_card_check": { + "prefix": "svg.material.credit_card_check", + "description": "SVG material - credit_card_check", + "body": [ + "{% svg material credit_card_check %}" + ] + }, + "credit_card_check_outline": { + "prefix": "svg.material.credit_card_check_outline", + "description": "SVG material - credit_card_check_outline", + "body": [ + "{% svg material credit_card_check_outline %}" + ] + }, + "credit_card_chip": { + "prefix": "svg.material.credit_card_chip", + "description": "SVG material - credit_card_chip", + "body": [ + "{% svg material credit_card_chip %}" + ] + }, + "credit_card_chip_outline": { + "prefix": "svg.material.credit_card_chip_outline", + "description": "SVG material - credit_card_chip_outline", + "body": [ + "{% svg material credit_card_chip_outline %}" + ] + }, + "credit_card_clock": { + "prefix": "svg.material.credit_card_clock", + "description": "SVG material - credit_card_clock", + "body": [ + "{% svg material credit_card_clock %}" + ] + }, + "credit_card_clock_outline": { + "prefix": "svg.material.credit_card_clock_outline", + "description": "SVG material - credit_card_clock_outline", + "body": [ + "{% svg material credit_card_clock_outline %}" + ] + }, + "credit_card_edit": { + "prefix": "svg.material.credit_card_edit", + "description": "SVG material - credit_card_edit", + "body": [ + "{% svg material credit_card_edit %}" + ] + }, + "credit_card_edit_outline": { + "prefix": "svg.material.credit_card_edit_outline", + "description": "SVG material - credit_card_edit_outline", + "body": [ + "{% svg material credit_card_edit_outline %}" + ] + }, + "credit_card_fast": { + "prefix": "svg.material.credit_card_fast", + "description": "SVG material - credit_card_fast", + "body": [ + "{% svg material credit_card_fast %}" + ] + }, + "credit_card_fast_outline": { + "prefix": "svg.material.credit_card_fast_outline", + "description": "SVG material - credit_card_fast_outline", + "body": [ + "{% svg material credit_card_fast_outline %}" + ] + }, + "credit_card_lock": { + "prefix": "svg.material.credit_card_lock", + "description": "SVG material - credit_card_lock", + "body": [ + "{% svg material credit_card_lock %}" + ] + }, + "credit_card_lock_outline": { + "prefix": "svg.material.credit_card_lock_outline", + "description": "SVG material - credit_card_lock_outline", + "body": [ + "{% svg material credit_card_lock_outline %}" + ] + }, + "credit_card_marker": { + "prefix": "svg.material.credit_card_marker", + "description": "SVG material - credit_card_marker", + "body": [ + "{% svg material credit_card_marker %}" + ] + }, + "credit_card_marker_outline": { + "prefix": "svg.material.credit_card_marker_outline", + "description": "SVG material - credit_card_marker_outline", + "body": [ + "{% svg material credit_card_marker_outline %}" + ] + }, + "credit_card_minus": { + "prefix": "svg.material.credit_card_minus", + "description": "SVG material - credit_card_minus", + "body": [ + "{% svg material credit_card_minus %}" + ] + }, + "credit_card_minus_outline": { + "prefix": "svg.material.credit_card_minus_outline", + "description": "SVG material - credit_card_minus_outline", + "body": [ + "{% svg material credit_card_minus_outline %}" + ] + }, + "credit_card_multiple": { + "prefix": "svg.material.credit_card_multiple", + "description": "SVG material - credit_card_multiple", + "body": [ + "{% svg material credit_card_multiple %}" + ] + }, + "credit_card_multiple_outline": { + "prefix": "svg.material.credit_card_multiple_outline", + "description": "SVG material - credit_card_multiple_outline", + "body": [ + "{% svg material credit_card_multiple_outline %}" + ] + }, + "credit_card_off": { + "prefix": "svg.material.credit_card_off", + "description": "SVG material - credit_card_off", + "body": [ + "{% svg material credit_card_off %}" + ] + }, + "credit_card_off_outline": { + "prefix": "svg.material.credit_card_off_outline", + "description": "SVG material - credit_card_off_outline", + "body": [ + "{% svg material credit_card_off_outline %}" + ] + }, + "credit_card_outline": { + "prefix": "svg.material.credit_card_outline", + "description": "SVG material - credit_card_outline", + "body": [ + "{% svg material credit_card_outline %}" + ] + }, + "credit_card_plus": { + "prefix": "svg.material.credit_card_plus", + "description": "SVG material - credit_card_plus", + "body": [ + "{% svg material credit_card_plus %}" + ] + }, + "credit_card_plus_outline": { + "prefix": "svg.material.credit_card_plus_outline", + "description": "SVG material - credit_card_plus_outline", + "body": [ + "{% svg material credit_card_plus_outline %}" + ] + }, + "credit_card_refresh": { + "prefix": "svg.material.credit_card_refresh", + "description": "SVG material - credit_card_refresh", + "body": [ + "{% svg material credit_card_refresh %}" + ] + }, + "credit_card_refresh_outline": { + "prefix": "svg.material.credit_card_refresh_outline", + "description": "SVG material - credit_card_refresh_outline", + "body": [ + "{% svg material credit_card_refresh_outline %}" + ] + }, + "credit_card_refund": { + "prefix": "svg.material.credit_card_refund", + "description": "SVG material - credit_card_refund", + "body": [ + "{% svg material credit_card_refund %}" + ] + }, + "credit_card_refund_outline": { + "prefix": "svg.material.credit_card_refund_outline", + "description": "SVG material - credit_card_refund_outline", + "body": [ + "{% svg material credit_card_refund_outline %}" + ] + }, + "credit_card_remove": { + "prefix": "svg.material.credit_card_remove", + "description": "SVG material - credit_card_remove", + "body": [ + "{% svg material credit_card_remove %}" + ] + }, + "credit_card_remove_outline": { + "prefix": "svg.material.credit_card_remove_outline", + "description": "SVG material - credit_card_remove_outline", + "body": [ + "{% svg material credit_card_remove_outline %}" + ] + }, + "credit_card_scan": { + "prefix": "svg.material.credit_card_scan", + "description": "SVG material - credit_card_scan", + "body": [ + "{% svg material credit_card_scan %}" + ] + }, + "credit_card_scan_outline": { + "prefix": "svg.material.credit_card_scan_outline", + "description": "SVG material - credit_card_scan_outline", + "body": [ + "{% svg material credit_card_scan_outline %}" + ] + }, + "credit_card_search": { + "prefix": "svg.material.credit_card_search", + "description": "SVG material - credit_card_search", + "body": [ + "{% svg material credit_card_search %}" + ] + }, + "credit_card_search_outline": { + "prefix": "svg.material.credit_card_search_outline", + "description": "SVG material - credit_card_search_outline", + "body": [ + "{% svg material credit_card_search_outline %}" + ] + }, + "credit_card_settings": { + "prefix": "svg.material.credit_card_settings", + "description": "SVG material - credit_card_settings", + "body": [ + "{% svg material credit_card_settings %}" + ] + }, + "credit_card_settings_outline": { + "prefix": "svg.material.credit_card_settings_outline", + "description": "SVG material - credit_card_settings_outline", + "body": [ + "{% svg material credit_card_settings_outline %}" + ] + }, + "credit_card_sync": { + "prefix": "svg.material.credit_card_sync", + "description": "SVG material - credit_card_sync", + "body": [ + "{% svg material credit_card_sync %}" + ] + }, + "credit_card_sync_outline": { + "prefix": "svg.material.credit_card_sync_outline", + "description": "SVG material - credit_card_sync_outline", + "body": [ + "{% svg material credit_card_sync_outline %}" + ] + }, + "credit_card_wireless": { + "prefix": "svg.material.credit_card_wireless", + "description": "SVG material - credit_card_wireless", + "body": [ + "{% svg material credit_card_wireless %}" + ] + }, + "credit_card_wireless_off": { + "prefix": "svg.material.credit_card_wireless_off", + "description": "SVG material - credit_card_wireless_off", + "body": [ + "{% svg material credit_card_wireless_off %}" + ] + }, + "credit_card_wireless_off_outline": { + "prefix": "svg.material.credit_card_wireless_off_outline", + "description": "SVG material - credit_card_wireless_off_outline", + "body": [ + "{% svg material credit_card_wireless_off_outline %}" + ] + }, + "credit_card_wireless_outline": { + "prefix": "svg.material.credit_card_wireless_outline", + "description": "SVG material - credit_card_wireless_outline", + "body": [ + "{% svg material credit_card_wireless_outline %}" + ] + }, + "cricket": { + "prefix": "svg.material.cricket", + "description": "SVG material - cricket", + "body": [ + "{% svg material cricket %}" + ] + }, + "crop": { + "prefix": "svg.material.crop", + "description": "SVG material - crop", + "body": [ + "{% svg material crop %}" + ] + }, + "crop_free": { + "prefix": "svg.material.crop_free", + "description": "SVG material - crop_free", + "body": [ + "{% svg material crop_free %}" + ] + }, + "crop_landscape": { + "prefix": "svg.material.crop_landscape", + "description": "SVG material - crop_landscape", + "body": [ + "{% svg material crop_landscape %}" + ] + }, + "crop_portrait": { + "prefix": "svg.material.crop_portrait", + "description": "SVG material - crop_portrait", + "body": [ + "{% svg material crop_portrait %}" + ] + }, + "crop_rotate": { + "prefix": "svg.material.crop_rotate", + "description": "SVG material - crop_rotate", + "body": [ + "{% svg material crop_rotate %}" + ] + }, + "crop_square": { + "prefix": "svg.material.crop_square", + "description": "SVG material - crop_square", + "body": [ + "{% svg material crop_square %}" + ] + }, + "cross": { + "prefix": "svg.material.cross", + "description": "SVG material - cross", + "body": [ + "{% svg material cross %}" + ] + }, + "cross_bolnisi": { + "prefix": "svg.material.cross_bolnisi", + "description": "SVG material - cross_bolnisi", + "body": [ + "{% svg material cross_bolnisi %}" + ] + }, + "cross_celtic": { + "prefix": "svg.material.cross_celtic", + "description": "SVG material - cross_celtic", + "body": [ + "{% svg material cross_celtic %}" + ] + }, + "cross_outline": { + "prefix": "svg.material.cross_outline", + "description": "SVG material - cross_outline", + "body": [ + "{% svg material cross_outline %}" + ] + }, + "crosshairs": { + "prefix": "svg.material.crosshairs", + "description": "SVG material - crosshairs", + "body": [ + "{% svg material crosshairs %}" + ] + }, + "crosshairs_gps": { + "prefix": "svg.material.crosshairs_gps", + "description": "SVG material - crosshairs_gps", + "body": [ + "{% svg material crosshairs_gps %}" + ] + }, + "crosshairs_off": { + "prefix": "svg.material.crosshairs_off", + "description": "SVG material - crosshairs_off", + "body": [ + "{% svg material crosshairs_off %}" + ] + }, + "crosshairs_question": { + "prefix": "svg.material.crosshairs_question", + "description": "SVG material - crosshairs_question", + "body": [ + "{% svg material crosshairs_question %}" + ] + }, + "crowd": { + "prefix": "svg.material.crowd", + "description": "SVG material - crowd", + "body": [ + "{% svg material crowd %}" + ] + }, + "crown": { + "prefix": "svg.material.crown", + "description": "SVG material - crown", + "body": [ + "{% svg material crown %}" + ] + }, + "crown_circle": { + "prefix": "svg.material.crown_circle", + "description": "SVG material - crown_circle", + "body": [ + "{% svg material crown_circle %}" + ] + }, + "crown_circle_outline": { + "prefix": "svg.material.crown_circle_outline", + "description": "SVG material - crown_circle_outline", + "body": [ + "{% svg material crown_circle_outline %}" + ] + }, + "crown_outline": { + "prefix": "svg.material.crown_outline", + "description": "SVG material - crown_outline", + "body": [ + "{% svg material crown_outline %}" + ] + }, + "cryengine": { + "prefix": "svg.material.cryengine", + "description": "SVG material - cryengine", + "body": [ + "{% svg material cryengine %}" + ] + }, + "crystal_ball": { + "prefix": "svg.material.crystal_ball", + "description": "SVG material - crystal_ball", + "body": [ + "{% svg material crystal_ball %}" + ] + }, + "cube": { + "prefix": "svg.material.cube", + "description": "SVG material - cube", + "body": [ + "{% svg material cube %}" + ] + }, + "cube_off": { + "prefix": "svg.material.cube_off", + "description": "SVG material - cube_off", + "body": [ + "{% svg material cube_off %}" + ] + }, + "cube_off_outline": { + "prefix": "svg.material.cube_off_outline", + "description": "SVG material - cube_off_outline", + "body": [ + "{% svg material cube_off_outline %}" + ] + }, + "cube_outline": { + "prefix": "svg.material.cube_outline", + "description": "SVG material - cube_outline", + "body": [ + "{% svg material cube_outline %}" + ] + }, + "cube_scan": { + "prefix": "svg.material.cube_scan", + "description": "SVG material - cube_scan", + "body": [ + "{% svg material cube_scan %}" + ] + }, + "cube_send": { + "prefix": "svg.material.cube_send", + "description": "SVG material - cube_send", + "body": [ + "{% svg material cube_send %}" + ] + }, + "cube_unfolded": { + "prefix": "svg.material.cube_unfolded", + "description": "SVG material - cube_unfolded", + "body": [ + "{% svg material cube_unfolded %}" + ] + }, + "cup": { + "prefix": "svg.material.cup", + "description": "SVG material - cup", + "body": [ + "{% svg material cup %}" + ] + }, + "cup_off": { + "prefix": "svg.material.cup_off", + "description": "SVG material - cup_off", + "body": [ + "{% svg material cup_off %}" + ] + }, + "cup_off_outline": { + "prefix": "svg.material.cup_off_outline", + "description": "SVG material - cup_off_outline", + "body": [ + "{% svg material cup_off_outline %}" + ] + }, + "cup_outline": { + "prefix": "svg.material.cup_outline", + "description": "SVG material - cup_outline", + "body": [ + "{% svg material cup_outline %}" + ] + }, + "cup_water": { + "prefix": "svg.material.cup_water", + "description": "SVG material - cup_water", + "body": [ + "{% svg material cup_water %}" + ] + }, + "cupboard": { + "prefix": "svg.material.cupboard", + "description": "SVG material - cupboard", + "body": [ + "{% svg material cupboard %}" + ] + }, + "cupboard_outline": { + "prefix": "svg.material.cupboard_outline", + "description": "SVG material - cupboard_outline", + "body": [ + "{% svg material cupboard_outline %}" + ] + }, + "cupcake": { + "prefix": "svg.material.cupcake", + "description": "SVG material - cupcake", + "body": [ + "{% svg material cupcake %}" + ] + }, + "curling": { + "prefix": "svg.material.curling", + "description": "SVG material - curling", + "body": [ + "{% svg material curling %}" + ] + }, + "currency_bdt": { + "prefix": "svg.material.currency_bdt", + "description": "SVG material - currency_bdt", + "body": [ + "{% svg material currency_bdt %}" + ] + }, + "currency_brl": { + "prefix": "svg.material.currency_brl", + "description": "SVG material - currency_brl", + "body": [ + "{% svg material currency_brl %}" + ] + }, + "currency_btc": { + "prefix": "svg.material.currency_btc", + "description": "SVG material - currency_btc", + "body": [ + "{% svg material currency_btc %}" + ] + }, + "currency_cny": { + "prefix": "svg.material.currency_cny", + "description": "SVG material - currency_cny", + "body": [ + "{% svg material currency_cny %}" + ] + }, + "currency_eth": { + "prefix": "svg.material.currency_eth", + "description": "SVG material - currency_eth", + "body": [ + "{% svg material currency_eth %}" + ] + }, + "currency_eur": { + "prefix": "svg.material.currency_eur", + "description": "SVG material - currency_eur", + "body": [ + "{% svg material currency_eur %}" + ] + }, + "currency_eur_off": { + "prefix": "svg.material.currency_eur_off", + "description": "SVG material - currency_eur_off", + "body": [ + "{% svg material currency_eur_off %}" + ] + }, + "currency_fra": { + "prefix": "svg.material.currency_fra", + "description": "SVG material - currency_fra", + "body": [ + "{% svg material currency_fra %}" + ] + }, + "currency_gbp": { + "prefix": "svg.material.currency_gbp", + "description": "SVG material - currency_gbp", + "body": [ + "{% svg material currency_gbp %}" + ] + }, + "currency_ils": { + "prefix": "svg.material.currency_ils", + "description": "SVG material - currency_ils", + "body": [ + "{% svg material currency_ils %}" + ] + }, + "currency_inr": { + "prefix": "svg.material.currency_inr", + "description": "SVG material - currency_inr", + "body": [ + "{% svg material currency_inr %}" + ] + }, + "currency_jpy": { + "prefix": "svg.material.currency_jpy", + "description": "SVG material - currency_jpy", + "body": [ + "{% svg material currency_jpy %}" + ] + }, + "currency_krw": { + "prefix": "svg.material.currency_krw", + "description": "SVG material - currency_krw", + "body": [ + "{% svg material currency_krw %}" + ] + }, + "currency_kzt": { + "prefix": "svg.material.currency_kzt", + "description": "SVG material - currency_kzt", + "body": [ + "{% svg material currency_kzt %}" + ] + }, + "currency_mnt": { + "prefix": "svg.material.currency_mnt", + "description": "SVG material - currency_mnt", + "body": [ + "{% svg material currency_mnt %}" + ] + }, + "currency_ngn": { + "prefix": "svg.material.currency_ngn", + "description": "SVG material - currency_ngn", + "body": [ + "{% svg material currency_ngn %}" + ] + }, + "currency_php": { + "prefix": "svg.material.currency_php", + "description": "SVG material - currency_php", + "body": [ + "{% svg material currency_php %}" + ] + }, + "currency_rial": { + "prefix": "svg.material.currency_rial", + "description": "SVG material - currency_rial", + "body": [ + "{% svg material currency_rial %}" + ] + }, + "currency_rub": { + "prefix": "svg.material.currency_rub", + "description": "SVG material - currency_rub", + "body": [ + "{% svg material currency_rub %}" + ] + }, + "currency_rupee": { + "prefix": "svg.material.currency_rupee", + "description": "SVG material - currency_rupee", + "body": [ + "{% svg material currency_rupee %}" + ] + }, + "currency_sign": { + "prefix": "svg.material.currency_sign", + "description": "SVG material - currency_sign", + "body": [ + "{% svg material currency_sign %}" + ] + }, + "currency_thb": { + "prefix": "svg.material.currency_thb", + "description": "SVG material - currency_thb", + "body": [ + "{% svg material currency_thb %}" + ] + }, + "currency_try": { + "prefix": "svg.material.currency_try", + "description": "SVG material - currency_try", + "body": [ + "{% svg material currency_try %}" + ] + }, + "currency_twd": { + "prefix": "svg.material.currency_twd", + "description": "SVG material - currency_twd", + "body": [ + "{% svg material currency_twd %}" + ] + }, + "currency_uah": { + "prefix": "svg.material.currency_uah", + "description": "SVG material - currency_uah", + "body": [ + "{% svg material currency_uah %}" + ] + }, + "currency_usd": { + "prefix": "svg.material.currency_usd", + "description": "SVG material - currency_usd", + "body": [ + "{% svg material currency_usd %}" + ] + }, + "currency_usd_off": { + "prefix": "svg.material.currency_usd_off", + "description": "SVG material - currency_usd_off", + "body": [ + "{% svg material currency_usd_off %}" + ] + }, + "current_ac": { + "prefix": "svg.material.current_ac", + "description": "SVG material - current_ac", + "body": [ + "{% svg material current_ac %}" + ] + }, + "current_dc": { + "prefix": "svg.material.current_dc", + "description": "SVG material - current_dc", + "body": [ + "{% svg material current_dc %}" + ] + }, + "cursor_default": { + "prefix": "svg.material.cursor_default", + "description": "SVG material - cursor_default", + "body": [ + "{% svg material cursor_default %}" + ] + }, + "cursor_default_click": { + "prefix": "svg.material.cursor_default_click", + "description": "SVG material - cursor_default_click", + "body": [ + "{% svg material cursor_default_click %}" + ] + }, + "cursor_default_click_outline": { + "prefix": "svg.material.cursor_default_click_outline", + "description": "SVG material - cursor_default_click_outline", + "body": [ + "{% svg material cursor_default_click_outline %}" + ] + }, + "cursor_default_gesture": { + "prefix": "svg.material.cursor_default_gesture", + "description": "SVG material - cursor_default_gesture", + "body": [ + "{% svg material cursor_default_gesture %}" + ] + }, + "cursor_default_gesture_outline": { + "prefix": "svg.material.cursor_default_gesture_outline", + "description": "SVG material - cursor_default_gesture_outline", + "body": [ + "{% svg material cursor_default_gesture_outline %}" + ] + }, + "cursor_default_outline": { + "prefix": "svg.material.cursor_default_outline", + "description": "SVG material - cursor_default_outline", + "body": [ + "{% svg material cursor_default_outline %}" + ] + }, + "cursor_move": { + "prefix": "svg.material.cursor_move", + "description": "SVG material - cursor_move", + "body": [ + "{% svg material cursor_move %}" + ] + }, + "cursor_pointer": { + "prefix": "svg.material.cursor_pointer", + "description": "SVG material - cursor_pointer", + "body": [ + "{% svg material cursor_pointer %}" + ] + }, + "cursor_text": { + "prefix": "svg.material.cursor_text", + "description": "SVG material - cursor_text", + "body": [ + "{% svg material cursor_text %}" + ] + }, + "curtains": { + "prefix": "svg.material.curtains", + "description": "SVG material - curtains", + "body": [ + "{% svg material curtains %}" + ] + }, + "curtains_closed": { + "prefix": "svg.material.curtains_closed", + "description": "SVG material - curtains_closed", + "body": [ + "{% svg material curtains_closed %}" + ] + }, + "cylinder": { + "prefix": "svg.material.cylinder", + "description": "SVG material - cylinder", + "body": [ + "{% svg material cylinder %}" + ] + }, + "cylinder_off": { + "prefix": "svg.material.cylinder_off", + "description": "SVG material - cylinder_off", + "body": [ + "{% svg material cylinder_off %}" + ] + }, + "dance_ballroom": { + "prefix": "svg.material.dance_ballroom", + "description": "SVG material - dance_ballroom", + "body": [ + "{% svg material dance_ballroom %}" + ] + }, + "dance_pole": { + "prefix": "svg.material.dance_pole", + "description": "SVG material - dance_pole", + "body": [ + "{% svg material dance_pole %}" + ] + }, + "data_matrix": { + "prefix": "svg.material.data_matrix", + "description": "SVG material - data_matrix", + "body": [ + "{% svg material data_matrix %}" + ] + }, + "data_matrix_edit": { + "prefix": "svg.material.data_matrix_edit", + "description": "SVG material - data_matrix_edit", + "body": [ + "{% svg material data_matrix_edit %}" + ] + }, + "data_matrix_minus": { + "prefix": "svg.material.data_matrix_minus", + "description": "SVG material - data_matrix_minus", + "body": [ + "{% svg material data_matrix_minus %}" + ] + }, + "data_matrix_plus": { + "prefix": "svg.material.data_matrix_plus", + "description": "SVG material - data_matrix_plus", + "body": [ + "{% svg material data_matrix_plus %}" + ] + }, + "data_matrix_remove": { + "prefix": "svg.material.data_matrix_remove", + "description": "SVG material - data_matrix_remove", + "body": [ + "{% svg material data_matrix_remove %}" + ] + }, + "data_matrix_scan": { + "prefix": "svg.material.data_matrix_scan", + "description": "SVG material - data_matrix_scan", + "body": [ + "{% svg material data_matrix_scan %}" + ] + }, + "database": { + "prefix": "svg.material.database", + "description": "SVG material - database", + "body": [ + "{% svg material database %}" + ] + }, + "database_alert": { + "prefix": "svg.material.database_alert", + "description": "SVG material - database_alert", + "body": [ + "{% svg material database_alert %}" + ] + }, + "database_alert_outline": { + "prefix": "svg.material.database_alert_outline", + "description": "SVG material - database_alert_outline", + "body": [ + "{% svg material database_alert_outline %}" + ] + }, + "database_arrow_down": { + "prefix": "svg.material.database_arrow_down", + "description": "SVG material - database_arrow_down", + "body": [ + "{% svg material database_arrow_down %}" + ] + }, + "database_arrow_down_outline": { + "prefix": "svg.material.database_arrow_down_outline", + "description": "SVG material - database_arrow_down_outline", + "body": [ + "{% svg material database_arrow_down_outline %}" + ] + }, + "database_arrow_left": { + "prefix": "svg.material.database_arrow_left", + "description": "SVG material - database_arrow_left", + "body": [ + "{% svg material database_arrow_left %}" + ] + }, + "database_arrow_left_outline": { + "prefix": "svg.material.database_arrow_left_outline", + "description": "SVG material - database_arrow_left_outline", + "body": [ + "{% svg material database_arrow_left_outline %}" + ] + }, + "database_arrow_right": { + "prefix": "svg.material.database_arrow_right", + "description": "SVG material - database_arrow_right", + "body": [ + "{% svg material database_arrow_right %}" + ] + }, + "database_arrow_right_outline": { + "prefix": "svg.material.database_arrow_right_outline", + "description": "SVG material - database_arrow_right_outline", + "body": [ + "{% svg material database_arrow_right_outline %}" + ] + }, + "database_arrow_up": { + "prefix": "svg.material.database_arrow_up", + "description": "SVG material - database_arrow_up", + "body": [ + "{% svg material database_arrow_up %}" + ] + }, + "database_arrow_up_outline": { + "prefix": "svg.material.database_arrow_up_outline", + "description": "SVG material - database_arrow_up_outline", + "body": [ + "{% svg material database_arrow_up_outline %}" + ] + }, + "database_check": { + "prefix": "svg.material.database_check", + "description": "SVG material - database_check", + "body": [ + "{% svg material database_check %}" + ] + }, + "database_check_outline": { + "prefix": "svg.material.database_check_outline", + "description": "SVG material - database_check_outline", + "body": [ + "{% svg material database_check_outline %}" + ] + }, + "database_clock": { + "prefix": "svg.material.database_clock", + "description": "SVG material - database_clock", + "body": [ + "{% svg material database_clock %}" + ] + }, + "database_clock_outline": { + "prefix": "svg.material.database_clock_outline", + "description": "SVG material - database_clock_outline", + "body": [ + "{% svg material database_clock_outline %}" + ] + }, + "database_cog": { + "prefix": "svg.material.database_cog", + "description": "SVG material - database_cog", + "body": [ + "{% svg material database_cog %}" + ] + }, + "database_cog_outline": { + "prefix": "svg.material.database_cog_outline", + "description": "SVG material - database_cog_outline", + "body": [ + "{% svg material database_cog_outline %}" + ] + }, + "database_edit": { + "prefix": "svg.material.database_edit", + "description": "SVG material - database_edit", + "body": [ + "{% svg material database_edit %}" + ] + }, + "database_edit_outline": { + "prefix": "svg.material.database_edit_outline", + "description": "SVG material - database_edit_outline", + "body": [ + "{% svg material database_edit_outline %}" + ] + }, + "database_export": { + "prefix": "svg.material.database_export", + "description": "SVG material - database_export", + "body": [ + "{% svg material database_export %}" + ] + }, + "database_export_outline": { + "prefix": "svg.material.database_export_outline", + "description": "SVG material - database_export_outline", + "body": [ + "{% svg material database_export_outline %}" + ] + }, + "database_eye": { + "prefix": "svg.material.database_eye", + "description": "SVG material - database_eye", + "body": [ + "{% svg material database_eye %}" + ] + }, + "database_eye_off": { + "prefix": "svg.material.database_eye_off", + "description": "SVG material - database_eye_off", + "body": [ + "{% svg material database_eye_off %}" + ] + }, + "database_eye_off_outline": { + "prefix": "svg.material.database_eye_off_outline", + "description": "SVG material - database_eye_off_outline", + "body": [ + "{% svg material database_eye_off_outline %}" + ] + }, + "database_eye_outline": { + "prefix": "svg.material.database_eye_outline", + "description": "SVG material - database_eye_outline", + "body": [ + "{% svg material database_eye_outline %}" + ] + }, + "database_import": { + "prefix": "svg.material.database_import", + "description": "SVG material - database_import", + "body": [ + "{% svg material database_import %}" + ] + }, + "database_import_outline": { + "prefix": "svg.material.database_import_outline", + "description": "SVG material - database_import_outline", + "body": [ + "{% svg material database_import_outline %}" + ] + }, + "database_lock": { + "prefix": "svg.material.database_lock", + "description": "SVG material - database_lock", + "body": [ + "{% svg material database_lock %}" + ] + }, + "database_lock_outline": { + "prefix": "svg.material.database_lock_outline", + "description": "SVG material - database_lock_outline", + "body": [ + "{% svg material database_lock_outline %}" + ] + }, + "database_marker": { + "prefix": "svg.material.database_marker", + "description": "SVG material - database_marker", + "body": [ + "{% svg material database_marker %}" + ] + }, + "database_marker_outline": { + "prefix": "svg.material.database_marker_outline", + "description": "SVG material - database_marker_outline", + "body": [ + "{% svg material database_marker_outline %}" + ] + }, + "database_minus": { + "prefix": "svg.material.database_minus", + "description": "SVG material - database_minus", + "body": [ + "{% svg material database_minus %}" + ] + }, + "database_minus_outline": { + "prefix": "svg.material.database_minus_outline", + "description": "SVG material - database_minus_outline", + "body": [ + "{% svg material database_minus_outline %}" + ] + }, + "database_off": { + "prefix": "svg.material.database_off", + "description": "SVG material - database_off", + "body": [ + "{% svg material database_off %}" + ] + }, + "database_off_outline": { + "prefix": "svg.material.database_off_outline", + "description": "SVG material - database_off_outline", + "body": [ + "{% svg material database_off_outline %}" + ] + }, + "database_outline": { + "prefix": "svg.material.database_outline", + "description": "SVG material - database_outline", + "body": [ + "{% svg material database_outline %}" + ] + }, + "database_plus": { + "prefix": "svg.material.database_plus", + "description": "SVG material - database_plus", + "body": [ + "{% svg material database_plus %}" + ] + }, + "database_plus_outline": { + "prefix": "svg.material.database_plus_outline", + "description": "SVG material - database_plus_outline", + "body": [ + "{% svg material database_plus_outline %}" + ] + }, + "database_refresh": { + "prefix": "svg.material.database_refresh", + "description": "SVG material - database_refresh", + "body": [ + "{% svg material database_refresh %}" + ] + }, + "database_refresh_outline": { + "prefix": "svg.material.database_refresh_outline", + "description": "SVG material - database_refresh_outline", + "body": [ + "{% svg material database_refresh_outline %}" + ] + }, + "database_remove": { + "prefix": "svg.material.database_remove", + "description": "SVG material - database_remove", + "body": [ + "{% svg material database_remove %}" + ] + }, + "database_remove_outline": { + "prefix": "svg.material.database_remove_outline", + "description": "SVG material - database_remove_outline", + "body": [ + "{% svg material database_remove_outline %}" + ] + }, + "database_search": { + "prefix": "svg.material.database_search", + "description": "SVG material - database_search", + "body": [ + "{% svg material database_search %}" + ] + }, + "database_search_outline": { + "prefix": "svg.material.database_search_outline", + "description": "SVG material - database_search_outline", + "body": [ + "{% svg material database_search_outline %}" + ] + }, + "database_settings": { + "prefix": "svg.material.database_settings", + "description": "SVG material - database_settings", + "body": [ + "{% svg material database_settings %}" + ] + }, + "database_settings_outline": { + "prefix": "svg.material.database_settings_outline", + "description": "SVG material - database_settings_outline", + "body": [ + "{% svg material database_settings_outline %}" + ] + }, + "database_sync": { + "prefix": "svg.material.database_sync", + "description": "SVG material - database_sync", + "body": [ + "{% svg material database_sync %}" + ] + }, + "database_sync_outline": { + "prefix": "svg.material.database_sync_outline", + "description": "SVG material - database_sync_outline", + "body": [ + "{% svg material database_sync_outline %}" + ] + }, + "death_star": { + "prefix": "svg.material.death_star", + "description": "SVG material - death_star", + "body": [ + "{% svg material death_star %}" + ] + }, + "death_star_variant": { + "prefix": "svg.material.death_star_variant", + "description": "SVG material - death_star_variant", + "body": [ + "{% svg material death_star_variant %}" + ] + }, + "deathly_hallows": { + "prefix": "svg.material.deathly_hallows", + "description": "SVG material - deathly_hallows", + "body": [ + "{% svg material deathly_hallows %}" + ] + }, + "debian": { + "prefix": "svg.material.debian", + "description": "SVG material - debian", + "body": [ + "{% svg material debian %}" + ] + }, + "debug_step_into": { + "prefix": "svg.material.debug_step_into", + "description": "SVG material - debug_step_into", + "body": [ + "{% svg material debug_step_into %}" + ] + }, + "debug_step_out": { + "prefix": "svg.material.debug_step_out", + "description": "SVG material - debug_step_out", + "body": [ + "{% svg material debug_step_out %}" + ] + }, + "debug_step_over": { + "prefix": "svg.material.debug_step_over", + "description": "SVG material - debug_step_over", + "body": [ + "{% svg material debug_step_over %}" + ] + }, + "decagram": { + "prefix": "svg.material.decagram", + "description": "SVG material - decagram", + "body": [ + "{% svg material decagram %}" + ] + }, + "decagram_outline": { + "prefix": "svg.material.decagram_outline", + "description": "SVG material - decagram_outline", + "body": [ + "{% svg material decagram_outline %}" + ] + }, + "decimal": { + "prefix": "svg.material.decimal", + "description": "SVG material - decimal", + "body": [ + "{% svg material decimal %}" + ] + }, + "decimal_comma": { + "prefix": "svg.material.decimal_comma", + "description": "SVG material - decimal_comma", + "body": [ + "{% svg material decimal_comma %}" + ] + }, + "decimal_comma_decrease": { + "prefix": "svg.material.decimal_comma_decrease", + "description": "SVG material - decimal_comma_decrease", + "body": [ + "{% svg material decimal_comma_decrease %}" + ] + }, + "decimal_comma_increase": { + "prefix": "svg.material.decimal_comma_increase", + "description": "SVG material - decimal_comma_increase", + "body": [ + "{% svg material decimal_comma_increase %}" + ] + }, + "decimal_decrease": { + "prefix": "svg.material.decimal_decrease", + "description": "SVG material - decimal_decrease", + "body": [ + "{% svg material decimal_decrease %}" + ] + }, + "decimal_increase": { + "prefix": "svg.material.decimal_increase", + "description": "SVG material - decimal_increase", + "body": [ + "{% svg material decimal_increase %}" + ] + }, + "delete": { + "prefix": "svg.material.delete", + "description": "SVG material - delete", + "body": [ + "{% svg material delete %}" + ] + }, + "delete_alert": { + "prefix": "svg.material.delete_alert", + "description": "SVG material - delete_alert", + "body": [ + "{% svg material delete_alert %}" + ] + }, + "delete_alert_outline": { + "prefix": "svg.material.delete_alert_outline", + "description": "SVG material - delete_alert_outline", + "body": [ + "{% svg material delete_alert_outline %}" + ] + }, + "delete_circle": { + "prefix": "svg.material.delete_circle", + "description": "SVG material - delete_circle", + "body": [ + "{% svg material delete_circle %}" + ] + }, + "delete_circle_outline": { + "prefix": "svg.material.delete_circle_outline", + "description": "SVG material - delete_circle_outline", + "body": [ + "{% svg material delete_circle_outline %}" + ] + }, + "delete_clock": { + "prefix": "svg.material.delete_clock", + "description": "SVG material - delete_clock", + "body": [ + "{% svg material delete_clock %}" + ] + }, + "delete_clock_outline": { + "prefix": "svg.material.delete_clock_outline", + "description": "SVG material - delete_clock_outline", + "body": [ + "{% svg material delete_clock_outline %}" + ] + }, + "delete_empty": { + "prefix": "svg.material.delete_empty", + "description": "SVG material - delete_empty", + "body": [ + "{% svg material delete_empty %}" + ] + }, + "delete_empty_outline": { + "prefix": "svg.material.delete_empty_outline", + "description": "SVG material - delete_empty_outline", + "body": [ + "{% svg material delete_empty_outline %}" + ] + }, + "delete_forever": { + "prefix": "svg.material.delete_forever", + "description": "SVG material - delete_forever", + "body": [ + "{% svg material delete_forever %}" + ] + }, + "delete_forever_outline": { + "prefix": "svg.material.delete_forever_outline", + "description": "SVG material - delete_forever_outline", + "body": [ + "{% svg material delete_forever_outline %}" + ] + }, + "delete_off": { + "prefix": "svg.material.delete_off", + "description": "SVG material - delete_off", + "body": [ + "{% svg material delete_off %}" + ] + }, + "delete_off_outline": { + "prefix": "svg.material.delete_off_outline", + "description": "SVG material - delete_off_outline", + "body": [ + "{% svg material delete_off_outline %}" + ] + }, + "delete_outline": { + "prefix": "svg.material.delete_outline", + "description": "SVG material - delete_outline", + "body": [ + "{% svg material delete_outline %}" + ] + }, + "delete_restore": { + "prefix": "svg.material.delete_restore", + "description": "SVG material - delete_restore", + "body": [ + "{% svg material delete_restore %}" + ] + }, + "delete_sweep": { + "prefix": "svg.material.delete_sweep", + "description": "SVG material - delete_sweep", + "body": [ + "{% svg material delete_sweep %}" + ] + }, + "delete_sweep_outline": { + "prefix": "svg.material.delete_sweep_outline", + "description": "SVG material - delete_sweep_outline", + "body": [ + "{% svg material delete_sweep_outline %}" + ] + }, + "delete_variant": { + "prefix": "svg.material.delete_variant", + "description": "SVG material - delete_variant", + "body": [ + "{% svg material delete_variant %}" + ] + }, + "delta": { + "prefix": "svg.material.delta", + "description": "SVG material - delta", + "body": [ + "{% svg material delta %}" + ] + }, + "desk": { + "prefix": "svg.material.desk", + "description": "SVG material - desk", + "body": [ + "{% svg material desk %}" + ] + }, + "desk_lamp": { + "prefix": "svg.material.desk_lamp", + "description": "SVG material - desk_lamp", + "body": [ + "{% svg material desk_lamp %}" + ] + }, + "desk_lamp_off": { + "prefix": "svg.material.desk_lamp_off", + "description": "SVG material - desk_lamp_off", + "body": [ + "{% svg material desk_lamp_off %}" + ] + }, + "desk_lamp_on": { + "prefix": "svg.material.desk_lamp_on", + "description": "SVG material - desk_lamp_on", + "body": [ + "{% svg material desk_lamp_on %}" + ] + }, + "deskphone": { + "prefix": "svg.material.deskphone", + "description": "SVG material - deskphone", + "body": [ + "{% svg material deskphone %}" + ] + }, + "desktop_classic": { + "prefix": "svg.material.desktop_classic", + "description": "SVG material - desktop_classic", + "body": [ + "{% svg material desktop_classic %}" + ] + }, + "desktop_tower": { + "prefix": "svg.material.desktop_tower", + "description": "SVG material - desktop_tower", + "body": [ + "{% svg material desktop_tower %}" + ] + }, + "desktop_tower_monitor": { + "prefix": "svg.material.desktop_tower_monitor", + "description": "SVG material - desktop_tower_monitor", + "body": [ + "{% svg material desktop_tower_monitor %}" + ] + }, + "details": { + "prefix": "svg.material.details", + "description": "SVG material - details", + "body": [ + "{% svg material details %}" + ] + }, + "dev_to": { + "prefix": "svg.material.dev_to", + "description": "SVG material - dev_to", + "body": [ + "{% svg material dev_to %}" + ] + }, + "developer_board": { + "prefix": "svg.material.developer_board", + "description": "SVG material - developer_board", + "body": [ + "{% svg material developer_board %}" + ] + }, + "deviantart": { + "prefix": "svg.material.deviantart", + "description": "SVG material - deviantart", + "body": [ + "{% svg material deviantart %}" + ] + }, + "devices": { + "prefix": "svg.material.devices", + "description": "SVG material - devices", + "body": [ + "{% svg material devices %}" + ] + }, + "dharmachakra": { + "prefix": "svg.material.dharmachakra", + "description": "SVG material - dharmachakra", + "body": [ + "{% svg material dharmachakra %}" + ] + }, + "diabetes": { + "prefix": "svg.material.diabetes", + "description": "SVG material - diabetes", + "body": [ + "{% svg material diabetes %}" + ] + }, + "dialpad": { + "prefix": "svg.material.dialpad", + "description": "SVG material - dialpad", + "body": [ + "{% svg material dialpad %}" + ] + }, + "diameter": { + "prefix": "svg.material.diameter", + "description": "SVG material - diameter", + "body": [ + "{% svg material diameter %}" + ] + }, + "diameter_outline": { + "prefix": "svg.material.diameter_outline", + "description": "SVG material - diameter_outline", + "body": [ + "{% svg material diameter_outline %}" + ] + }, + "diameter_variant": { + "prefix": "svg.material.diameter_variant", + "description": "SVG material - diameter_variant", + "body": [ + "{% svg material diameter_variant %}" + ] + }, + "diamond": { + "prefix": "svg.material.diamond", + "description": "SVG material - diamond", + "body": [ + "{% svg material diamond %}" + ] + }, + "diamond_outline": { + "prefix": "svg.material.diamond_outline", + "description": "SVG material - diamond_outline", + "body": [ + "{% svg material diamond_outline %}" + ] + }, + "diamond_stone": { + "prefix": "svg.material.diamond_stone", + "description": "SVG material - diamond_stone", + "body": [ + "{% svg material diamond_stone %}" + ] + }, + "diaper_outline": { + "prefix": "svg.material.diaper_outline", + "description": "SVG material - diaper_outline", + "body": [ + "{% svg material diaper_outline %}" + ] + }, + "dice_1": { + "prefix": "svg.material.dice_1", + "description": "SVG material - dice_1", + "body": [ + "{% svg material dice_1 %}" + ] + }, + "dice_1_outline": { + "prefix": "svg.material.dice_1_outline", + "description": "SVG material - dice_1_outline", + "body": [ + "{% svg material dice_1_outline %}" + ] + }, + "dice_2": { + "prefix": "svg.material.dice_2", + "description": "SVG material - dice_2", + "body": [ + "{% svg material dice_2 %}" + ] + }, + "dice_2_outline": { + "prefix": "svg.material.dice_2_outline", + "description": "SVG material - dice_2_outline", + "body": [ + "{% svg material dice_2_outline %}" + ] + }, + "dice_3": { + "prefix": "svg.material.dice_3", + "description": "SVG material - dice_3", + "body": [ + "{% svg material dice_3 %}" + ] + }, + "dice_3_outline": { + "prefix": "svg.material.dice_3_outline", + "description": "SVG material - dice_3_outline", + "body": [ + "{% svg material dice_3_outline %}" + ] + }, + "dice_4": { + "prefix": "svg.material.dice_4", + "description": "SVG material - dice_4", + "body": [ + "{% svg material dice_4 %}" + ] + }, + "dice_4_outline": { + "prefix": "svg.material.dice_4_outline", + "description": "SVG material - dice_4_outline", + "body": [ + "{% svg material dice_4_outline %}" + ] + }, + "dice_5": { + "prefix": "svg.material.dice_5", + "description": "SVG material - dice_5", + "body": [ + "{% svg material dice_5 %}" + ] + }, + "dice_5_outline": { + "prefix": "svg.material.dice_5_outline", + "description": "SVG material - dice_5_outline", + "body": [ + "{% svg material dice_5_outline %}" + ] + }, + "dice_6": { + "prefix": "svg.material.dice_6", + "description": "SVG material - dice_6", + "body": [ + "{% svg material dice_6 %}" + ] + }, + "dice_6_outline": { + "prefix": "svg.material.dice_6_outline", + "description": "SVG material - dice_6_outline", + "body": [ + "{% svg material dice_6_outline %}" + ] + }, + "dice_d10": { + "prefix": "svg.material.dice_d10", + "description": "SVG material - dice_d10", + "body": [ + "{% svg material dice_d10 %}" + ] + }, + "dice_d10_outline": { + "prefix": "svg.material.dice_d10_outline", + "description": "SVG material - dice_d10_outline", + "body": [ + "{% svg material dice_d10_outline %}" + ] + }, + "dice_d12": { + "prefix": "svg.material.dice_d12", + "description": "SVG material - dice_d12", + "body": [ + "{% svg material dice_d12 %}" + ] + }, + "dice_d12_outline": { + "prefix": "svg.material.dice_d12_outline", + "description": "SVG material - dice_d12_outline", + "body": [ + "{% svg material dice_d12_outline %}" + ] + }, + "dice_d20": { + "prefix": "svg.material.dice_d20", + "description": "SVG material - dice_d20", + "body": [ + "{% svg material dice_d20 %}" + ] + }, + "dice_d20_outline": { + "prefix": "svg.material.dice_d20_outline", + "description": "SVG material - dice_d20_outline", + "body": [ + "{% svg material dice_d20_outline %}" + ] + }, + "dice_d4": { + "prefix": "svg.material.dice_d4", + "description": "SVG material - dice_d4", + "body": [ + "{% svg material dice_d4 %}" + ] + }, + "dice_d4_outline": { + "prefix": "svg.material.dice_d4_outline", + "description": "SVG material - dice_d4_outline", + "body": [ + "{% svg material dice_d4_outline %}" + ] + }, + "dice_d6": { + "prefix": "svg.material.dice_d6", + "description": "SVG material - dice_d6", + "body": [ + "{% svg material dice_d6 %}" + ] + }, + "dice_d6_outline": { + "prefix": "svg.material.dice_d6_outline", + "description": "SVG material - dice_d6_outline", + "body": [ + "{% svg material dice_d6_outline %}" + ] + }, + "dice_d8": { + "prefix": "svg.material.dice_d8", + "description": "SVG material - dice_d8", + "body": [ + "{% svg material dice_d8 %}" + ] + }, + "dice_d8_outline": { + "prefix": "svg.material.dice_d8_outline", + "description": "SVG material - dice_d8_outline", + "body": [ + "{% svg material dice_d8_outline %}" + ] + }, + "dice_multiple": { + "prefix": "svg.material.dice_multiple", + "description": "SVG material - dice_multiple", + "body": [ + "{% svg material dice_multiple %}" + ] + }, + "dice_multiple_outline": { + "prefix": "svg.material.dice_multiple_outline", + "description": "SVG material - dice_multiple_outline", + "body": [ + "{% svg material dice_multiple_outline %}" + ] + }, + "digital_ocean": { + "prefix": "svg.material.digital_ocean", + "description": "SVG material - digital_ocean", + "body": [ + "{% svg material digital_ocean %}" + ] + }, + "dip_switch": { + "prefix": "svg.material.dip_switch", + "description": "SVG material - dip_switch", + "body": [ + "{% svg material dip_switch %}" + ] + }, + "directions": { + "prefix": "svg.material.directions", + "description": "SVG material - directions", + "body": [ + "{% svg material directions %}" + ] + }, + "directions_fork": { + "prefix": "svg.material.directions_fork", + "description": "SVG material - directions_fork", + "body": [ + "{% svg material directions_fork %}" + ] + }, + "disc": { + "prefix": "svg.material.disc", + "description": "SVG material - disc", + "body": [ + "{% svg material disc %}" + ] + }, + "disc_alert": { + "prefix": "svg.material.disc_alert", + "description": "SVG material - disc_alert", + "body": [ + "{% svg material disc_alert %}" + ] + }, + "disc_player": { + "prefix": "svg.material.disc_player", + "description": "SVG material - disc_player", + "body": [ + "{% svg material disc_player %}" + ] + }, + "dishwasher": { + "prefix": "svg.material.dishwasher", + "description": "SVG material - dishwasher", + "body": [ + "{% svg material dishwasher %}" + ] + }, + "dishwasher_alert": { + "prefix": "svg.material.dishwasher_alert", + "description": "SVG material - dishwasher_alert", + "body": [ + "{% svg material dishwasher_alert %}" + ] + }, + "dishwasher_off": { + "prefix": "svg.material.dishwasher_off", + "description": "SVG material - dishwasher_off", + "body": [ + "{% svg material dishwasher_off %}" + ] + }, + "disqus": { + "prefix": "svg.material.disqus", + "description": "SVG material - disqus", + "body": [ + "{% svg material disqus %}" + ] + }, + "distribute_horizontal_center": { + "prefix": "svg.material.distribute_horizontal_center", + "description": "SVG material - distribute_horizontal_center", + "body": [ + "{% svg material distribute_horizontal_center %}" + ] + }, + "distribute_horizontal_left": { + "prefix": "svg.material.distribute_horizontal_left", + "description": "SVG material - distribute_horizontal_left", + "body": [ + "{% svg material distribute_horizontal_left %}" + ] + }, + "distribute_horizontal_right": { + "prefix": "svg.material.distribute_horizontal_right", + "description": "SVG material - distribute_horizontal_right", + "body": [ + "{% svg material distribute_horizontal_right %}" + ] + }, + "distribute_vertical_bottom": { + "prefix": "svg.material.distribute_vertical_bottom", + "description": "SVG material - distribute_vertical_bottom", + "body": [ + "{% svg material distribute_vertical_bottom %}" + ] + }, + "distribute_vertical_center": { + "prefix": "svg.material.distribute_vertical_center", + "description": "SVG material - distribute_vertical_center", + "body": [ + "{% svg material distribute_vertical_center %}" + ] + }, + "distribute_vertical_top": { + "prefix": "svg.material.distribute_vertical_top", + "description": "SVG material - distribute_vertical_top", + "body": [ + "{% svg material distribute_vertical_top %}" + ] + }, + "diversify": { + "prefix": "svg.material.diversify", + "description": "SVG material - diversify", + "body": [ + "{% svg material diversify %}" + ] + }, + "diving": { + "prefix": "svg.material.diving", + "description": "SVG material - diving", + "body": [ + "{% svg material diving %}" + ] + }, + "diving_flippers": { + "prefix": "svg.material.diving_flippers", + "description": "SVG material - diving_flippers", + "body": [ + "{% svg material diving_flippers %}" + ] + }, + "diving_helmet": { + "prefix": "svg.material.diving_helmet", + "description": "SVG material - diving_helmet", + "body": [ + "{% svg material diving_helmet %}" + ] + }, + "diving_scuba": { + "prefix": "svg.material.diving_scuba", + "description": "SVG material - diving_scuba", + "body": [ + "{% svg material diving_scuba %}" + ] + }, + "diving_scuba_flag": { + "prefix": "svg.material.diving_scuba_flag", + "description": "SVG material - diving_scuba_flag", + "body": [ + "{% svg material diving_scuba_flag %}" + ] + }, + "diving_scuba_mask": { + "prefix": "svg.material.diving_scuba_mask", + "description": "SVG material - diving_scuba_mask", + "body": [ + "{% svg material diving_scuba_mask %}" + ] + }, + "diving_scuba_tank": { + "prefix": "svg.material.diving_scuba_tank", + "description": "SVG material - diving_scuba_tank", + "body": [ + "{% svg material diving_scuba_tank %}" + ] + }, + "diving_scuba_tank_multiple": { + "prefix": "svg.material.diving_scuba_tank_multiple", + "description": "SVG material - diving_scuba_tank_multiple", + "body": [ + "{% svg material diving_scuba_tank_multiple %}" + ] + }, + "diving_snorkel": { + "prefix": "svg.material.diving_snorkel", + "description": "SVG material - diving_snorkel", + "body": [ + "{% svg material diving_snorkel %}" + ] + }, + "division": { + "prefix": "svg.material.division", + "description": "SVG material - division", + "body": [ + "{% svg material division %}" + ] + }, + "division_box": { + "prefix": "svg.material.division_box", + "description": "SVG material - division_box", + "body": [ + "{% svg material division_box %}" + ] + }, + "dlna": { + "prefix": "svg.material.dlna", + "description": "SVG material - dlna", + "body": [ + "{% svg material dlna %}" + ] + }, + "dna": { + "prefix": "svg.material.dna", + "description": "SVG material - dna", + "body": [ + "{% svg material dna %}" + ] + }, + "dns": { + "prefix": "svg.material.dns", + "description": "SVG material - dns", + "body": [ + "{% svg material dns %}" + ] + }, + "dns_outline": { + "prefix": "svg.material.dns_outline", + "description": "SVG material - dns_outline", + "body": [ + "{% svg material dns_outline %}" + ] + }, + "dock_bottom": { + "prefix": "svg.material.dock_bottom", + "description": "SVG material - dock_bottom", + "body": [ + "{% svg material dock_bottom %}" + ] + }, + "dock_left": { + "prefix": "svg.material.dock_left", + "description": "SVG material - dock_left", + "body": [ + "{% svg material dock_left %}" + ] + }, + "dock_right": { + "prefix": "svg.material.dock_right", + "description": "SVG material - dock_right", + "body": [ + "{% svg material dock_right %}" + ] + }, + "dock_top": { + "prefix": "svg.material.dock_top", + "description": "SVG material - dock_top", + "body": [ + "{% svg material dock_top %}" + ] + }, + "dock_window": { + "prefix": "svg.material.dock_window", + "description": "SVG material - dock_window", + "body": [ + "{% svg material dock_window %}" + ] + }, + "docker": { + "prefix": "svg.material.docker", + "description": "SVG material - docker", + "body": [ + "{% svg material docker %}" + ] + }, + "doctor": { + "prefix": "svg.material.doctor", + "description": "SVG material - doctor", + "body": [ + "{% svg material doctor %}" + ] + }, + "dog": { + "prefix": "svg.material.dog", + "description": "SVG material - dog", + "body": [ + "{% svg material dog %}" + ] + }, + "dog_service": { + "prefix": "svg.material.dog_service", + "description": "SVG material - dog_service", + "body": [ + "{% svg material dog_service %}" + ] + }, + "dog_side": { + "prefix": "svg.material.dog_side", + "description": "SVG material - dog_side", + "body": [ + "{% svg material dog_side %}" + ] + }, + "dog_side_off": { + "prefix": "svg.material.dog_side_off", + "description": "SVG material - dog_side_off", + "body": [ + "{% svg material dog_side_off %}" + ] + }, + "dolby": { + "prefix": "svg.material.dolby", + "description": "SVG material - dolby", + "body": [ + "{% svg material dolby %}" + ] + }, + "dolly": { + "prefix": "svg.material.dolly", + "description": "SVG material - dolly", + "body": [ + "{% svg material dolly %}" + ] + }, + "dolphin": { + "prefix": "svg.material.dolphin", + "description": "SVG material - dolphin", + "body": [ + "{% svg material dolphin %}" + ] + }, + "domain": { + "prefix": "svg.material.domain", + "description": "SVG material - domain", + "body": [ + "{% svg material domain %}" + ] + }, + "domain_off": { + "prefix": "svg.material.domain_off", + "description": "SVG material - domain_off", + "body": [ + "{% svg material domain_off %}" + ] + }, + "domain_plus": { + "prefix": "svg.material.domain_plus", + "description": "SVG material - domain_plus", + "body": [ + "{% svg material domain_plus %}" + ] + }, + "domain_remove": { + "prefix": "svg.material.domain_remove", + "description": "SVG material - domain_remove", + "body": [ + "{% svg material domain_remove %}" + ] + }, + "domain_switch": { + "prefix": "svg.material.domain_switch", + "description": "SVG material - domain_switch", + "body": [ + "{% svg material domain_switch %}" + ] + }, + "dome_light": { + "prefix": "svg.material.dome_light", + "description": "SVG material - dome_light", + "body": [ + "{% svg material dome_light %}" + ] + }, + "domino_mask": { + "prefix": "svg.material.domino_mask", + "description": "SVG material - domino_mask", + "body": [ + "{% svg material domino_mask %}" + ] + }, + "donkey": { + "prefix": "svg.material.donkey", + "description": "SVG material - donkey", + "body": [ + "{% svg material donkey %}" + ] + }, + "door": { + "prefix": "svg.material.door", + "description": "SVG material - door", + "body": [ + "{% svg material door %}" + ] + }, + "door_closed": { + "prefix": "svg.material.door_closed", + "description": "SVG material - door_closed", + "body": [ + "{% svg material door_closed %}" + ] + }, + "door_closed_cancel": { + "prefix": "svg.material.door_closed_cancel", + "description": "SVG material - door_closed_cancel", + "body": [ + "{% svg material door_closed_cancel %}" + ] + }, + "door_closed_lock": { + "prefix": "svg.material.door_closed_lock", + "description": "SVG material - door_closed_lock", + "body": [ + "{% svg material door_closed_lock %}" + ] + }, + "door_open": { + "prefix": "svg.material.door_open", + "description": "SVG material - door_open", + "body": [ + "{% svg material door_open %}" + ] + }, + "door_sliding": { + "prefix": "svg.material.door_sliding", + "description": "SVG material - door_sliding", + "body": [ + "{% svg material door_sliding %}" + ] + }, + "door_sliding_lock": { + "prefix": "svg.material.door_sliding_lock", + "description": "SVG material - door_sliding_lock", + "body": [ + "{% svg material door_sliding_lock %}" + ] + }, + "door_sliding_open": { + "prefix": "svg.material.door_sliding_open", + "description": "SVG material - door_sliding_open", + "body": [ + "{% svg material door_sliding_open %}" + ] + }, + "doorbell": { + "prefix": "svg.material.doorbell", + "description": "SVG material - doorbell", + "body": [ + "{% svg material doorbell %}" + ] + }, + "doorbell_video": { + "prefix": "svg.material.doorbell_video", + "description": "SVG material - doorbell_video", + "body": [ + "{% svg material doorbell_video %}" + ] + }, + "dot_net": { + "prefix": "svg.material.dot_net", + "description": "SVG material - dot_net", + "body": [ + "{% svg material dot_net %}" + ] + }, + "dots_circle": { + "prefix": "svg.material.dots_circle", + "description": "SVG material - dots_circle", + "body": [ + "{% svg material dots_circle %}" + ] + }, + "dots_grid": { + "prefix": "svg.material.dots_grid", + "description": "SVG material - dots_grid", + "body": [ + "{% svg material dots_grid %}" + ] + }, + "dots_hexagon": { + "prefix": "svg.material.dots_hexagon", + "description": "SVG material - dots_hexagon", + "body": [ + "{% svg material dots_hexagon %}" + ] + }, + "dots_horizontal": { + "prefix": "svg.material.dots_horizontal", + "description": "SVG material - dots_horizontal", + "body": [ + "{% svg material dots_horizontal %}" + ] + }, + "dots_horizontal_circle": { + "prefix": "svg.material.dots_horizontal_circle", + "description": "SVG material - dots_horizontal_circle", + "body": [ + "{% svg material dots_horizontal_circle %}" + ] + }, + "dots_horizontal_circle_outline": { + "prefix": "svg.material.dots_horizontal_circle_outline", + "description": "SVG material - dots_horizontal_circle_outline", + "body": [ + "{% svg material dots_horizontal_circle_outline %}" + ] + }, + "dots_square": { + "prefix": "svg.material.dots_square", + "description": "SVG material - dots_square", + "body": [ + "{% svg material dots_square %}" + ] + }, + "dots_triangle": { + "prefix": "svg.material.dots_triangle", + "description": "SVG material - dots_triangle", + "body": [ + "{% svg material dots_triangle %}" + ] + }, + "dots_vertical": { + "prefix": "svg.material.dots_vertical", + "description": "SVG material - dots_vertical", + "body": [ + "{% svg material dots_vertical %}" + ] + }, + "dots_vertical_circle": { + "prefix": "svg.material.dots_vertical_circle", + "description": "SVG material - dots_vertical_circle", + "body": [ + "{% svg material dots_vertical_circle %}" + ] + }, + "dots_vertical_circle_outline": { + "prefix": "svg.material.dots_vertical_circle_outline", + "description": "SVG material - dots_vertical_circle_outline", + "body": [ + "{% svg material dots_vertical_circle_outline %}" + ] + }, + "download": { + "prefix": "svg.material.download", + "description": "SVG material - download", + "body": [ + "{% svg material download %}" + ] + }, + "download_box": { + "prefix": "svg.material.download_box", + "description": "SVG material - download_box", + "body": [ + "{% svg material download_box %}" + ] + }, + "download_box_outline": { + "prefix": "svg.material.download_box_outline", + "description": "SVG material - download_box_outline", + "body": [ + "{% svg material download_box_outline %}" + ] + }, + "download_circle": { + "prefix": "svg.material.download_circle", + "description": "SVG material - download_circle", + "body": [ + "{% svg material download_circle %}" + ] + }, + "download_circle_outline": { + "prefix": "svg.material.download_circle_outline", + "description": "SVG material - download_circle_outline", + "body": [ + "{% svg material download_circle_outline %}" + ] + }, + "download_lock": { + "prefix": "svg.material.download_lock", + "description": "SVG material - download_lock", + "body": [ + "{% svg material download_lock %}" + ] + }, + "download_lock_outline": { + "prefix": "svg.material.download_lock_outline", + "description": "SVG material - download_lock_outline", + "body": [ + "{% svg material download_lock_outline %}" + ] + }, + "download_multiple": { + "prefix": "svg.material.download_multiple", + "description": "SVG material - download_multiple", + "body": [ + "{% svg material download_multiple %}" + ] + }, + "download_multiple_outline": { + "prefix": "svg.material.download_multiple_outline", + "description": "SVG material - download_multiple_outline", + "body": [ + "{% svg material download_multiple_outline %}" + ] + }, + "download_network": { + "prefix": "svg.material.download_network", + "description": "SVG material - download_network", + "body": [ + "{% svg material download_network %}" + ] + }, + "download_network_outline": { + "prefix": "svg.material.download_network_outline", + "description": "SVG material - download_network_outline", + "body": [ + "{% svg material download_network_outline %}" + ] + }, + "download_off": { + "prefix": "svg.material.download_off", + "description": "SVG material - download_off", + "body": [ + "{% svg material download_off %}" + ] + }, + "download_off_outline": { + "prefix": "svg.material.download_off_outline", + "description": "SVG material - download_off_outline", + "body": [ + "{% svg material download_off_outline %}" + ] + }, + "download_outline": { + "prefix": "svg.material.download_outline", + "description": "SVG material - download_outline", + "body": [ + "{% svg material download_outline %}" + ] + }, + "drag": { + "prefix": "svg.material.drag", + "description": "SVG material - drag", + "body": [ + "{% svg material drag %}" + ] + }, + "drag_horizontal": { + "prefix": "svg.material.drag_horizontal", + "description": "SVG material - drag_horizontal", + "body": [ + "{% svg material drag_horizontal %}" + ] + }, + "drag_horizontal_variant": { + "prefix": "svg.material.drag_horizontal_variant", + "description": "SVG material - drag_horizontal_variant", + "body": [ + "{% svg material drag_horizontal_variant %}" + ] + }, + "drag_variant": { + "prefix": "svg.material.drag_variant", + "description": "SVG material - drag_variant", + "body": [ + "{% svg material drag_variant %}" + ] + }, + "drag_vertical": { + "prefix": "svg.material.drag_vertical", + "description": "SVG material - drag_vertical", + "body": [ + "{% svg material drag_vertical %}" + ] + }, + "drag_vertical_variant": { + "prefix": "svg.material.drag_vertical_variant", + "description": "SVG material - drag_vertical_variant", + "body": [ + "{% svg material drag_vertical_variant %}" + ] + }, + "drama_masks": { + "prefix": "svg.material.drama_masks", + "description": "SVG material - drama_masks", + "body": [ + "{% svg material drama_masks %}" + ] + }, + "draw": { + "prefix": "svg.material.draw", + "description": "SVG material - draw", + "body": [ + "{% svg material draw %}" + ] + }, + "draw_pen": { + "prefix": "svg.material.draw_pen", + "description": "SVG material - draw_pen", + "body": [ + "{% svg material draw_pen %}" + ] + }, + "drawing": { + "prefix": "svg.material.drawing", + "description": "SVG material - drawing", + "body": [ + "{% svg material drawing %}" + ] + }, + "drawing_box": { + "prefix": "svg.material.drawing_box", + "description": "SVG material - drawing_box", + "body": [ + "{% svg material drawing_box %}" + ] + }, + "dresser": { + "prefix": "svg.material.dresser", + "description": "SVG material - dresser", + "body": [ + "{% svg material dresser %}" + ] + }, + "dresser_outline": { + "prefix": "svg.material.dresser_outline", + "description": "SVG material - dresser_outline", + "body": [ + "{% svg material dresser_outline %}" + ] + }, + "drone": { + "prefix": "svg.material.drone", + "description": "SVG material - drone", + "body": [ + "{% svg material drone %}" + ] + }, + "dropbox": { + "prefix": "svg.material.dropbox", + "description": "SVG material - dropbox", + "body": [ + "{% svg material dropbox %}" + ] + }, + "drupal": { + "prefix": "svg.material.drupal", + "description": "SVG material - drupal", + "body": [ + "{% svg material drupal %}" + ] + }, + "duck": { + "prefix": "svg.material.duck", + "description": "SVG material - duck", + "body": [ + "{% svg material duck %}" + ] + }, + "dumbbell": { + "prefix": "svg.material.dumbbell", + "description": "SVG material - dumbbell", + "body": [ + "{% svg material dumbbell %}" + ] + }, + "dump_truck": { + "prefix": "svg.material.dump_truck", + "description": "SVG material - dump_truck", + "body": [ + "{% svg material dump_truck %}" + ] + }, + "ear_hearing": { + "prefix": "svg.material.ear_hearing", + "description": "SVG material - ear_hearing", + "body": [ + "{% svg material ear_hearing %}" + ] + }, + "ear_hearing_loop": { + "prefix": "svg.material.ear_hearing_loop", + "description": "SVG material - ear_hearing_loop", + "body": [ + "{% svg material ear_hearing_loop %}" + ] + }, + "ear_hearing_off": { + "prefix": "svg.material.ear_hearing_off", + "description": "SVG material - ear_hearing_off", + "body": [ + "{% svg material ear_hearing_off %}" + ] + }, + "earbuds": { + "prefix": "svg.material.earbuds", + "description": "SVG material - earbuds", + "body": [ + "{% svg material earbuds %}" + ] + }, + "earbuds_off": { + "prefix": "svg.material.earbuds_off", + "description": "SVG material - earbuds_off", + "body": [ + "{% svg material earbuds_off %}" + ] + }, + "earbuds_off_outline": { + "prefix": "svg.material.earbuds_off_outline", + "description": "SVG material - earbuds_off_outline", + "body": [ + "{% svg material earbuds_off_outline %}" + ] + }, + "earbuds_outline": { + "prefix": "svg.material.earbuds_outline", + "description": "SVG material - earbuds_outline", + "body": [ + "{% svg material earbuds_outline %}" + ] + }, + "earth": { + "prefix": "svg.material.earth", + "description": "SVG material - earth", + "body": [ + "{% svg material earth %}" + ] + }, + "earth_arrow_down": { + "prefix": "svg.material.earth_arrow_down", + "description": "SVG material - earth_arrow_down", + "body": [ + "{% svg material earth_arrow_down %}" + ] + }, + "earth_arrow_left": { + "prefix": "svg.material.earth_arrow_left", + "description": "SVG material - earth_arrow_left", + "body": [ + "{% svg material earth_arrow_left %}" + ] + }, + "earth_arrow_right": { + "prefix": "svg.material.earth_arrow_right", + "description": "SVG material - earth_arrow_right", + "body": [ + "{% svg material earth_arrow_right %}" + ] + }, + "earth_arrow_up": { + "prefix": "svg.material.earth_arrow_up", + "description": "SVG material - earth_arrow_up", + "body": [ + "{% svg material earth_arrow_up %}" + ] + }, + "earth_box": { + "prefix": "svg.material.earth_box", + "description": "SVG material - earth_box", + "body": [ + "{% svg material earth_box %}" + ] + }, + "earth_box_minus": { + "prefix": "svg.material.earth_box_minus", + "description": "SVG material - earth_box_minus", + "body": [ + "{% svg material earth_box_minus %}" + ] + }, + "earth_box_off": { + "prefix": "svg.material.earth_box_off", + "description": "SVG material - earth_box_off", + "body": [ + "{% svg material earth_box_off %}" + ] + }, + "earth_box_plus": { + "prefix": "svg.material.earth_box_plus", + "description": "SVG material - earth_box_plus", + "body": [ + "{% svg material earth_box_plus %}" + ] + }, + "earth_box_remove": { + "prefix": "svg.material.earth_box_remove", + "description": "SVG material - earth_box_remove", + "body": [ + "{% svg material earth_box_remove %}" + ] + }, + "earth_minus": { + "prefix": "svg.material.earth_minus", + "description": "SVG material - earth_minus", + "body": [ + "{% svg material earth_minus %}" + ] + }, + "earth_off": { + "prefix": "svg.material.earth_off", + "description": "SVG material - earth_off", + "body": [ + "{% svg material earth_off %}" + ] + }, + "earth_plus": { + "prefix": "svg.material.earth_plus", + "description": "SVG material - earth_plus", + "body": [ + "{% svg material earth_plus %}" + ] + }, + "earth_remove": { + "prefix": "svg.material.earth_remove", + "description": "SVG material - earth_remove", + "body": [ + "{% svg material earth_remove %}" + ] + }, + "egg": { + "prefix": "svg.material.egg", + "description": "SVG material - egg", + "body": [ + "{% svg material egg %}" + ] + }, + "egg_easter": { + "prefix": "svg.material.egg_easter", + "description": "SVG material - egg_easter", + "body": [ + "{% svg material egg_easter %}" + ] + }, + "egg_fried": { + "prefix": "svg.material.egg_fried", + "description": "SVG material - egg_fried", + "body": [ + "{% svg material egg_fried %}" + ] + }, + "egg_off": { + "prefix": "svg.material.egg_off", + "description": "SVG material - egg_off", + "body": [ + "{% svg material egg_off %}" + ] + }, + "egg_off_outline": { + "prefix": "svg.material.egg_off_outline", + "description": "SVG material - egg_off_outline", + "body": [ + "{% svg material egg_off_outline %}" + ] + }, + "egg_outline": { + "prefix": "svg.material.egg_outline", + "description": "SVG material - egg_outline", + "body": [ + "{% svg material egg_outline %}" + ] + }, + "eiffel_tower": { + "prefix": "svg.material.eiffel_tower", + "description": "SVG material - eiffel_tower", + "body": [ + "{% svg material eiffel_tower %}" + ] + }, + "eight_track": { + "prefix": "svg.material.eight_track", + "description": "SVG material - eight_track", + "body": [ + "{% svg material eight_track %}" + ] + }, + "eject": { + "prefix": "svg.material.eject", + "description": "SVG material - eject", + "body": [ + "{% svg material eject %}" + ] + }, + "eject_circle": { + "prefix": "svg.material.eject_circle", + "description": "SVG material - eject_circle", + "body": [ + "{% svg material eject_circle %}" + ] + }, + "eject_circle_outline": { + "prefix": "svg.material.eject_circle_outline", + "description": "SVG material - eject_circle_outline", + "body": [ + "{% svg material eject_circle_outline %}" + ] + }, + "eject_outline": { + "prefix": "svg.material.eject_outline", + "description": "SVG material - eject_outline", + "body": [ + "{% svg material eject_outline %}" + ] + }, + "electric_switch": { + "prefix": "svg.material.electric_switch", + "description": "SVG material - electric_switch", + "body": [ + "{% svg material electric_switch %}" + ] + }, + "electric_switch_closed": { + "prefix": "svg.material.electric_switch_closed", + "description": "SVG material - electric_switch_closed", + "body": [ + "{% svg material electric_switch_closed %}" + ] + }, + "electron_framework": { + "prefix": "svg.material.electron_framework", + "description": "SVG material - electron_framework", + "body": [ + "{% svg material electron_framework %}" + ] + }, + "elephant": { + "prefix": "svg.material.elephant", + "description": "SVG material - elephant", + "body": [ + "{% svg material elephant %}" + ] + }, + "elevation_decline": { + "prefix": "svg.material.elevation_decline", + "description": "SVG material - elevation_decline", + "body": [ + "{% svg material elevation_decline %}" + ] + }, + "elevation_rise": { + "prefix": "svg.material.elevation_rise", + "description": "SVG material - elevation_rise", + "body": [ + "{% svg material elevation_rise %}" + ] + }, + "elevator": { + "prefix": "svg.material.elevator", + "description": "SVG material - elevator", + "body": [ + "{% svg material elevator %}" + ] + }, + "elevator_down": { + "prefix": "svg.material.elevator_down", + "description": "SVG material - elevator_down", + "body": [ + "{% svg material elevator_down %}" + ] + }, + "elevator_passenger": { + "prefix": "svg.material.elevator_passenger", + "description": "SVG material - elevator_passenger", + "body": [ + "{% svg material elevator_passenger %}" + ] + }, + "elevator_passenger_off": { + "prefix": "svg.material.elevator_passenger_off", + "description": "SVG material - elevator_passenger_off", + "body": [ + "{% svg material elevator_passenger_off %}" + ] + }, + "elevator_passenger_off_outline": { + "prefix": "svg.material.elevator_passenger_off_outline", + "description": "SVG material - elevator_passenger_off_outline", + "body": [ + "{% svg material elevator_passenger_off_outline %}" + ] + }, + "elevator_passenger_outline": { + "prefix": "svg.material.elevator_passenger_outline", + "description": "SVG material - elevator_passenger_outline", + "body": [ + "{% svg material elevator_passenger_outline %}" + ] + }, + "elevator_up": { + "prefix": "svg.material.elevator_up", + "description": "SVG material - elevator_up", + "body": [ + "{% svg material elevator_up %}" + ] + }, + "ellipse": { + "prefix": "svg.material.ellipse", + "description": "SVG material - ellipse", + "body": [ + "{% svg material ellipse %}" + ] + }, + "ellipse_outline": { + "prefix": "svg.material.ellipse_outline", + "description": "SVG material - ellipse_outline", + "body": [ + "{% svg material ellipse_outline %}" + ] + }, + "email": { + "prefix": "svg.material.email", + "description": "SVG material - email", + "body": [ + "{% svg material email %}" + ] + }, + "email_alert": { + "prefix": "svg.material.email_alert", + "description": "SVG material - email_alert", + "body": [ + "{% svg material email_alert %}" + ] + }, + "email_alert_outline": { + "prefix": "svg.material.email_alert_outline", + "description": "SVG material - email_alert_outline", + "body": [ + "{% svg material email_alert_outline %}" + ] + }, + "email_arrow_left": { + "prefix": "svg.material.email_arrow_left", + "description": "SVG material - email_arrow_left", + "body": [ + "{% svg material email_arrow_left %}" + ] + }, + "email_arrow_left_outline": { + "prefix": "svg.material.email_arrow_left_outline", + "description": "SVG material - email_arrow_left_outline", + "body": [ + "{% svg material email_arrow_left_outline %}" + ] + }, + "email_arrow_right": { + "prefix": "svg.material.email_arrow_right", + "description": "SVG material - email_arrow_right", + "body": [ + "{% svg material email_arrow_right %}" + ] + }, + "email_arrow_right_outline": { + "prefix": "svg.material.email_arrow_right_outline", + "description": "SVG material - email_arrow_right_outline", + "body": [ + "{% svg material email_arrow_right_outline %}" + ] + }, + "email_box": { + "prefix": "svg.material.email_box", + "description": "SVG material - email_box", + "body": [ + "{% svg material email_box %}" + ] + }, + "email_check": { + "prefix": "svg.material.email_check", + "description": "SVG material - email_check", + "body": [ + "{% svg material email_check %}" + ] + }, + "email_check_outline": { + "prefix": "svg.material.email_check_outline", + "description": "SVG material - email_check_outline", + "body": [ + "{% svg material email_check_outline %}" + ] + }, + "email_edit": { + "prefix": "svg.material.email_edit", + "description": "SVG material - email_edit", + "body": [ + "{% svg material email_edit %}" + ] + }, + "email_edit_outline": { + "prefix": "svg.material.email_edit_outline", + "description": "SVG material - email_edit_outline", + "body": [ + "{% svg material email_edit_outline %}" + ] + }, + "email_fast": { + "prefix": "svg.material.email_fast", + "description": "SVG material - email_fast", + "body": [ + "{% svg material email_fast %}" + ] + }, + "email_fast_outline": { + "prefix": "svg.material.email_fast_outline", + "description": "SVG material - email_fast_outline", + "body": [ + "{% svg material email_fast_outline %}" + ] + }, + "email_heart_outline": { + "prefix": "svg.material.email_heart_outline", + "description": "SVG material - email_heart_outline", + "body": [ + "{% svg material email_heart_outline %}" + ] + }, + "email_lock": { + "prefix": "svg.material.email_lock", + "description": "SVG material - email_lock", + "body": [ + "{% svg material email_lock %}" + ] + }, + "email_lock_outline": { + "prefix": "svg.material.email_lock_outline", + "description": "SVG material - email_lock_outline", + "body": [ + "{% svg material email_lock_outline %}" + ] + }, + "email_mark_as_unread": { + "prefix": "svg.material.email_mark_as_unread", + "description": "SVG material - email_mark_as_unread", + "body": [ + "{% svg material email_mark_as_unread %}" + ] + }, + "email_minus": { + "prefix": "svg.material.email_minus", + "description": "SVG material - email_minus", + "body": [ + "{% svg material email_minus %}" + ] + }, + "email_minus_outline": { + "prefix": "svg.material.email_minus_outline", + "description": "SVG material - email_minus_outline", + "body": [ + "{% svg material email_minus_outline %}" + ] + }, + "email_multiple": { + "prefix": "svg.material.email_multiple", + "description": "SVG material - email_multiple", + "body": [ + "{% svg material email_multiple %}" + ] + }, + "email_multiple_outline": { + "prefix": "svg.material.email_multiple_outline", + "description": "SVG material - email_multiple_outline", + "body": [ + "{% svg material email_multiple_outline %}" + ] + }, + "email_newsletter": { + "prefix": "svg.material.email_newsletter", + "description": "SVG material - email_newsletter", + "body": [ + "{% svg material email_newsletter %}" + ] + }, + "email_off": { + "prefix": "svg.material.email_off", + "description": "SVG material - email_off", + "body": [ + "{% svg material email_off %}" + ] + }, + "email_off_outline": { + "prefix": "svg.material.email_off_outline", + "description": "SVG material - email_off_outline", + "body": [ + "{% svg material email_off_outline %}" + ] + }, + "email_open": { + "prefix": "svg.material.email_open", + "description": "SVG material - email_open", + "body": [ + "{% svg material email_open %}" + ] + }, + "email_open_heart_outline": { + "prefix": "svg.material.email_open_heart_outline", + "description": "SVG material - email_open_heart_outline", + "body": [ + "{% svg material email_open_heart_outline %}" + ] + }, + "email_open_multiple": { + "prefix": "svg.material.email_open_multiple", + "description": "SVG material - email_open_multiple", + "body": [ + "{% svg material email_open_multiple %}" + ] + }, + "email_open_multiple_outline": { + "prefix": "svg.material.email_open_multiple_outline", + "description": "SVG material - email_open_multiple_outline", + "body": [ + "{% svg material email_open_multiple_outline %}" + ] + }, + "email_open_outline": { + "prefix": "svg.material.email_open_outline", + "description": "SVG material - email_open_outline", + "body": [ + "{% svg material email_open_outline %}" + ] + }, + "email_outline": { + "prefix": "svg.material.email_outline", + "description": "SVG material - email_outline", + "body": [ + "{% svg material email_outline %}" + ] + }, + "email_plus": { + "prefix": "svg.material.email_plus", + "description": "SVG material - email_plus", + "body": [ + "{% svg material email_plus %}" + ] + }, + "email_plus_outline": { + "prefix": "svg.material.email_plus_outline", + "description": "SVG material - email_plus_outline", + "body": [ + "{% svg material email_plus_outline %}" + ] + }, + "email_remove": { + "prefix": "svg.material.email_remove", + "description": "SVG material - email_remove", + "body": [ + "{% svg material email_remove %}" + ] + }, + "email_remove_outline": { + "prefix": "svg.material.email_remove_outline", + "description": "SVG material - email_remove_outline", + "body": [ + "{% svg material email_remove_outline %}" + ] + }, + "email_seal": { + "prefix": "svg.material.email_seal", + "description": "SVG material - email_seal", + "body": [ + "{% svg material email_seal %}" + ] + }, + "email_seal_outline": { + "prefix": "svg.material.email_seal_outline", + "description": "SVG material - email_seal_outline", + "body": [ + "{% svg material email_seal_outline %}" + ] + }, + "email_search": { + "prefix": "svg.material.email_search", + "description": "SVG material - email_search", + "body": [ + "{% svg material email_search %}" + ] + }, + "email_search_outline": { + "prefix": "svg.material.email_search_outline", + "description": "SVG material - email_search_outline", + "body": [ + "{% svg material email_search_outline %}" + ] + }, + "email_sync": { + "prefix": "svg.material.email_sync", + "description": "SVG material - email_sync", + "body": [ + "{% svg material email_sync %}" + ] + }, + "email_sync_outline": { + "prefix": "svg.material.email_sync_outline", + "description": "SVG material - email_sync_outline", + "body": [ + "{% svg material email_sync_outline %}" + ] + }, + "email_variant": { + "prefix": "svg.material.email_variant", + "description": "SVG material - email_variant", + "body": [ + "{% svg material email_variant %}" + ] + }, + "ember": { + "prefix": "svg.material.ember", + "description": "SVG material - ember", + "body": [ + "{% svg material ember %}" + ] + }, + "emby": { + "prefix": "svg.material.emby", + "description": "SVG material - emby", + "body": [ + "{% svg material emby %}" + ] + }, + "emoticon": { + "prefix": "svg.material.emoticon", + "description": "SVG material - emoticon", + "body": [ + "{% svg material emoticon %}" + ] + }, + "emoticon_angry": { + "prefix": "svg.material.emoticon_angry", + "description": "SVG material - emoticon_angry", + "body": [ + "{% svg material emoticon_angry %}" + ] + }, + "emoticon_angry_outline": { + "prefix": "svg.material.emoticon_angry_outline", + "description": "SVG material - emoticon_angry_outline", + "body": [ + "{% svg material emoticon_angry_outline %}" + ] + }, + "emoticon_confused": { + "prefix": "svg.material.emoticon_confused", + "description": "SVG material - emoticon_confused", + "body": [ + "{% svg material emoticon_confused %}" + ] + }, + "emoticon_confused_outline": { + "prefix": "svg.material.emoticon_confused_outline", + "description": "SVG material - emoticon_confused_outline", + "body": [ + "{% svg material emoticon_confused_outline %}" + ] + }, + "emoticon_cool": { + "prefix": "svg.material.emoticon_cool", + "description": "SVG material - emoticon_cool", + "body": [ + "{% svg material emoticon_cool %}" + ] + }, + "emoticon_cool_outline": { + "prefix": "svg.material.emoticon_cool_outline", + "description": "SVG material - emoticon_cool_outline", + "body": [ + "{% svg material emoticon_cool_outline %}" + ] + }, + "emoticon_cry": { + "prefix": "svg.material.emoticon_cry", + "description": "SVG material - emoticon_cry", + "body": [ + "{% svg material emoticon_cry %}" + ] + }, + "emoticon_cry_outline": { + "prefix": "svg.material.emoticon_cry_outline", + "description": "SVG material - emoticon_cry_outline", + "body": [ + "{% svg material emoticon_cry_outline %}" + ] + }, + "emoticon_dead": { + "prefix": "svg.material.emoticon_dead", + "description": "SVG material - emoticon_dead", + "body": [ + "{% svg material emoticon_dead %}" + ] + }, + "emoticon_dead_outline": { + "prefix": "svg.material.emoticon_dead_outline", + "description": "SVG material - emoticon_dead_outline", + "body": [ + "{% svg material emoticon_dead_outline %}" + ] + }, + "emoticon_devil": { + "prefix": "svg.material.emoticon_devil", + "description": "SVG material - emoticon_devil", + "body": [ + "{% svg material emoticon_devil %}" + ] + }, + "emoticon_devil_outline": { + "prefix": "svg.material.emoticon_devil_outline", + "description": "SVG material - emoticon_devil_outline", + "body": [ + "{% svg material emoticon_devil_outline %}" + ] + }, + "emoticon_excited": { + "prefix": "svg.material.emoticon_excited", + "description": "SVG material - emoticon_excited", + "body": [ + "{% svg material emoticon_excited %}" + ] + }, + "emoticon_excited_outline": { + "prefix": "svg.material.emoticon_excited_outline", + "description": "SVG material - emoticon_excited_outline", + "body": [ + "{% svg material emoticon_excited_outline %}" + ] + }, + "emoticon_frown": { + "prefix": "svg.material.emoticon_frown", + "description": "SVG material - emoticon_frown", + "body": [ + "{% svg material emoticon_frown %}" + ] + }, + "emoticon_frown_outline": { + "prefix": "svg.material.emoticon_frown_outline", + "description": "SVG material - emoticon_frown_outline", + "body": [ + "{% svg material emoticon_frown_outline %}" + ] + }, + "emoticon_happy": { + "prefix": "svg.material.emoticon_happy", + "description": "SVG material - emoticon_happy", + "body": [ + "{% svg material emoticon_happy %}" + ] + }, + "emoticon_happy_outline": { + "prefix": "svg.material.emoticon_happy_outline", + "description": "SVG material - emoticon_happy_outline", + "body": [ + "{% svg material emoticon_happy_outline %}" + ] + }, + "emoticon_kiss": { + "prefix": "svg.material.emoticon_kiss", + "description": "SVG material - emoticon_kiss", + "body": [ + "{% svg material emoticon_kiss %}" + ] + }, + "emoticon_kiss_outline": { + "prefix": "svg.material.emoticon_kiss_outline", + "description": "SVG material - emoticon_kiss_outline", + "body": [ + "{% svg material emoticon_kiss_outline %}" + ] + }, + "emoticon_lol": { + "prefix": "svg.material.emoticon_lol", + "description": "SVG material - emoticon_lol", + "body": [ + "{% svg material emoticon_lol %}" + ] + }, + "emoticon_lol_outline": { + "prefix": "svg.material.emoticon_lol_outline", + "description": "SVG material - emoticon_lol_outline", + "body": [ + "{% svg material emoticon_lol_outline %}" + ] + }, + "emoticon_minus": { + "prefix": "svg.material.emoticon_minus", + "description": "SVG material - emoticon_minus", + "body": [ + "{% svg material emoticon_minus %}" + ] + }, + "emoticon_minus_outline": { + "prefix": "svg.material.emoticon_minus_outline", + "description": "SVG material - emoticon_minus_outline", + "body": [ + "{% svg material emoticon_minus_outline %}" + ] + }, + "emoticon_neutral": { + "prefix": "svg.material.emoticon_neutral", + "description": "SVG material - emoticon_neutral", + "body": [ + "{% svg material emoticon_neutral %}" + ] + }, + "emoticon_neutral_outline": { + "prefix": "svg.material.emoticon_neutral_outline", + "description": "SVG material - emoticon_neutral_outline", + "body": [ + "{% svg material emoticon_neutral_outline %}" + ] + }, + "emoticon_outline": { + "prefix": "svg.material.emoticon_outline", + "description": "SVG material - emoticon_outline", + "body": [ + "{% svg material emoticon_outline %}" + ] + }, + "emoticon_plus": { + "prefix": "svg.material.emoticon_plus", + "description": "SVG material - emoticon_plus", + "body": [ + "{% svg material emoticon_plus %}" + ] + }, + "emoticon_plus_outline": { + "prefix": "svg.material.emoticon_plus_outline", + "description": "SVG material - emoticon_plus_outline", + "body": [ + "{% svg material emoticon_plus_outline %}" + ] + }, + "emoticon_poop": { + "prefix": "svg.material.emoticon_poop", + "description": "SVG material - emoticon_poop", + "body": [ + "{% svg material emoticon_poop %}" + ] + }, + "emoticon_poop_outline": { + "prefix": "svg.material.emoticon_poop_outline", + "description": "SVG material - emoticon_poop_outline", + "body": [ + "{% svg material emoticon_poop_outline %}" + ] + }, + "emoticon_remove": { + "prefix": "svg.material.emoticon_remove", + "description": "SVG material - emoticon_remove", + "body": [ + "{% svg material emoticon_remove %}" + ] + }, + "emoticon_remove_outline": { + "prefix": "svg.material.emoticon_remove_outline", + "description": "SVG material - emoticon_remove_outline", + "body": [ + "{% svg material emoticon_remove_outline %}" + ] + }, + "emoticon_sad": { + "prefix": "svg.material.emoticon_sad", + "description": "SVG material - emoticon_sad", + "body": [ + "{% svg material emoticon_sad %}" + ] + }, + "emoticon_sad_outline": { + "prefix": "svg.material.emoticon_sad_outline", + "description": "SVG material - emoticon_sad_outline", + "body": [ + "{% svg material emoticon_sad_outline %}" + ] + }, + "emoticon_sick": { + "prefix": "svg.material.emoticon_sick", + "description": "SVG material - emoticon_sick", + "body": [ + "{% svg material emoticon_sick %}" + ] + }, + "emoticon_sick_outline": { + "prefix": "svg.material.emoticon_sick_outline", + "description": "SVG material - emoticon_sick_outline", + "body": [ + "{% svg material emoticon_sick_outline %}" + ] + }, + "emoticon_tongue": { + "prefix": "svg.material.emoticon_tongue", + "description": "SVG material - emoticon_tongue", + "body": [ + "{% svg material emoticon_tongue %}" + ] + }, + "emoticon_tongue_outline": { + "prefix": "svg.material.emoticon_tongue_outline", + "description": "SVG material - emoticon_tongue_outline", + "body": [ + "{% svg material emoticon_tongue_outline %}" + ] + }, + "emoticon_wink": { + "prefix": "svg.material.emoticon_wink", + "description": "SVG material - emoticon_wink", + "body": [ + "{% svg material emoticon_wink %}" + ] + }, + "emoticon_wink_outline": { + "prefix": "svg.material.emoticon_wink_outline", + "description": "SVG material - emoticon_wink_outline", + "body": [ + "{% svg material emoticon_wink_outline %}" + ] + }, + "engine": { + "prefix": "svg.material.engine", + "description": "SVG material - engine", + "body": [ + "{% svg material engine %}" + ] + }, + "engine_off": { + "prefix": "svg.material.engine_off", + "description": "SVG material - engine_off", + "body": [ + "{% svg material engine_off %}" + ] + }, + "engine_off_outline": { + "prefix": "svg.material.engine_off_outline", + "description": "SVG material - engine_off_outline", + "body": [ + "{% svg material engine_off_outline %}" + ] + }, + "engine_outline": { + "prefix": "svg.material.engine_outline", + "description": "SVG material - engine_outline", + "body": [ + "{% svg material engine_outline %}" + ] + }, + "epsilon": { + "prefix": "svg.material.epsilon", + "description": "SVG material - epsilon", + "body": [ + "{% svg material epsilon %}" + ] + }, + "equal": { + "prefix": "svg.material.equal", + "description": "SVG material - equal", + "body": [ + "{% svg material equal %}" + ] + }, + "equal_box": { + "prefix": "svg.material.equal_box", + "description": "SVG material - equal_box", + "body": [ + "{% svg material equal_box %}" + ] + }, + "equalizer": { + "prefix": "svg.material.equalizer", + "description": "SVG material - equalizer", + "body": [ + "{% svg material equalizer %}" + ] + }, + "equalizer_outline": { + "prefix": "svg.material.equalizer_outline", + "description": "SVG material - equalizer_outline", + "body": [ + "{% svg material equalizer_outline %}" + ] + }, + "eraser": { + "prefix": "svg.material.eraser", + "description": "SVG material - eraser", + "body": [ + "{% svg material eraser %}" + ] + }, + "eraser_variant": { + "prefix": "svg.material.eraser_variant", + "description": "SVG material - eraser_variant", + "body": [ + "{% svg material eraser_variant %}" + ] + }, + "escalator": { + "prefix": "svg.material.escalator", + "description": "SVG material - escalator", + "body": [ + "{% svg material escalator %}" + ] + }, + "escalator_box": { + "prefix": "svg.material.escalator_box", + "description": "SVG material - escalator_box", + "body": [ + "{% svg material escalator_box %}" + ] + }, + "escalator_down": { + "prefix": "svg.material.escalator_down", + "description": "SVG material - escalator_down", + "body": [ + "{% svg material escalator_down %}" + ] + }, + "escalator_up": { + "prefix": "svg.material.escalator_up", + "description": "SVG material - escalator_up", + "body": [ + "{% svg material escalator_up %}" + ] + }, + "eslint": { + "prefix": "svg.material.eslint", + "description": "SVG material - eslint", + "body": [ + "{% svg material eslint %}" + ] + }, + "et": { + "prefix": "svg.material.et", + "description": "SVG material - et", + "body": [ + "{% svg material et %}" + ] + }, + "ethereum": { + "prefix": "svg.material.ethereum", + "description": "SVG material - ethereum", + "body": [ + "{% svg material ethereum %}" + ] + }, + "ethernet": { + "prefix": "svg.material.ethernet", + "description": "SVG material - ethernet", + "body": [ + "{% svg material ethernet %}" + ] + }, + "ethernet_cable": { + "prefix": "svg.material.ethernet_cable", + "description": "SVG material - ethernet_cable", + "body": [ + "{% svg material ethernet_cable %}" + ] + }, + "ethernet_cable_off": { + "prefix": "svg.material.ethernet_cable_off", + "description": "SVG material - ethernet_cable_off", + "body": [ + "{% svg material ethernet_cable_off %}" + ] + }, + "ethernet_off": { + "prefix": "svg.material.ethernet_off", + "description": "SVG material - ethernet_off", + "body": [ + "{% svg material ethernet_off %}" + ] + }, + "ev_plug_ccs1": { + "prefix": "svg.material.ev_plug_ccs1", + "description": "SVG material - ev_plug_ccs1", + "body": [ + "{% svg material ev_plug_ccs1 %}" + ] + }, + "ev_plug_ccs2": { + "prefix": "svg.material.ev_plug_ccs2", + "description": "SVG material - ev_plug_ccs2", + "body": [ + "{% svg material ev_plug_ccs2 %}" + ] + }, + "ev_plug_chademo": { + "prefix": "svg.material.ev_plug_chademo", + "description": "SVG material - ev_plug_chademo", + "body": [ + "{% svg material ev_plug_chademo %}" + ] + }, + "ev_plug_tesla": { + "prefix": "svg.material.ev_plug_tesla", + "description": "SVG material - ev_plug_tesla", + "body": [ + "{% svg material ev_plug_tesla %}" + ] + }, + "ev_plug_type1": { + "prefix": "svg.material.ev_plug_type1", + "description": "SVG material - ev_plug_type1", + "body": [ + "{% svg material ev_plug_type1 %}" + ] + }, + "ev_plug_type2": { + "prefix": "svg.material.ev_plug_type2", + "description": "SVG material - ev_plug_type2", + "body": [ + "{% svg material ev_plug_type2 %}" + ] + }, + "ev_station": { + "prefix": "svg.material.ev_station", + "description": "SVG material - ev_station", + "body": [ + "{% svg material ev_station %}" + ] + }, + "evernote": { + "prefix": "svg.material.evernote", + "description": "SVG material - evernote", + "body": [ + "{% svg material evernote %}" + ] + }, + "excavator": { + "prefix": "svg.material.excavator", + "description": "SVG material - excavator", + "body": [ + "{% svg material excavator %}" + ] + }, + "exclamation": { + "prefix": "svg.material.exclamation", + "description": "SVG material - exclamation", + "body": [ + "{% svg material exclamation %}" + ] + }, + "exclamation_thick": { + "prefix": "svg.material.exclamation_thick", + "description": "SVG material - exclamation_thick", + "body": [ + "{% svg material exclamation_thick %}" + ] + }, + "exit_run": { + "prefix": "svg.material.exit_run", + "description": "SVG material - exit_run", + "body": [ + "{% svg material exit_run %}" + ] + }, + "exit_to_app": { + "prefix": "svg.material.exit_to_app", + "description": "SVG material - exit_to_app", + "body": [ + "{% svg material exit_to_app %}" + ] + }, + "expand_all": { + "prefix": "svg.material.expand_all", + "description": "SVG material - expand_all", + "body": [ + "{% svg material expand_all %}" + ] + }, + "expand_all_outline": { + "prefix": "svg.material.expand_all_outline", + "description": "SVG material - expand_all_outline", + "body": [ + "{% svg material expand_all_outline %}" + ] + }, + "expansion_card": { + "prefix": "svg.material.expansion_card", + "description": "SVG material - expansion_card", + "body": [ + "{% svg material expansion_card %}" + ] + }, + "expansion_card_variant": { + "prefix": "svg.material.expansion_card_variant", + "description": "SVG material - expansion_card_variant", + "body": [ + "{% svg material expansion_card_variant %}" + ] + }, + "exponent": { + "prefix": "svg.material.exponent", + "description": "SVG material - exponent", + "body": [ + "{% svg material exponent %}" + ] + }, + "exponent_box": { + "prefix": "svg.material.exponent_box", + "description": "SVG material - exponent_box", + "body": [ + "{% svg material exponent_box %}" + ] + }, + "export": { + "prefix": "svg.material.export", + "description": "SVG material - export", + "body": [ + "{% svg material export %}" + ] + }, + "export_variant": { + "prefix": "svg.material.export_variant", + "description": "SVG material - export_variant", + "body": [ + "{% svg material export_variant %}" + ] + }, + "eye": { + "prefix": "svg.material.eye", + "description": "SVG material - eye", + "body": [ + "{% svg material eye %}" + ] + }, + "eye_arrow_left": { + "prefix": "svg.material.eye_arrow_left", + "description": "SVG material - eye_arrow_left", + "body": [ + "{% svg material eye_arrow_left %}" + ] + }, + "eye_arrow_left_outline": { + "prefix": "svg.material.eye_arrow_left_outline", + "description": "SVG material - eye_arrow_left_outline", + "body": [ + "{% svg material eye_arrow_left_outline %}" + ] + }, + "eye_arrow_right": { + "prefix": "svg.material.eye_arrow_right", + "description": "SVG material - eye_arrow_right", + "body": [ + "{% svg material eye_arrow_right %}" + ] + }, + "eye_arrow_right_outline": { + "prefix": "svg.material.eye_arrow_right_outline", + "description": "SVG material - eye_arrow_right_outline", + "body": [ + "{% svg material eye_arrow_right_outline %}" + ] + }, + "eye_check": { + "prefix": "svg.material.eye_check", + "description": "SVG material - eye_check", + "body": [ + "{% svg material eye_check %}" + ] + }, + "eye_check_outline": { + "prefix": "svg.material.eye_check_outline", + "description": "SVG material - eye_check_outline", + "body": [ + "{% svg material eye_check_outline %}" + ] + }, + "eye_circle": { + "prefix": "svg.material.eye_circle", + "description": "SVG material - eye_circle", + "body": [ + "{% svg material eye_circle %}" + ] + }, + "eye_circle_outline": { + "prefix": "svg.material.eye_circle_outline", + "description": "SVG material - eye_circle_outline", + "body": [ + "{% svg material eye_circle_outline %}" + ] + }, + "eye_closed": { + "prefix": "svg.material.eye_closed", + "description": "SVG material - eye_closed", + "body": [ + "{% svg material eye_closed %}" + ] + }, + "eye_lock": { + "prefix": "svg.material.eye_lock", + "description": "SVG material - eye_lock", + "body": [ + "{% svg material eye_lock %}" + ] + }, + "eye_lock_open": { + "prefix": "svg.material.eye_lock_open", + "description": "SVG material - eye_lock_open", + "body": [ + "{% svg material eye_lock_open %}" + ] + }, + "eye_lock_open_outline": { + "prefix": "svg.material.eye_lock_open_outline", + "description": "SVG material - eye_lock_open_outline", + "body": [ + "{% svg material eye_lock_open_outline %}" + ] + }, + "eye_lock_outline": { + "prefix": "svg.material.eye_lock_outline", + "description": "SVG material - eye_lock_outline", + "body": [ + "{% svg material eye_lock_outline %}" + ] + }, + "eye_minus": { + "prefix": "svg.material.eye_minus", + "description": "SVG material - eye_minus", + "body": [ + "{% svg material eye_minus %}" + ] + }, + "eye_minus_outline": { + "prefix": "svg.material.eye_minus_outline", + "description": "SVG material - eye_minus_outline", + "body": [ + "{% svg material eye_minus_outline %}" + ] + }, + "eye_off": { + "prefix": "svg.material.eye_off", + "description": "SVG material - eye_off", + "body": [ + "{% svg material eye_off %}" + ] + }, + "eye_off_outline": { + "prefix": "svg.material.eye_off_outline", + "description": "SVG material - eye_off_outline", + "body": [ + "{% svg material eye_off_outline %}" + ] + }, + "eye_outline": { + "prefix": "svg.material.eye_outline", + "description": "SVG material - eye_outline", + "body": [ + "{% svg material eye_outline %}" + ] + }, + "eye_plus": { + "prefix": "svg.material.eye_plus", + "description": "SVG material - eye_plus", + "body": [ + "{% svg material eye_plus %}" + ] + }, + "eye_plus_outline": { + "prefix": "svg.material.eye_plus_outline", + "description": "SVG material - eye_plus_outline", + "body": [ + "{% svg material eye_plus_outline %}" + ] + }, + "eye_refresh": { + "prefix": "svg.material.eye_refresh", + "description": "SVG material - eye_refresh", + "body": [ + "{% svg material eye_refresh %}" + ] + }, + "eye_refresh_outline": { + "prefix": "svg.material.eye_refresh_outline", + "description": "SVG material - eye_refresh_outline", + "body": [ + "{% svg material eye_refresh_outline %}" + ] + }, + "eye_remove": { + "prefix": "svg.material.eye_remove", + "description": "SVG material - eye_remove", + "body": [ + "{% svg material eye_remove %}" + ] + }, + "eye_remove_outline": { + "prefix": "svg.material.eye_remove_outline", + "description": "SVG material - eye_remove_outline", + "body": [ + "{% svg material eye_remove_outline %}" + ] + }, + "eye_settings": { + "prefix": "svg.material.eye_settings", + "description": "SVG material - eye_settings", + "body": [ + "{% svg material eye_settings %}" + ] + }, + "eye_settings_outline": { + "prefix": "svg.material.eye_settings_outline", + "description": "SVG material - eye_settings_outline", + "body": [ + "{% svg material eye_settings_outline %}" + ] + }, + "eyedropper": { + "prefix": "svg.material.eyedropper", + "description": "SVG material - eyedropper", + "body": [ + "{% svg material eyedropper %}" + ] + }, + "eyedropper_minus": { + "prefix": "svg.material.eyedropper_minus", + "description": "SVG material - eyedropper_minus", + "body": [ + "{% svg material eyedropper_minus %}" + ] + }, + "eyedropper_off": { + "prefix": "svg.material.eyedropper_off", + "description": "SVG material - eyedropper_off", + "body": [ + "{% svg material eyedropper_off %}" + ] + }, + "eyedropper_plus": { + "prefix": "svg.material.eyedropper_plus", + "description": "SVG material - eyedropper_plus", + "body": [ + "{% svg material eyedropper_plus %}" + ] + }, + "eyedropper_remove": { + "prefix": "svg.material.eyedropper_remove", + "description": "SVG material - eyedropper_remove", + "body": [ + "{% svg material eyedropper_remove %}" + ] + }, + "eyedropper_variant": { + "prefix": "svg.material.eyedropper_variant", + "description": "SVG material - eyedropper_variant", + "body": [ + "{% svg material eyedropper_variant %}" + ] + }, + "face_agent": { + "prefix": "svg.material.face_agent", + "description": "SVG material - face_agent", + "body": [ + "{% svg material face_agent %}" + ] + }, + "face_man": { + "prefix": "svg.material.face_man", + "description": "SVG material - face_man", + "body": [ + "{% svg material face_man %}" + ] + }, + "face_man_outline": { + "prefix": "svg.material.face_man_outline", + "description": "SVG material - face_man_outline", + "body": [ + "{% svg material face_man_outline %}" + ] + }, + "face_man_profile": { + "prefix": "svg.material.face_man_profile", + "description": "SVG material - face_man_profile", + "body": [ + "{% svg material face_man_profile %}" + ] + }, + "face_man_shimmer": { + "prefix": "svg.material.face_man_shimmer", + "description": "SVG material - face_man_shimmer", + "body": [ + "{% svg material face_man_shimmer %}" + ] + }, + "face_man_shimmer_outline": { + "prefix": "svg.material.face_man_shimmer_outline", + "description": "SVG material - face_man_shimmer_outline", + "body": [ + "{% svg material face_man_shimmer_outline %}" + ] + }, + "face_mask": { + "prefix": "svg.material.face_mask", + "description": "SVG material - face_mask", + "body": [ + "{% svg material face_mask %}" + ] + }, + "face_mask_outline": { + "prefix": "svg.material.face_mask_outline", + "description": "SVG material - face_mask_outline", + "body": [ + "{% svg material face_mask_outline %}" + ] + }, + "face_recognition": { + "prefix": "svg.material.face_recognition", + "description": "SVG material - face_recognition", + "body": [ + "{% svg material face_recognition %}" + ] + }, + "face_woman": { + "prefix": "svg.material.face_woman", + "description": "SVG material - face_woman", + "body": [ + "{% svg material face_woman %}" + ] + }, + "face_woman_outline": { + "prefix": "svg.material.face_woman_outline", + "description": "SVG material - face_woman_outline", + "body": [ + "{% svg material face_woman_outline %}" + ] + }, + "face_woman_profile": { + "prefix": "svg.material.face_woman_profile", + "description": "SVG material - face_woman_profile", + "body": [ + "{% svg material face_woman_profile %}" + ] + }, + "face_woman_shimmer": { + "prefix": "svg.material.face_woman_shimmer", + "description": "SVG material - face_woman_shimmer", + "body": [ + "{% svg material face_woman_shimmer %}" + ] + }, + "face_woman_shimmer_outline": { + "prefix": "svg.material.face_woman_shimmer_outline", + "description": "SVG material - face_woman_shimmer_outline", + "body": [ + "{% svg material face_woman_shimmer_outline %}" + ] + }, + "facebook": { + "prefix": "svg.material.facebook", + "description": "SVG material - facebook", + "body": [ + "{% svg material facebook %}" + ] + }, + "facebook_gaming": { + "prefix": "svg.material.facebook_gaming", + "description": "SVG material - facebook_gaming", + "body": [ + "{% svg material facebook_gaming %}" + ] + }, + "facebook_messenger": { + "prefix": "svg.material.facebook_messenger", + "description": "SVG material - facebook_messenger", + "body": [ + "{% svg material facebook_messenger %}" + ] + }, + "facebook_workplace": { + "prefix": "svg.material.facebook_workplace", + "description": "SVG material - facebook_workplace", + "body": [ + "{% svg material facebook_workplace %}" + ] + }, + "factory": { + "prefix": "svg.material.factory", + "description": "SVG material - factory", + "body": [ + "{% svg material factory %}" + ] + }, + "family_tree": { + "prefix": "svg.material.family_tree", + "description": "SVG material - family_tree", + "body": [ + "{% svg material family_tree %}" + ] + }, + "fan": { + "prefix": "svg.material.fan", + "description": "SVG material - fan", + "body": [ + "{% svg material fan %}" + ] + }, + "fan_alert": { + "prefix": "svg.material.fan_alert", + "description": "SVG material - fan_alert", + "body": [ + "{% svg material fan_alert %}" + ] + }, + "fan_auto": { + "prefix": "svg.material.fan_auto", + "description": "SVG material - fan_auto", + "body": [ + "{% svg material fan_auto %}" + ] + }, + "fan_chevron_down": { + "prefix": "svg.material.fan_chevron_down", + "description": "SVG material - fan_chevron_down", + "body": [ + "{% svg material fan_chevron_down %}" + ] + }, + "fan_chevron_up": { + "prefix": "svg.material.fan_chevron_up", + "description": "SVG material - fan_chevron_up", + "body": [ + "{% svg material fan_chevron_up %}" + ] + }, + "fan_clock": { + "prefix": "svg.material.fan_clock", + "description": "SVG material - fan_clock", + "body": [ + "{% svg material fan_clock %}" + ] + }, + "fan_minus": { + "prefix": "svg.material.fan_minus", + "description": "SVG material - fan_minus", + "body": [ + "{% svg material fan_minus %}" + ] + }, + "fan_off": { + "prefix": "svg.material.fan_off", + "description": "SVG material - fan_off", + "body": [ + "{% svg material fan_off %}" + ] + }, + "fan_plus": { + "prefix": "svg.material.fan_plus", + "description": "SVG material - fan_plus", + "body": [ + "{% svg material fan_plus %}" + ] + }, + "fan_remove": { + "prefix": "svg.material.fan_remove", + "description": "SVG material - fan_remove", + "body": [ + "{% svg material fan_remove %}" + ] + }, + "fan_speed_1": { + "prefix": "svg.material.fan_speed_1", + "description": "SVG material - fan_speed_1", + "body": [ + "{% svg material fan_speed_1 %}" + ] + }, + "fan_speed_2": { + "prefix": "svg.material.fan_speed_2", + "description": "SVG material - fan_speed_2", + "body": [ + "{% svg material fan_speed_2 %}" + ] + }, + "fan_speed_3": { + "prefix": "svg.material.fan_speed_3", + "description": "SVG material - fan_speed_3", + "body": [ + "{% svg material fan_speed_3 %}" + ] + }, + "fast_forward": { + "prefix": "svg.material.fast_forward", + "description": "SVG material - fast_forward", + "body": [ + "{% svg material fast_forward %}" + ] + }, + "fast_forward_10": { + "prefix": "svg.material.fast_forward_10", + "description": "SVG material - fast_forward_10", + "body": [ + "{% svg material fast_forward_10 %}" + ] + }, + "fast_forward_15": { + "prefix": "svg.material.fast_forward_15", + "description": "SVG material - fast_forward_15", + "body": [ + "{% svg material fast_forward_15 %}" + ] + }, + "fast_forward_30": { + "prefix": "svg.material.fast_forward_30", + "description": "SVG material - fast_forward_30", + "body": [ + "{% svg material fast_forward_30 %}" + ] + }, + "fast_forward_45": { + "prefix": "svg.material.fast_forward_45", + "description": "SVG material - fast_forward_45", + "body": [ + "{% svg material fast_forward_45 %}" + ] + }, + "fast_forward_5": { + "prefix": "svg.material.fast_forward_5", + "description": "SVG material - fast_forward_5", + "body": [ + "{% svg material fast_forward_5 %}" + ] + }, + "fast_forward_60": { + "prefix": "svg.material.fast_forward_60", + "description": "SVG material - fast_forward_60", + "body": [ + "{% svg material fast_forward_60 %}" + ] + }, + "fast_forward_outline": { + "prefix": "svg.material.fast_forward_outline", + "description": "SVG material - fast_forward_outline", + "body": [ + "{% svg material fast_forward_outline %}" + ] + }, + "faucet": { + "prefix": "svg.material.faucet", + "description": "SVG material - faucet", + "body": [ + "{% svg material faucet %}" + ] + }, + "faucet_variant": { + "prefix": "svg.material.faucet_variant", + "description": "SVG material - faucet_variant", + "body": [ + "{% svg material faucet_variant %}" + ] + }, + "fax": { + "prefix": "svg.material.fax", + "description": "SVG material - fax", + "body": [ + "{% svg material fax %}" + ] + }, + "feather": { + "prefix": "svg.material.feather", + "description": "SVG material - feather", + "body": [ + "{% svg material feather %}" + ] + }, + "feature_search": { + "prefix": "svg.material.feature_search", + "description": "SVG material - feature_search", + "body": [ + "{% svg material feature_search %}" + ] + }, + "feature_search_outline": { + "prefix": "svg.material.feature_search_outline", + "description": "SVG material - feature_search_outline", + "body": [ + "{% svg material feature_search_outline %}" + ] + }, + "fedora": { + "prefix": "svg.material.fedora", + "description": "SVG material - fedora", + "body": [ + "{% svg material fedora %}" + ] + }, + "fence": { + "prefix": "svg.material.fence", + "description": "SVG material - fence", + "body": [ + "{% svg material fence %}" + ] + }, + "fence_electric": { + "prefix": "svg.material.fence_electric", + "description": "SVG material - fence_electric", + "body": [ + "{% svg material fence_electric %}" + ] + }, + "fencing": { + "prefix": "svg.material.fencing", + "description": "SVG material - fencing", + "body": [ + "{% svg material fencing %}" + ] + }, + "ferris_wheel": { + "prefix": "svg.material.ferris_wheel", + "description": "SVG material - ferris_wheel", + "body": [ + "{% svg material ferris_wheel %}" + ] + }, + "ferry": { + "prefix": "svg.material.ferry", + "description": "SVG material - ferry", + "body": [ + "{% svg material ferry %}" + ] + }, + "file": { + "prefix": "svg.material.file", + "description": "SVG material - file", + "body": [ + "{% svg material file %}" + ] + }, + "file_account": { + "prefix": "svg.material.file_account", + "description": "SVG material - file_account", + "body": [ + "{% svg material file_account %}" + ] + }, + "file_account_outline": { + "prefix": "svg.material.file_account_outline", + "description": "SVG material - file_account_outline", + "body": [ + "{% svg material file_account_outline %}" + ] + }, + "file_alert": { + "prefix": "svg.material.file_alert", + "description": "SVG material - file_alert", + "body": [ + "{% svg material file_alert %}" + ] + }, + "file_alert_outline": { + "prefix": "svg.material.file_alert_outline", + "description": "SVG material - file_alert_outline", + "body": [ + "{% svg material file_alert_outline %}" + ] + }, + "file_arrow_left_right": { + "prefix": "svg.material.file_arrow_left_right", + "description": "SVG material - file_arrow_left_right", + "body": [ + "{% svg material file_arrow_left_right %}" + ] + }, + "file_arrow_left_right_outline": { + "prefix": "svg.material.file_arrow_left_right_outline", + "description": "SVG material - file_arrow_left_right_outline", + "body": [ + "{% svg material file_arrow_left_right_outline %}" + ] + }, + "file_arrow_up_down": { + "prefix": "svg.material.file_arrow_up_down", + "description": "SVG material - file_arrow_up_down", + "body": [ + "{% svg material file_arrow_up_down %}" + ] + }, + "file_arrow_up_down_outline": { + "prefix": "svg.material.file_arrow_up_down_outline", + "description": "SVG material - file_arrow_up_down_outline", + "body": [ + "{% svg material file_arrow_up_down_outline %}" + ] + }, + "file_cabinet": { + "prefix": "svg.material.file_cabinet", + "description": "SVG material - file_cabinet", + "body": [ + "{% svg material file_cabinet %}" + ] + }, + "file_cad": { + "prefix": "svg.material.file_cad", + "description": "SVG material - file_cad", + "body": [ + "{% svg material file_cad %}" + ] + }, + "file_cad_box": { + "prefix": "svg.material.file_cad_box", + "description": "SVG material - file_cad_box", + "body": [ + "{% svg material file_cad_box %}" + ] + }, + "file_cancel": { + "prefix": "svg.material.file_cancel", + "description": "SVG material - file_cancel", + "body": [ + "{% svg material file_cancel %}" + ] + }, + "file_cancel_outline": { + "prefix": "svg.material.file_cancel_outline", + "description": "SVG material - file_cancel_outline", + "body": [ + "{% svg material file_cancel_outline %}" + ] + }, + "file_certificate": { + "prefix": "svg.material.file_certificate", + "description": "SVG material - file_certificate", + "body": [ + "{% svg material file_certificate %}" + ] + }, + "file_certificate_outline": { + "prefix": "svg.material.file_certificate_outline", + "description": "SVG material - file_certificate_outline", + "body": [ + "{% svg material file_certificate_outline %}" + ] + }, + "file_chart": { + "prefix": "svg.material.file_chart", + "description": "SVG material - file_chart", + "body": [ + "{% svg material file_chart %}" + ] + }, + "file_chart_check": { + "prefix": "svg.material.file_chart_check", + "description": "SVG material - file_chart_check", + "body": [ + "{% svg material file_chart_check %}" + ] + }, + "file_chart_check_outline": { + "prefix": "svg.material.file_chart_check_outline", + "description": "SVG material - file_chart_check_outline", + "body": [ + "{% svg material file_chart_check_outline %}" + ] + }, + "file_chart_outline": { + "prefix": "svg.material.file_chart_outline", + "description": "SVG material - file_chart_outline", + "body": [ + "{% svg material file_chart_outline %}" + ] + }, + "file_check": { + "prefix": "svg.material.file_check", + "description": "SVG material - file_check", + "body": [ + "{% svg material file_check %}" + ] + }, + "file_check_outline": { + "prefix": "svg.material.file_check_outline", + "description": "SVG material - file_check_outline", + "body": [ + "{% svg material file_check_outline %}" + ] + }, + "file_clock": { + "prefix": "svg.material.file_clock", + "description": "SVG material - file_clock", + "body": [ + "{% svg material file_clock %}" + ] + }, + "file_clock_outline": { + "prefix": "svg.material.file_clock_outline", + "description": "SVG material - file_clock_outline", + "body": [ + "{% svg material file_clock_outline %}" + ] + }, + "file_cloud": { + "prefix": "svg.material.file_cloud", + "description": "SVG material - file_cloud", + "body": [ + "{% svg material file_cloud %}" + ] + }, + "file_cloud_outline": { + "prefix": "svg.material.file_cloud_outline", + "description": "SVG material - file_cloud_outline", + "body": [ + "{% svg material file_cloud_outline %}" + ] + }, + "file_code": { + "prefix": "svg.material.file_code", + "description": "SVG material - file_code", + "body": [ + "{% svg material file_code %}" + ] + }, + "file_code_outline": { + "prefix": "svg.material.file_code_outline", + "description": "SVG material - file_code_outline", + "body": [ + "{% svg material file_code_outline %}" + ] + }, + "file_cog": { + "prefix": "svg.material.file_cog", + "description": "SVG material - file_cog", + "body": [ + "{% svg material file_cog %}" + ] + }, + "file_cog_outline": { + "prefix": "svg.material.file_cog_outline", + "description": "SVG material - file_cog_outline", + "body": [ + "{% svg material file_cog_outline %}" + ] + }, + "file_compare": { + "prefix": "svg.material.file_compare", + "description": "SVG material - file_compare", + "body": [ + "{% svg material file_compare %}" + ] + }, + "file_delimited": { + "prefix": "svg.material.file_delimited", + "description": "SVG material - file_delimited", + "body": [ + "{% svg material file_delimited %}" + ] + }, + "file_delimited_outline": { + "prefix": "svg.material.file_delimited_outline", + "description": "SVG material - file_delimited_outline", + "body": [ + "{% svg material file_delimited_outline %}" + ] + }, + "file_document": { + "prefix": "svg.material.file_document", + "description": "SVG material - file_document", + "body": [ + "{% svg material file_document %}" + ] + }, + "file_document_alert": { + "prefix": "svg.material.file_document_alert", + "description": "SVG material - file_document_alert", + "body": [ + "{% svg material file_document_alert %}" + ] + }, + "file_document_alert_outline": { + "prefix": "svg.material.file_document_alert_outline", + "description": "SVG material - file_document_alert_outline", + "body": [ + "{% svg material file_document_alert_outline %}" + ] + }, + "file_document_arrow_right": { + "prefix": "svg.material.file_document_arrow_right", + "description": "SVG material - file_document_arrow_right", + "body": [ + "{% svg material file_document_arrow_right %}" + ] + }, + "file_document_arrow_right_outline": { + "prefix": "svg.material.file_document_arrow_right_outline", + "description": "SVG material - file_document_arrow_right_outline", + "body": [ + "{% svg material file_document_arrow_right_outline %}" + ] + }, + "file_document_check": { + "prefix": "svg.material.file_document_check", + "description": "SVG material - file_document_check", + "body": [ + "{% svg material file_document_check %}" + ] + }, + "file_document_check_outline": { + "prefix": "svg.material.file_document_check_outline", + "description": "SVG material - file_document_check_outline", + "body": [ + "{% svg material file_document_check_outline %}" + ] + }, + "file_document_edit": { + "prefix": "svg.material.file_document_edit", + "description": "SVG material - file_document_edit", + "body": [ + "{% svg material file_document_edit %}" + ] + }, + "file_document_edit_outline": { + "prefix": "svg.material.file_document_edit_outline", + "description": "SVG material - file_document_edit_outline", + "body": [ + "{% svg material file_document_edit_outline %}" + ] + }, + "file_document_minus": { + "prefix": "svg.material.file_document_minus", + "description": "SVG material - file_document_minus", + "body": [ + "{% svg material file_document_minus %}" + ] + }, + "file_document_minus_outline": { + "prefix": "svg.material.file_document_minus_outline", + "description": "SVG material - file_document_minus_outline", + "body": [ + "{% svg material file_document_minus_outline %}" + ] + }, + "file_document_multiple": { + "prefix": "svg.material.file_document_multiple", + "description": "SVG material - file_document_multiple", + "body": [ + "{% svg material file_document_multiple %}" + ] + }, + "file_document_multiple_outline": { + "prefix": "svg.material.file_document_multiple_outline", + "description": "SVG material - file_document_multiple_outline", + "body": [ + "{% svg material file_document_multiple_outline %}" + ] + }, + "file_document_outline": { + "prefix": "svg.material.file_document_outline", + "description": "SVG material - file_document_outline", + "body": [ + "{% svg material file_document_outline %}" + ] + }, + "file_document_plus": { + "prefix": "svg.material.file_document_plus", + "description": "SVG material - file_document_plus", + "body": [ + "{% svg material file_document_plus %}" + ] + }, + "file_document_plus_outline": { + "prefix": "svg.material.file_document_plus_outline", + "description": "SVG material - file_document_plus_outline", + "body": [ + "{% svg material file_document_plus_outline %}" + ] + }, + "file_document_refresh": { + "prefix": "svg.material.file_document_refresh", + "description": "SVG material - file_document_refresh", + "body": [ + "{% svg material file_document_refresh %}" + ] + }, + "file_document_refresh_outline": { + "prefix": "svg.material.file_document_refresh_outline", + "description": "SVG material - file_document_refresh_outline", + "body": [ + "{% svg material file_document_refresh_outline %}" + ] + }, + "file_document_remove": { + "prefix": "svg.material.file_document_remove", + "description": "SVG material - file_document_remove", + "body": [ + "{% svg material file_document_remove %}" + ] + }, + "file_document_remove_outline": { + "prefix": "svg.material.file_document_remove_outline", + "description": "SVG material - file_document_remove_outline", + "body": [ + "{% svg material file_document_remove_outline %}" + ] + }, + "file_download": { + "prefix": "svg.material.file_download", + "description": "SVG material - file_download", + "body": [ + "{% svg material file_download %}" + ] + }, + "file_download_outline": { + "prefix": "svg.material.file_download_outline", + "description": "SVG material - file_download_outline", + "body": [ + "{% svg material file_download_outline %}" + ] + }, + "file_edit": { + "prefix": "svg.material.file_edit", + "description": "SVG material - file_edit", + "body": [ + "{% svg material file_edit %}" + ] + }, + "file_edit_outline": { + "prefix": "svg.material.file_edit_outline", + "description": "SVG material - file_edit_outline", + "body": [ + "{% svg material file_edit_outline %}" + ] + }, + "file_excel": { + "prefix": "svg.material.file_excel", + "description": "SVG material - file_excel", + "body": [ + "{% svg material file_excel %}" + ] + }, + "file_excel_box": { + "prefix": "svg.material.file_excel_box", + "description": "SVG material - file_excel_box", + "body": [ + "{% svg material file_excel_box %}" + ] + }, + "file_excel_box_outline": { + "prefix": "svg.material.file_excel_box_outline", + "description": "SVG material - file_excel_box_outline", + "body": [ + "{% svg material file_excel_box_outline %}" + ] + }, + "file_excel_outline": { + "prefix": "svg.material.file_excel_outline", + "description": "SVG material - file_excel_outline", + "body": [ + "{% svg material file_excel_outline %}" + ] + }, + "file_export": { + "prefix": "svg.material.file_export", + "description": "SVG material - file_export", + "body": [ + "{% svg material file_export %}" + ] + }, + "file_export_outline": { + "prefix": "svg.material.file_export_outline", + "description": "SVG material - file_export_outline", + "body": [ + "{% svg material file_export_outline %}" + ] + }, + "file_eye": { + "prefix": "svg.material.file_eye", + "description": "SVG material - file_eye", + "body": [ + "{% svg material file_eye %}" + ] + }, + "file_eye_outline": { + "prefix": "svg.material.file_eye_outline", + "description": "SVG material - file_eye_outline", + "body": [ + "{% svg material file_eye_outline %}" + ] + }, + "file_find": { + "prefix": "svg.material.file_find", + "description": "SVG material - file_find", + "body": [ + "{% svg material file_find %}" + ] + }, + "file_find_outline": { + "prefix": "svg.material.file_find_outline", + "description": "SVG material - file_find_outline", + "body": [ + "{% svg material file_find_outline %}" + ] + }, + "file_gif_box": { + "prefix": "svg.material.file_gif_box", + "description": "SVG material - file_gif_box", + "body": [ + "{% svg material file_gif_box %}" + ] + }, + "file_hidden": { + "prefix": "svg.material.file_hidden", + "description": "SVG material - file_hidden", + "body": [ + "{% svg material file_hidden %}" + ] + }, + "file_image": { + "prefix": "svg.material.file_image", + "description": "SVG material - file_image", + "body": [ + "{% svg material file_image %}" + ] + }, + "file_image_marker": { + "prefix": "svg.material.file_image_marker", + "description": "SVG material - file_image_marker", + "body": [ + "{% svg material file_image_marker %}" + ] + }, + "file_image_marker_outline": { + "prefix": "svg.material.file_image_marker_outline", + "description": "SVG material - file_image_marker_outline", + "body": [ + "{% svg material file_image_marker_outline %}" + ] + }, + "file_image_minus": { + "prefix": "svg.material.file_image_minus", + "description": "SVG material - file_image_minus", + "body": [ + "{% svg material file_image_minus %}" + ] + }, + "file_image_minus_outline": { + "prefix": "svg.material.file_image_minus_outline", + "description": "SVG material - file_image_minus_outline", + "body": [ + "{% svg material file_image_minus_outline %}" + ] + }, + "file_image_outline": { + "prefix": "svg.material.file_image_outline", + "description": "SVG material - file_image_outline", + "body": [ + "{% svg material file_image_outline %}" + ] + }, + "file_image_plus": { + "prefix": "svg.material.file_image_plus", + "description": "SVG material - file_image_plus", + "body": [ + "{% svg material file_image_plus %}" + ] + }, + "file_image_plus_outline": { + "prefix": "svg.material.file_image_plus_outline", + "description": "SVG material - file_image_plus_outline", + "body": [ + "{% svg material file_image_plus_outline %}" + ] + }, + "file_image_remove": { + "prefix": "svg.material.file_image_remove", + "description": "SVG material - file_image_remove", + "body": [ + "{% svg material file_image_remove %}" + ] + }, + "file_image_remove_outline": { + "prefix": "svg.material.file_image_remove_outline", + "description": "SVG material - file_image_remove_outline", + "body": [ + "{% svg material file_image_remove_outline %}" + ] + }, + "file_import": { + "prefix": "svg.material.file_import", + "description": "SVG material - file_import", + "body": [ + "{% svg material file_import %}" + ] + }, + "file_import_outline": { + "prefix": "svg.material.file_import_outline", + "description": "SVG material - file_import_outline", + "body": [ + "{% svg material file_import_outline %}" + ] + }, + "file_jpg_box": { + "prefix": "svg.material.file_jpg_box", + "description": "SVG material - file_jpg_box", + "body": [ + "{% svg material file_jpg_box %}" + ] + }, + "file_key": { + "prefix": "svg.material.file_key", + "description": "SVG material - file_key", + "body": [ + "{% svg material file_key %}" + ] + }, + "file_key_outline": { + "prefix": "svg.material.file_key_outline", + "description": "SVG material - file_key_outline", + "body": [ + "{% svg material file_key_outline %}" + ] + }, + "file_link": { + "prefix": "svg.material.file_link", + "description": "SVG material - file_link", + "body": [ + "{% svg material file_link %}" + ] + }, + "file_link_outline": { + "prefix": "svg.material.file_link_outline", + "description": "SVG material - file_link_outline", + "body": [ + "{% svg material file_link_outline %}" + ] + }, + "file_lock": { + "prefix": "svg.material.file_lock", + "description": "SVG material - file_lock", + "body": [ + "{% svg material file_lock %}" + ] + }, + "file_lock_open": { + "prefix": "svg.material.file_lock_open", + "description": "SVG material - file_lock_open", + "body": [ + "{% svg material file_lock_open %}" + ] + }, + "file_lock_open_outline": { + "prefix": "svg.material.file_lock_open_outline", + "description": "SVG material - file_lock_open_outline", + "body": [ + "{% svg material file_lock_open_outline %}" + ] + }, + "file_lock_outline": { + "prefix": "svg.material.file_lock_outline", + "description": "SVG material - file_lock_outline", + "body": [ + "{% svg material file_lock_outline %}" + ] + }, + "file_marker": { + "prefix": "svg.material.file_marker", + "description": "SVG material - file_marker", + "body": [ + "{% svg material file_marker %}" + ] + }, + "file_marker_outline": { + "prefix": "svg.material.file_marker_outline", + "description": "SVG material - file_marker_outline", + "body": [ + "{% svg material file_marker_outline %}" + ] + }, + "file_minus": { + "prefix": "svg.material.file_minus", + "description": "SVG material - file_minus", + "body": [ + "{% svg material file_minus %}" + ] + }, + "file_minus_outline": { + "prefix": "svg.material.file_minus_outline", + "description": "SVG material - file_minus_outline", + "body": [ + "{% svg material file_minus_outline %}" + ] + }, + "file_move": { + "prefix": "svg.material.file_move", + "description": "SVG material - file_move", + "body": [ + "{% svg material file_move %}" + ] + }, + "file_move_outline": { + "prefix": "svg.material.file_move_outline", + "description": "SVG material - file_move_outline", + "body": [ + "{% svg material file_move_outline %}" + ] + }, + "file_multiple": { + "prefix": "svg.material.file_multiple", + "description": "SVG material - file_multiple", + "body": [ + "{% svg material file_multiple %}" + ] + }, + "file_multiple_outline": { + "prefix": "svg.material.file_multiple_outline", + "description": "SVG material - file_multiple_outline", + "body": [ + "{% svg material file_multiple_outline %}" + ] + }, + "file_music": { + "prefix": "svg.material.file_music", + "description": "SVG material - file_music", + "body": [ + "{% svg material file_music %}" + ] + }, + "file_music_outline": { + "prefix": "svg.material.file_music_outline", + "description": "SVG material - file_music_outline", + "body": [ + "{% svg material file_music_outline %}" + ] + }, + "file_outline": { + "prefix": "svg.material.file_outline", + "description": "SVG material - file_outline", + "body": [ + "{% svg material file_outline %}" + ] + }, + "file_pdf_box": { + "prefix": "svg.material.file_pdf_box", + "description": "SVG material - file_pdf_box", + "body": [ + "{% svg material file_pdf_box %}" + ] + }, + "file_percent": { + "prefix": "svg.material.file_percent", + "description": "SVG material - file_percent", + "body": [ + "{% svg material file_percent %}" + ] + }, + "file_percent_outline": { + "prefix": "svg.material.file_percent_outline", + "description": "SVG material - file_percent_outline", + "body": [ + "{% svg material file_percent_outline %}" + ] + }, + "file_phone": { + "prefix": "svg.material.file_phone", + "description": "SVG material - file_phone", + "body": [ + "{% svg material file_phone %}" + ] + }, + "file_phone_outline": { + "prefix": "svg.material.file_phone_outline", + "description": "SVG material - file_phone_outline", + "body": [ + "{% svg material file_phone_outline %}" + ] + }, + "file_plus": { + "prefix": "svg.material.file_plus", + "description": "SVG material - file_plus", + "body": [ + "{% svg material file_plus %}" + ] + }, + "file_plus_outline": { + "prefix": "svg.material.file_plus_outline", + "description": "SVG material - file_plus_outline", + "body": [ + "{% svg material file_plus_outline %}" + ] + }, + "file_png_box": { + "prefix": "svg.material.file_png_box", + "description": "SVG material - file_png_box", + "body": [ + "{% svg material file_png_box %}" + ] + }, + "file_powerpoint": { + "prefix": "svg.material.file_powerpoint", + "description": "SVG material - file_powerpoint", + "body": [ + "{% svg material file_powerpoint %}" + ] + }, + "file_powerpoint_box": { + "prefix": "svg.material.file_powerpoint_box", + "description": "SVG material - file_powerpoint_box", + "body": [ + "{% svg material file_powerpoint_box %}" + ] + }, + "file_powerpoint_box_outline": { + "prefix": "svg.material.file_powerpoint_box_outline", + "description": "SVG material - file_powerpoint_box_outline", + "body": [ + "{% svg material file_powerpoint_box_outline %}" + ] + }, + "file_powerpoint_outline": { + "prefix": "svg.material.file_powerpoint_outline", + "description": "SVG material - file_powerpoint_outline", + "body": [ + "{% svg material file_powerpoint_outline %}" + ] + }, + "file_presentation_box": { + "prefix": "svg.material.file_presentation_box", + "description": "SVG material - file_presentation_box", + "body": [ + "{% svg material file_presentation_box %}" + ] + }, + "file_question": { + "prefix": "svg.material.file_question", + "description": "SVG material - file_question", + "body": [ + "{% svg material file_question %}" + ] + }, + "file_question_outline": { + "prefix": "svg.material.file_question_outline", + "description": "SVG material - file_question_outline", + "body": [ + "{% svg material file_question_outline %}" + ] + }, + "file_refresh": { + "prefix": "svg.material.file_refresh", + "description": "SVG material - file_refresh", + "body": [ + "{% svg material file_refresh %}" + ] + }, + "file_refresh_outline": { + "prefix": "svg.material.file_refresh_outline", + "description": "SVG material - file_refresh_outline", + "body": [ + "{% svg material file_refresh_outline %}" + ] + }, + "file_remove": { + "prefix": "svg.material.file_remove", + "description": "SVG material - file_remove", + "body": [ + "{% svg material file_remove %}" + ] + }, + "file_remove_outline": { + "prefix": "svg.material.file_remove_outline", + "description": "SVG material - file_remove_outline", + "body": [ + "{% svg material file_remove_outline %}" + ] + }, + "file_replace": { + "prefix": "svg.material.file_replace", + "description": "SVG material - file_replace", + "body": [ + "{% svg material file_replace %}" + ] + }, + "file_replace_outline": { + "prefix": "svg.material.file_replace_outline", + "description": "SVG material - file_replace_outline", + "body": [ + "{% svg material file_replace_outline %}" + ] + }, + "file_restore": { + "prefix": "svg.material.file_restore", + "description": "SVG material - file_restore", + "body": [ + "{% svg material file_restore %}" + ] + }, + "file_restore_outline": { + "prefix": "svg.material.file_restore_outline", + "description": "SVG material - file_restore_outline", + "body": [ + "{% svg material file_restore_outline %}" + ] + }, + "file_rotate_left": { + "prefix": "svg.material.file_rotate_left", + "description": "SVG material - file_rotate_left", + "body": [ + "{% svg material file_rotate_left %}" + ] + }, + "file_rotate_left_outline": { + "prefix": "svg.material.file_rotate_left_outline", + "description": "SVG material - file_rotate_left_outline", + "body": [ + "{% svg material file_rotate_left_outline %}" + ] + }, + "file_rotate_right": { + "prefix": "svg.material.file_rotate_right", + "description": "SVG material - file_rotate_right", + "body": [ + "{% svg material file_rotate_right %}" + ] + }, + "file_rotate_right_outline": { + "prefix": "svg.material.file_rotate_right_outline", + "description": "SVG material - file_rotate_right_outline", + "body": [ + "{% svg material file_rotate_right_outline %}" + ] + }, + "file_search": { + "prefix": "svg.material.file_search", + "description": "SVG material - file_search", + "body": [ + "{% svg material file_search %}" + ] + }, + "file_search_outline": { + "prefix": "svg.material.file_search_outline", + "description": "SVG material - file_search_outline", + "body": [ + "{% svg material file_search_outline %}" + ] + }, + "file_send": { + "prefix": "svg.material.file_send", + "description": "SVG material - file_send", + "body": [ + "{% svg material file_send %}" + ] + }, + "file_send_outline": { + "prefix": "svg.material.file_send_outline", + "description": "SVG material - file_send_outline", + "body": [ + "{% svg material file_send_outline %}" + ] + }, + "file_settings": { + "prefix": "svg.material.file_settings", + "description": "SVG material - file_settings", + "body": [ + "{% svg material file_settings %}" + ] + }, + "file_settings_outline": { + "prefix": "svg.material.file_settings_outline", + "description": "SVG material - file_settings_outline", + "body": [ + "{% svg material file_settings_outline %}" + ] + }, + "file_sign": { + "prefix": "svg.material.file_sign", + "description": "SVG material - file_sign", + "body": [ + "{% svg material file_sign %}" + ] + }, + "file_star": { + "prefix": "svg.material.file_star", + "description": "SVG material - file_star", + "body": [ + "{% svg material file_star %}" + ] + }, + "file_star_four_points": { + "prefix": "svg.material.file_star_four_points", + "description": "SVG material - file_star_four_points", + "body": [ + "{% svg material file_star_four_points %}" + ] + }, + "file_star_four_points_outline": { + "prefix": "svg.material.file_star_four_points_outline", + "description": "SVG material - file_star_four_points_outline", + "body": [ + "{% svg material file_star_four_points_outline %}" + ] + }, + "file_star_outline": { + "prefix": "svg.material.file_star_outline", + "description": "SVG material - file_star_outline", + "body": [ + "{% svg material file_star_outline %}" + ] + }, + "file_swap": { + "prefix": "svg.material.file_swap", + "description": "SVG material - file_swap", + "body": [ + "{% svg material file_swap %}" + ] + }, + "file_swap_outline": { + "prefix": "svg.material.file_swap_outline", + "description": "SVG material - file_swap_outline", + "body": [ + "{% svg material file_swap_outline %}" + ] + }, + "file_sync": { + "prefix": "svg.material.file_sync", + "description": "SVG material - file_sync", + "body": [ + "{% svg material file_sync %}" + ] + }, + "file_sync_outline": { + "prefix": "svg.material.file_sync_outline", + "description": "SVG material - file_sync_outline", + "body": [ + "{% svg material file_sync_outline %}" + ] + }, + "file_table": { + "prefix": "svg.material.file_table", + "description": "SVG material - file_table", + "body": [ + "{% svg material file_table %}" + ] + }, + "file_table_box": { + "prefix": "svg.material.file_table_box", + "description": "SVG material - file_table_box", + "body": [ + "{% svg material file_table_box %}" + ] + }, + "file_table_box_multiple": { + "prefix": "svg.material.file_table_box_multiple", + "description": "SVG material - file_table_box_multiple", + "body": [ + "{% svg material file_table_box_multiple %}" + ] + }, + "file_table_box_multiple_outline": { + "prefix": "svg.material.file_table_box_multiple_outline", + "description": "SVG material - file_table_box_multiple_outline", + "body": [ + "{% svg material file_table_box_multiple_outline %}" + ] + }, + "file_table_box_outline": { + "prefix": "svg.material.file_table_box_outline", + "description": "SVG material - file_table_box_outline", + "body": [ + "{% svg material file_table_box_outline %}" + ] + }, + "file_table_outline": { + "prefix": "svg.material.file_table_outline", + "description": "SVG material - file_table_outline", + "body": [ + "{% svg material file_table_outline %}" + ] + }, + "file_tree": { + "prefix": "svg.material.file_tree", + "description": "SVG material - file_tree", + "body": [ + "{% svg material file_tree %}" + ] + }, + "file_tree_outline": { + "prefix": "svg.material.file_tree_outline", + "description": "SVG material - file_tree_outline", + "body": [ + "{% svg material file_tree_outline %}" + ] + }, + "file_undo": { + "prefix": "svg.material.file_undo", + "description": "SVG material - file_undo", + "body": [ + "{% svg material file_undo %}" + ] + }, + "file_undo_outline": { + "prefix": "svg.material.file_undo_outline", + "description": "SVG material - file_undo_outline", + "body": [ + "{% svg material file_undo_outline %}" + ] + }, + "file_upload": { + "prefix": "svg.material.file_upload", + "description": "SVG material - file_upload", + "body": [ + "{% svg material file_upload %}" + ] + }, + "file_upload_outline": { + "prefix": "svg.material.file_upload_outline", + "description": "SVG material - file_upload_outline", + "body": [ + "{% svg material file_upload_outline %}" + ] + }, + "file_video": { + "prefix": "svg.material.file_video", + "description": "SVG material - file_video", + "body": [ + "{% svg material file_video %}" + ] + }, + "file_video_outline": { + "prefix": "svg.material.file_video_outline", + "description": "SVG material - file_video_outline", + "body": [ + "{% svg material file_video_outline %}" + ] + }, + "file_word": { + "prefix": "svg.material.file_word", + "description": "SVG material - file_word", + "body": [ + "{% svg material file_word %}" + ] + }, + "file_word_box": { + "prefix": "svg.material.file_word_box", + "description": "SVG material - file_word_box", + "body": [ + "{% svg material file_word_box %}" + ] + }, + "file_word_box_outline": { + "prefix": "svg.material.file_word_box_outline", + "description": "SVG material - file_word_box_outline", + "body": [ + "{% svg material file_word_box_outline %}" + ] + }, + "file_word_outline": { + "prefix": "svg.material.file_word_outline", + "description": "SVG material - file_word_outline", + "body": [ + "{% svg material file_word_outline %}" + ] + }, + "file_xml_box": { + "prefix": "svg.material.file_xml_box", + "description": "SVG material - file_xml_box", + "body": [ + "{% svg material file_xml_box %}" + ] + }, + "film": { + "prefix": "svg.material.film", + "description": "SVG material - film", + "body": [ + "{% svg material film %}" + ] + }, + "filmstrip": { + "prefix": "svg.material.filmstrip", + "description": "SVG material - filmstrip", + "body": [ + "{% svg material filmstrip %}" + ] + }, + "filmstrip_box": { + "prefix": "svg.material.filmstrip_box", + "description": "SVG material - filmstrip_box", + "body": [ + "{% svg material filmstrip_box %}" + ] + }, + "filmstrip_box_multiple": { + "prefix": "svg.material.filmstrip_box_multiple", + "description": "SVG material - filmstrip_box_multiple", + "body": [ + "{% svg material filmstrip_box_multiple %}" + ] + }, + "filmstrip_off": { + "prefix": "svg.material.filmstrip_off", + "description": "SVG material - filmstrip_off", + "body": [ + "{% svg material filmstrip_off %}" + ] + }, + "filter": { + "prefix": "svg.material.filter", + "description": "SVG material - filter", + "body": [ + "{% svg material filter %}" + ] + }, + "filter_check": { + "prefix": "svg.material.filter_check", + "description": "SVG material - filter_check", + "body": [ + "{% svg material filter_check %}" + ] + }, + "filter_check_outline": { + "prefix": "svg.material.filter_check_outline", + "description": "SVG material - filter_check_outline", + "body": [ + "{% svg material filter_check_outline %}" + ] + }, + "filter_cog": { + "prefix": "svg.material.filter_cog", + "description": "SVG material - filter_cog", + "body": [ + "{% svg material filter_cog %}" + ] + }, + "filter_cog_outline": { + "prefix": "svg.material.filter_cog_outline", + "description": "SVG material - filter_cog_outline", + "body": [ + "{% svg material filter_cog_outline %}" + ] + }, + "filter_menu": { + "prefix": "svg.material.filter_menu", + "description": "SVG material - filter_menu", + "body": [ + "{% svg material filter_menu %}" + ] + }, + "filter_menu_outline": { + "prefix": "svg.material.filter_menu_outline", + "description": "SVG material - filter_menu_outline", + "body": [ + "{% svg material filter_menu_outline %}" + ] + }, + "filter_minus": { + "prefix": "svg.material.filter_minus", + "description": "SVG material - filter_minus", + "body": [ + "{% svg material filter_minus %}" + ] + }, + "filter_minus_outline": { + "prefix": "svg.material.filter_minus_outline", + "description": "SVG material - filter_minus_outline", + "body": [ + "{% svg material filter_minus_outline %}" + ] + }, + "filter_multiple": { + "prefix": "svg.material.filter_multiple", + "description": "SVG material - filter_multiple", + "body": [ + "{% svg material filter_multiple %}" + ] + }, + "filter_multiple_outline": { + "prefix": "svg.material.filter_multiple_outline", + "description": "SVG material - filter_multiple_outline", + "body": [ + "{% svg material filter_multiple_outline %}" + ] + }, + "filter_off": { + "prefix": "svg.material.filter_off", + "description": "SVG material - filter_off", + "body": [ + "{% svg material filter_off %}" + ] + }, + "filter_off_outline": { + "prefix": "svg.material.filter_off_outline", + "description": "SVG material - filter_off_outline", + "body": [ + "{% svg material filter_off_outline %}" + ] + }, + "filter_outline": { + "prefix": "svg.material.filter_outline", + "description": "SVG material - filter_outline", + "body": [ + "{% svg material filter_outline %}" + ] + }, + "filter_plus": { + "prefix": "svg.material.filter_plus", + "description": "SVG material - filter_plus", + "body": [ + "{% svg material filter_plus %}" + ] + }, + "filter_plus_outline": { + "prefix": "svg.material.filter_plus_outline", + "description": "SVG material - filter_plus_outline", + "body": [ + "{% svg material filter_plus_outline %}" + ] + }, + "filter_remove": { + "prefix": "svg.material.filter_remove", + "description": "SVG material - filter_remove", + "body": [ + "{% svg material filter_remove %}" + ] + }, + "filter_remove_outline": { + "prefix": "svg.material.filter_remove_outline", + "description": "SVG material - filter_remove_outline", + "body": [ + "{% svg material filter_remove_outline %}" + ] + }, + "filter_settings": { + "prefix": "svg.material.filter_settings", + "description": "SVG material - filter_settings", + "body": [ + "{% svg material filter_settings %}" + ] + }, + "filter_settings_outline": { + "prefix": "svg.material.filter_settings_outline", + "description": "SVG material - filter_settings_outline", + "body": [ + "{% svg material filter_settings_outline %}" + ] + }, + "filter_variant": { + "prefix": "svg.material.filter_variant", + "description": "SVG material - filter_variant", + "body": [ + "{% svg material filter_variant %}" + ] + }, + "filter_variant_minus": { + "prefix": "svg.material.filter_variant_minus", + "description": "SVG material - filter_variant_minus", + "body": [ + "{% svg material filter_variant_minus %}" + ] + }, + "filter_variant_plus": { + "prefix": "svg.material.filter_variant_plus", + "description": "SVG material - filter_variant_plus", + "body": [ + "{% svg material filter_variant_plus %}" + ] + }, + "filter_variant_remove": { + "prefix": "svg.material.filter_variant_remove", + "description": "SVG material - filter_variant_remove", + "body": [ + "{% svg material filter_variant_remove %}" + ] + }, + "finance": { + "prefix": "svg.material.finance", + "description": "SVG material - finance", + "body": [ + "{% svg material finance %}" + ] + }, + "find_replace": { + "prefix": "svg.material.find_replace", + "description": "SVG material - find_replace", + "body": [ + "{% svg material find_replace %}" + ] + }, + "fingerprint": { + "prefix": "svg.material.fingerprint", + "description": "SVG material - fingerprint", + "body": [ + "{% svg material fingerprint %}" + ] + }, + "fingerprint_off": { + "prefix": "svg.material.fingerprint_off", + "description": "SVG material - fingerprint_off", + "body": [ + "{% svg material fingerprint_off %}" + ] + }, + "fire": { + "prefix": "svg.material.fire", + "description": "SVG material - fire", + "body": [ + "{% svg material fire %}" + ] + }, + "fire_alert": { + "prefix": "svg.material.fire_alert", + "description": "SVG material - fire_alert", + "body": [ + "{% svg material fire_alert %}" + ] + }, + "fire_circle": { + "prefix": "svg.material.fire_circle", + "description": "SVG material - fire_circle", + "body": [ + "{% svg material fire_circle %}" + ] + }, + "fire_extinguisher": { + "prefix": "svg.material.fire_extinguisher", + "description": "SVG material - fire_extinguisher", + "body": [ + "{% svg material fire_extinguisher %}" + ] + }, + "fire_hydrant": { + "prefix": "svg.material.fire_hydrant", + "description": "SVG material - fire_hydrant", + "body": [ + "{% svg material fire_hydrant %}" + ] + }, + "fire_hydrant_alert": { + "prefix": "svg.material.fire_hydrant_alert", + "description": "SVG material - fire_hydrant_alert", + "body": [ + "{% svg material fire_hydrant_alert %}" + ] + }, + "fire_hydrant_off": { + "prefix": "svg.material.fire_hydrant_off", + "description": "SVG material - fire_hydrant_off", + "body": [ + "{% svg material fire_hydrant_off %}" + ] + }, + "fire_off": { + "prefix": "svg.material.fire_off", + "description": "SVG material - fire_off", + "body": [ + "{% svg material fire_off %}" + ] + }, + "fire_station": { + "prefix": "svg.material.fire_station", + "description": "SVG material - fire_station", + "body": [ + "{% svg material fire_station %}" + ] + }, + "fire_truck": { + "prefix": "svg.material.fire_truck", + "description": "SVG material - fire_truck", + "body": [ + "{% svg material fire_truck %}" + ] + }, + "firebase": { + "prefix": "svg.material.firebase", + "description": "SVG material - firebase", + "body": [ + "{% svg material firebase %}" + ] + }, + "firefox": { + "prefix": "svg.material.firefox", + "description": "SVG material - firefox", + "body": [ + "{% svg material firefox %}" + ] + }, + "fireplace": { + "prefix": "svg.material.fireplace", + "description": "SVG material - fireplace", + "body": [ + "{% svg material fireplace %}" + ] + }, + "fireplace_off": { + "prefix": "svg.material.fireplace_off", + "description": "SVG material - fireplace_off", + "body": [ + "{% svg material fireplace_off %}" + ] + }, + "firewire": { + "prefix": "svg.material.firewire", + "description": "SVG material - firewire", + "body": [ + "{% svg material firewire %}" + ] + }, + "firework": { + "prefix": "svg.material.firework", + "description": "SVG material - firework", + "body": [ + "{% svg material firework %}" + ] + }, + "firework_off": { + "prefix": "svg.material.firework_off", + "description": "SVG material - firework_off", + "body": [ + "{% svg material firework_off %}" + ] + }, + "fish": { + "prefix": "svg.material.fish", + "description": "SVG material - fish", + "body": [ + "{% svg material fish %}" + ] + }, + "fish_off": { + "prefix": "svg.material.fish_off", + "description": "SVG material - fish_off", + "body": [ + "{% svg material fish_off %}" + ] + }, + "fishbowl": { + "prefix": "svg.material.fishbowl", + "description": "SVG material - fishbowl", + "body": [ + "{% svg material fishbowl %}" + ] + }, + "fishbowl_outline": { + "prefix": "svg.material.fishbowl_outline", + "description": "SVG material - fishbowl_outline", + "body": [ + "{% svg material fishbowl_outline %}" + ] + }, + "fit_to_page": { + "prefix": "svg.material.fit_to_page", + "description": "SVG material - fit_to_page", + "body": [ + "{% svg material fit_to_page %}" + ] + }, + "fit_to_page_outline": { + "prefix": "svg.material.fit_to_page_outline", + "description": "SVG material - fit_to_page_outline", + "body": [ + "{% svg material fit_to_page_outline %}" + ] + }, + "fit_to_screen": { + "prefix": "svg.material.fit_to_screen", + "description": "SVG material - fit_to_screen", + "body": [ + "{% svg material fit_to_screen %}" + ] + }, + "fit_to_screen_outline": { + "prefix": "svg.material.fit_to_screen_outline", + "description": "SVG material - fit_to_screen_outline", + "body": [ + "{% svg material fit_to_screen_outline %}" + ] + }, + "flag": { + "prefix": "svg.material.flag", + "description": "SVG material - flag", + "body": [ + "{% svg material flag %}" + ] + }, + "flag_checkered": { + "prefix": "svg.material.flag_checkered", + "description": "SVG material - flag_checkered", + "body": [ + "{% svg material flag_checkered %}" + ] + }, + "flag_minus": { + "prefix": "svg.material.flag_minus", + "description": "SVG material - flag_minus", + "body": [ + "{% svg material flag_minus %}" + ] + }, + "flag_minus_outline": { + "prefix": "svg.material.flag_minus_outline", + "description": "SVG material - flag_minus_outline", + "body": [ + "{% svg material flag_minus_outline %}" + ] + }, + "flag_off": { + "prefix": "svg.material.flag_off", + "description": "SVG material - flag_off", + "body": [ + "{% svg material flag_off %}" + ] + }, + "flag_off_outline": { + "prefix": "svg.material.flag_off_outline", + "description": "SVG material - flag_off_outline", + "body": [ + "{% svg material flag_off_outline %}" + ] + }, + "flag_outline": { + "prefix": "svg.material.flag_outline", + "description": "SVG material - flag_outline", + "body": [ + "{% svg material flag_outline %}" + ] + }, + "flag_plus": { + "prefix": "svg.material.flag_plus", + "description": "SVG material - flag_plus", + "body": [ + "{% svg material flag_plus %}" + ] + }, + "flag_plus_outline": { + "prefix": "svg.material.flag_plus_outline", + "description": "SVG material - flag_plus_outline", + "body": [ + "{% svg material flag_plus_outline %}" + ] + }, + "flag_remove": { + "prefix": "svg.material.flag_remove", + "description": "SVG material - flag_remove", + "body": [ + "{% svg material flag_remove %}" + ] + }, + "flag_remove_outline": { + "prefix": "svg.material.flag_remove_outline", + "description": "SVG material - flag_remove_outline", + "body": [ + "{% svg material flag_remove_outline %}" + ] + }, + "flag_triangle": { + "prefix": "svg.material.flag_triangle", + "description": "SVG material - flag_triangle", + "body": [ + "{% svg material flag_triangle %}" + ] + }, + "flag_variant": { + "prefix": "svg.material.flag_variant", + "description": "SVG material - flag_variant", + "body": [ + "{% svg material flag_variant %}" + ] + }, + "flag_variant_minus": { + "prefix": "svg.material.flag_variant_minus", + "description": "SVG material - flag_variant_minus", + "body": [ + "{% svg material flag_variant_minus %}" + ] + }, + "flag_variant_minus_outline": { + "prefix": "svg.material.flag_variant_minus_outline", + "description": "SVG material - flag_variant_minus_outline", + "body": [ + "{% svg material flag_variant_minus_outline %}" + ] + }, + "flag_variant_off": { + "prefix": "svg.material.flag_variant_off", + "description": "SVG material - flag_variant_off", + "body": [ + "{% svg material flag_variant_off %}" + ] + }, + "flag_variant_off_outline": { + "prefix": "svg.material.flag_variant_off_outline", + "description": "SVG material - flag_variant_off_outline", + "body": [ + "{% svg material flag_variant_off_outline %}" + ] + }, + "flag_variant_outline": { + "prefix": "svg.material.flag_variant_outline", + "description": "SVG material - flag_variant_outline", + "body": [ + "{% svg material flag_variant_outline %}" + ] + }, + "flag_variant_plus": { + "prefix": "svg.material.flag_variant_plus", + "description": "SVG material - flag_variant_plus", + "body": [ + "{% svg material flag_variant_plus %}" + ] + }, + "flag_variant_plus_outline": { + "prefix": "svg.material.flag_variant_plus_outline", + "description": "SVG material - flag_variant_plus_outline", + "body": [ + "{% svg material flag_variant_plus_outline %}" + ] + }, + "flag_variant_remove": { + "prefix": "svg.material.flag_variant_remove", + "description": "SVG material - flag_variant_remove", + "body": [ + "{% svg material flag_variant_remove %}" + ] + }, + "flag_variant_remove_outline": { + "prefix": "svg.material.flag_variant_remove_outline", + "description": "SVG material - flag_variant_remove_outline", + "body": [ + "{% svg material flag_variant_remove_outline %}" + ] + }, + "flare": { + "prefix": "svg.material.flare", + "description": "SVG material - flare", + "body": [ + "{% svg material flare %}" + ] + }, + "flash": { + "prefix": "svg.material.flash", + "description": "SVG material - flash", + "body": [ + "{% svg material flash %}" + ] + }, + "flash_alert": { + "prefix": "svg.material.flash_alert", + "description": "SVG material - flash_alert", + "body": [ + "{% svg material flash_alert %}" + ] + }, + "flash_alert_outline": { + "prefix": "svg.material.flash_alert_outline", + "description": "SVG material - flash_alert_outline", + "body": [ + "{% svg material flash_alert_outline %}" + ] + }, + "flash_auto": { + "prefix": "svg.material.flash_auto", + "description": "SVG material - flash_auto", + "body": [ + "{% svg material flash_auto %}" + ] + }, + "flash_off": { + "prefix": "svg.material.flash_off", + "description": "SVG material - flash_off", + "body": [ + "{% svg material flash_off %}" + ] + }, + "flash_off_outline": { + "prefix": "svg.material.flash_off_outline", + "description": "SVG material - flash_off_outline", + "body": [ + "{% svg material flash_off_outline %}" + ] + }, + "flash_outline": { + "prefix": "svg.material.flash_outline", + "description": "SVG material - flash_outline", + "body": [ + "{% svg material flash_outline %}" + ] + }, + "flash_red_eye": { + "prefix": "svg.material.flash_red_eye", + "description": "SVG material - flash_red_eye", + "body": [ + "{% svg material flash_red_eye %}" + ] + }, + "flash_triangle": { + "prefix": "svg.material.flash_triangle", + "description": "SVG material - flash_triangle", + "body": [ + "{% svg material flash_triangle %}" + ] + }, + "flash_triangle_outline": { + "prefix": "svg.material.flash_triangle_outline", + "description": "SVG material - flash_triangle_outline", + "body": [ + "{% svg material flash_triangle_outline %}" + ] + }, + "flashlight": { + "prefix": "svg.material.flashlight", + "description": "SVG material - flashlight", + "body": [ + "{% svg material flashlight %}" + ] + }, + "flashlight_off": { + "prefix": "svg.material.flashlight_off", + "description": "SVG material - flashlight_off", + "body": [ + "{% svg material flashlight_off %}" + ] + }, + "flask": { + "prefix": "svg.material.flask", + "description": "SVG material - flask", + "body": [ + "{% svg material flask %}" + ] + }, + "flask_empty": { + "prefix": "svg.material.flask_empty", + "description": "SVG material - flask_empty", + "body": [ + "{% svg material flask_empty %}" + ] + }, + "flask_empty_minus": { + "prefix": "svg.material.flask_empty_minus", + "description": "SVG material - flask_empty_minus", + "body": [ + "{% svg material flask_empty_minus %}" + ] + }, + "flask_empty_minus_outline": { + "prefix": "svg.material.flask_empty_minus_outline", + "description": "SVG material - flask_empty_minus_outline", + "body": [ + "{% svg material flask_empty_minus_outline %}" + ] + }, + "flask_empty_off": { + "prefix": "svg.material.flask_empty_off", + "description": "SVG material - flask_empty_off", + "body": [ + "{% svg material flask_empty_off %}" + ] + }, + "flask_empty_off_outline": { + "prefix": "svg.material.flask_empty_off_outline", + "description": "SVG material - flask_empty_off_outline", + "body": [ + "{% svg material flask_empty_off_outline %}" + ] + }, + "flask_empty_outline": { + "prefix": "svg.material.flask_empty_outline", + "description": "SVG material - flask_empty_outline", + "body": [ + "{% svg material flask_empty_outline %}" + ] + }, + "flask_empty_plus": { + "prefix": "svg.material.flask_empty_plus", + "description": "SVG material - flask_empty_plus", + "body": [ + "{% svg material flask_empty_plus %}" + ] + }, + "flask_empty_plus_outline": { + "prefix": "svg.material.flask_empty_plus_outline", + "description": "SVG material - flask_empty_plus_outline", + "body": [ + "{% svg material flask_empty_plus_outline %}" + ] + }, + "flask_empty_remove": { + "prefix": "svg.material.flask_empty_remove", + "description": "SVG material - flask_empty_remove", + "body": [ + "{% svg material flask_empty_remove %}" + ] + }, + "flask_empty_remove_outline": { + "prefix": "svg.material.flask_empty_remove_outline", + "description": "SVG material - flask_empty_remove_outline", + "body": [ + "{% svg material flask_empty_remove_outline %}" + ] + }, + "flask_minus": { + "prefix": "svg.material.flask_minus", + "description": "SVG material - flask_minus", + "body": [ + "{% svg material flask_minus %}" + ] + }, + "flask_minus_outline": { + "prefix": "svg.material.flask_minus_outline", + "description": "SVG material - flask_minus_outline", + "body": [ + "{% svg material flask_minus_outline %}" + ] + }, + "flask_off": { + "prefix": "svg.material.flask_off", + "description": "SVG material - flask_off", + "body": [ + "{% svg material flask_off %}" + ] + }, + "flask_off_outline": { + "prefix": "svg.material.flask_off_outline", + "description": "SVG material - flask_off_outline", + "body": [ + "{% svg material flask_off_outline %}" + ] + }, + "flask_outline": { + "prefix": "svg.material.flask_outline", + "description": "SVG material - flask_outline", + "body": [ + "{% svg material flask_outline %}" + ] + }, + "flask_plus": { + "prefix": "svg.material.flask_plus", + "description": "SVG material - flask_plus", + "body": [ + "{% svg material flask_plus %}" + ] + }, + "flask_plus_outline": { + "prefix": "svg.material.flask_plus_outline", + "description": "SVG material - flask_plus_outline", + "body": [ + "{% svg material flask_plus_outline %}" + ] + }, + "flask_remove": { + "prefix": "svg.material.flask_remove", + "description": "SVG material - flask_remove", + "body": [ + "{% svg material flask_remove %}" + ] + }, + "flask_remove_outline": { + "prefix": "svg.material.flask_remove_outline", + "description": "SVG material - flask_remove_outline", + "body": [ + "{% svg material flask_remove_outline %}" + ] + }, + "flask_round_bottom": { + "prefix": "svg.material.flask_round_bottom", + "description": "SVG material - flask_round_bottom", + "body": [ + "{% svg material flask_round_bottom %}" + ] + }, + "flask_round_bottom_empty": { + "prefix": "svg.material.flask_round_bottom_empty", + "description": "SVG material - flask_round_bottom_empty", + "body": [ + "{% svg material flask_round_bottom_empty %}" + ] + }, + "flask_round_bottom_empty_outline": { + "prefix": "svg.material.flask_round_bottom_empty_outline", + "description": "SVG material - flask_round_bottom_empty_outline", + "body": [ + "{% svg material flask_round_bottom_empty_outline %}" + ] + }, + "flask_round_bottom_outline": { + "prefix": "svg.material.flask_round_bottom_outline", + "description": "SVG material - flask_round_bottom_outline", + "body": [ + "{% svg material flask_round_bottom_outline %}" + ] + }, + "fleur_de_lis": { + "prefix": "svg.material.fleur_de_lis", + "description": "SVG material - fleur_de_lis", + "body": [ + "{% svg material fleur_de_lis %}" + ] + }, + "flip_horizontal": { + "prefix": "svg.material.flip_horizontal", + "description": "SVG material - flip_horizontal", + "body": [ + "{% svg material flip_horizontal %}" + ] + }, + "flip_to_back": { + "prefix": "svg.material.flip_to_back", + "description": "SVG material - flip_to_back", + "body": [ + "{% svg material flip_to_back %}" + ] + }, + "flip_to_front": { + "prefix": "svg.material.flip_to_front", + "description": "SVG material - flip_to_front", + "body": [ + "{% svg material flip_to_front %}" + ] + }, + "flip_vertical": { + "prefix": "svg.material.flip_vertical", + "description": "SVG material - flip_vertical", + "body": [ + "{% svg material flip_vertical %}" + ] + }, + "floor_lamp": { + "prefix": "svg.material.floor_lamp", + "description": "SVG material - floor_lamp", + "body": [ + "{% svg material floor_lamp %}" + ] + }, + "floor_lamp_dual": { + "prefix": "svg.material.floor_lamp_dual", + "description": "SVG material - floor_lamp_dual", + "body": [ + "{% svg material floor_lamp_dual %}" + ] + }, + "floor_lamp_dual_outline": { + "prefix": "svg.material.floor_lamp_dual_outline", + "description": "SVG material - floor_lamp_dual_outline", + "body": [ + "{% svg material floor_lamp_dual_outline %}" + ] + }, + "floor_lamp_outline": { + "prefix": "svg.material.floor_lamp_outline", + "description": "SVG material - floor_lamp_outline", + "body": [ + "{% svg material floor_lamp_outline %}" + ] + }, + "floor_lamp_torchiere": { + "prefix": "svg.material.floor_lamp_torchiere", + "description": "SVG material - floor_lamp_torchiere", + "body": [ + "{% svg material floor_lamp_torchiere %}" + ] + }, + "floor_lamp_torchiere_outline": { + "prefix": "svg.material.floor_lamp_torchiere_outline", + "description": "SVG material - floor_lamp_torchiere_outline", + "body": [ + "{% svg material floor_lamp_torchiere_outline %}" + ] + }, + "floor_lamp_torchiere_variant": { + "prefix": "svg.material.floor_lamp_torchiere_variant", + "description": "SVG material - floor_lamp_torchiere_variant", + "body": [ + "{% svg material floor_lamp_torchiere_variant %}" + ] + }, + "floor_lamp_torchiere_variant_outline": { + "prefix": "svg.material.floor_lamp_torchiere_variant_outline", + "description": "SVG material - floor_lamp_torchiere_variant_outline", + "body": [ + "{% svg material floor_lamp_torchiere_variant_outline %}" + ] + }, + "floor_plan": { + "prefix": "svg.material.floor_plan", + "description": "SVG material - floor_plan", + "body": [ + "{% svg material floor_plan %}" + ] + }, + "floppy": { + "prefix": "svg.material.floppy", + "description": "SVG material - floppy", + "body": [ + "{% svg material floppy %}" + ] + }, + "floppy_variant": { + "prefix": "svg.material.floppy_variant", + "description": "SVG material - floppy_variant", + "body": [ + "{% svg material floppy_variant %}" + ] + }, + "flower": { + "prefix": "svg.material.flower", + "description": "SVG material - flower", + "body": [ + "{% svg material flower %}" + ] + }, + "flower_outline": { + "prefix": "svg.material.flower_outline", + "description": "SVG material - flower_outline", + "body": [ + "{% svg material flower_outline %}" + ] + }, + "flower_pollen": { + "prefix": "svg.material.flower_pollen", + "description": "SVG material - flower_pollen", + "body": [ + "{% svg material flower_pollen %}" + ] + }, + "flower_pollen_outline": { + "prefix": "svg.material.flower_pollen_outline", + "description": "SVG material - flower_pollen_outline", + "body": [ + "{% svg material flower_pollen_outline %}" + ] + }, + "flower_poppy": { + "prefix": "svg.material.flower_poppy", + "description": "SVG material - flower_poppy", + "body": [ + "{% svg material flower_poppy %}" + ] + }, + "flower_tulip": { + "prefix": "svg.material.flower_tulip", + "description": "SVG material - flower_tulip", + "body": [ + "{% svg material flower_tulip %}" + ] + }, + "flower_tulip_outline": { + "prefix": "svg.material.flower_tulip_outline", + "description": "SVG material - flower_tulip_outline", + "body": [ + "{% svg material flower_tulip_outline %}" + ] + }, + "focus_auto": { + "prefix": "svg.material.focus_auto", + "description": "SVG material - focus_auto", + "body": [ + "{% svg material focus_auto %}" + ] + }, + "focus_field": { + "prefix": "svg.material.focus_field", + "description": "SVG material - focus_field", + "body": [ + "{% svg material focus_field %}" + ] + }, + "focus_field_horizontal": { + "prefix": "svg.material.focus_field_horizontal", + "description": "SVG material - focus_field_horizontal", + "body": [ + "{% svg material focus_field_horizontal %}" + ] + }, + "focus_field_vertical": { + "prefix": "svg.material.focus_field_vertical", + "description": "SVG material - focus_field_vertical", + "body": [ + "{% svg material focus_field_vertical %}" + ] + }, + "folder": { + "prefix": "svg.material.folder", + "description": "SVG material - folder", + "body": [ + "{% svg material folder %}" + ] + }, + "folder_account": { + "prefix": "svg.material.folder_account", + "description": "SVG material - folder_account", + "body": [ + "{% svg material folder_account %}" + ] + }, + "folder_account_outline": { + "prefix": "svg.material.folder_account_outline", + "description": "SVG material - folder_account_outline", + "body": [ + "{% svg material folder_account_outline %}" + ] + }, + "folder_alert": { + "prefix": "svg.material.folder_alert", + "description": "SVG material - folder_alert", + "body": [ + "{% svg material folder_alert %}" + ] + }, + "folder_alert_outline": { + "prefix": "svg.material.folder_alert_outline", + "description": "SVG material - folder_alert_outline", + "body": [ + "{% svg material folder_alert_outline %}" + ] + }, + "folder_arrow_down": { + "prefix": "svg.material.folder_arrow_down", + "description": "SVG material - folder_arrow_down", + "body": [ + "{% svg material folder_arrow_down %}" + ] + }, + "folder_arrow_down_outline": { + "prefix": "svg.material.folder_arrow_down_outline", + "description": "SVG material - folder_arrow_down_outline", + "body": [ + "{% svg material folder_arrow_down_outline %}" + ] + }, + "folder_arrow_left": { + "prefix": "svg.material.folder_arrow_left", + "description": "SVG material - folder_arrow_left", + "body": [ + "{% svg material folder_arrow_left %}" + ] + }, + "folder_arrow_left_outline": { + "prefix": "svg.material.folder_arrow_left_outline", + "description": "SVG material - folder_arrow_left_outline", + "body": [ + "{% svg material folder_arrow_left_outline %}" + ] + }, + "folder_arrow_left_right": { + "prefix": "svg.material.folder_arrow_left_right", + "description": "SVG material - folder_arrow_left_right", + "body": [ + "{% svg material folder_arrow_left_right %}" + ] + }, + "folder_arrow_left_right_outline": { + "prefix": "svg.material.folder_arrow_left_right_outline", + "description": "SVG material - folder_arrow_left_right_outline", + "body": [ + "{% svg material folder_arrow_left_right_outline %}" + ] + }, + "folder_arrow_right": { + "prefix": "svg.material.folder_arrow_right", + "description": "SVG material - folder_arrow_right", + "body": [ + "{% svg material folder_arrow_right %}" + ] + }, + "folder_arrow_right_outline": { + "prefix": "svg.material.folder_arrow_right_outline", + "description": "SVG material - folder_arrow_right_outline", + "body": [ + "{% svg material folder_arrow_right_outline %}" + ] + }, + "folder_arrow_up": { + "prefix": "svg.material.folder_arrow_up", + "description": "SVG material - folder_arrow_up", + "body": [ + "{% svg material folder_arrow_up %}" + ] + }, + "folder_arrow_up_down": { + "prefix": "svg.material.folder_arrow_up_down", + "description": "SVG material - folder_arrow_up_down", + "body": [ + "{% svg material folder_arrow_up_down %}" + ] + }, + "folder_arrow_up_down_outline": { + "prefix": "svg.material.folder_arrow_up_down_outline", + "description": "SVG material - folder_arrow_up_down_outline", + "body": [ + "{% svg material folder_arrow_up_down_outline %}" + ] + }, + "folder_arrow_up_outline": { + "prefix": "svg.material.folder_arrow_up_outline", + "description": "SVG material - folder_arrow_up_outline", + "body": [ + "{% svg material folder_arrow_up_outline %}" + ] + }, + "folder_cancel": { + "prefix": "svg.material.folder_cancel", + "description": "SVG material - folder_cancel", + "body": [ + "{% svg material folder_cancel %}" + ] + }, + "folder_cancel_outline": { + "prefix": "svg.material.folder_cancel_outline", + "description": "SVG material - folder_cancel_outline", + "body": [ + "{% svg material folder_cancel_outline %}" + ] + }, + "folder_check": { + "prefix": "svg.material.folder_check", + "description": "SVG material - folder_check", + "body": [ + "{% svg material folder_check %}" + ] + }, + "folder_check_outline": { + "prefix": "svg.material.folder_check_outline", + "description": "SVG material - folder_check_outline", + "body": [ + "{% svg material folder_check_outline %}" + ] + }, + "folder_clock": { + "prefix": "svg.material.folder_clock", + "description": "SVG material - folder_clock", + "body": [ + "{% svg material folder_clock %}" + ] + }, + "folder_clock_outline": { + "prefix": "svg.material.folder_clock_outline", + "description": "SVG material - folder_clock_outline", + "body": [ + "{% svg material folder_clock_outline %}" + ] + }, + "folder_cog": { + "prefix": "svg.material.folder_cog", + "description": "SVG material - folder_cog", + "body": [ + "{% svg material folder_cog %}" + ] + }, + "folder_cog_outline": { + "prefix": "svg.material.folder_cog_outline", + "description": "SVG material - folder_cog_outline", + "body": [ + "{% svg material folder_cog_outline %}" + ] + }, + "folder_download": { + "prefix": "svg.material.folder_download", + "description": "SVG material - folder_download", + "body": [ + "{% svg material folder_download %}" + ] + }, + "folder_download_outline": { + "prefix": "svg.material.folder_download_outline", + "description": "SVG material - folder_download_outline", + "body": [ + "{% svg material folder_download_outline %}" + ] + }, + "folder_edit": { + "prefix": "svg.material.folder_edit", + "description": "SVG material - folder_edit", + "body": [ + "{% svg material folder_edit %}" + ] + }, + "folder_edit_outline": { + "prefix": "svg.material.folder_edit_outline", + "description": "SVG material - folder_edit_outline", + "body": [ + "{% svg material folder_edit_outline %}" + ] + }, + "folder_eye": { + "prefix": "svg.material.folder_eye", + "description": "SVG material - folder_eye", + "body": [ + "{% svg material folder_eye %}" + ] + }, + "folder_eye_outline": { + "prefix": "svg.material.folder_eye_outline", + "description": "SVG material - folder_eye_outline", + "body": [ + "{% svg material folder_eye_outline %}" + ] + }, + "folder_file": { + "prefix": "svg.material.folder_file", + "description": "SVG material - folder_file", + "body": [ + "{% svg material folder_file %}" + ] + }, + "folder_file_outline": { + "prefix": "svg.material.folder_file_outline", + "description": "SVG material - folder_file_outline", + "body": [ + "{% svg material folder_file_outline %}" + ] + }, + "folder_google_drive": { + "prefix": "svg.material.folder_google_drive", + "description": "SVG material - folder_google_drive", + "body": [ + "{% svg material folder_google_drive %}" + ] + }, + "folder_heart": { + "prefix": "svg.material.folder_heart", + "description": "SVG material - folder_heart", + "body": [ + "{% svg material folder_heart %}" + ] + }, + "folder_heart_outline": { + "prefix": "svg.material.folder_heart_outline", + "description": "SVG material - folder_heart_outline", + "body": [ + "{% svg material folder_heart_outline %}" + ] + }, + "folder_hidden": { + "prefix": "svg.material.folder_hidden", + "description": "SVG material - folder_hidden", + "body": [ + "{% svg material folder_hidden %}" + ] + }, + "folder_home": { + "prefix": "svg.material.folder_home", + "description": "SVG material - folder_home", + "body": [ + "{% svg material folder_home %}" + ] + }, + "folder_home_outline": { + "prefix": "svg.material.folder_home_outline", + "description": "SVG material - folder_home_outline", + "body": [ + "{% svg material folder_home_outline %}" + ] + }, + "folder_image": { + "prefix": "svg.material.folder_image", + "description": "SVG material - folder_image", + "body": [ + "{% svg material folder_image %}" + ] + }, + "folder_information": { + "prefix": "svg.material.folder_information", + "description": "SVG material - folder_information", + "body": [ + "{% svg material folder_information %}" + ] + }, + "folder_information_outline": { + "prefix": "svg.material.folder_information_outline", + "description": "SVG material - folder_information_outline", + "body": [ + "{% svg material folder_information_outline %}" + ] + }, + "folder_key": { + "prefix": "svg.material.folder_key", + "description": "SVG material - folder_key", + "body": [ + "{% svg material folder_key %}" + ] + }, + "folder_key_network": { + "prefix": "svg.material.folder_key_network", + "description": "SVG material - folder_key_network", + "body": [ + "{% svg material folder_key_network %}" + ] + }, + "folder_key_network_outline": { + "prefix": "svg.material.folder_key_network_outline", + "description": "SVG material - folder_key_network_outline", + "body": [ + "{% svg material folder_key_network_outline %}" + ] + }, + "folder_key_outline": { + "prefix": "svg.material.folder_key_outline", + "description": "SVG material - folder_key_outline", + "body": [ + "{% svg material folder_key_outline %}" + ] + }, + "folder_lock": { + "prefix": "svg.material.folder_lock", + "description": "SVG material - folder_lock", + "body": [ + "{% svg material folder_lock %}" + ] + }, + "folder_lock_open": { + "prefix": "svg.material.folder_lock_open", + "description": "SVG material - folder_lock_open", + "body": [ + "{% svg material folder_lock_open %}" + ] + }, + "folder_lock_open_outline": { + "prefix": "svg.material.folder_lock_open_outline", + "description": "SVG material - folder_lock_open_outline", + "body": [ + "{% svg material folder_lock_open_outline %}" + ] + }, + "folder_lock_outline": { + "prefix": "svg.material.folder_lock_outline", + "description": "SVG material - folder_lock_outline", + "body": [ + "{% svg material folder_lock_outline %}" + ] + }, + "folder_marker": { + "prefix": "svg.material.folder_marker", + "description": "SVG material - folder_marker", + "body": [ + "{% svg material folder_marker %}" + ] + }, + "folder_marker_outline": { + "prefix": "svg.material.folder_marker_outline", + "description": "SVG material - folder_marker_outline", + "body": [ + "{% svg material folder_marker_outline %}" + ] + }, + "folder_minus": { + "prefix": "svg.material.folder_minus", + "description": "SVG material - folder_minus", + "body": [ + "{% svg material folder_minus %}" + ] + }, + "folder_minus_outline": { + "prefix": "svg.material.folder_minus_outline", + "description": "SVG material - folder_minus_outline", + "body": [ + "{% svg material folder_minus_outline %}" + ] + }, + "folder_move": { + "prefix": "svg.material.folder_move", + "description": "SVG material - folder_move", + "body": [ + "{% svg material folder_move %}" + ] + }, + "folder_move_outline": { + "prefix": "svg.material.folder_move_outline", + "description": "SVG material - folder_move_outline", + "body": [ + "{% svg material folder_move_outline %}" + ] + }, + "folder_multiple": { + "prefix": "svg.material.folder_multiple", + "description": "SVG material - folder_multiple", + "body": [ + "{% svg material folder_multiple %}" + ] + }, + "folder_multiple_image": { + "prefix": "svg.material.folder_multiple_image", + "description": "SVG material - folder_multiple_image", + "body": [ + "{% svg material folder_multiple_image %}" + ] + }, + "folder_multiple_outline": { + "prefix": "svg.material.folder_multiple_outline", + "description": "SVG material - folder_multiple_outline", + "body": [ + "{% svg material folder_multiple_outline %}" + ] + }, + "folder_multiple_plus": { + "prefix": "svg.material.folder_multiple_plus", + "description": "SVG material - folder_multiple_plus", + "body": [ + "{% svg material folder_multiple_plus %}" + ] + }, + "folder_multiple_plus_outline": { + "prefix": "svg.material.folder_multiple_plus_outline", + "description": "SVG material - folder_multiple_plus_outline", + "body": [ + "{% svg material folder_multiple_plus_outline %}" + ] + }, + "folder_music": { + "prefix": "svg.material.folder_music", + "description": "SVG material - folder_music", + "body": [ + "{% svg material folder_music %}" + ] + }, + "folder_music_outline": { + "prefix": "svg.material.folder_music_outline", + "description": "SVG material - folder_music_outline", + "body": [ + "{% svg material folder_music_outline %}" + ] + }, + "folder_network": { + "prefix": "svg.material.folder_network", + "description": "SVG material - folder_network", + "body": [ + "{% svg material folder_network %}" + ] + }, + "folder_network_outline": { + "prefix": "svg.material.folder_network_outline", + "description": "SVG material - folder_network_outline", + "body": [ + "{% svg material folder_network_outline %}" + ] + }, + "folder_off": { + "prefix": "svg.material.folder_off", + "description": "SVG material - folder_off", + "body": [ + "{% svg material folder_off %}" + ] + }, + "folder_off_outline": { + "prefix": "svg.material.folder_off_outline", + "description": "SVG material - folder_off_outline", + "body": [ + "{% svg material folder_off_outline %}" + ] + }, + "folder_open": { + "prefix": "svg.material.folder_open", + "description": "SVG material - folder_open", + "body": [ + "{% svg material folder_open %}" + ] + }, + "folder_open_outline": { + "prefix": "svg.material.folder_open_outline", + "description": "SVG material - folder_open_outline", + "body": [ + "{% svg material folder_open_outline %}" + ] + }, + "folder_outline": { + "prefix": "svg.material.folder_outline", + "description": "SVG material - folder_outline", + "body": [ + "{% svg material folder_outline %}" + ] + }, + "folder_play": { + "prefix": "svg.material.folder_play", + "description": "SVG material - folder_play", + "body": [ + "{% svg material folder_play %}" + ] + }, + "folder_play_outline": { + "prefix": "svg.material.folder_play_outline", + "description": "SVG material - folder_play_outline", + "body": [ + "{% svg material folder_play_outline %}" + ] + }, + "folder_plus": { + "prefix": "svg.material.folder_plus", + "description": "SVG material - folder_plus", + "body": [ + "{% svg material folder_plus %}" + ] + }, + "folder_plus_outline": { + "prefix": "svg.material.folder_plus_outline", + "description": "SVG material - folder_plus_outline", + "body": [ + "{% svg material folder_plus_outline %}" + ] + }, + "folder_pound": { + "prefix": "svg.material.folder_pound", + "description": "SVG material - folder_pound", + "body": [ + "{% svg material folder_pound %}" + ] + }, + "folder_pound_outline": { + "prefix": "svg.material.folder_pound_outline", + "description": "SVG material - folder_pound_outline", + "body": [ + "{% svg material folder_pound_outline %}" + ] + }, + "folder_question": { + "prefix": "svg.material.folder_question", + "description": "SVG material - folder_question", + "body": [ + "{% svg material folder_question %}" + ] + }, + "folder_question_outline": { + "prefix": "svg.material.folder_question_outline", + "description": "SVG material - folder_question_outline", + "body": [ + "{% svg material folder_question_outline %}" + ] + }, + "folder_refresh": { + "prefix": "svg.material.folder_refresh", + "description": "SVG material - folder_refresh", + "body": [ + "{% svg material folder_refresh %}" + ] + }, + "folder_refresh_outline": { + "prefix": "svg.material.folder_refresh_outline", + "description": "SVG material - folder_refresh_outline", + "body": [ + "{% svg material folder_refresh_outline %}" + ] + }, + "folder_remove": { + "prefix": "svg.material.folder_remove", + "description": "SVG material - folder_remove", + "body": [ + "{% svg material folder_remove %}" + ] + }, + "folder_remove_outline": { + "prefix": "svg.material.folder_remove_outline", + "description": "SVG material - folder_remove_outline", + "body": [ + "{% svg material folder_remove_outline %}" + ] + }, + "folder_search": { + "prefix": "svg.material.folder_search", + "description": "SVG material - folder_search", + "body": [ + "{% svg material folder_search %}" + ] + }, + "folder_search_outline": { + "prefix": "svg.material.folder_search_outline", + "description": "SVG material - folder_search_outline", + "body": [ + "{% svg material folder_search_outline %}" + ] + }, + "folder_settings": { + "prefix": "svg.material.folder_settings", + "description": "SVG material - folder_settings", + "body": [ + "{% svg material folder_settings %}" + ] + }, + "folder_settings_outline": { + "prefix": "svg.material.folder_settings_outline", + "description": "SVG material - folder_settings_outline", + "body": [ + "{% svg material folder_settings_outline %}" + ] + }, + "folder_star": { + "prefix": "svg.material.folder_star", + "description": "SVG material - folder_star", + "body": [ + "{% svg material folder_star %}" + ] + }, + "folder_star_multiple": { + "prefix": "svg.material.folder_star_multiple", + "description": "SVG material - folder_star_multiple", + "body": [ + "{% svg material folder_star_multiple %}" + ] + }, + "folder_star_multiple_outline": { + "prefix": "svg.material.folder_star_multiple_outline", + "description": "SVG material - folder_star_multiple_outline", + "body": [ + "{% svg material folder_star_multiple_outline %}" + ] + }, + "folder_star_outline": { + "prefix": "svg.material.folder_star_outline", + "description": "SVG material - folder_star_outline", + "body": [ + "{% svg material folder_star_outline %}" + ] + }, + "folder_swap": { + "prefix": "svg.material.folder_swap", + "description": "SVG material - folder_swap", + "body": [ + "{% svg material folder_swap %}" + ] + }, + "folder_swap_outline": { + "prefix": "svg.material.folder_swap_outline", + "description": "SVG material - folder_swap_outline", + "body": [ + "{% svg material folder_swap_outline %}" + ] + }, + "folder_sync": { + "prefix": "svg.material.folder_sync", + "description": "SVG material - folder_sync", + "body": [ + "{% svg material folder_sync %}" + ] + }, + "folder_sync_outline": { + "prefix": "svg.material.folder_sync_outline", + "description": "SVG material - folder_sync_outline", + "body": [ + "{% svg material folder_sync_outline %}" + ] + }, + "folder_table": { + "prefix": "svg.material.folder_table", + "description": "SVG material - folder_table", + "body": [ + "{% svg material folder_table %}" + ] + }, + "folder_table_outline": { + "prefix": "svg.material.folder_table_outline", + "description": "SVG material - folder_table_outline", + "body": [ + "{% svg material folder_table_outline %}" + ] + }, + "folder_text": { + "prefix": "svg.material.folder_text", + "description": "SVG material - folder_text", + "body": [ + "{% svg material folder_text %}" + ] + }, + "folder_text_outline": { + "prefix": "svg.material.folder_text_outline", + "description": "SVG material - folder_text_outline", + "body": [ + "{% svg material folder_text_outline %}" + ] + }, + "folder_upload": { + "prefix": "svg.material.folder_upload", + "description": "SVG material - folder_upload", + "body": [ + "{% svg material folder_upload %}" + ] + }, + "folder_upload_outline": { + "prefix": "svg.material.folder_upload_outline", + "description": "SVG material - folder_upload_outline", + "body": [ + "{% svg material folder_upload_outline %}" + ] + }, + "folder_wrench": { + "prefix": "svg.material.folder_wrench", + "description": "SVG material - folder_wrench", + "body": [ + "{% svg material folder_wrench %}" + ] + }, + "folder_wrench_outline": { + "prefix": "svg.material.folder_wrench_outline", + "description": "SVG material - folder_wrench_outline", + "body": [ + "{% svg material folder_wrench_outline %}" + ] + }, + "folder_zip": { + "prefix": "svg.material.folder_zip", + "description": "SVG material - folder_zip", + "body": [ + "{% svg material folder_zip %}" + ] + }, + "folder_zip_outline": { + "prefix": "svg.material.folder_zip_outline", + "description": "SVG material - folder_zip_outline", + "body": [ + "{% svg material folder_zip_outline %}" + ] + }, + "font_awesome": { + "prefix": "svg.material.font_awesome", + "description": "SVG material - font_awesome", + "body": [ + "{% svg material font_awesome %}" + ] + }, + "food": { + "prefix": "svg.material.food", + "description": "SVG material - food", + "body": [ + "{% svg material food %}" + ] + }, + "food_apple": { + "prefix": "svg.material.food_apple", + "description": "SVG material - food_apple", + "body": [ + "{% svg material food_apple %}" + ] + }, + "food_apple_outline": { + "prefix": "svg.material.food_apple_outline", + "description": "SVG material - food_apple_outline", + "body": [ + "{% svg material food_apple_outline %}" + ] + }, + "food_croissant": { + "prefix": "svg.material.food_croissant", + "description": "SVG material - food_croissant", + "body": [ + "{% svg material food_croissant %}" + ] + }, + "food_drumstick": { + "prefix": "svg.material.food_drumstick", + "description": "SVG material - food_drumstick", + "body": [ + "{% svg material food_drumstick %}" + ] + }, + "food_drumstick_off": { + "prefix": "svg.material.food_drumstick_off", + "description": "SVG material - food_drumstick_off", + "body": [ + "{% svg material food_drumstick_off %}" + ] + }, + "food_drumstick_off_outline": { + "prefix": "svg.material.food_drumstick_off_outline", + "description": "SVG material - food_drumstick_off_outline", + "body": [ + "{% svg material food_drumstick_off_outline %}" + ] + }, + "food_drumstick_outline": { + "prefix": "svg.material.food_drumstick_outline", + "description": "SVG material - food_drumstick_outline", + "body": [ + "{% svg material food_drumstick_outline %}" + ] + }, + "food_fork_drink": { + "prefix": "svg.material.food_fork_drink", + "description": "SVG material - food_fork_drink", + "body": [ + "{% svg material food_fork_drink %}" + ] + }, + "food_halal": { + "prefix": "svg.material.food_halal", + "description": "SVG material - food_halal", + "body": [ + "{% svg material food_halal %}" + ] + }, + "food_hot_dog": { + "prefix": "svg.material.food_hot_dog", + "description": "SVG material - food_hot_dog", + "body": [ + "{% svg material food_hot_dog %}" + ] + }, + "food_kosher": { + "prefix": "svg.material.food_kosher", + "description": "SVG material - food_kosher", + "body": [ + "{% svg material food_kosher %}" + ] + }, + "food_off": { + "prefix": "svg.material.food_off", + "description": "SVG material - food_off", + "body": [ + "{% svg material food_off %}" + ] + }, + "food_off_outline": { + "prefix": "svg.material.food_off_outline", + "description": "SVG material - food_off_outline", + "body": [ + "{% svg material food_off_outline %}" + ] + }, + "food_outline": { + "prefix": "svg.material.food_outline", + "description": "SVG material - food_outline", + "body": [ + "{% svg material food_outline %}" + ] + }, + "food_steak": { + "prefix": "svg.material.food_steak", + "description": "SVG material - food_steak", + "body": [ + "{% svg material food_steak %}" + ] + }, + "food_steak_off": { + "prefix": "svg.material.food_steak_off", + "description": "SVG material - food_steak_off", + "body": [ + "{% svg material food_steak_off %}" + ] + }, + "food_takeout_box": { + "prefix": "svg.material.food_takeout_box", + "description": "SVG material - food_takeout_box", + "body": [ + "{% svg material food_takeout_box %}" + ] + }, + "food_takeout_box_outline": { + "prefix": "svg.material.food_takeout_box_outline", + "description": "SVG material - food_takeout_box_outline", + "body": [ + "{% svg material food_takeout_box_outline %}" + ] + }, + "food_turkey": { + "prefix": "svg.material.food_turkey", + "description": "SVG material - food_turkey", + "body": [ + "{% svg material food_turkey %}" + ] + }, + "food_variant": { + "prefix": "svg.material.food_variant", + "description": "SVG material - food_variant", + "body": [ + "{% svg material food_variant %}" + ] + }, + "food_variant_off": { + "prefix": "svg.material.food_variant_off", + "description": "SVG material - food_variant_off", + "body": [ + "{% svg material food_variant_off %}" + ] + }, + "foot_print": { + "prefix": "svg.material.foot_print", + "description": "SVG material - foot_print", + "body": [ + "{% svg material foot_print %}" + ] + }, + "football": { + "prefix": "svg.material.football", + "description": "SVG material - football", + "body": [ + "{% svg material football %}" + ] + }, + "football_australian": { + "prefix": "svg.material.football_australian", + "description": "SVG material - football_australian", + "body": [ + "{% svg material football_australian %}" + ] + }, + "football_helmet": { + "prefix": "svg.material.football_helmet", + "description": "SVG material - football_helmet", + "body": [ + "{% svg material football_helmet %}" + ] + }, + "forest": { + "prefix": "svg.material.forest", + "description": "SVG material - forest", + "body": [ + "{% svg material forest %}" + ] + }, + "forest_outline": { + "prefix": "svg.material.forest_outline", + "description": "SVG material - forest_outline", + "body": [ + "{% svg material forest_outline %}" + ] + }, + "forklift": { + "prefix": "svg.material.forklift", + "description": "SVG material - forklift", + "body": [ + "{% svg material forklift %}" + ] + }, + "form_dropdown": { + "prefix": "svg.material.form_dropdown", + "description": "SVG material - form_dropdown", + "body": [ + "{% svg material form_dropdown %}" + ] + }, + "form_select": { + "prefix": "svg.material.form_select", + "description": "SVG material - form_select", + "body": [ + "{% svg material form_select %}" + ] + }, + "form_textarea": { + "prefix": "svg.material.form_textarea", + "description": "SVG material - form_textarea", + "body": [ + "{% svg material form_textarea %}" + ] + }, + "form_textbox": { + "prefix": "svg.material.form_textbox", + "description": "SVG material - form_textbox", + "body": [ + "{% svg material form_textbox %}" + ] + }, + "form_textbox_lock": { + "prefix": "svg.material.form_textbox_lock", + "description": "SVG material - form_textbox_lock", + "body": [ + "{% svg material form_textbox_lock %}" + ] + }, + "form_textbox_password": { + "prefix": "svg.material.form_textbox_password", + "description": "SVG material - form_textbox_password", + "body": [ + "{% svg material form_textbox_password %}" + ] + }, + "format_align_bottom": { + "prefix": "svg.material.format_align_bottom", + "description": "SVG material - format_align_bottom", + "body": [ + "{% svg material format_align_bottom %}" + ] + }, + "format_align_center": { + "prefix": "svg.material.format_align_center", + "description": "SVG material - format_align_center", + "body": [ + "{% svg material format_align_center %}" + ] + }, + "format_align_justify": { + "prefix": "svg.material.format_align_justify", + "description": "SVG material - format_align_justify", + "body": [ + "{% svg material format_align_justify %}" + ] + }, + "format_align_left": { + "prefix": "svg.material.format_align_left", + "description": "SVG material - format_align_left", + "body": [ + "{% svg material format_align_left %}" + ] + }, + "format_align_middle": { + "prefix": "svg.material.format_align_middle", + "description": "SVG material - format_align_middle", + "body": [ + "{% svg material format_align_middle %}" + ] + }, + "format_align_right": { + "prefix": "svg.material.format_align_right", + "description": "SVG material - format_align_right", + "body": [ + "{% svg material format_align_right %}" + ] + }, + "format_align_top": { + "prefix": "svg.material.format_align_top", + "description": "SVG material - format_align_top", + "body": [ + "{% svg material format_align_top %}" + ] + }, + "format_annotation_minus": { + "prefix": "svg.material.format_annotation_minus", + "description": "SVG material - format_annotation_minus", + "body": [ + "{% svg material format_annotation_minus %}" + ] + }, + "format_annotation_plus": { + "prefix": "svg.material.format_annotation_plus", + "description": "SVG material - format_annotation_plus", + "body": [ + "{% svg material format_annotation_plus %}" + ] + }, + "format_bold": { + "prefix": "svg.material.format_bold", + "description": "SVG material - format_bold", + "body": [ + "{% svg material format_bold %}" + ] + }, + "format_clear": { + "prefix": "svg.material.format_clear", + "description": "SVG material - format_clear", + "body": [ + "{% svg material format_clear %}" + ] + }, + "format_color_fill": { + "prefix": "svg.material.format_color_fill", + "description": "SVG material - format_color_fill", + "body": [ + "{% svg material format_color_fill %}" + ] + }, + "format_color_highlight": { + "prefix": "svg.material.format_color_highlight", + "description": "SVG material - format_color_highlight", + "body": [ + "{% svg material format_color_highlight %}" + ] + }, + "format_color_marker_cancel": { + "prefix": "svg.material.format_color_marker_cancel", + "description": "SVG material - format_color_marker_cancel", + "body": [ + "{% svg material format_color_marker_cancel %}" + ] + }, + "format_color_text": { + "prefix": "svg.material.format_color_text", + "description": "SVG material - format_color_text", + "body": [ + "{% svg material format_color_text %}" + ] + }, + "format_columns": { + "prefix": "svg.material.format_columns", + "description": "SVG material - format_columns", + "body": [ + "{% svg material format_columns %}" + ] + }, + "format_float_center": { + "prefix": "svg.material.format_float_center", + "description": "SVG material - format_float_center", + "body": [ + "{% svg material format_float_center %}" + ] + }, + "format_float_left": { + "prefix": "svg.material.format_float_left", + "description": "SVG material - format_float_left", + "body": [ + "{% svg material format_float_left %}" + ] + }, + "format_float_none": { + "prefix": "svg.material.format_float_none", + "description": "SVG material - format_float_none", + "body": [ + "{% svg material format_float_none %}" + ] + }, + "format_float_right": { + "prefix": "svg.material.format_float_right", + "description": "SVG material - format_float_right", + "body": [ + "{% svg material format_float_right %}" + ] + }, + "format_font": { + "prefix": "svg.material.format_font", + "description": "SVG material - format_font", + "body": [ + "{% svg material format_font %}" + ] + }, + "format_font_size_decrease": { + "prefix": "svg.material.format_font_size_decrease", + "description": "SVG material - format_font_size_decrease", + "body": [ + "{% svg material format_font_size_decrease %}" + ] + }, + "format_font_size_increase": { + "prefix": "svg.material.format_font_size_increase", + "description": "SVG material - format_font_size_increase", + "body": [ + "{% svg material format_font_size_increase %}" + ] + }, + "format_header_1": { + "prefix": "svg.material.format_header_1", + "description": "SVG material - format_header_1", + "body": [ + "{% svg material format_header_1 %}" + ] + }, + "format_header_2": { + "prefix": "svg.material.format_header_2", + "description": "SVG material - format_header_2", + "body": [ + "{% svg material format_header_2 %}" + ] + }, + "format_header_3": { + "prefix": "svg.material.format_header_3", + "description": "SVG material - format_header_3", + "body": [ + "{% svg material format_header_3 %}" + ] + }, + "format_header_4": { + "prefix": "svg.material.format_header_4", + "description": "SVG material - format_header_4", + "body": [ + "{% svg material format_header_4 %}" + ] + }, + "format_header_5": { + "prefix": "svg.material.format_header_5", + "description": "SVG material - format_header_5", + "body": [ + "{% svg material format_header_5 %}" + ] + }, + "format_header_6": { + "prefix": "svg.material.format_header_6", + "description": "SVG material - format_header_6", + "body": [ + "{% svg material format_header_6 %}" + ] + }, + "format_header_decrease": { + "prefix": "svg.material.format_header_decrease", + "description": "SVG material - format_header_decrease", + "body": [ + "{% svg material format_header_decrease %}" + ] + }, + "format_header_equal": { + "prefix": "svg.material.format_header_equal", + "description": "SVG material - format_header_equal", + "body": [ + "{% svg material format_header_equal %}" + ] + }, + "format_header_increase": { + "prefix": "svg.material.format_header_increase", + "description": "SVG material - format_header_increase", + "body": [ + "{% svg material format_header_increase %}" + ] + }, + "format_header_pound": { + "prefix": "svg.material.format_header_pound", + "description": "SVG material - format_header_pound", + "body": [ + "{% svg material format_header_pound %}" + ] + }, + "format_horizontal_align_center": { + "prefix": "svg.material.format_horizontal_align_center", + "description": "SVG material - format_horizontal_align_center", + "body": [ + "{% svg material format_horizontal_align_center %}" + ] + }, + "format_horizontal_align_left": { + "prefix": "svg.material.format_horizontal_align_left", + "description": "SVG material - format_horizontal_align_left", + "body": [ + "{% svg material format_horizontal_align_left %}" + ] + }, + "format_horizontal_align_right": { + "prefix": "svg.material.format_horizontal_align_right", + "description": "SVG material - format_horizontal_align_right", + "body": [ + "{% svg material format_horizontal_align_right %}" + ] + }, + "format_indent_decrease": { + "prefix": "svg.material.format_indent_decrease", + "description": "SVG material - format_indent_decrease", + "body": [ + "{% svg material format_indent_decrease %}" + ] + }, + "format_indent_increase": { + "prefix": "svg.material.format_indent_increase", + "description": "SVG material - format_indent_increase", + "body": [ + "{% svg material format_indent_increase %}" + ] + }, + "format_italic": { + "prefix": "svg.material.format_italic", + "description": "SVG material - format_italic", + "body": [ + "{% svg material format_italic %}" + ] + }, + "format_letter_case": { + "prefix": "svg.material.format_letter_case", + "description": "SVG material - format_letter_case", + "body": [ + "{% svg material format_letter_case %}" + ] + }, + "format_letter_case_lower": { + "prefix": "svg.material.format_letter_case_lower", + "description": "SVG material - format_letter_case_lower", + "body": [ + "{% svg material format_letter_case_lower %}" + ] + }, + "format_letter_case_upper": { + "prefix": "svg.material.format_letter_case_upper", + "description": "SVG material - format_letter_case_upper", + "body": [ + "{% svg material format_letter_case_upper %}" + ] + }, + "format_letter_ends_with": { + "prefix": "svg.material.format_letter_ends_with", + "description": "SVG material - format_letter_ends_with", + "body": [ + "{% svg material format_letter_ends_with %}" + ] + }, + "format_letter_matches": { + "prefix": "svg.material.format_letter_matches", + "description": "SVG material - format_letter_matches", + "body": [ + "{% svg material format_letter_matches %}" + ] + }, + "format_letter_spacing": { + "prefix": "svg.material.format_letter_spacing", + "description": "SVG material - format_letter_spacing", + "body": [ + "{% svg material format_letter_spacing %}" + ] + }, + "format_letter_spacing_variant": { + "prefix": "svg.material.format_letter_spacing_variant", + "description": "SVG material - format_letter_spacing_variant", + "body": [ + "{% svg material format_letter_spacing_variant %}" + ] + }, + "format_letter_starts_with": { + "prefix": "svg.material.format_letter_starts_with", + "description": "SVG material - format_letter_starts_with", + "body": [ + "{% svg material format_letter_starts_with %}" + ] + }, + "format_line_height": { + "prefix": "svg.material.format_line_height", + "description": "SVG material - format_line_height", + "body": [ + "{% svg material format_line_height %}" + ] + }, + "format_line_spacing": { + "prefix": "svg.material.format_line_spacing", + "description": "SVG material - format_line_spacing", + "body": [ + "{% svg material format_line_spacing %}" + ] + }, + "format_line_style": { + "prefix": "svg.material.format_line_style", + "description": "SVG material - format_line_style", + "body": [ + "{% svg material format_line_style %}" + ] + }, + "format_line_weight": { + "prefix": "svg.material.format_line_weight", + "description": "SVG material - format_line_weight", + "body": [ + "{% svg material format_line_weight %}" + ] + }, + "format_list_bulleted": { + "prefix": "svg.material.format_list_bulleted", + "description": "SVG material - format_list_bulleted", + "body": [ + "{% svg material format_list_bulleted %}" + ] + }, + "format_list_bulleted_square": { + "prefix": "svg.material.format_list_bulleted_square", + "description": "SVG material - format_list_bulleted_square", + "body": [ + "{% svg material format_list_bulleted_square %}" + ] + }, + "format_list_bulleted_triangle": { + "prefix": "svg.material.format_list_bulleted_triangle", + "description": "SVG material - format_list_bulleted_triangle", + "body": [ + "{% svg material format_list_bulleted_triangle %}" + ] + }, + "format_list_bulleted_type": { + "prefix": "svg.material.format_list_bulleted_type", + "description": "SVG material - format_list_bulleted_type", + "body": [ + "{% svg material format_list_bulleted_type %}" + ] + }, + "format_list_checkbox": { + "prefix": "svg.material.format_list_checkbox", + "description": "SVG material - format_list_checkbox", + "body": [ + "{% svg material format_list_checkbox %}" + ] + }, + "format_list_checks": { + "prefix": "svg.material.format_list_checks", + "description": "SVG material - format_list_checks", + "body": [ + "{% svg material format_list_checks %}" + ] + }, + "format_list_group": { + "prefix": "svg.material.format_list_group", + "description": "SVG material - format_list_group", + "body": [ + "{% svg material format_list_group %}" + ] + }, + "format_list_group_plus": { + "prefix": "svg.material.format_list_group_plus", + "description": "SVG material - format_list_group_plus", + "body": [ + "{% svg material format_list_group_plus %}" + ] + }, + "format_list_numbered": { + "prefix": "svg.material.format_list_numbered", + "description": "SVG material - format_list_numbered", + "body": [ + "{% svg material format_list_numbered %}" + ] + }, + "format_list_numbered_rtl": { + "prefix": "svg.material.format_list_numbered_rtl", + "description": "SVG material - format_list_numbered_rtl", + "body": [ + "{% svg material format_list_numbered_rtl %}" + ] + }, + "format_list_text": { + "prefix": "svg.material.format_list_text", + "description": "SVG material - format_list_text", + "body": [ + "{% svg material format_list_text %}" + ] + }, + "format_overline": { + "prefix": "svg.material.format_overline", + "description": "SVG material - format_overline", + "body": [ + "{% svg material format_overline %}" + ] + }, + "format_page_break": { + "prefix": "svg.material.format_page_break", + "description": "SVG material - format_page_break", + "body": [ + "{% svg material format_page_break %}" + ] + }, + "format_page_split": { + "prefix": "svg.material.format_page_split", + "description": "SVG material - format_page_split", + "body": [ + "{% svg material format_page_split %}" + ] + }, + "format_paint": { + "prefix": "svg.material.format_paint", + "description": "SVG material - format_paint", + "body": [ + "{% svg material format_paint %}" + ] + }, + "format_paragraph": { + "prefix": "svg.material.format_paragraph", + "description": "SVG material - format_paragraph", + "body": [ + "{% svg material format_paragraph %}" + ] + }, + "format_paragraph_spacing": { + "prefix": "svg.material.format_paragraph_spacing", + "description": "SVG material - format_paragraph_spacing", + "body": [ + "{% svg material format_paragraph_spacing %}" + ] + }, + "format_pilcrow": { + "prefix": "svg.material.format_pilcrow", + "description": "SVG material - format_pilcrow", + "body": [ + "{% svg material format_pilcrow %}" + ] + }, + "format_pilcrow_arrow_left": { + "prefix": "svg.material.format_pilcrow_arrow_left", + "description": "SVG material - format_pilcrow_arrow_left", + "body": [ + "{% svg material format_pilcrow_arrow_left %}" + ] + }, + "format_pilcrow_arrow_right": { + "prefix": "svg.material.format_pilcrow_arrow_right", + "description": "SVG material - format_pilcrow_arrow_right", + "body": [ + "{% svg material format_pilcrow_arrow_right %}" + ] + }, + "format_quote_close": { + "prefix": "svg.material.format_quote_close", + "description": "SVG material - format_quote_close", + "body": [ + "{% svg material format_quote_close %}" + ] + }, + "format_quote_close_outline": { + "prefix": "svg.material.format_quote_close_outline", + "description": "SVG material - format_quote_close_outline", + "body": [ + "{% svg material format_quote_close_outline %}" + ] + }, + "format_quote_open": { + "prefix": "svg.material.format_quote_open", + "description": "SVG material - format_quote_open", + "body": [ + "{% svg material format_quote_open %}" + ] + }, + "format_quote_open_outline": { + "prefix": "svg.material.format_quote_open_outline", + "description": "SVG material - format_quote_open_outline", + "body": [ + "{% svg material format_quote_open_outline %}" + ] + }, + "format_rotate_90": { + "prefix": "svg.material.format_rotate_90", + "description": "SVG material - format_rotate_90", + "body": [ + "{% svg material format_rotate_90 %}" + ] + }, + "format_section": { + "prefix": "svg.material.format_section", + "description": "SVG material - format_section", + "body": [ + "{% svg material format_section %}" + ] + }, + "format_size": { + "prefix": "svg.material.format_size", + "description": "SVG material - format_size", + "body": [ + "{% svg material format_size %}" + ] + }, + "format_strikethrough": { + "prefix": "svg.material.format_strikethrough", + "description": "SVG material - format_strikethrough", + "body": [ + "{% svg material format_strikethrough %}" + ] + }, + "format_strikethrough_variant": { + "prefix": "svg.material.format_strikethrough_variant", + "description": "SVG material - format_strikethrough_variant", + "body": [ + "{% svg material format_strikethrough_variant %}" + ] + }, + "format_subscript": { + "prefix": "svg.material.format_subscript", + "description": "SVG material - format_subscript", + "body": [ + "{% svg material format_subscript %}" + ] + }, + "format_superscript": { + "prefix": "svg.material.format_superscript", + "description": "SVG material - format_superscript", + "body": [ + "{% svg material format_superscript %}" + ] + }, + "format_text": { + "prefix": "svg.material.format_text", + "description": "SVG material - format_text", + "body": [ + "{% svg material format_text %}" + ] + }, + "format_text_rotation_angle_down": { + "prefix": "svg.material.format_text_rotation_angle_down", + "description": "SVG material - format_text_rotation_angle_down", + "body": [ + "{% svg material format_text_rotation_angle_down %}" + ] + }, + "format_text_rotation_angle_up": { + "prefix": "svg.material.format_text_rotation_angle_up", + "description": "SVG material - format_text_rotation_angle_up", + "body": [ + "{% svg material format_text_rotation_angle_up %}" + ] + }, + "format_text_rotation_down": { + "prefix": "svg.material.format_text_rotation_down", + "description": "SVG material - format_text_rotation_down", + "body": [ + "{% svg material format_text_rotation_down %}" + ] + }, + "format_text_rotation_down_vertical": { + "prefix": "svg.material.format_text_rotation_down_vertical", + "description": "SVG material - format_text_rotation_down_vertical", + "body": [ + "{% svg material format_text_rotation_down_vertical %}" + ] + }, + "format_text_rotation_none": { + "prefix": "svg.material.format_text_rotation_none", + "description": "SVG material - format_text_rotation_none", + "body": [ + "{% svg material format_text_rotation_none %}" + ] + }, + "format_text_rotation_up": { + "prefix": "svg.material.format_text_rotation_up", + "description": "SVG material - format_text_rotation_up", + "body": [ + "{% svg material format_text_rotation_up %}" + ] + }, + "format_text_rotation_vertical": { + "prefix": "svg.material.format_text_rotation_vertical", + "description": "SVG material - format_text_rotation_vertical", + "body": [ + "{% svg material format_text_rotation_vertical %}" + ] + }, + "format_text_variant": { + "prefix": "svg.material.format_text_variant", + "description": "SVG material - format_text_variant", + "body": [ + "{% svg material format_text_variant %}" + ] + }, + "format_text_variant_outline": { + "prefix": "svg.material.format_text_variant_outline", + "description": "SVG material - format_text_variant_outline", + "body": [ + "{% svg material format_text_variant_outline %}" + ] + }, + "format_text_wrapping_clip": { + "prefix": "svg.material.format_text_wrapping_clip", + "description": "SVG material - format_text_wrapping_clip", + "body": [ + "{% svg material format_text_wrapping_clip %}" + ] + }, + "format_text_wrapping_overflow": { + "prefix": "svg.material.format_text_wrapping_overflow", + "description": "SVG material - format_text_wrapping_overflow", + "body": [ + "{% svg material format_text_wrapping_overflow %}" + ] + }, + "format_text_wrapping_wrap": { + "prefix": "svg.material.format_text_wrapping_wrap", + "description": "SVG material - format_text_wrapping_wrap", + "body": [ + "{% svg material format_text_wrapping_wrap %}" + ] + }, + "format_textbox": { + "prefix": "svg.material.format_textbox", + "description": "SVG material - format_textbox", + "body": [ + "{% svg material format_textbox %}" + ] + }, + "format_title": { + "prefix": "svg.material.format_title", + "description": "SVG material - format_title", + "body": [ + "{% svg material format_title %}" + ] + }, + "format_underline": { + "prefix": "svg.material.format_underline", + "description": "SVG material - format_underline", + "body": [ + "{% svg material format_underline %}" + ] + }, + "format_underline_wavy": { + "prefix": "svg.material.format_underline_wavy", + "description": "SVG material - format_underline_wavy", + "body": [ + "{% svg material format_underline_wavy %}" + ] + }, + "format_vertical_align_bottom": { + "prefix": "svg.material.format_vertical_align_bottom", + "description": "SVG material - format_vertical_align_bottom", + "body": [ + "{% svg material format_vertical_align_bottom %}" + ] + }, + "format_vertical_align_center": { + "prefix": "svg.material.format_vertical_align_center", + "description": "SVG material - format_vertical_align_center", + "body": [ + "{% svg material format_vertical_align_center %}" + ] + }, + "format_vertical_align_top": { + "prefix": "svg.material.format_vertical_align_top", + "description": "SVG material - format_vertical_align_top", + "body": [ + "{% svg material format_vertical_align_top %}" + ] + }, + "format_wrap_inline": { + "prefix": "svg.material.format_wrap_inline", + "description": "SVG material - format_wrap_inline", + "body": [ + "{% svg material format_wrap_inline %}" + ] + }, + "format_wrap_square": { + "prefix": "svg.material.format_wrap_square", + "description": "SVG material - format_wrap_square", + "body": [ + "{% svg material format_wrap_square %}" + ] + }, + "format_wrap_tight": { + "prefix": "svg.material.format_wrap_tight", + "description": "SVG material - format_wrap_tight", + "body": [ + "{% svg material format_wrap_tight %}" + ] + }, + "format_wrap_top_bottom": { + "prefix": "svg.material.format_wrap_top_bottom", + "description": "SVG material - format_wrap_top_bottom", + "body": [ + "{% svg material format_wrap_top_bottom %}" + ] + }, + "forum": { + "prefix": "svg.material.forum", + "description": "SVG material - forum", + "body": [ + "{% svg material forum %}" + ] + }, + "forum_minus": { + "prefix": "svg.material.forum_minus", + "description": "SVG material - forum_minus", + "body": [ + "{% svg material forum_minus %}" + ] + }, + "forum_minus_outline": { + "prefix": "svg.material.forum_minus_outline", + "description": "SVG material - forum_minus_outline", + "body": [ + "{% svg material forum_minus_outline %}" + ] + }, + "forum_outline": { + "prefix": "svg.material.forum_outline", + "description": "SVG material - forum_outline", + "body": [ + "{% svg material forum_outline %}" + ] + }, + "forum_plus": { + "prefix": "svg.material.forum_plus", + "description": "SVG material - forum_plus", + "body": [ + "{% svg material forum_plus %}" + ] + }, + "forum_plus_outline": { + "prefix": "svg.material.forum_plus_outline", + "description": "SVG material - forum_plus_outline", + "body": [ + "{% svg material forum_plus_outline %}" + ] + }, + "forum_remove": { + "prefix": "svg.material.forum_remove", + "description": "SVG material - forum_remove", + "body": [ + "{% svg material forum_remove %}" + ] + }, + "forum_remove_outline": { + "prefix": "svg.material.forum_remove_outline", + "description": "SVG material - forum_remove_outline", + "body": [ + "{% svg material forum_remove_outline %}" + ] + }, + "forward": { + "prefix": "svg.material.forward", + "description": "SVG material - forward", + "body": [ + "{% svg material forward %}" + ] + }, + "forwardburger": { + "prefix": "svg.material.forwardburger", + "description": "SVG material - forwardburger", + "body": [ + "{% svg material forwardburger %}" + ] + }, + "fountain": { + "prefix": "svg.material.fountain", + "description": "SVG material - fountain", + "body": [ + "{% svg material fountain %}" + ] + }, + "fountain_pen": { + "prefix": "svg.material.fountain_pen", + "description": "SVG material - fountain_pen", + "body": [ + "{% svg material fountain_pen %}" + ] + }, + "fountain_pen_tip": { + "prefix": "svg.material.fountain_pen_tip", + "description": "SVG material - fountain_pen_tip", + "body": [ + "{% svg material fountain_pen_tip %}" + ] + }, + "fraction_one_half": { + "prefix": "svg.material.fraction_one_half", + "description": "SVG material - fraction_one_half", + "body": [ + "{% svg material fraction_one_half %}" + ] + }, + "freebsd": { + "prefix": "svg.material.freebsd", + "description": "SVG material - freebsd", + "body": [ + "{% svg material freebsd %}" + ] + }, + "french_fries": { + "prefix": "svg.material.french_fries", + "description": "SVG material - french_fries", + "body": [ + "{% svg material french_fries %}" + ] + }, + "frequently_asked_questions": { + "prefix": "svg.material.frequently_asked_questions", + "description": "SVG material - frequently_asked_questions", + "body": [ + "{% svg material frequently_asked_questions %}" + ] + }, + "fridge": { + "prefix": "svg.material.fridge", + "description": "SVG material - fridge", + "body": [ + "{% svg material fridge %}" + ] + }, + "fridge_alert": { + "prefix": "svg.material.fridge_alert", + "description": "SVG material - fridge_alert", + "body": [ + "{% svg material fridge_alert %}" + ] + }, + "fridge_alert_outline": { + "prefix": "svg.material.fridge_alert_outline", + "description": "SVG material - fridge_alert_outline", + "body": [ + "{% svg material fridge_alert_outline %}" + ] + }, + "fridge_bottom": { + "prefix": "svg.material.fridge_bottom", + "description": "SVG material - fridge_bottom", + "body": [ + "{% svg material fridge_bottom %}" + ] + }, + "fridge_industrial": { + "prefix": "svg.material.fridge_industrial", + "description": "SVG material - fridge_industrial", + "body": [ + "{% svg material fridge_industrial %}" + ] + }, + "fridge_industrial_alert": { + "prefix": "svg.material.fridge_industrial_alert", + "description": "SVG material - fridge_industrial_alert", + "body": [ + "{% svg material fridge_industrial_alert %}" + ] + }, + "fridge_industrial_alert_outline": { + "prefix": "svg.material.fridge_industrial_alert_outline", + "description": "SVG material - fridge_industrial_alert_outline", + "body": [ + "{% svg material fridge_industrial_alert_outline %}" + ] + }, + "fridge_industrial_off": { + "prefix": "svg.material.fridge_industrial_off", + "description": "SVG material - fridge_industrial_off", + "body": [ + "{% svg material fridge_industrial_off %}" + ] + }, + "fridge_industrial_off_outline": { + "prefix": "svg.material.fridge_industrial_off_outline", + "description": "SVG material - fridge_industrial_off_outline", + "body": [ + "{% svg material fridge_industrial_off_outline %}" + ] + }, + "fridge_industrial_outline": { + "prefix": "svg.material.fridge_industrial_outline", + "description": "SVG material - fridge_industrial_outline", + "body": [ + "{% svg material fridge_industrial_outline %}" + ] + }, + "fridge_off": { + "prefix": "svg.material.fridge_off", + "description": "SVG material - fridge_off", + "body": [ + "{% svg material fridge_off %}" + ] + }, + "fridge_off_outline": { + "prefix": "svg.material.fridge_off_outline", + "description": "SVG material - fridge_off_outline", + "body": [ + "{% svg material fridge_off_outline %}" + ] + }, + "fridge_outline": { + "prefix": "svg.material.fridge_outline", + "description": "SVG material - fridge_outline", + "body": [ + "{% svg material fridge_outline %}" + ] + }, + "fridge_top": { + "prefix": "svg.material.fridge_top", + "description": "SVG material - fridge_top", + "body": [ + "{% svg material fridge_top %}" + ] + }, + "fridge_variant": { + "prefix": "svg.material.fridge_variant", + "description": "SVG material - fridge_variant", + "body": [ + "{% svg material fridge_variant %}" + ] + }, + "fridge_variant_alert": { + "prefix": "svg.material.fridge_variant_alert", + "description": "SVG material - fridge_variant_alert", + "body": [ + "{% svg material fridge_variant_alert %}" + ] + }, + "fridge_variant_alert_outline": { + "prefix": "svg.material.fridge_variant_alert_outline", + "description": "SVG material - fridge_variant_alert_outline", + "body": [ + "{% svg material fridge_variant_alert_outline %}" + ] + }, + "fridge_variant_off": { + "prefix": "svg.material.fridge_variant_off", + "description": "SVG material - fridge_variant_off", + "body": [ + "{% svg material fridge_variant_off %}" + ] + }, + "fridge_variant_off_outline": { + "prefix": "svg.material.fridge_variant_off_outline", + "description": "SVG material - fridge_variant_off_outline", + "body": [ + "{% svg material fridge_variant_off_outline %}" + ] + }, + "fridge_variant_outline": { + "prefix": "svg.material.fridge_variant_outline", + "description": "SVG material - fridge_variant_outline", + "body": [ + "{% svg material fridge_variant_outline %}" + ] + }, + "fruit_cherries": { + "prefix": "svg.material.fruit_cherries", + "description": "SVG material - fruit_cherries", + "body": [ + "{% svg material fruit_cherries %}" + ] + }, + "fruit_cherries_off": { + "prefix": "svg.material.fruit_cherries_off", + "description": "SVG material - fruit_cherries_off", + "body": [ + "{% svg material fruit_cherries_off %}" + ] + }, + "fruit_citrus": { + "prefix": "svg.material.fruit_citrus", + "description": "SVG material - fruit_citrus", + "body": [ + "{% svg material fruit_citrus %}" + ] + }, + "fruit_citrus_off": { + "prefix": "svg.material.fruit_citrus_off", + "description": "SVG material - fruit_citrus_off", + "body": [ + "{% svg material fruit_citrus_off %}" + ] + }, + "fruit_grapes": { + "prefix": "svg.material.fruit_grapes", + "description": "SVG material - fruit_grapes", + "body": [ + "{% svg material fruit_grapes %}" + ] + }, + "fruit_grapes_outline": { + "prefix": "svg.material.fruit_grapes_outline", + "description": "SVG material - fruit_grapes_outline", + "body": [ + "{% svg material fruit_grapes_outline %}" + ] + }, + "fruit_pear": { + "prefix": "svg.material.fruit_pear", + "description": "SVG material - fruit_pear", + "body": [ + "{% svg material fruit_pear %}" + ] + }, + "fruit_pineapple": { + "prefix": "svg.material.fruit_pineapple", + "description": "SVG material - fruit_pineapple", + "body": [ + "{% svg material fruit_pineapple %}" + ] + }, + "fruit_watermelon": { + "prefix": "svg.material.fruit_watermelon", + "description": "SVG material - fruit_watermelon", + "body": [ + "{% svg material fruit_watermelon %}" + ] + }, + "fuel": { + "prefix": "svg.material.fuel", + "description": "SVG material - fuel", + "body": [ + "{% svg material fuel %}" + ] + }, + "fuel_cell": { + "prefix": "svg.material.fuel_cell", + "description": "SVG material - fuel_cell", + "body": [ + "{% svg material fuel_cell %}" + ] + }, + "fullscreen": { + "prefix": "svg.material.fullscreen", + "description": "SVG material - fullscreen", + "body": [ + "{% svg material fullscreen %}" + ] + }, + "fullscreen_exit": { + "prefix": "svg.material.fullscreen_exit", + "description": "SVG material - fullscreen_exit", + "body": [ + "{% svg material fullscreen_exit %}" + ] + }, + "function": { + "prefix": "svg.material.function", + "description": "SVG material - function", + "body": [ + "{% svg material function %}" + ] + }, + "function_variant": { + "prefix": "svg.material.function_variant", + "description": "SVG material - function_variant", + "body": [ + "{% svg material function_variant %}" + ] + }, + "furigana_horizontal": { + "prefix": "svg.material.furigana_horizontal", + "description": "SVG material - furigana_horizontal", + "body": [ + "{% svg material furigana_horizontal %}" + ] + }, + "furigana_vertical": { + "prefix": "svg.material.furigana_vertical", + "description": "SVG material - furigana_vertical", + "body": [ + "{% svg material furigana_vertical %}" + ] + }, + "fuse": { + "prefix": "svg.material.fuse", + "description": "SVG material - fuse", + "body": [ + "{% svg material fuse %}" + ] + }, + "fuse_alert": { + "prefix": "svg.material.fuse_alert", + "description": "SVG material - fuse_alert", + "body": [ + "{% svg material fuse_alert %}" + ] + }, + "fuse_blade": { + "prefix": "svg.material.fuse_blade", + "description": "SVG material - fuse_blade", + "body": [ + "{% svg material fuse_blade %}" + ] + }, + "fuse_off": { + "prefix": "svg.material.fuse_off", + "description": "SVG material - fuse_off", + "body": [ + "{% svg material fuse_off %}" + ] + }, + "gamepad": { + "prefix": "svg.material.gamepad", + "description": "SVG material - gamepad", + "body": [ + "{% svg material gamepad %}" + ] + }, + "gamepad_circle": { + "prefix": "svg.material.gamepad_circle", + "description": "SVG material - gamepad_circle", + "body": [ + "{% svg material gamepad_circle %}" + ] + }, + "gamepad_circle_down": { + "prefix": "svg.material.gamepad_circle_down", + "description": "SVG material - gamepad_circle_down", + "body": [ + "{% svg material gamepad_circle_down %}" + ] + }, + "gamepad_circle_left": { + "prefix": "svg.material.gamepad_circle_left", + "description": "SVG material - gamepad_circle_left", + "body": [ + "{% svg material gamepad_circle_left %}" + ] + }, + "gamepad_circle_outline": { + "prefix": "svg.material.gamepad_circle_outline", + "description": "SVG material - gamepad_circle_outline", + "body": [ + "{% svg material gamepad_circle_outline %}" + ] + }, + "gamepad_circle_right": { + "prefix": "svg.material.gamepad_circle_right", + "description": "SVG material - gamepad_circle_right", + "body": [ + "{% svg material gamepad_circle_right %}" + ] + }, + "gamepad_circle_up": { + "prefix": "svg.material.gamepad_circle_up", + "description": "SVG material - gamepad_circle_up", + "body": [ + "{% svg material gamepad_circle_up %}" + ] + }, + "gamepad_down": { + "prefix": "svg.material.gamepad_down", + "description": "SVG material - gamepad_down", + "body": [ + "{% svg material gamepad_down %}" + ] + }, + "gamepad_left": { + "prefix": "svg.material.gamepad_left", + "description": "SVG material - gamepad_left", + "body": [ + "{% svg material gamepad_left %}" + ] + }, + "gamepad_outline": { + "prefix": "svg.material.gamepad_outline", + "description": "SVG material - gamepad_outline", + "body": [ + "{% svg material gamepad_outline %}" + ] + }, + "gamepad_right": { + "prefix": "svg.material.gamepad_right", + "description": "SVG material - gamepad_right", + "body": [ + "{% svg material gamepad_right %}" + ] + }, + "gamepad_round": { + "prefix": "svg.material.gamepad_round", + "description": "SVG material - gamepad_round", + "body": [ + "{% svg material gamepad_round %}" + ] + }, + "gamepad_round_down": { + "prefix": "svg.material.gamepad_round_down", + "description": "SVG material - gamepad_round_down", + "body": [ + "{% svg material gamepad_round_down %}" + ] + }, + "gamepad_round_left": { + "prefix": "svg.material.gamepad_round_left", + "description": "SVG material - gamepad_round_left", + "body": [ + "{% svg material gamepad_round_left %}" + ] + }, + "gamepad_round_outline": { + "prefix": "svg.material.gamepad_round_outline", + "description": "SVG material - gamepad_round_outline", + "body": [ + "{% svg material gamepad_round_outline %}" + ] + }, + "gamepad_round_right": { + "prefix": "svg.material.gamepad_round_right", + "description": "SVG material - gamepad_round_right", + "body": [ + "{% svg material gamepad_round_right %}" + ] + }, + "gamepad_round_up": { + "prefix": "svg.material.gamepad_round_up", + "description": "SVG material - gamepad_round_up", + "body": [ + "{% svg material gamepad_round_up %}" + ] + }, + "gamepad_square": { + "prefix": "svg.material.gamepad_square", + "description": "SVG material - gamepad_square", + "body": [ + "{% svg material gamepad_square %}" + ] + }, + "gamepad_square_outline": { + "prefix": "svg.material.gamepad_square_outline", + "description": "SVG material - gamepad_square_outline", + "body": [ + "{% svg material gamepad_square_outline %}" + ] + }, + "gamepad_up": { + "prefix": "svg.material.gamepad_up", + "description": "SVG material - gamepad_up", + "body": [ + "{% svg material gamepad_up %}" + ] + }, + "gamepad_variant": { + "prefix": "svg.material.gamepad_variant", + "description": "SVG material - gamepad_variant", + "body": [ + "{% svg material gamepad_variant %}" + ] + }, + "gamepad_variant_outline": { + "prefix": "svg.material.gamepad_variant_outline", + "description": "SVG material - gamepad_variant_outline", + "body": [ + "{% svg material gamepad_variant_outline %}" + ] + }, + "gamma": { + "prefix": "svg.material.gamma", + "description": "SVG material - gamma", + "body": [ + "{% svg material gamma %}" + ] + }, + "gantry_crane": { + "prefix": "svg.material.gantry_crane", + "description": "SVG material - gantry_crane", + "body": [ + "{% svg material gantry_crane %}" + ] + }, + "garage": { + "prefix": "svg.material.garage", + "description": "SVG material - garage", + "body": [ + "{% svg material garage %}" + ] + }, + "garage_alert": { + "prefix": "svg.material.garage_alert", + "description": "SVG material - garage_alert", + "body": [ + "{% svg material garage_alert %}" + ] + }, + "garage_alert_variant": { + "prefix": "svg.material.garage_alert_variant", + "description": "SVG material - garage_alert_variant", + "body": [ + "{% svg material garage_alert_variant %}" + ] + }, + "garage_lock": { + "prefix": "svg.material.garage_lock", + "description": "SVG material - garage_lock", + "body": [ + "{% svg material garage_lock %}" + ] + }, + "garage_open": { + "prefix": "svg.material.garage_open", + "description": "SVG material - garage_open", + "body": [ + "{% svg material garage_open %}" + ] + }, + "garage_open_variant": { + "prefix": "svg.material.garage_open_variant", + "description": "SVG material - garage_open_variant", + "body": [ + "{% svg material garage_open_variant %}" + ] + }, + "garage_variant": { + "prefix": "svg.material.garage_variant", + "description": "SVG material - garage_variant", + "body": [ + "{% svg material garage_variant %}" + ] + }, + "garage_variant_lock": { + "prefix": "svg.material.garage_variant_lock", + "description": "SVG material - garage_variant_lock", + "body": [ + "{% svg material garage_variant_lock %}" + ] + }, + "gas_burner": { + "prefix": "svg.material.gas_burner", + "description": "SVG material - gas_burner", + "body": [ + "{% svg material gas_burner %}" + ] + }, + "gas_cylinder": { + "prefix": "svg.material.gas_cylinder", + "description": "SVG material - gas_cylinder", + "body": [ + "{% svg material gas_cylinder %}" + ] + }, + "gas_station": { + "prefix": "svg.material.gas_station", + "description": "SVG material - gas_station", + "body": [ + "{% svg material gas_station %}" + ] + }, + "gas_station_in_use": { + "prefix": "svg.material.gas_station_in_use", + "description": "SVG material - gas_station_in_use", + "body": [ + "{% svg material gas_station_in_use %}" + ] + }, + "gas_station_in_use_outline": { + "prefix": "svg.material.gas_station_in_use_outline", + "description": "SVG material - gas_station_in_use_outline", + "body": [ + "{% svg material gas_station_in_use_outline %}" + ] + }, + "gas_station_off": { + "prefix": "svg.material.gas_station_off", + "description": "SVG material - gas_station_off", + "body": [ + "{% svg material gas_station_off %}" + ] + }, + "gas_station_off_outline": { + "prefix": "svg.material.gas_station_off_outline", + "description": "SVG material - gas_station_off_outline", + "body": [ + "{% svg material gas_station_off_outline %}" + ] + }, + "gas_station_outline": { + "prefix": "svg.material.gas_station_outline", + "description": "SVG material - gas_station_outline", + "body": [ + "{% svg material gas_station_outline %}" + ] + }, + "gate": { + "prefix": "svg.material.gate", + "description": "SVG material - gate", + "body": [ + "{% svg material gate %}" + ] + }, + "gate_alert": { + "prefix": "svg.material.gate_alert", + "description": "SVG material - gate_alert", + "body": [ + "{% svg material gate_alert %}" + ] + }, + "gate_and": { + "prefix": "svg.material.gate_and", + "description": "SVG material - gate_and", + "body": [ + "{% svg material gate_and %}" + ] + }, + "gate_arrow_left": { + "prefix": "svg.material.gate_arrow_left", + "description": "SVG material - gate_arrow_left", + "body": [ + "{% svg material gate_arrow_left %}" + ] + }, + "gate_arrow_right": { + "prefix": "svg.material.gate_arrow_right", + "description": "SVG material - gate_arrow_right", + "body": [ + "{% svg material gate_arrow_right %}" + ] + }, + "gate_buffer": { + "prefix": "svg.material.gate_buffer", + "description": "SVG material - gate_buffer", + "body": [ + "{% svg material gate_buffer %}" + ] + }, + "gate_nand": { + "prefix": "svg.material.gate_nand", + "description": "SVG material - gate_nand", + "body": [ + "{% svg material gate_nand %}" + ] + }, + "gate_nor": { + "prefix": "svg.material.gate_nor", + "description": "SVG material - gate_nor", + "body": [ + "{% svg material gate_nor %}" + ] + }, + "gate_not": { + "prefix": "svg.material.gate_not", + "description": "SVG material - gate_not", + "body": [ + "{% svg material gate_not %}" + ] + }, + "gate_open": { + "prefix": "svg.material.gate_open", + "description": "SVG material - gate_open", + "body": [ + "{% svg material gate_open %}" + ] + }, + "gate_or": { + "prefix": "svg.material.gate_or", + "description": "SVG material - gate_or", + "body": [ + "{% svg material gate_or %}" + ] + }, + "gate_xnor": { + "prefix": "svg.material.gate_xnor", + "description": "SVG material - gate_xnor", + "body": [ + "{% svg material gate_xnor %}" + ] + }, + "gate_xor": { + "prefix": "svg.material.gate_xor", + "description": "SVG material - gate_xor", + "body": [ + "{% svg material gate_xor %}" + ] + }, + "gatsby": { + "prefix": "svg.material.gatsby", + "description": "SVG material - gatsby", + "body": [ + "{% svg material gatsby %}" + ] + }, + "gauge": { + "prefix": "svg.material.gauge", + "description": "SVG material - gauge", + "body": [ + "{% svg material gauge %}" + ] + }, + "gauge_empty": { + "prefix": "svg.material.gauge_empty", + "description": "SVG material - gauge_empty", + "body": [ + "{% svg material gauge_empty %}" + ] + }, + "gauge_full": { + "prefix": "svg.material.gauge_full", + "description": "SVG material - gauge_full", + "body": [ + "{% svg material gauge_full %}" + ] + }, + "gauge_low": { + "prefix": "svg.material.gauge_low", + "description": "SVG material - gauge_low", + "body": [ + "{% svg material gauge_low %}" + ] + }, + "gavel": { + "prefix": "svg.material.gavel", + "description": "SVG material - gavel", + "body": [ + "{% svg material gavel %}" + ] + }, + "gender_female": { + "prefix": "svg.material.gender_female", + "description": "SVG material - gender_female", + "body": [ + "{% svg material gender_female %}" + ] + }, + "gender_male": { + "prefix": "svg.material.gender_male", + "description": "SVG material - gender_male", + "body": [ + "{% svg material gender_male %}" + ] + }, + "gender_male_female": { + "prefix": "svg.material.gender_male_female", + "description": "SVG material - gender_male_female", + "body": [ + "{% svg material gender_male_female %}" + ] + }, + "gender_male_female_variant": { + "prefix": "svg.material.gender_male_female_variant", + "description": "SVG material - gender_male_female_variant", + "body": [ + "{% svg material gender_male_female_variant %}" + ] + }, + "gender_non_binary": { + "prefix": "svg.material.gender_non_binary", + "description": "SVG material - gender_non_binary", + "body": [ + "{% svg material gender_non_binary %}" + ] + }, + "gender_transgender": { + "prefix": "svg.material.gender_transgender", + "description": "SVG material - gender_transgender", + "body": [ + "{% svg material gender_transgender %}" + ] + }, + "generator_mobile": { + "prefix": "svg.material.generator_mobile", + "description": "SVG material - generator_mobile", + "body": [ + "{% svg material generator_mobile %}" + ] + }, + "generator_portable": { + "prefix": "svg.material.generator_portable", + "description": "SVG material - generator_portable", + "body": [ + "{% svg material generator_portable %}" + ] + }, + "generator_stationary": { + "prefix": "svg.material.generator_stationary", + "description": "SVG material - generator_stationary", + "body": [ + "{% svg material generator_stationary %}" + ] + }, + "gentoo": { + "prefix": "svg.material.gentoo", + "description": "SVG material - gentoo", + "body": [ + "{% svg material gentoo %}" + ] + }, + "gesture": { + "prefix": "svg.material.gesture", + "description": "SVG material - gesture", + "body": [ + "{% svg material gesture %}" + ] + }, + "gesture_double_tap": { + "prefix": "svg.material.gesture_double_tap", + "description": "SVG material - gesture_double_tap", + "body": [ + "{% svg material gesture_double_tap %}" + ] + }, + "gesture_pinch": { + "prefix": "svg.material.gesture_pinch", + "description": "SVG material - gesture_pinch", + "body": [ + "{% svg material gesture_pinch %}" + ] + }, + "gesture_spread": { + "prefix": "svg.material.gesture_spread", + "description": "SVG material - gesture_spread", + "body": [ + "{% svg material gesture_spread %}" + ] + }, + "gesture_swipe": { + "prefix": "svg.material.gesture_swipe", + "description": "SVG material - gesture_swipe", + "body": [ + "{% svg material gesture_swipe %}" + ] + }, + "gesture_swipe_down": { + "prefix": "svg.material.gesture_swipe_down", + "description": "SVG material - gesture_swipe_down", + "body": [ + "{% svg material gesture_swipe_down %}" + ] + }, + "gesture_swipe_horizontal": { + "prefix": "svg.material.gesture_swipe_horizontal", + "description": "SVG material - gesture_swipe_horizontal", + "body": [ + "{% svg material gesture_swipe_horizontal %}" + ] + }, + "gesture_swipe_left": { + "prefix": "svg.material.gesture_swipe_left", + "description": "SVG material - gesture_swipe_left", + "body": [ + "{% svg material gesture_swipe_left %}" + ] + }, + "gesture_swipe_right": { + "prefix": "svg.material.gesture_swipe_right", + "description": "SVG material - gesture_swipe_right", + "body": [ + "{% svg material gesture_swipe_right %}" + ] + }, + "gesture_swipe_up": { + "prefix": "svg.material.gesture_swipe_up", + "description": "SVG material - gesture_swipe_up", + "body": [ + "{% svg material gesture_swipe_up %}" + ] + }, + "gesture_swipe_vertical": { + "prefix": "svg.material.gesture_swipe_vertical", + "description": "SVG material - gesture_swipe_vertical", + "body": [ + "{% svg material gesture_swipe_vertical %}" + ] + }, + "gesture_tap": { + "prefix": "svg.material.gesture_tap", + "description": "SVG material - gesture_tap", + "body": [ + "{% svg material gesture_tap %}" + ] + }, + "gesture_tap_box": { + "prefix": "svg.material.gesture_tap_box", + "description": "SVG material - gesture_tap_box", + "body": [ + "{% svg material gesture_tap_box %}" + ] + }, + "gesture_tap_button": { + "prefix": "svg.material.gesture_tap_button", + "description": "SVG material - gesture_tap_button", + "body": [ + "{% svg material gesture_tap_button %}" + ] + }, + "gesture_tap_hold": { + "prefix": "svg.material.gesture_tap_hold", + "description": "SVG material - gesture_tap_hold", + "body": [ + "{% svg material gesture_tap_hold %}" + ] + }, + "gesture_two_double_tap": { + "prefix": "svg.material.gesture_two_double_tap", + "description": "SVG material - gesture_two_double_tap", + "body": [ + "{% svg material gesture_two_double_tap %}" + ] + }, + "gesture_two_tap": { + "prefix": "svg.material.gesture_two_tap", + "description": "SVG material - gesture_two_tap", + "body": [ + "{% svg material gesture_two_tap %}" + ] + }, + "ghost": { + "prefix": "svg.material.ghost", + "description": "SVG material - ghost", + "body": [ + "{% svg material ghost %}" + ] + }, + "ghost_off": { + "prefix": "svg.material.ghost_off", + "description": "SVG material - ghost_off", + "body": [ + "{% svg material ghost_off %}" + ] + }, + "ghost_off_outline": { + "prefix": "svg.material.ghost_off_outline", + "description": "SVG material - ghost_off_outline", + "body": [ + "{% svg material ghost_off_outline %}" + ] + }, + "ghost_outline": { + "prefix": "svg.material.ghost_outline", + "description": "SVG material - ghost_outline", + "body": [ + "{% svg material ghost_outline %}" + ] + }, + "gift": { + "prefix": "svg.material.gift", + "description": "SVG material - gift", + "body": [ + "{% svg material gift %}" + ] + }, + "gift_off": { + "prefix": "svg.material.gift_off", + "description": "SVG material - gift_off", + "body": [ + "{% svg material gift_off %}" + ] + }, + "gift_off_outline": { + "prefix": "svg.material.gift_off_outline", + "description": "SVG material - gift_off_outline", + "body": [ + "{% svg material gift_off_outline %}" + ] + }, + "gift_open": { + "prefix": "svg.material.gift_open", + "description": "SVG material - gift_open", + "body": [ + "{% svg material gift_open %}" + ] + }, + "gift_open_outline": { + "prefix": "svg.material.gift_open_outline", + "description": "SVG material - gift_open_outline", + "body": [ + "{% svg material gift_open_outline %}" + ] + }, + "gift_outline": { + "prefix": "svg.material.gift_outline", + "description": "SVG material - gift_outline", + "body": [ + "{% svg material gift_outline %}" + ] + }, + "git": { + "prefix": "svg.material.git", + "description": "SVG material - git", + "body": [ + "{% svg material git %}" + ] + }, + "github": { + "prefix": "svg.material.github", + "description": "SVG material - github", + "body": [ + "{% svg material github %}" + ] + }, + "gitlab": { + "prefix": "svg.material.gitlab", + "description": "SVG material - gitlab", + "body": [ + "{% svg material gitlab %}" + ] + }, + "glass_cocktail": { + "prefix": "svg.material.glass_cocktail", + "description": "SVG material - glass_cocktail", + "body": [ + "{% svg material glass_cocktail %}" + ] + }, + "glass_cocktail_off": { + "prefix": "svg.material.glass_cocktail_off", + "description": "SVG material - glass_cocktail_off", + "body": [ + "{% svg material glass_cocktail_off %}" + ] + }, + "glass_flute": { + "prefix": "svg.material.glass_flute", + "description": "SVG material - glass_flute", + "body": [ + "{% svg material glass_flute %}" + ] + }, + "glass_fragile": { + "prefix": "svg.material.glass_fragile", + "description": "SVG material - glass_fragile", + "body": [ + "{% svg material glass_fragile %}" + ] + }, + "glass_mug": { + "prefix": "svg.material.glass_mug", + "description": "SVG material - glass_mug", + "body": [ + "{% svg material glass_mug %}" + ] + }, + "glass_mug_off": { + "prefix": "svg.material.glass_mug_off", + "description": "SVG material - glass_mug_off", + "body": [ + "{% svg material glass_mug_off %}" + ] + }, + "glass_mug_variant": { + "prefix": "svg.material.glass_mug_variant", + "description": "SVG material - glass_mug_variant", + "body": [ + "{% svg material glass_mug_variant %}" + ] + }, + "glass_mug_variant_off": { + "prefix": "svg.material.glass_mug_variant_off", + "description": "SVG material - glass_mug_variant_off", + "body": [ + "{% svg material glass_mug_variant_off %}" + ] + }, + "glass_pint_outline": { + "prefix": "svg.material.glass_pint_outline", + "description": "SVG material - glass_pint_outline", + "body": [ + "{% svg material glass_pint_outline %}" + ] + }, + "glass_stange": { + "prefix": "svg.material.glass_stange", + "description": "SVG material - glass_stange", + "body": [ + "{% svg material glass_stange %}" + ] + }, + "glass_tulip": { + "prefix": "svg.material.glass_tulip", + "description": "SVG material - glass_tulip", + "body": [ + "{% svg material glass_tulip %}" + ] + }, + "glass_wine": { + "prefix": "svg.material.glass_wine", + "description": "SVG material - glass_wine", + "body": [ + "{% svg material glass_wine %}" + ] + }, + "glasses": { + "prefix": "svg.material.glasses", + "description": "SVG material - glasses", + "body": [ + "{% svg material glasses %}" + ] + }, + "globe_light": { + "prefix": "svg.material.globe_light", + "description": "SVG material - globe_light", + "body": [ + "{% svg material globe_light %}" + ] + }, + "globe_light_outline": { + "prefix": "svg.material.globe_light_outline", + "description": "SVG material - globe_light_outline", + "body": [ + "{% svg material globe_light_outline %}" + ] + }, + "globe_model": { + "prefix": "svg.material.globe_model", + "description": "SVG material - globe_model", + "body": [ + "{% svg material globe_model %}" + ] + }, + "gmail": { + "prefix": "svg.material.gmail", + "description": "SVG material - gmail", + "body": [ + "{% svg material gmail %}" + ] + }, + "gnome": { + "prefix": "svg.material.gnome", + "description": "SVG material - gnome", + "body": [ + "{% svg material gnome %}" + ] + }, + "go_kart": { + "prefix": "svg.material.go_kart", + "description": "SVG material - go_kart", + "body": [ + "{% svg material go_kart %}" + ] + }, + "go_kart_track": { + "prefix": "svg.material.go_kart_track", + "description": "SVG material - go_kart_track", + "body": [ + "{% svg material go_kart_track %}" + ] + }, + "gog": { + "prefix": "svg.material.gog", + "description": "SVG material - gog", + "body": [ + "{% svg material gog %}" + ] + }, + "gold": { + "prefix": "svg.material.gold", + "description": "SVG material - gold", + "body": [ + "{% svg material gold %}" + ] + }, + "golf": { + "prefix": "svg.material.golf", + "description": "SVG material - golf", + "body": [ + "{% svg material golf %}" + ] + }, + "golf_cart": { + "prefix": "svg.material.golf_cart", + "description": "SVG material - golf_cart", + "body": [ + "{% svg material golf_cart %}" + ] + }, + "golf_tee": { + "prefix": "svg.material.golf_tee", + "description": "SVG material - golf_tee", + "body": [ + "{% svg material golf_tee %}" + ] + }, + "gondola": { + "prefix": "svg.material.gondola", + "description": "SVG material - gondola", + "body": [ + "{% svg material gondola %}" + ] + }, + "goodreads": { + "prefix": "svg.material.goodreads", + "description": "SVG material - goodreads", + "body": [ + "{% svg material goodreads %}" + ] + }, + "google": { + "prefix": "svg.material.google", + "description": "SVG material - google", + "body": [ + "{% svg material google %}" + ] + }, + "google_ads": { + "prefix": "svg.material.google_ads", + "description": "SVG material - google_ads", + "body": [ + "{% svg material google_ads %}" + ] + }, + "google_analytics": { + "prefix": "svg.material.google_analytics", + "description": "SVG material - google_analytics", + "body": [ + "{% svg material google_analytics %}" + ] + }, + "google_assistant": { + "prefix": "svg.material.google_assistant", + "description": "SVG material - google_assistant", + "body": [ + "{% svg material google_assistant %}" + ] + }, + "google_cardboard": { + "prefix": "svg.material.google_cardboard", + "description": "SVG material - google_cardboard", + "body": [ + "{% svg material google_cardboard %}" + ] + }, + "google_chrome": { + "prefix": "svg.material.google_chrome", + "description": "SVG material - google_chrome", + "body": [ + "{% svg material google_chrome %}" + ] + }, + "google_circles": { + "prefix": "svg.material.google_circles", + "description": "SVG material - google_circles", + "body": [ + "{% svg material google_circles %}" + ] + }, + "google_circles_communities": { + "prefix": "svg.material.google_circles_communities", + "description": "SVG material - google_circles_communities", + "body": [ + "{% svg material google_circles_communities %}" + ] + }, + "google_circles_extended": { + "prefix": "svg.material.google_circles_extended", + "description": "SVG material - google_circles_extended", + "body": [ + "{% svg material google_circles_extended %}" + ] + }, + "google_circles_group": { + "prefix": "svg.material.google_circles_group", + "description": "SVG material - google_circles_group", + "body": [ + "{% svg material google_circles_group %}" + ] + }, + "google_classroom": { + "prefix": "svg.material.google_classroom", + "description": "SVG material - google_classroom", + "body": [ + "{% svg material google_classroom %}" + ] + }, + "google_cloud": { + "prefix": "svg.material.google_cloud", + "description": "SVG material - google_cloud", + "body": [ + "{% svg material google_cloud %}" + ] + }, + "google_downasaur": { + "prefix": "svg.material.google_downasaur", + "description": "SVG material - google_downasaur", + "body": [ + "{% svg material google_downasaur %}" + ] + }, + "google_drive": { + "prefix": "svg.material.google_drive", + "description": "SVG material - google_drive", + "body": [ + "{% svg material google_drive %}" + ] + }, + "google_earth": { + "prefix": "svg.material.google_earth", + "description": "SVG material - google_earth", + "body": [ + "{% svg material google_earth %}" + ] + }, + "google_fit": { + "prefix": "svg.material.google_fit", + "description": "SVG material - google_fit", + "body": [ + "{% svg material google_fit %}" + ] + }, + "google_glass": { + "prefix": "svg.material.google_glass", + "description": "SVG material - google_glass", + "body": [ + "{% svg material google_glass %}" + ] + }, + "google_hangouts": { + "prefix": "svg.material.google_hangouts", + "description": "SVG material - google_hangouts", + "body": [ + "{% svg material google_hangouts %}" + ] + }, + "google_keep": { + "prefix": "svg.material.google_keep", + "description": "SVG material - google_keep", + "body": [ + "{% svg material google_keep %}" + ] + }, + "google_lens": { + "prefix": "svg.material.google_lens", + "description": "SVG material - google_lens", + "body": [ + "{% svg material google_lens %}" + ] + }, + "google_maps": { + "prefix": "svg.material.google_maps", + "description": "SVG material - google_maps", + "body": [ + "{% svg material google_maps %}" + ] + }, + "google_my_business": { + "prefix": "svg.material.google_my_business", + "description": "SVG material - google_my_business", + "body": [ + "{% svg material google_my_business %}" + ] + }, + "google_nearby": { + "prefix": "svg.material.google_nearby", + "description": "SVG material - google_nearby", + "body": [ + "{% svg material google_nearby %}" + ] + }, + "google_play": { + "prefix": "svg.material.google_play", + "description": "SVG material - google_play", + "body": [ + "{% svg material google_play %}" + ] + }, + "google_plus": { + "prefix": "svg.material.google_plus", + "description": "SVG material - google_plus", + "body": [ + "{% svg material google_plus %}" + ] + }, + "google_podcast": { + "prefix": "svg.material.google_podcast", + "description": "SVG material - google_podcast", + "body": [ + "{% svg material google_podcast %}" + ] + }, + "google_spreadsheet": { + "prefix": "svg.material.google_spreadsheet", + "description": "SVG material - google_spreadsheet", + "body": [ + "{% svg material google_spreadsheet %}" + ] + }, + "google_street_view": { + "prefix": "svg.material.google_street_view", + "description": "SVG material - google_street_view", + "body": [ + "{% svg material google_street_view %}" + ] + }, + "google_translate": { + "prefix": "svg.material.google_translate", + "description": "SVG material - google_translate", + "body": [ + "{% svg material google_translate %}" + ] + }, + "gradient_horizontal": { + "prefix": "svg.material.gradient_horizontal", + "description": "SVG material - gradient_horizontal", + "body": [ + "{% svg material gradient_horizontal %}" + ] + }, + "gradient_vertical": { + "prefix": "svg.material.gradient_vertical", + "description": "SVG material - gradient_vertical", + "body": [ + "{% svg material gradient_vertical %}" + ] + }, + "grain": { + "prefix": "svg.material.grain", + "description": "SVG material - grain", + "body": [ + "{% svg material grain %}" + ] + }, + "graph": { + "prefix": "svg.material.graph", + "description": "SVG material - graph", + "body": [ + "{% svg material graph %}" + ] + }, + "graph_outline": { + "prefix": "svg.material.graph_outline", + "description": "SVG material - graph_outline", + "body": [ + "{% svg material graph_outline %}" + ] + }, + "graphql": { + "prefix": "svg.material.graphql", + "description": "SVG material - graphql", + "body": [ + "{% svg material graphql %}" + ] + }, + "grass": { + "prefix": "svg.material.grass", + "description": "SVG material - grass", + "body": [ + "{% svg material grass %}" + ] + }, + "grave_stone": { + "prefix": "svg.material.grave_stone", + "description": "SVG material - grave_stone", + "body": [ + "{% svg material grave_stone %}" + ] + }, + "grease_pencil": { + "prefix": "svg.material.grease_pencil", + "description": "SVG material - grease_pencil", + "body": [ + "{% svg material grease_pencil %}" + ] + }, + "greater_than": { + "prefix": "svg.material.greater_than", + "description": "SVG material - greater_than", + "body": [ + "{% svg material greater_than %}" + ] + }, + "greater_than_or_equal": { + "prefix": "svg.material.greater_than_or_equal", + "description": "SVG material - greater_than_or_equal", + "body": [ + "{% svg material greater_than_or_equal %}" + ] + }, + "greenhouse": { + "prefix": "svg.material.greenhouse", + "description": "SVG material - greenhouse", + "body": [ + "{% svg material greenhouse %}" + ] + }, + "grid": { + "prefix": "svg.material.grid", + "description": "SVG material - grid", + "body": [ + "{% svg material grid %}" + ] + }, + "grid_large": { + "prefix": "svg.material.grid_large", + "description": "SVG material - grid_large", + "body": [ + "{% svg material grid_large %}" + ] + }, + "grid_off": { + "prefix": "svg.material.grid_off", + "description": "SVG material - grid_off", + "body": [ + "{% svg material grid_off %}" + ] + }, + "grill": { + "prefix": "svg.material.grill", + "description": "SVG material - grill", + "body": [ + "{% svg material grill %}" + ] + }, + "grill_outline": { + "prefix": "svg.material.grill_outline", + "description": "SVG material - grill_outline", + "body": [ + "{% svg material grill_outline %}" + ] + }, + "group": { + "prefix": "svg.material.group", + "description": "SVG material - group", + "body": [ + "{% svg material group %}" + ] + }, + "guitar_acoustic": { + "prefix": "svg.material.guitar_acoustic", + "description": "SVG material - guitar_acoustic", + "body": [ + "{% svg material guitar_acoustic %}" + ] + }, + "guitar_electric": { + "prefix": "svg.material.guitar_electric", + "description": "SVG material - guitar_electric", + "body": [ + "{% svg material guitar_electric %}" + ] + }, + "guitar_pick": { + "prefix": "svg.material.guitar_pick", + "description": "SVG material - guitar_pick", + "body": [ + "{% svg material guitar_pick %}" + ] + }, + "guitar_pick_outline": { + "prefix": "svg.material.guitar_pick_outline", + "description": "SVG material - guitar_pick_outline", + "body": [ + "{% svg material guitar_pick_outline %}" + ] + }, + "guy_fawkes_mask": { + "prefix": "svg.material.guy_fawkes_mask", + "description": "SVG material - guy_fawkes_mask", + "body": [ + "{% svg material guy_fawkes_mask %}" + ] + }, + "gymnastics": { + "prefix": "svg.material.gymnastics", + "description": "SVG material - gymnastics", + "body": [ + "{% svg material gymnastics %}" + ] + }, + "hail": { + "prefix": "svg.material.hail", + "description": "SVG material - hail", + "body": [ + "{% svg material hail %}" + ] + }, + "hair_dryer": { + "prefix": "svg.material.hair_dryer", + "description": "SVG material - hair_dryer", + "body": [ + "{% svg material hair_dryer %}" + ] + }, + "hair_dryer_outline": { + "prefix": "svg.material.hair_dryer_outline", + "description": "SVG material - hair_dryer_outline", + "body": [ + "{% svg material hair_dryer_outline %}" + ] + }, + "halloween": { + "prefix": "svg.material.halloween", + "description": "SVG material - halloween", + "body": [ + "{% svg material halloween %}" + ] + }, + "hamburger": { + "prefix": "svg.material.hamburger", + "description": "SVG material - hamburger", + "body": [ + "{% svg material hamburger %}" + ] + }, + "hamburger_check": { + "prefix": "svg.material.hamburger_check", + "description": "SVG material - hamburger_check", + "body": [ + "{% svg material hamburger_check %}" + ] + }, + "hamburger_minus": { + "prefix": "svg.material.hamburger_minus", + "description": "SVG material - hamburger_minus", + "body": [ + "{% svg material hamburger_minus %}" + ] + }, + "hamburger_off": { + "prefix": "svg.material.hamburger_off", + "description": "SVG material - hamburger_off", + "body": [ + "{% svg material hamburger_off %}" + ] + }, + "hamburger_plus": { + "prefix": "svg.material.hamburger_plus", + "description": "SVG material - hamburger_plus", + "body": [ + "{% svg material hamburger_plus %}" + ] + }, + "hamburger_remove": { + "prefix": "svg.material.hamburger_remove", + "description": "SVG material - hamburger_remove", + "body": [ + "{% svg material hamburger_remove %}" + ] + }, + "hammer": { + "prefix": "svg.material.hammer", + "description": "SVG material - hammer", + "body": [ + "{% svg material hammer %}" + ] + }, + "hammer_screwdriver": { + "prefix": "svg.material.hammer_screwdriver", + "description": "SVG material - hammer_screwdriver", + "body": [ + "{% svg material hammer_screwdriver %}" + ] + }, + "hammer_sickle": { + "prefix": "svg.material.hammer_sickle", + "description": "SVG material - hammer_sickle", + "body": [ + "{% svg material hammer_sickle %}" + ] + }, + "hammer_wrench": { + "prefix": "svg.material.hammer_wrench", + "description": "SVG material - hammer_wrench", + "body": [ + "{% svg material hammer_wrench %}" + ] + }, + "hand_back_left": { + "prefix": "svg.material.hand_back_left", + "description": "SVG material - hand_back_left", + "body": [ + "{% svg material hand_back_left %}" + ] + }, + "hand_back_left_off": { + "prefix": "svg.material.hand_back_left_off", + "description": "SVG material - hand_back_left_off", + "body": [ + "{% svg material hand_back_left_off %}" + ] + }, + "hand_back_left_off_outline": { + "prefix": "svg.material.hand_back_left_off_outline", + "description": "SVG material - hand_back_left_off_outline", + "body": [ + "{% svg material hand_back_left_off_outline %}" + ] + }, + "hand_back_left_outline": { + "prefix": "svg.material.hand_back_left_outline", + "description": "SVG material - hand_back_left_outline", + "body": [ + "{% svg material hand_back_left_outline %}" + ] + }, + "hand_back_right": { + "prefix": "svg.material.hand_back_right", + "description": "SVG material - hand_back_right", + "body": [ + "{% svg material hand_back_right %}" + ] + }, + "hand_back_right_off": { + "prefix": "svg.material.hand_back_right_off", + "description": "SVG material - hand_back_right_off", + "body": [ + "{% svg material hand_back_right_off %}" + ] + }, + "hand_back_right_off_outline": { + "prefix": "svg.material.hand_back_right_off_outline", + "description": "SVG material - hand_back_right_off_outline", + "body": [ + "{% svg material hand_back_right_off_outline %}" + ] + }, + "hand_back_right_outline": { + "prefix": "svg.material.hand_back_right_outline", + "description": "SVG material - hand_back_right_outline", + "body": [ + "{% svg material hand_back_right_outline %}" + ] + }, + "hand_clap": { + "prefix": "svg.material.hand_clap", + "description": "SVG material - hand_clap", + "body": [ + "{% svg material hand_clap %}" + ] + }, + "hand_clap_off": { + "prefix": "svg.material.hand_clap_off", + "description": "SVG material - hand_clap_off", + "body": [ + "{% svg material hand_clap_off %}" + ] + }, + "hand_coin": { + "prefix": "svg.material.hand_coin", + "description": "SVG material - hand_coin", + "body": [ + "{% svg material hand_coin %}" + ] + }, + "hand_coin_outline": { + "prefix": "svg.material.hand_coin_outline", + "description": "SVG material - hand_coin_outline", + "body": [ + "{% svg material hand_coin_outline %}" + ] + }, + "hand_cycle": { + "prefix": "svg.material.hand_cycle", + "description": "SVG material - hand_cycle", + "body": [ + "{% svg material hand_cycle %}" + ] + }, + "hand_extended": { + "prefix": "svg.material.hand_extended", + "description": "SVG material - hand_extended", + "body": [ + "{% svg material hand_extended %}" + ] + }, + "hand_extended_outline": { + "prefix": "svg.material.hand_extended_outline", + "description": "SVG material - hand_extended_outline", + "body": [ + "{% svg material hand_extended_outline %}" + ] + }, + "hand_front_left": { + "prefix": "svg.material.hand_front_left", + "description": "SVG material - hand_front_left", + "body": [ + "{% svg material hand_front_left %}" + ] + }, + "hand_front_left_outline": { + "prefix": "svg.material.hand_front_left_outline", + "description": "SVG material - hand_front_left_outline", + "body": [ + "{% svg material hand_front_left_outline %}" + ] + }, + "hand_front_right": { + "prefix": "svg.material.hand_front_right", + "description": "SVG material - hand_front_right", + "body": [ + "{% svg material hand_front_right %}" + ] + }, + "hand_front_right_outline": { + "prefix": "svg.material.hand_front_right_outline", + "description": "SVG material - hand_front_right_outline", + "body": [ + "{% svg material hand_front_right_outline %}" + ] + }, + "hand_heart": { + "prefix": "svg.material.hand_heart", + "description": "SVG material - hand_heart", + "body": [ + "{% svg material hand_heart %}" + ] + }, + "hand_heart_outline": { + "prefix": "svg.material.hand_heart_outline", + "description": "SVG material - hand_heart_outline", + "body": [ + "{% svg material hand_heart_outline %}" + ] + }, + "hand_okay": { + "prefix": "svg.material.hand_okay", + "description": "SVG material - hand_okay", + "body": [ + "{% svg material hand_okay %}" + ] + }, + "hand_peace": { + "prefix": "svg.material.hand_peace", + "description": "SVG material - hand_peace", + "body": [ + "{% svg material hand_peace %}" + ] + }, + "hand_peace_variant": { + "prefix": "svg.material.hand_peace_variant", + "description": "SVG material - hand_peace_variant", + "body": [ + "{% svg material hand_peace_variant %}" + ] + }, + "hand_pointing_down": { + "prefix": "svg.material.hand_pointing_down", + "description": "SVG material - hand_pointing_down", + "body": [ + "{% svg material hand_pointing_down %}" + ] + }, + "hand_pointing_left": { + "prefix": "svg.material.hand_pointing_left", + "description": "SVG material - hand_pointing_left", + "body": [ + "{% svg material hand_pointing_left %}" + ] + }, + "hand_pointing_right": { + "prefix": "svg.material.hand_pointing_right", + "description": "SVG material - hand_pointing_right", + "body": [ + "{% svg material hand_pointing_right %}" + ] + }, + "hand_pointing_up": { + "prefix": "svg.material.hand_pointing_up", + "description": "SVG material - hand_pointing_up", + "body": [ + "{% svg material hand_pointing_up %}" + ] + }, + "hand_saw": { + "prefix": "svg.material.hand_saw", + "description": "SVG material - hand_saw", + "body": [ + "{% svg material hand_saw %}" + ] + }, + "hand_wash": { + "prefix": "svg.material.hand_wash", + "description": "SVG material - hand_wash", + "body": [ + "{% svg material hand_wash %}" + ] + }, + "hand_wash_outline": { + "prefix": "svg.material.hand_wash_outline", + "description": "SVG material - hand_wash_outline", + "body": [ + "{% svg material hand_wash_outline %}" + ] + }, + "hand_water": { + "prefix": "svg.material.hand_water", + "description": "SVG material - hand_water", + "body": [ + "{% svg material hand_water %}" + ] + }, + "hand_wave": { + "prefix": "svg.material.hand_wave", + "description": "SVG material - hand_wave", + "body": [ + "{% svg material hand_wave %}" + ] + }, + "hand_wave_outline": { + "prefix": "svg.material.hand_wave_outline", + "description": "SVG material - hand_wave_outline", + "body": [ + "{% svg material hand_wave_outline %}" + ] + }, + "handball": { + "prefix": "svg.material.handball", + "description": "SVG material - handball", + "body": [ + "{% svg material handball %}" + ] + }, + "handcuffs": { + "prefix": "svg.material.handcuffs", + "description": "SVG material - handcuffs", + "body": [ + "{% svg material handcuffs %}" + ] + }, + "hands_pray": { + "prefix": "svg.material.hands_pray", + "description": "SVG material - hands_pray", + "body": [ + "{% svg material hands_pray %}" + ] + }, + "handshake": { + "prefix": "svg.material.handshake", + "description": "SVG material - handshake", + "body": [ + "{% svg material handshake %}" + ] + }, + "handshake_outline": { + "prefix": "svg.material.handshake_outline", + "description": "SVG material - handshake_outline", + "body": [ + "{% svg material handshake_outline %}" + ] + }, + "hanger": { + "prefix": "svg.material.hanger", + "description": "SVG material - hanger", + "body": [ + "{% svg material hanger %}" + ] + }, + "hard_hat": { + "prefix": "svg.material.hard_hat", + "description": "SVG material - hard_hat", + "body": [ + "{% svg material hard_hat %}" + ] + }, + "harddisk": { + "prefix": "svg.material.harddisk", + "description": "SVG material - harddisk", + "body": [ + "{% svg material harddisk %}" + ] + }, + "harddisk_plus": { + "prefix": "svg.material.harddisk_plus", + "description": "SVG material - harddisk_plus", + "body": [ + "{% svg material harddisk_plus %}" + ] + }, + "harddisk_remove": { + "prefix": "svg.material.harddisk_remove", + "description": "SVG material - harddisk_remove", + "body": [ + "{% svg material harddisk_remove %}" + ] + }, + "hat_fedora": { + "prefix": "svg.material.hat_fedora", + "description": "SVG material - hat_fedora", + "body": [ + "{% svg material hat_fedora %}" + ] + }, + "hazard_lights": { + "prefix": "svg.material.hazard_lights", + "description": "SVG material - hazard_lights", + "body": [ + "{% svg material hazard_lights %}" + ] + }, + "hdmi_port": { + "prefix": "svg.material.hdmi_port", + "description": "SVG material - hdmi_port", + "body": [ + "{% svg material hdmi_port %}" + ] + }, + "hdr": { + "prefix": "svg.material.hdr", + "description": "SVG material - hdr", + "body": [ + "{% svg material hdr %}" + ] + }, + "hdr_off": { + "prefix": "svg.material.hdr_off", + "description": "SVG material - hdr_off", + "body": [ + "{% svg material hdr_off %}" + ] + }, + "head": { + "prefix": "svg.material.head", + "description": "SVG material - head", + "body": [ + "{% svg material head %}" + ] + }, + "head_alert": { + "prefix": "svg.material.head_alert", + "description": "SVG material - head_alert", + "body": [ + "{% svg material head_alert %}" + ] + }, + "head_alert_outline": { + "prefix": "svg.material.head_alert_outline", + "description": "SVG material - head_alert_outline", + "body": [ + "{% svg material head_alert_outline %}" + ] + }, + "head_check": { + "prefix": "svg.material.head_check", + "description": "SVG material - head_check", + "body": [ + "{% svg material head_check %}" + ] + }, + "head_check_outline": { + "prefix": "svg.material.head_check_outline", + "description": "SVG material - head_check_outline", + "body": [ + "{% svg material head_check_outline %}" + ] + }, + "head_cog": { + "prefix": "svg.material.head_cog", + "description": "SVG material - head_cog", + "body": [ + "{% svg material head_cog %}" + ] + }, + "head_cog_outline": { + "prefix": "svg.material.head_cog_outline", + "description": "SVG material - head_cog_outline", + "body": [ + "{% svg material head_cog_outline %}" + ] + }, + "head_dots_horizontal": { + "prefix": "svg.material.head_dots_horizontal", + "description": "SVG material - head_dots_horizontal", + "body": [ + "{% svg material head_dots_horizontal %}" + ] + }, + "head_dots_horizontal_outline": { + "prefix": "svg.material.head_dots_horizontal_outline", + "description": "SVG material - head_dots_horizontal_outline", + "body": [ + "{% svg material head_dots_horizontal_outline %}" + ] + }, + "head_flash": { + "prefix": "svg.material.head_flash", + "description": "SVG material - head_flash", + "body": [ + "{% svg material head_flash %}" + ] + }, + "head_flash_outline": { + "prefix": "svg.material.head_flash_outline", + "description": "SVG material - head_flash_outline", + "body": [ + "{% svg material head_flash_outline %}" + ] + }, + "head_heart": { + "prefix": "svg.material.head_heart", + "description": "SVG material - head_heart", + "body": [ + "{% svg material head_heart %}" + ] + }, + "head_heart_outline": { + "prefix": "svg.material.head_heart_outline", + "description": "SVG material - head_heart_outline", + "body": [ + "{% svg material head_heart_outline %}" + ] + }, + "head_lightbulb": { + "prefix": "svg.material.head_lightbulb", + "description": "SVG material - head_lightbulb", + "body": [ + "{% svg material head_lightbulb %}" + ] + }, + "head_lightbulb_outline": { + "prefix": "svg.material.head_lightbulb_outline", + "description": "SVG material - head_lightbulb_outline", + "body": [ + "{% svg material head_lightbulb_outline %}" + ] + }, + "head_minus": { + "prefix": "svg.material.head_minus", + "description": "SVG material - head_minus", + "body": [ + "{% svg material head_minus %}" + ] + }, + "head_minus_outline": { + "prefix": "svg.material.head_minus_outline", + "description": "SVG material - head_minus_outline", + "body": [ + "{% svg material head_minus_outline %}" + ] + }, + "head_outline": { + "prefix": "svg.material.head_outline", + "description": "SVG material - head_outline", + "body": [ + "{% svg material head_outline %}" + ] + }, + "head_plus": { + "prefix": "svg.material.head_plus", + "description": "SVG material - head_plus", + "body": [ + "{% svg material head_plus %}" + ] + }, + "head_plus_outline": { + "prefix": "svg.material.head_plus_outline", + "description": "SVG material - head_plus_outline", + "body": [ + "{% svg material head_plus_outline %}" + ] + }, + "head_question": { + "prefix": "svg.material.head_question", + "description": "SVG material - head_question", + "body": [ + "{% svg material head_question %}" + ] + }, + "head_question_outline": { + "prefix": "svg.material.head_question_outline", + "description": "SVG material - head_question_outline", + "body": [ + "{% svg material head_question_outline %}" + ] + }, + "head_remove": { + "prefix": "svg.material.head_remove", + "description": "SVG material - head_remove", + "body": [ + "{% svg material head_remove %}" + ] + }, + "head_remove_outline": { + "prefix": "svg.material.head_remove_outline", + "description": "SVG material - head_remove_outline", + "body": [ + "{% svg material head_remove_outline %}" + ] + }, + "head_snowflake": { + "prefix": "svg.material.head_snowflake", + "description": "SVG material - head_snowflake", + "body": [ + "{% svg material head_snowflake %}" + ] + }, + "head_snowflake_outline": { + "prefix": "svg.material.head_snowflake_outline", + "description": "SVG material - head_snowflake_outline", + "body": [ + "{% svg material head_snowflake_outline %}" + ] + }, + "head_sync": { + "prefix": "svg.material.head_sync", + "description": "SVG material - head_sync", + "body": [ + "{% svg material head_sync %}" + ] + }, + "head_sync_outline": { + "prefix": "svg.material.head_sync_outline", + "description": "SVG material - head_sync_outline", + "body": [ + "{% svg material head_sync_outline %}" + ] + }, + "headphones": { + "prefix": "svg.material.headphones", + "description": "SVG material - headphones", + "body": [ + "{% svg material headphones %}" + ] + }, + "headphones_bluetooth": { + "prefix": "svg.material.headphones_bluetooth", + "description": "SVG material - headphones_bluetooth", + "body": [ + "{% svg material headphones_bluetooth %}" + ] + }, + "headphones_box": { + "prefix": "svg.material.headphones_box", + "description": "SVG material - headphones_box", + "body": [ + "{% svg material headphones_box %}" + ] + }, + "headphones_off": { + "prefix": "svg.material.headphones_off", + "description": "SVG material - headphones_off", + "body": [ + "{% svg material headphones_off %}" + ] + }, + "headphones_settings": { + "prefix": "svg.material.headphones_settings", + "description": "SVG material - headphones_settings", + "body": [ + "{% svg material headphones_settings %}" + ] + }, + "headset": { + "prefix": "svg.material.headset", + "description": "SVG material - headset", + "body": [ + "{% svg material headset %}" + ] + }, + "headset_dock": { + "prefix": "svg.material.headset_dock", + "description": "SVG material - headset_dock", + "body": [ + "{% svg material headset_dock %}" + ] + }, + "headset_off": { + "prefix": "svg.material.headset_off", + "description": "SVG material - headset_off", + "body": [ + "{% svg material headset_off %}" + ] + }, + "heart": { + "prefix": "svg.material.heart", + "description": "SVG material - heart", + "body": [ + "{% svg material heart %}" + ] + }, + "heart_box": { + "prefix": "svg.material.heart_box", + "description": "SVG material - heart_box", + "body": [ + "{% svg material heart_box %}" + ] + }, + "heart_box_outline": { + "prefix": "svg.material.heart_box_outline", + "description": "SVG material - heart_box_outline", + "body": [ + "{% svg material heart_box_outline %}" + ] + }, + "heart_broken": { + "prefix": "svg.material.heart_broken", + "description": "SVG material - heart_broken", + "body": [ + "{% svg material heart_broken %}" + ] + }, + "heart_broken_outline": { + "prefix": "svg.material.heart_broken_outline", + "description": "SVG material - heart_broken_outline", + "body": [ + "{% svg material heart_broken_outline %}" + ] + }, + "heart_circle": { + "prefix": "svg.material.heart_circle", + "description": "SVG material - heart_circle", + "body": [ + "{% svg material heart_circle %}" + ] + }, + "heart_circle_outline": { + "prefix": "svg.material.heart_circle_outline", + "description": "SVG material - heart_circle_outline", + "body": [ + "{% svg material heart_circle_outline %}" + ] + }, + "heart_cog": { + "prefix": "svg.material.heart_cog", + "description": "SVG material - heart_cog", + "body": [ + "{% svg material heart_cog %}" + ] + }, + "heart_cog_outline": { + "prefix": "svg.material.heart_cog_outline", + "description": "SVG material - heart_cog_outline", + "body": [ + "{% svg material heart_cog_outline %}" + ] + }, + "heart_flash": { + "prefix": "svg.material.heart_flash", + "description": "SVG material - heart_flash", + "body": [ + "{% svg material heart_flash %}" + ] + }, + "heart_half": { + "prefix": "svg.material.heart_half", + "description": "SVG material - heart_half", + "body": [ + "{% svg material heart_half %}" + ] + }, + "heart_half_full": { + "prefix": "svg.material.heart_half_full", + "description": "SVG material - heart_half_full", + "body": [ + "{% svg material heart_half_full %}" + ] + }, + "heart_half_outline": { + "prefix": "svg.material.heart_half_outline", + "description": "SVG material - heart_half_outline", + "body": [ + "{% svg material heart_half_outline %}" + ] + }, + "heart_minus": { + "prefix": "svg.material.heart_minus", + "description": "SVG material - heart_minus", + "body": [ + "{% svg material heart_minus %}" + ] + }, + "heart_minus_outline": { + "prefix": "svg.material.heart_minus_outline", + "description": "SVG material - heart_minus_outline", + "body": [ + "{% svg material heart_minus_outline %}" + ] + }, + "heart_multiple": { + "prefix": "svg.material.heart_multiple", + "description": "SVG material - heart_multiple", + "body": [ + "{% svg material heart_multiple %}" + ] + }, + "heart_multiple_outline": { + "prefix": "svg.material.heart_multiple_outline", + "description": "SVG material - heart_multiple_outline", + "body": [ + "{% svg material heart_multiple_outline %}" + ] + }, + "heart_off": { + "prefix": "svg.material.heart_off", + "description": "SVG material - heart_off", + "body": [ + "{% svg material heart_off %}" + ] + }, + "heart_off_outline": { + "prefix": "svg.material.heart_off_outline", + "description": "SVG material - heart_off_outline", + "body": [ + "{% svg material heart_off_outline %}" + ] + }, + "heart_outline": { + "prefix": "svg.material.heart_outline", + "description": "SVG material - heart_outline", + "body": [ + "{% svg material heart_outline %}" + ] + }, + "heart_plus": { + "prefix": "svg.material.heart_plus", + "description": "SVG material - heart_plus", + "body": [ + "{% svg material heart_plus %}" + ] + }, + "heart_plus_outline": { + "prefix": "svg.material.heart_plus_outline", + "description": "SVG material - heart_plus_outline", + "body": [ + "{% svg material heart_plus_outline %}" + ] + }, + "heart_pulse": { + "prefix": "svg.material.heart_pulse", + "description": "SVG material - heart_pulse", + "body": [ + "{% svg material heart_pulse %}" + ] + }, + "heart_remove": { + "prefix": "svg.material.heart_remove", + "description": "SVG material - heart_remove", + "body": [ + "{% svg material heart_remove %}" + ] + }, + "heart_remove_outline": { + "prefix": "svg.material.heart_remove_outline", + "description": "SVG material - heart_remove_outline", + "body": [ + "{% svg material heart_remove_outline %}" + ] + }, + "heart_search": { + "prefix": "svg.material.heart_search", + "description": "SVG material - heart_search", + "body": [ + "{% svg material heart_search %}" + ] + }, + "heart_settings": { + "prefix": "svg.material.heart_settings", + "description": "SVG material - heart_settings", + "body": [ + "{% svg material heart_settings %}" + ] + }, + "heart_settings_outline": { + "prefix": "svg.material.heart_settings_outline", + "description": "SVG material - heart_settings_outline", + "body": [ + "{% svg material heart_settings_outline %}" + ] + }, + "heat_pump": { + "prefix": "svg.material.heat_pump", + "description": "SVG material - heat_pump", + "body": [ + "{% svg material heat_pump %}" + ] + }, + "heat_pump_outline": { + "prefix": "svg.material.heat_pump_outline", + "description": "SVG material - heat_pump_outline", + "body": [ + "{% svg material heat_pump_outline %}" + ] + }, + "heat_wave": { + "prefix": "svg.material.heat_wave", + "description": "SVG material - heat_wave", + "body": [ + "{% svg material heat_wave %}" + ] + }, + "heating_coil": { + "prefix": "svg.material.heating_coil", + "description": "SVG material - heating_coil", + "body": [ + "{% svg material heating_coil %}" + ] + }, + "helicopter": { + "prefix": "svg.material.helicopter", + "description": "SVG material - helicopter", + "body": [ + "{% svg material helicopter %}" + ] + }, + "help": { + "prefix": "svg.material.help", + "description": "SVG material - help", + "body": [ + "{% svg material help %}" + ] + }, + "help_box": { + "prefix": "svg.material.help_box", + "description": "SVG material - help_box", + "body": [ + "{% svg material help_box %}" + ] + }, + "help_box_multiple": { + "prefix": "svg.material.help_box_multiple", + "description": "SVG material - help_box_multiple", + "body": [ + "{% svg material help_box_multiple %}" + ] + }, + "help_box_multiple_outline": { + "prefix": "svg.material.help_box_multiple_outline", + "description": "SVG material - help_box_multiple_outline", + "body": [ + "{% svg material help_box_multiple_outline %}" + ] + }, + "help_box_outline": { + "prefix": "svg.material.help_box_outline", + "description": "SVG material - help_box_outline", + "body": [ + "{% svg material help_box_outline %}" + ] + }, + "help_circle": { + "prefix": "svg.material.help_circle", + "description": "SVG material - help_circle", + "body": [ + "{% svg material help_circle %}" + ] + }, + "help_circle_outline": { + "prefix": "svg.material.help_circle_outline", + "description": "SVG material - help_circle_outline", + "body": [ + "{% svg material help_circle_outline %}" + ] + }, + "help_network": { + "prefix": "svg.material.help_network", + "description": "SVG material - help_network", + "body": [ + "{% svg material help_network %}" + ] + }, + "help_network_outline": { + "prefix": "svg.material.help_network_outline", + "description": "SVG material - help_network_outline", + "body": [ + "{% svg material help_network_outline %}" + ] + }, + "help_rhombus": { + "prefix": "svg.material.help_rhombus", + "description": "SVG material - help_rhombus", + "body": [ + "{% svg material help_rhombus %}" + ] + }, + "help_rhombus_outline": { + "prefix": "svg.material.help_rhombus_outline", + "description": "SVG material - help_rhombus_outline", + "body": [ + "{% svg material help_rhombus_outline %}" + ] + }, + "hexadecimal": { + "prefix": "svg.material.hexadecimal", + "description": "SVG material - hexadecimal", + "body": [ + "{% svg material hexadecimal %}" + ] + }, + "hexagon": { + "prefix": "svg.material.hexagon", + "description": "SVG material - hexagon", + "body": [ + "{% svg material hexagon %}" + ] + }, + "hexagon_multiple": { + "prefix": "svg.material.hexagon_multiple", + "description": "SVG material - hexagon_multiple", + "body": [ + "{% svg material hexagon_multiple %}" + ] + }, + "hexagon_multiple_outline": { + "prefix": "svg.material.hexagon_multiple_outline", + "description": "SVG material - hexagon_multiple_outline", + "body": [ + "{% svg material hexagon_multiple_outline %}" + ] + }, + "hexagon_outline": { + "prefix": "svg.material.hexagon_outline", + "description": "SVG material - hexagon_outline", + "body": [ + "{% svg material hexagon_outline %}" + ] + }, + "hexagon_slice_1": { + "prefix": "svg.material.hexagon_slice_1", + "description": "SVG material - hexagon_slice_1", + "body": [ + "{% svg material hexagon_slice_1 %}" + ] + }, + "hexagon_slice_2": { + "prefix": "svg.material.hexagon_slice_2", + "description": "SVG material - hexagon_slice_2", + "body": [ + "{% svg material hexagon_slice_2 %}" + ] + }, + "hexagon_slice_3": { + "prefix": "svg.material.hexagon_slice_3", + "description": "SVG material - hexagon_slice_3", + "body": [ + "{% svg material hexagon_slice_3 %}" + ] + }, + "hexagon_slice_4": { + "prefix": "svg.material.hexagon_slice_4", + "description": "SVG material - hexagon_slice_4", + "body": [ + "{% svg material hexagon_slice_4 %}" + ] + }, + "hexagon_slice_5": { + "prefix": "svg.material.hexagon_slice_5", + "description": "SVG material - hexagon_slice_5", + "body": [ + "{% svg material hexagon_slice_5 %}" + ] + }, + "hexagon_slice_6": { + "prefix": "svg.material.hexagon_slice_6", + "description": "SVG material - hexagon_slice_6", + "body": [ + "{% svg material hexagon_slice_6 %}" + ] + }, + "hexagram": { + "prefix": "svg.material.hexagram", + "description": "SVG material - hexagram", + "body": [ + "{% svg material hexagram %}" + ] + }, + "hexagram_outline": { + "prefix": "svg.material.hexagram_outline", + "description": "SVG material - hexagram_outline", + "body": [ + "{% svg material hexagram_outline %}" + ] + }, + "high_definition": { + "prefix": "svg.material.high_definition", + "description": "SVG material - high_definition", + "body": [ + "{% svg material high_definition %}" + ] + }, + "high_definition_box": { + "prefix": "svg.material.high_definition_box", + "description": "SVG material - high_definition_box", + "body": [ + "{% svg material high_definition_box %}" + ] + }, + "highway": { + "prefix": "svg.material.highway", + "description": "SVG material - highway", + "body": [ + "{% svg material highway %}" + ] + }, + "hiking": { + "prefix": "svg.material.hiking", + "description": "SVG material - hiking", + "body": [ + "{% svg material hiking %}" + ] + }, + "history": { + "prefix": "svg.material.history", + "description": "SVG material - history", + "body": [ + "{% svg material history %}" + ] + }, + "hockey_puck": { + "prefix": "svg.material.hockey_puck", + "description": "SVG material - hockey_puck", + "body": [ + "{% svg material hockey_puck %}" + ] + }, + "hockey_sticks": { + "prefix": "svg.material.hockey_sticks", + "description": "SVG material - hockey_sticks", + "body": [ + "{% svg material hockey_sticks %}" + ] + }, + "hololens": { + "prefix": "svg.material.hololens", + "description": "SVG material - hololens", + "body": [ + "{% svg material hololens %}" + ] + }, + "home": { + "prefix": "svg.material.home", + "description": "SVG material - home", + "body": [ + "{% svg material home %}" + ] + }, + "home_account": { + "prefix": "svg.material.home_account", + "description": "SVG material - home_account", + "body": [ + "{% svg material home_account %}" + ] + }, + "home_alert": { + "prefix": "svg.material.home_alert", + "description": "SVG material - home_alert", + "body": [ + "{% svg material home_alert %}" + ] + }, + "home_alert_outline": { + "prefix": "svg.material.home_alert_outline", + "description": "SVG material - home_alert_outline", + "body": [ + "{% svg material home_alert_outline %}" + ] + }, + "home_analytics": { + "prefix": "svg.material.home_analytics", + "description": "SVG material - home_analytics", + "body": [ + "{% svg material home_analytics %}" + ] + }, + "home_assistant": { + "prefix": "svg.material.home_assistant", + "description": "SVG material - home_assistant", + "body": [ + "{% svg material home_assistant %}" + ] + }, + "home_automation": { + "prefix": "svg.material.home_automation", + "description": "SVG material - home_automation", + "body": [ + "{% svg material home_automation %}" + ] + }, + "home_battery": { + "prefix": "svg.material.home_battery", + "description": "SVG material - home_battery", + "body": [ + "{% svg material home_battery %}" + ] + }, + "home_battery_outline": { + "prefix": "svg.material.home_battery_outline", + "description": "SVG material - home_battery_outline", + "body": [ + "{% svg material home_battery_outline %}" + ] + }, + "home_circle": { + "prefix": "svg.material.home_circle", + "description": "SVG material - home_circle", + "body": [ + "{% svg material home_circle %}" + ] + }, + "home_circle_outline": { + "prefix": "svg.material.home_circle_outline", + "description": "SVG material - home_circle_outline", + "body": [ + "{% svg material home_circle_outline %}" + ] + }, + "home_city": { + "prefix": "svg.material.home_city", + "description": "SVG material - home_city", + "body": [ + "{% svg material home_city %}" + ] + }, + "home_city_outline": { + "prefix": "svg.material.home_city_outline", + "description": "SVG material - home_city_outline", + "body": [ + "{% svg material home_city_outline %}" + ] + }, + "home_clock": { + "prefix": "svg.material.home_clock", + "description": "SVG material - home_clock", + "body": [ + "{% svg material home_clock %}" + ] + }, + "home_clock_outline": { + "prefix": "svg.material.home_clock_outline", + "description": "SVG material - home_clock_outline", + "body": [ + "{% svg material home_clock_outline %}" + ] + }, + "home_edit": { + "prefix": "svg.material.home_edit", + "description": "SVG material - home_edit", + "body": [ + "{% svg material home_edit %}" + ] + }, + "home_edit_outline": { + "prefix": "svg.material.home_edit_outline", + "description": "SVG material - home_edit_outline", + "body": [ + "{% svg material home_edit_outline %}" + ] + }, + "home_export_outline": { + "prefix": "svg.material.home_export_outline", + "description": "SVG material - home_export_outline", + "body": [ + "{% svg material home_export_outline %}" + ] + }, + "home_flood": { + "prefix": "svg.material.home_flood", + "description": "SVG material - home_flood", + "body": [ + "{% svg material home_flood %}" + ] + }, + "home_floor_0": { + "prefix": "svg.material.home_floor_0", + "description": "SVG material - home_floor_0", + "body": [ + "{% svg material home_floor_0 %}" + ] + }, + "home_floor_1": { + "prefix": "svg.material.home_floor_1", + "description": "SVG material - home_floor_1", + "body": [ + "{% svg material home_floor_1 %}" + ] + }, + "home_floor_2": { + "prefix": "svg.material.home_floor_2", + "description": "SVG material - home_floor_2", + "body": [ + "{% svg material home_floor_2 %}" + ] + }, + "home_floor_3": { + "prefix": "svg.material.home_floor_3", + "description": "SVG material - home_floor_3", + "body": [ + "{% svg material home_floor_3 %}" + ] + }, + "home_floor_a": { + "prefix": "svg.material.home_floor_a", + "description": "SVG material - home_floor_a", + "body": [ + "{% svg material home_floor_a %}" + ] + }, + "home_floor_b": { + "prefix": "svg.material.home_floor_b", + "description": "SVG material - home_floor_b", + "body": [ + "{% svg material home_floor_b %}" + ] + }, + "home_floor_g": { + "prefix": "svg.material.home_floor_g", + "description": "SVG material - home_floor_g", + "body": [ + "{% svg material home_floor_g %}" + ] + }, + "home_floor_l": { + "prefix": "svg.material.home_floor_l", + "description": "SVG material - home_floor_l", + "body": [ + "{% svg material home_floor_l %}" + ] + }, + "home_floor_negative_1": { + "prefix": "svg.material.home_floor_negative_1", + "description": "SVG material - home_floor_negative_1", + "body": [ + "{% svg material home_floor_negative_1 %}" + ] + }, + "home_group": { + "prefix": "svg.material.home_group", + "description": "SVG material - home_group", + "body": [ + "{% svg material home_group %}" + ] + }, + "home_group_minus": { + "prefix": "svg.material.home_group_minus", + "description": "SVG material - home_group_minus", + "body": [ + "{% svg material home_group_minus %}" + ] + }, + "home_group_plus": { + "prefix": "svg.material.home_group_plus", + "description": "SVG material - home_group_plus", + "body": [ + "{% svg material home_group_plus %}" + ] + }, + "home_group_remove": { + "prefix": "svg.material.home_group_remove", + "description": "SVG material - home_group_remove", + "body": [ + "{% svg material home_group_remove %}" + ] + }, + "home_heart": { + "prefix": "svg.material.home_heart", + "description": "SVG material - home_heart", + "body": [ + "{% svg material home_heart %}" + ] + }, + "home_import_outline": { + "prefix": "svg.material.home_import_outline", + "description": "SVG material - home_import_outline", + "body": [ + "{% svg material home_import_outline %}" + ] + }, + "home_lightbulb": { + "prefix": "svg.material.home_lightbulb", + "description": "SVG material - home_lightbulb", + "body": [ + "{% svg material home_lightbulb %}" + ] + }, + "home_lightbulb_outline": { + "prefix": "svg.material.home_lightbulb_outline", + "description": "SVG material - home_lightbulb_outline", + "body": [ + "{% svg material home_lightbulb_outline %}" + ] + }, + "home_lightning_bolt": { + "prefix": "svg.material.home_lightning_bolt", + "description": "SVG material - home_lightning_bolt", + "body": [ + "{% svg material home_lightning_bolt %}" + ] + }, + "home_lightning_bolt_outline": { + "prefix": "svg.material.home_lightning_bolt_outline", + "description": "SVG material - home_lightning_bolt_outline", + "body": [ + "{% svg material home_lightning_bolt_outline %}" + ] + }, + "home_lock": { + "prefix": "svg.material.home_lock", + "description": "SVG material - home_lock", + "body": [ + "{% svg material home_lock %}" + ] + }, + "home_lock_open": { + "prefix": "svg.material.home_lock_open", + "description": "SVG material - home_lock_open", + "body": [ + "{% svg material home_lock_open %}" + ] + }, + "home_map_marker": { + "prefix": "svg.material.home_map_marker", + "description": "SVG material - home_map_marker", + "body": [ + "{% svg material home_map_marker %}" + ] + }, + "home_minus": { + "prefix": "svg.material.home_minus", + "description": "SVG material - home_minus", + "body": [ + "{% svg material home_minus %}" + ] + }, + "home_minus_outline": { + "prefix": "svg.material.home_minus_outline", + "description": "SVG material - home_minus_outline", + "body": [ + "{% svg material home_minus_outline %}" + ] + }, + "home_modern": { + "prefix": "svg.material.home_modern", + "description": "SVG material - home_modern", + "body": [ + "{% svg material home_modern %}" + ] + }, + "home_off": { + "prefix": "svg.material.home_off", + "description": "SVG material - home_off", + "body": [ + "{% svg material home_off %}" + ] + }, + "home_off_outline": { + "prefix": "svg.material.home_off_outline", + "description": "SVG material - home_off_outline", + "body": [ + "{% svg material home_off_outline %}" + ] + }, + "home_outline": { + "prefix": "svg.material.home_outline", + "description": "SVG material - home_outline", + "body": [ + "{% svg material home_outline %}" + ] + }, + "home_percent": { + "prefix": "svg.material.home_percent", + "description": "SVG material - home_percent", + "body": [ + "{% svg material home_percent %}" + ] + }, + "home_percent_outline": { + "prefix": "svg.material.home_percent_outline", + "description": "SVG material - home_percent_outline", + "body": [ + "{% svg material home_percent_outline %}" + ] + }, + "home_plus": { + "prefix": "svg.material.home_plus", + "description": "SVG material - home_plus", + "body": [ + "{% svg material home_plus %}" + ] + }, + "home_plus_outline": { + "prefix": "svg.material.home_plus_outline", + "description": "SVG material - home_plus_outline", + "body": [ + "{% svg material home_plus_outline %}" + ] + }, + "home_remove": { + "prefix": "svg.material.home_remove", + "description": "SVG material - home_remove", + "body": [ + "{% svg material home_remove %}" + ] + }, + "home_remove_outline": { + "prefix": "svg.material.home_remove_outline", + "description": "SVG material - home_remove_outline", + "body": [ + "{% svg material home_remove_outline %}" + ] + }, + "home_roof": { + "prefix": "svg.material.home_roof", + "description": "SVG material - home_roof", + "body": [ + "{% svg material home_roof %}" + ] + }, + "home_search": { + "prefix": "svg.material.home_search", + "description": "SVG material - home_search", + "body": [ + "{% svg material home_search %}" + ] + }, + "home_search_outline": { + "prefix": "svg.material.home_search_outline", + "description": "SVG material - home_search_outline", + "body": [ + "{% svg material home_search_outline %}" + ] + }, + "home_silo": { + "prefix": "svg.material.home_silo", + "description": "SVG material - home_silo", + "body": [ + "{% svg material home_silo %}" + ] + }, + "home_silo_outline": { + "prefix": "svg.material.home_silo_outline", + "description": "SVG material - home_silo_outline", + "body": [ + "{% svg material home_silo_outline %}" + ] + }, + "home_sound_in": { + "prefix": "svg.material.home_sound_in", + "description": "SVG material - home_sound_in", + "body": [ + "{% svg material home_sound_in %}" + ] + }, + "home_sound_in_outline": { + "prefix": "svg.material.home_sound_in_outline", + "description": "SVG material - home_sound_in_outline", + "body": [ + "{% svg material home_sound_in_outline %}" + ] + }, + "home_sound_out": { + "prefix": "svg.material.home_sound_out", + "description": "SVG material - home_sound_out", + "body": [ + "{% svg material home_sound_out %}" + ] + }, + "home_sound_out_outline": { + "prefix": "svg.material.home_sound_out_outline", + "description": "SVG material - home_sound_out_outline", + "body": [ + "{% svg material home_sound_out_outline %}" + ] + }, + "home_switch": { + "prefix": "svg.material.home_switch", + "description": "SVG material - home_switch", + "body": [ + "{% svg material home_switch %}" + ] + }, + "home_switch_outline": { + "prefix": "svg.material.home_switch_outline", + "description": "SVG material - home_switch_outline", + "body": [ + "{% svg material home_switch_outline %}" + ] + }, + "home_thermometer": { + "prefix": "svg.material.home_thermometer", + "description": "SVG material - home_thermometer", + "body": [ + "{% svg material home_thermometer %}" + ] + }, + "home_thermometer_outline": { + "prefix": "svg.material.home_thermometer_outline", + "description": "SVG material - home_thermometer_outline", + "body": [ + "{% svg material home_thermometer_outline %}" + ] + }, + "home_variant": { + "prefix": "svg.material.home_variant", + "description": "SVG material - home_variant", + "body": [ + "{% svg material home_variant %}" + ] + }, + "home_variant_outline": { + "prefix": "svg.material.home_variant_outline", + "description": "SVG material - home_variant_outline", + "body": [ + "{% svg material home_variant_outline %}" + ] + }, + "hook": { + "prefix": "svg.material.hook", + "description": "SVG material - hook", + "body": [ + "{% svg material hook %}" + ] + }, + "hook_off": { + "prefix": "svg.material.hook_off", + "description": "SVG material - hook_off", + "body": [ + "{% svg material hook_off %}" + ] + }, + "hoop_house": { + "prefix": "svg.material.hoop_house", + "description": "SVG material - hoop_house", + "body": [ + "{% svg material hoop_house %}" + ] + }, + "hops": { + "prefix": "svg.material.hops", + "description": "SVG material - hops", + "body": [ + "{% svg material hops %}" + ] + }, + "horizontal_rotate_clockwise": { + "prefix": "svg.material.horizontal_rotate_clockwise", + "description": "SVG material - horizontal_rotate_clockwise", + "body": [ + "{% svg material horizontal_rotate_clockwise %}" + ] + }, + "horizontal_rotate_counterclockwise": { + "prefix": "svg.material.horizontal_rotate_counterclockwise", + "description": "SVG material - horizontal_rotate_counterclockwise", + "body": [ + "{% svg material horizontal_rotate_counterclockwise %}" + ] + }, + "horse": { + "prefix": "svg.material.horse", + "description": "SVG material - horse", + "body": [ + "{% svg material horse %}" + ] + }, + "horse_human": { + "prefix": "svg.material.horse_human", + "description": "SVG material - horse_human", + "body": [ + "{% svg material horse_human %}" + ] + }, + "horse_variant": { + "prefix": "svg.material.horse_variant", + "description": "SVG material - horse_variant", + "body": [ + "{% svg material horse_variant %}" + ] + }, + "horse_variant_fast": { + "prefix": "svg.material.horse_variant_fast", + "description": "SVG material - horse_variant_fast", + "body": [ + "{% svg material horse_variant_fast %}" + ] + }, + "horseshoe": { + "prefix": "svg.material.horseshoe", + "description": "SVG material - horseshoe", + "body": [ + "{% svg material horseshoe %}" + ] + }, + "hospital": { + "prefix": "svg.material.hospital", + "description": "SVG material - hospital", + "body": [ + "{% svg material hospital %}" + ] + }, + "hospital_box": { + "prefix": "svg.material.hospital_box", + "description": "SVG material - hospital_box", + "body": [ + "{% svg material hospital_box %}" + ] + }, + "hospital_box_outline": { + "prefix": "svg.material.hospital_box_outline", + "description": "SVG material - hospital_box_outline", + "body": [ + "{% svg material hospital_box_outline %}" + ] + }, + "hospital_building": { + "prefix": "svg.material.hospital_building", + "description": "SVG material - hospital_building", + "body": [ + "{% svg material hospital_building %}" + ] + }, + "hospital_marker": { + "prefix": "svg.material.hospital_marker", + "description": "SVG material - hospital_marker", + "body": [ + "{% svg material hospital_marker %}" + ] + }, + "hot_tub": { + "prefix": "svg.material.hot_tub", + "description": "SVG material - hot_tub", + "body": [ + "{% svg material hot_tub %}" + ] + }, + "hours_12": { + "prefix": "svg.material.hours_12", + "description": "SVG material - hours_12", + "body": [ + "{% svg material hours_12 %}" + ] + }, + "hours_24": { + "prefix": "svg.material.hours_24", + "description": "SVG material - hours_24", + "body": [ + "{% svg material hours_24 %}" + ] + }, + "hub": { + "prefix": "svg.material.hub", + "description": "SVG material - hub", + "body": [ + "{% svg material hub %}" + ] + }, + "hub_outline": { + "prefix": "svg.material.hub_outline", + "description": "SVG material - hub_outline", + "body": [ + "{% svg material hub_outline %}" + ] + }, + "hubspot": { + "prefix": "svg.material.hubspot", + "description": "SVG material - hubspot", + "body": [ + "{% svg material hubspot %}" + ] + }, + "hulu": { + "prefix": "svg.material.hulu", + "description": "SVG material - hulu", + "body": [ + "{% svg material hulu %}" + ] + }, + "human": { + "prefix": "svg.material.human", + "description": "SVG material - human", + "body": [ + "{% svg material human %}" + ] + }, + "human_baby_changing_table": { + "prefix": "svg.material.human_baby_changing_table", + "description": "SVG material - human_baby_changing_table", + "body": [ + "{% svg material human_baby_changing_table %}" + ] + }, + "human_cane": { + "prefix": "svg.material.human_cane", + "description": "SVG material - human_cane", + "body": [ + "{% svg material human_cane %}" + ] + }, + "human_capacity_decrease": { + "prefix": "svg.material.human_capacity_decrease", + "description": "SVG material - human_capacity_decrease", + "body": [ + "{% svg material human_capacity_decrease %}" + ] + }, + "human_capacity_increase": { + "prefix": "svg.material.human_capacity_increase", + "description": "SVG material - human_capacity_increase", + "body": [ + "{% svg material human_capacity_increase %}" + ] + }, + "human_child": { + "prefix": "svg.material.human_child", + "description": "SVG material - human_child", + "body": [ + "{% svg material human_child %}" + ] + }, + "human_dolly": { + "prefix": "svg.material.human_dolly", + "description": "SVG material - human_dolly", + "body": [ + "{% svg material human_dolly %}" + ] + }, + "human_edit": { + "prefix": "svg.material.human_edit", + "description": "SVG material - human_edit", + "body": [ + "{% svg material human_edit %}" + ] + }, + "human_female": { + "prefix": "svg.material.human_female", + "description": "SVG material - human_female", + "body": [ + "{% svg material human_female %}" + ] + }, + "human_female_boy": { + "prefix": "svg.material.human_female_boy", + "description": "SVG material - human_female_boy", + "body": [ + "{% svg material human_female_boy %}" + ] + }, + "human_female_dance": { + "prefix": "svg.material.human_female_dance", + "description": "SVG material - human_female_dance", + "body": [ + "{% svg material human_female_dance %}" + ] + }, + "human_female_female": { + "prefix": "svg.material.human_female_female", + "description": "SVG material - human_female_female", + "body": [ + "{% svg material human_female_female %}" + ] + }, + "human_female_female_child": { + "prefix": "svg.material.human_female_female_child", + "description": "SVG material - human_female_female_child", + "body": [ + "{% svg material human_female_female_child %}" + ] + }, + "human_female_girl": { + "prefix": "svg.material.human_female_girl", + "description": "SVG material - human_female_girl", + "body": [ + "{% svg material human_female_girl %}" + ] + }, + "human_greeting": { + "prefix": "svg.material.human_greeting", + "description": "SVG material - human_greeting", + "body": [ + "{% svg material human_greeting %}" + ] + }, + "human_greeting_proximity": { + "prefix": "svg.material.human_greeting_proximity", + "description": "SVG material - human_greeting_proximity", + "body": [ + "{% svg material human_greeting_proximity %}" + ] + }, + "human_greeting_variant": { + "prefix": "svg.material.human_greeting_variant", + "description": "SVG material - human_greeting_variant", + "body": [ + "{% svg material human_greeting_variant %}" + ] + }, + "human_handsdown": { + "prefix": "svg.material.human_handsdown", + "description": "SVG material - human_handsdown", + "body": [ + "{% svg material human_handsdown %}" + ] + }, + "human_handsup": { + "prefix": "svg.material.human_handsup", + "description": "SVG material - human_handsup", + "body": [ + "{% svg material human_handsup %}" + ] + }, + "human_male": { + "prefix": "svg.material.human_male", + "description": "SVG material - human_male", + "body": [ + "{% svg material human_male %}" + ] + }, + "human_male_board": { + "prefix": "svg.material.human_male_board", + "description": "SVG material - human_male_board", + "body": [ + "{% svg material human_male_board %}" + ] + }, + "human_male_board_poll": { + "prefix": "svg.material.human_male_board_poll", + "description": "SVG material - human_male_board_poll", + "body": [ + "{% svg material human_male_board_poll %}" + ] + }, + "human_male_boy": { + "prefix": "svg.material.human_male_boy", + "description": "SVG material - human_male_boy", + "body": [ + "{% svg material human_male_boy %}" + ] + }, + "human_male_child": { + "prefix": "svg.material.human_male_child", + "description": "SVG material - human_male_child", + "body": [ + "{% svg material human_male_child %}" + ] + }, + "human_male_female": { + "prefix": "svg.material.human_male_female", + "description": "SVG material - human_male_female", + "body": [ + "{% svg material human_male_female %}" + ] + }, + "human_male_female_child": { + "prefix": "svg.material.human_male_female_child", + "description": "SVG material - human_male_female_child", + "body": [ + "{% svg material human_male_female_child %}" + ] + }, + "human_male_girl": { + "prefix": "svg.material.human_male_girl", + "description": "SVG material - human_male_girl", + "body": [ + "{% svg material human_male_girl %}" + ] + }, + "human_male_height": { + "prefix": "svg.material.human_male_height", + "description": "SVG material - human_male_height", + "body": [ + "{% svg material human_male_height %}" + ] + }, + "human_male_height_variant": { + "prefix": "svg.material.human_male_height_variant", + "description": "SVG material - human_male_height_variant", + "body": [ + "{% svg material human_male_height_variant %}" + ] + }, + "human_male_male": { + "prefix": "svg.material.human_male_male", + "description": "SVG material - human_male_male", + "body": [ + "{% svg material human_male_male %}" + ] + }, + "human_male_male_child": { + "prefix": "svg.material.human_male_male_child", + "description": "SVG material - human_male_male_child", + "body": [ + "{% svg material human_male_male_child %}" + ] + }, + "human_non_binary": { + "prefix": "svg.material.human_non_binary", + "description": "SVG material - human_non_binary", + "body": [ + "{% svg material human_non_binary %}" + ] + }, + "human_pregnant": { + "prefix": "svg.material.human_pregnant", + "description": "SVG material - human_pregnant", + "body": [ + "{% svg material human_pregnant %}" + ] + }, + "human_queue": { + "prefix": "svg.material.human_queue", + "description": "SVG material - human_queue", + "body": [ + "{% svg material human_queue %}" + ] + }, + "human_scooter": { + "prefix": "svg.material.human_scooter", + "description": "SVG material - human_scooter", + "body": [ + "{% svg material human_scooter %}" + ] + }, + "human_walker": { + "prefix": "svg.material.human_walker", + "description": "SVG material - human_walker", + "body": [ + "{% svg material human_walker %}" + ] + }, + "human_wheelchair": { + "prefix": "svg.material.human_wheelchair", + "description": "SVG material - human_wheelchair", + "body": [ + "{% svg material human_wheelchair %}" + ] + }, + "human_white_cane": { + "prefix": "svg.material.human_white_cane", + "description": "SVG material - human_white_cane", + "body": [ + "{% svg material human_white_cane %}" + ] + }, + "humble_bundle": { + "prefix": "svg.material.humble_bundle", + "description": "SVG material - humble_bundle", + "body": [ + "{% svg material humble_bundle %}" + ] + }, + "hvac": { + "prefix": "svg.material.hvac", + "description": "SVG material - hvac", + "body": [ + "{% svg material hvac %}" + ] + }, + "hvac_off": { + "prefix": "svg.material.hvac_off", + "description": "SVG material - hvac_off", + "body": [ + "{% svg material hvac_off %}" + ] + }, + "hydraulic_oil_level": { + "prefix": "svg.material.hydraulic_oil_level", + "description": "SVG material - hydraulic_oil_level", + "body": [ + "{% svg material hydraulic_oil_level %}" + ] + }, + "hydraulic_oil_temperature": { + "prefix": "svg.material.hydraulic_oil_temperature", + "description": "SVG material - hydraulic_oil_temperature", + "body": [ + "{% svg material hydraulic_oil_temperature %}" + ] + }, + "hydro_power": { + "prefix": "svg.material.hydro_power", + "description": "SVG material - hydro_power", + "body": [ + "{% svg material hydro_power %}" + ] + }, + "hydrogen_station": { + "prefix": "svg.material.hydrogen_station", + "description": "SVG material - hydrogen_station", + "body": [ + "{% svg material hydrogen_station %}" + ] + }, + "ice_cream": { + "prefix": "svg.material.ice_cream", + "description": "SVG material - ice_cream", + "body": [ + "{% svg material ice_cream %}" + ] + }, + "ice_cream_off": { + "prefix": "svg.material.ice_cream_off", + "description": "SVG material - ice_cream_off", + "body": [ + "{% svg material ice_cream_off %}" + ] + }, + "ice_pop": { + "prefix": "svg.material.ice_pop", + "description": "SVG material - ice_pop", + "body": [ + "{% svg material ice_pop %}" + ] + }, + "id_card": { + "prefix": "svg.material.id_card", + "description": "SVG material - id_card", + "body": [ + "{% svg material id_card %}" + ] + }, + "identifier": { + "prefix": "svg.material.identifier", + "description": "SVG material - identifier", + "body": [ + "{% svg material identifier %}" + ] + }, + "ideogram_cjk": { + "prefix": "svg.material.ideogram_cjk", + "description": "SVG material - ideogram_cjk", + "body": [ + "{% svg material ideogram_cjk %}" + ] + }, + "ideogram_cjk_variant": { + "prefix": "svg.material.ideogram_cjk_variant", + "description": "SVG material - ideogram_cjk_variant", + "body": [ + "{% svg material ideogram_cjk_variant %}" + ] + }, + "image": { + "prefix": "svg.material.image", + "description": "SVG material - image", + "body": [ + "{% svg material image %}" + ] + }, + "image_album": { + "prefix": "svg.material.image_album", + "description": "SVG material - image_album", + "body": [ + "{% svg material image_album %}" + ] + }, + "image_area": { + "prefix": "svg.material.image_area", + "description": "SVG material - image_area", + "body": [ + "{% svg material image_area %}" + ] + }, + "image_area_close": { + "prefix": "svg.material.image_area_close", + "description": "SVG material - image_area_close", + "body": [ + "{% svg material image_area_close %}" + ] + }, + "image_auto_adjust": { + "prefix": "svg.material.image_auto_adjust", + "description": "SVG material - image_auto_adjust", + "body": [ + "{% svg material image_auto_adjust %}" + ] + }, + "image_broken": { + "prefix": "svg.material.image_broken", + "description": "SVG material - image_broken", + "body": [ + "{% svg material image_broken %}" + ] + }, + "image_broken_variant": { + "prefix": "svg.material.image_broken_variant", + "description": "SVG material - image_broken_variant", + "body": [ + "{% svg material image_broken_variant %}" + ] + }, + "image_check": { + "prefix": "svg.material.image_check", + "description": "SVG material - image_check", + "body": [ + "{% svg material image_check %}" + ] + }, + "image_check_outline": { + "prefix": "svg.material.image_check_outline", + "description": "SVG material - image_check_outline", + "body": [ + "{% svg material image_check_outline %}" + ] + }, + "image_edit": { + "prefix": "svg.material.image_edit", + "description": "SVG material - image_edit", + "body": [ + "{% svg material image_edit %}" + ] + }, + "image_edit_outline": { + "prefix": "svg.material.image_edit_outline", + "description": "SVG material - image_edit_outline", + "body": [ + "{% svg material image_edit_outline %}" + ] + }, + "image_filter_black_white": { + "prefix": "svg.material.image_filter_black_white", + "description": "SVG material - image_filter_black_white", + "body": [ + "{% svg material image_filter_black_white %}" + ] + }, + "image_filter_center_focus": { + "prefix": "svg.material.image_filter_center_focus", + "description": "SVG material - image_filter_center_focus", + "body": [ + "{% svg material image_filter_center_focus %}" + ] + }, + "image_filter_center_focus_strong": { + "prefix": "svg.material.image_filter_center_focus_strong", + "description": "SVG material - image_filter_center_focus_strong", + "body": [ + "{% svg material image_filter_center_focus_strong %}" + ] + }, + "image_filter_center_focus_strong_outline": { + "prefix": "svg.material.image_filter_center_focus_strong_outline", + "description": "SVG material - image_filter_center_focus_strong_outline", + "body": [ + "{% svg material image_filter_center_focus_strong_outline %}" + ] + }, + "image_filter_center_focus_weak": { + "prefix": "svg.material.image_filter_center_focus_weak", + "description": "SVG material - image_filter_center_focus_weak", + "body": [ + "{% svg material image_filter_center_focus_weak %}" + ] + }, + "image_filter_drama": { + "prefix": "svg.material.image_filter_drama", + "description": "SVG material - image_filter_drama", + "body": [ + "{% svg material image_filter_drama %}" + ] + }, + "image_filter_drama_outline": { + "prefix": "svg.material.image_filter_drama_outline", + "description": "SVG material - image_filter_drama_outline", + "body": [ + "{% svg material image_filter_drama_outline %}" + ] + }, + "image_filter_frames": { + "prefix": "svg.material.image_filter_frames", + "description": "SVG material - image_filter_frames", + "body": [ + "{% svg material image_filter_frames %}" + ] + }, + "image_filter_hdr": { + "prefix": "svg.material.image_filter_hdr", + "description": "SVG material - image_filter_hdr", + "body": [ + "{% svg material image_filter_hdr %}" + ] + }, + "image_filter_hdr_outline": { + "prefix": "svg.material.image_filter_hdr_outline", + "description": "SVG material - image_filter_hdr_outline", + "body": [ + "{% svg material image_filter_hdr_outline %}" + ] + }, + "image_filter_none": { + "prefix": "svg.material.image_filter_none", + "description": "SVG material - image_filter_none", + "body": [ + "{% svg material image_filter_none %}" + ] + }, + "image_filter_tilt_shift": { + "prefix": "svg.material.image_filter_tilt_shift", + "description": "SVG material - image_filter_tilt_shift", + "body": [ + "{% svg material image_filter_tilt_shift %}" + ] + }, + "image_filter_vintage": { + "prefix": "svg.material.image_filter_vintage", + "description": "SVG material - image_filter_vintage", + "body": [ + "{% svg material image_filter_vintage %}" + ] + }, + "image_frame": { + "prefix": "svg.material.image_frame", + "description": "SVG material - image_frame", + "body": [ + "{% svg material image_frame %}" + ] + }, + "image_lock": { + "prefix": "svg.material.image_lock", + "description": "SVG material - image_lock", + "body": [ + "{% svg material image_lock %}" + ] + }, + "image_lock_outline": { + "prefix": "svg.material.image_lock_outline", + "description": "SVG material - image_lock_outline", + "body": [ + "{% svg material image_lock_outline %}" + ] + }, + "image_marker": { + "prefix": "svg.material.image_marker", + "description": "SVG material - image_marker", + "body": [ + "{% svg material image_marker %}" + ] + }, + "image_marker_outline": { + "prefix": "svg.material.image_marker_outline", + "description": "SVG material - image_marker_outline", + "body": [ + "{% svg material image_marker_outline %}" + ] + }, + "image_minus": { + "prefix": "svg.material.image_minus", + "description": "SVG material - image_minus", + "body": [ + "{% svg material image_minus %}" + ] + }, + "image_minus_outline": { + "prefix": "svg.material.image_minus_outline", + "description": "SVG material - image_minus_outline", + "body": [ + "{% svg material image_minus_outline %}" + ] + }, + "image_move": { + "prefix": "svg.material.image_move", + "description": "SVG material - image_move", + "body": [ + "{% svg material image_move %}" + ] + }, + "image_multiple": { + "prefix": "svg.material.image_multiple", + "description": "SVG material - image_multiple", + "body": [ + "{% svg material image_multiple %}" + ] + }, + "image_multiple_outline": { + "prefix": "svg.material.image_multiple_outline", + "description": "SVG material - image_multiple_outline", + "body": [ + "{% svg material image_multiple_outline %}" + ] + }, + "image_off": { + "prefix": "svg.material.image_off", + "description": "SVG material - image_off", + "body": [ + "{% svg material image_off %}" + ] + }, + "image_off_outline": { + "prefix": "svg.material.image_off_outline", + "description": "SVG material - image_off_outline", + "body": [ + "{% svg material image_off_outline %}" + ] + }, + "image_outline": { + "prefix": "svg.material.image_outline", + "description": "SVG material - image_outline", + "body": [ + "{% svg material image_outline %}" + ] + }, + "image_plus": { + "prefix": "svg.material.image_plus", + "description": "SVG material - image_plus", + "body": [ + "{% svg material image_plus %}" + ] + }, + "image_plus_outline": { + "prefix": "svg.material.image_plus_outline", + "description": "SVG material - image_plus_outline", + "body": [ + "{% svg material image_plus_outline %}" + ] + }, + "image_refresh": { + "prefix": "svg.material.image_refresh", + "description": "SVG material - image_refresh", + "body": [ + "{% svg material image_refresh %}" + ] + }, + "image_refresh_outline": { + "prefix": "svg.material.image_refresh_outline", + "description": "SVG material - image_refresh_outline", + "body": [ + "{% svg material image_refresh_outline %}" + ] + }, + "image_remove": { + "prefix": "svg.material.image_remove", + "description": "SVG material - image_remove", + "body": [ + "{% svg material image_remove %}" + ] + }, + "image_remove_outline": { + "prefix": "svg.material.image_remove_outline", + "description": "SVG material - image_remove_outline", + "body": [ + "{% svg material image_remove_outline %}" + ] + }, + "image_search": { + "prefix": "svg.material.image_search", + "description": "SVG material - image_search", + "body": [ + "{% svg material image_search %}" + ] + }, + "image_search_outline": { + "prefix": "svg.material.image_search_outline", + "description": "SVG material - image_search_outline", + "body": [ + "{% svg material image_search_outline %}" + ] + }, + "image_size_select_actual": { + "prefix": "svg.material.image_size_select_actual", + "description": "SVG material - image_size_select_actual", + "body": [ + "{% svg material image_size_select_actual %}" + ] + }, + "image_size_select_large": { + "prefix": "svg.material.image_size_select_large", + "description": "SVG material - image_size_select_large", + "body": [ + "{% svg material image_size_select_large %}" + ] + }, + "image_size_select_small": { + "prefix": "svg.material.image_size_select_small", + "description": "SVG material - image_size_select_small", + "body": [ + "{% svg material image_size_select_small %}" + ] + }, + "image_sync": { + "prefix": "svg.material.image_sync", + "description": "SVG material - image_sync", + "body": [ + "{% svg material image_sync %}" + ] + }, + "image_sync_outline": { + "prefix": "svg.material.image_sync_outline", + "description": "SVG material - image_sync_outline", + "body": [ + "{% svg material image_sync_outline %}" + ] + }, + "image_text": { + "prefix": "svg.material.image_text", + "description": "SVG material - image_text", + "body": [ + "{% svg material image_text %}" + ] + }, + "import_": { + "prefix": "svg.material.import_", + "description": "SVG material - import_", + "body": [ + "{% svg material import_ %}" + ] + }, + "inbox": { + "prefix": "svg.material.inbox", + "description": "SVG material - inbox", + "body": [ + "{% svg material inbox %}" + ] + }, + "inbox_arrow_down": { + "prefix": "svg.material.inbox_arrow_down", + "description": "SVG material - inbox_arrow_down", + "body": [ + "{% svg material inbox_arrow_down %}" + ] + }, + "inbox_arrow_down_outline": { + "prefix": "svg.material.inbox_arrow_down_outline", + "description": "SVG material - inbox_arrow_down_outline", + "body": [ + "{% svg material inbox_arrow_down_outline %}" + ] + }, + "inbox_arrow_up": { + "prefix": "svg.material.inbox_arrow_up", + "description": "SVG material - inbox_arrow_up", + "body": [ + "{% svg material inbox_arrow_up %}" + ] + }, + "inbox_arrow_up_outline": { + "prefix": "svg.material.inbox_arrow_up_outline", + "description": "SVG material - inbox_arrow_up_outline", + "body": [ + "{% svg material inbox_arrow_up_outline %}" + ] + }, + "inbox_full": { + "prefix": "svg.material.inbox_full", + "description": "SVG material - inbox_full", + "body": [ + "{% svg material inbox_full %}" + ] + }, + "inbox_full_outline": { + "prefix": "svg.material.inbox_full_outline", + "description": "SVG material - inbox_full_outline", + "body": [ + "{% svg material inbox_full_outline %}" + ] + }, + "inbox_multiple": { + "prefix": "svg.material.inbox_multiple", + "description": "SVG material - inbox_multiple", + "body": [ + "{% svg material inbox_multiple %}" + ] + }, + "inbox_multiple_outline": { + "prefix": "svg.material.inbox_multiple_outline", + "description": "SVG material - inbox_multiple_outline", + "body": [ + "{% svg material inbox_multiple_outline %}" + ] + }, + "inbox_outline": { + "prefix": "svg.material.inbox_outline", + "description": "SVG material - inbox_outline", + "body": [ + "{% svg material inbox_outline %}" + ] + }, + "inbox_remove": { + "prefix": "svg.material.inbox_remove", + "description": "SVG material - inbox_remove", + "body": [ + "{% svg material inbox_remove %}" + ] + }, + "inbox_remove_outline": { + "prefix": "svg.material.inbox_remove_outline", + "description": "SVG material - inbox_remove_outline", + "body": [ + "{% svg material inbox_remove_outline %}" + ] + }, + "incognito": { + "prefix": "svg.material.incognito", + "description": "SVG material - incognito", + "body": [ + "{% svg material incognito %}" + ] + }, + "incognito_circle": { + "prefix": "svg.material.incognito_circle", + "description": "SVG material - incognito_circle", + "body": [ + "{% svg material incognito_circle %}" + ] + }, + "incognito_circle_off": { + "prefix": "svg.material.incognito_circle_off", + "description": "SVG material - incognito_circle_off", + "body": [ + "{% svg material incognito_circle_off %}" + ] + }, + "incognito_off": { + "prefix": "svg.material.incognito_off", + "description": "SVG material - incognito_off", + "body": [ + "{% svg material incognito_off %}" + ] + }, + "induction": { + "prefix": "svg.material.induction", + "description": "SVG material - induction", + "body": [ + "{% svg material induction %}" + ] + }, + "infinity": { + "prefix": "svg.material.infinity", + "description": "SVG material - infinity", + "body": [ + "{% svg material infinity %}" + ] + }, + "information": { + "prefix": "svg.material.information", + "description": "SVG material - information", + "body": [ + "{% svg material information %}" + ] + }, + "information_box": { + "prefix": "svg.material.information_box", + "description": "SVG material - information_box", + "body": [ + "{% svg material information_box %}" + ] + }, + "information_box_outline": { + "prefix": "svg.material.information_box_outline", + "description": "SVG material - information_box_outline", + "body": [ + "{% svg material information_box_outline %}" + ] + }, + "information_off": { + "prefix": "svg.material.information_off", + "description": "SVG material - information_off", + "body": [ + "{% svg material information_off %}" + ] + }, + "information_off_outline": { + "prefix": "svg.material.information_off_outline", + "description": "SVG material - information_off_outline", + "body": [ + "{% svg material information_off_outline %}" + ] + }, + "information_outline": { + "prefix": "svg.material.information_outline", + "description": "SVG material - information_outline", + "body": [ + "{% svg material information_outline %}" + ] + }, + "information_slab_box": { + "prefix": "svg.material.information_slab_box", + "description": "SVG material - information_slab_box", + "body": [ + "{% svg material information_slab_box %}" + ] + }, + "information_slab_box_outline": { + "prefix": "svg.material.information_slab_box_outline", + "description": "SVG material - information_slab_box_outline", + "body": [ + "{% svg material information_slab_box_outline %}" + ] + }, + "information_slab_circle": { + "prefix": "svg.material.information_slab_circle", + "description": "SVG material - information_slab_circle", + "body": [ + "{% svg material information_slab_circle %}" + ] + }, + "information_slab_circle_outline": { + "prefix": "svg.material.information_slab_circle_outline", + "description": "SVG material - information_slab_circle_outline", + "body": [ + "{% svg material information_slab_circle_outline %}" + ] + }, + "information_slab_symbol": { + "prefix": "svg.material.information_slab_symbol", + "description": "SVG material - information_slab_symbol", + "body": [ + "{% svg material information_slab_symbol %}" + ] + }, + "information_symbol": { + "prefix": "svg.material.information_symbol", + "description": "SVG material - information_symbol", + "body": [ + "{% svg material information_symbol %}" + ] + }, + "information_variant": { + "prefix": "svg.material.information_variant", + "description": "SVG material - information_variant", + "body": [ + "{% svg material information_variant %}" + ] + }, + "information_variant_box": { + "prefix": "svg.material.information_variant_box", + "description": "SVG material - information_variant_box", + "body": [ + "{% svg material information_variant_box %}" + ] + }, + "information_variant_box_outline": { + "prefix": "svg.material.information_variant_box_outline", + "description": "SVG material - information_variant_box_outline", + "body": [ + "{% svg material information_variant_box_outline %}" + ] + }, + "information_variant_circle": { + "prefix": "svg.material.information_variant_circle", + "description": "SVG material - information_variant_circle", + "body": [ + "{% svg material information_variant_circle %}" + ] + }, + "information_variant_circle_outline": { + "prefix": "svg.material.information_variant_circle_outline", + "description": "SVG material - information_variant_circle_outline", + "body": [ + "{% svg material information_variant_circle_outline %}" + ] + }, + "instagram": { + "prefix": "svg.material.instagram", + "description": "SVG material - instagram", + "body": [ + "{% svg material instagram %}" + ] + }, + "instrument_triangle": { + "prefix": "svg.material.instrument_triangle", + "description": "SVG material - instrument_triangle", + "body": [ + "{% svg material instrument_triangle %}" + ] + }, + "integrated_circuit_chip": { + "prefix": "svg.material.integrated_circuit_chip", + "description": "SVG material - integrated_circuit_chip", + "body": [ + "{% svg material integrated_circuit_chip %}" + ] + }, + "invert_colors": { + "prefix": "svg.material.invert_colors", + "description": "SVG material - invert_colors", + "body": [ + "{% svg material invert_colors %}" + ] + }, + "invert_colors_off": { + "prefix": "svg.material.invert_colors_off", + "description": "SVG material - invert_colors_off", + "body": [ + "{% svg material invert_colors_off %}" + ] + }, + "invoice": { + "prefix": "svg.material.invoice", + "description": "SVG material - invoice", + "body": [ + "{% svg material invoice %}" + ] + }, + "invoice_arrow_left": { + "prefix": "svg.material.invoice_arrow_left", + "description": "SVG material - invoice_arrow_left", + "body": [ + "{% svg material invoice_arrow_left %}" + ] + }, + "invoice_arrow_left_outline": { + "prefix": "svg.material.invoice_arrow_left_outline", + "description": "SVG material - invoice_arrow_left_outline", + "body": [ + "{% svg material invoice_arrow_left_outline %}" + ] + }, + "invoice_arrow_right": { + "prefix": "svg.material.invoice_arrow_right", + "description": "SVG material - invoice_arrow_right", + "body": [ + "{% svg material invoice_arrow_right %}" + ] + }, + "invoice_arrow_right_outline": { + "prefix": "svg.material.invoice_arrow_right_outline", + "description": "SVG material - invoice_arrow_right_outline", + "body": [ + "{% svg material invoice_arrow_right_outline %}" + ] + }, + "invoice_check": { + "prefix": "svg.material.invoice_check", + "description": "SVG material - invoice_check", + "body": [ + "{% svg material invoice_check %}" + ] + }, + "invoice_check_outline": { + "prefix": "svg.material.invoice_check_outline", + "description": "SVG material - invoice_check_outline", + "body": [ + "{% svg material invoice_check_outline %}" + ] + }, + "invoice_clock": { + "prefix": "svg.material.invoice_clock", + "description": "SVG material - invoice_clock", + "body": [ + "{% svg material invoice_clock %}" + ] + }, + "invoice_clock_outline": { + "prefix": "svg.material.invoice_clock_outline", + "description": "SVG material - invoice_clock_outline", + "body": [ + "{% svg material invoice_clock_outline %}" + ] + }, + "invoice_edit": { + "prefix": "svg.material.invoice_edit", + "description": "SVG material - invoice_edit", + "body": [ + "{% svg material invoice_edit %}" + ] + }, + "invoice_edit_outline": { + "prefix": "svg.material.invoice_edit_outline", + "description": "SVG material - invoice_edit_outline", + "body": [ + "{% svg material invoice_edit_outline %}" + ] + }, + "invoice_export_outline": { + "prefix": "svg.material.invoice_export_outline", + "description": "SVG material - invoice_export_outline", + "body": [ + "{% svg material invoice_export_outline %}" + ] + }, + "invoice_fast": { + "prefix": "svg.material.invoice_fast", + "description": "SVG material - invoice_fast", + "body": [ + "{% svg material invoice_fast %}" + ] + }, + "invoice_fast_outline": { + "prefix": "svg.material.invoice_fast_outline", + "description": "SVG material - invoice_fast_outline", + "body": [ + "{% svg material invoice_fast_outline %}" + ] + }, + "invoice_import": { + "prefix": "svg.material.invoice_import", + "description": "SVG material - invoice_import", + "body": [ + "{% svg material invoice_import %}" + ] + }, + "invoice_import_outline": { + "prefix": "svg.material.invoice_import_outline", + "description": "SVG material - invoice_import_outline", + "body": [ + "{% svg material invoice_import_outline %}" + ] + }, + "invoice_list": { + "prefix": "svg.material.invoice_list", + "description": "SVG material - invoice_list", + "body": [ + "{% svg material invoice_list %}" + ] + }, + "invoice_list_outline": { + "prefix": "svg.material.invoice_list_outline", + "description": "SVG material - invoice_list_outline", + "body": [ + "{% svg material invoice_list_outline %}" + ] + }, + "invoice_minus": { + "prefix": "svg.material.invoice_minus", + "description": "SVG material - invoice_minus", + "body": [ + "{% svg material invoice_minus %}" + ] + }, + "invoice_minus_outline": { + "prefix": "svg.material.invoice_minus_outline", + "description": "SVG material - invoice_minus_outline", + "body": [ + "{% svg material invoice_minus_outline %}" + ] + }, + "invoice_multiple": { + "prefix": "svg.material.invoice_multiple", + "description": "SVG material - invoice_multiple", + "body": [ + "{% svg material invoice_multiple %}" + ] + }, + "invoice_multiple_outline": { + "prefix": "svg.material.invoice_multiple_outline", + "description": "SVG material - invoice_multiple_outline", + "body": [ + "{% svg material invoice_multiple_outline %}" + ] + }, + "invoice_outline": { + "prefix": "svg.material.invoice_outline", + "description": "SVG material - invoice_outline", + "body": [ + "{% svg material invoice_outline %}" + ] + }, + "invoice_plus": { + "prefix": "svg.material.invoice_plus", + "description": "SVG material - invoice_plus", + "body": [ + "{% svg material invoice_plus %}" + ] + }, + "invoice_plus_outline": { + "prefix": "svg.material.invoice_plus_outline", + "description": "SVG material - invoice_plus_outline", + "body": [ + "{% svg material invoice_plus_outline %}" + ] + }, + "invoice_remove": { + "prefix": "svg.material.invoice_remove", + "description": "SVG material - invoice_remove", + "body": [ + "{% svg material invoice_remove %}" + ] + }, + "invoice_remove_outline": { + "prefix": "svg.material.invoice_remove_outline", + "description": "SVG material - invoice_remove_outline", + "body": [ + "{% svg material invoice_remove_outline %}" + ] + }, + "invoice_send": { + "prefix": "svg.material.invoice_send", + "description": "SVG material - invoice_send", + "body": [ + "{% svg material invoice_send %}" + ] + }, + "invoice_send_outline": { + "prefix": "svg.material.invoice_send_outline", + "description": "SVG material - invoice_send_outline", + "body": [ + "{% svg material invoice_send_outline %}" + ] + }, + "invoice_text": { + "prefix": "svg.material.invoice_text", + "description": "SVG material - invoice_text", + "body": [ + "{% svg material invoice_text %}" + ] + }, + "invoice_text_arrow_left": { + "prefix": "svg.material.invoice_text_arrow_left", + "description": "SVG material - invoice_text_arrow_left", + "body": [ + "{% svg material invoice_text_arrow_left %}" + ] + }, + "invoice_text_arrow_left_outline": { + "prefix": "svg.material.invoice_text_arrow_left_outline", + "description": "SVG material - invoice_text_arrow_left_outline", + "body": [ + "{% svg material invoice_text_arrow_left_outline %}" + ] + }, + "invoice_text_arrow_right": { + "prefix": "svg.material.invoice_text_arrow_right", + "description": "SVG material - invoice_text_arrow_right", + "body": [ + "{% svg material invoice_text_arrow_right %}" + ] + }, + "invoice_text_arrow_right_outline": { + "prefix": "svg.material.invoice_text_arrow_right_outline", + "description": "SVG material - invoice_text_arrow_right_outline", + "body": [ + "{% svg material invoice_text_arrow_right_outline %}" + ] + }, + "invoice_text_check": { + "prefix": "svg.material.invoice_text_check", + "description": "SVG material - invoice_text_check", + "body": [ + "{% svg material invoice_text_check %}" + ] + }, + "invoice_text_check_outline": { + "prefix": "svg.material.invoice_text_check_outline", + "description": "SVG material - invoice_text_check_outline", + "body": [ + "{% svg material invoice_text_check_outline %}" + ] + }, + "invoice_text_clock": { + "prefix": "svg.material.invoice_text_clock", + "description": "SVG material - invoice_text_clock", + "body": [ + "{% svg material invoice_text_clock %}" + ] + }, + "invoice_text_clock_outline": { + "prefix": "svg.material.invoice_text_clock_outline", + "description": "SVG material - invoice_text_clock_outline", + "body": [ + "{% svg material invoice_text_clock_outline %}" + ] + }, + "invoice_text_edit": { + "prefix": "svg.material.invoice_text_edit", + "description": "SVG material - invoice_text_edit", + "body": [ + "{% svg material invoice_text_edit %}" + ] + }, + "invoice_text_edit_outline": { + "prefix": "svg.material.invoice_text_edit_outline", + "description": "SVG material - invoice_text_edit_outline", + "body": [ + "{% svg material invoice_text_edit_outline %}" + ] + }, + "invoice_text_fast": { + "prefix": "svg.material.invoice_text_fast", + "description": "SVG material - invoice_text_fast", + "body": [ + "{% svg material invoice_text_fast %}" + ] + }, + "invoice_text_fast_outline": { + "prefix": "svg.material.invoice_text_fast_outline", + "description": "SVG material - invoice_text_fast_outline", + "body": [ + "{% svg material invoice_text_fast_outline %}" + ] + }, + "invoice_text_minus": { + "prefix": "svg.material.invoice_text_minus", + "description": "SVG material - invoice_text_minus", + "body": [ + "{% svg material invoice_text_minus %}" + ] + }, + "invoice_text_minus_outline": { + "prefix": "svg.material.invoice_text_minus_outline", + "description": "SVG material - invoice_text_minus_outline", + "body": [ + "{% svg material invoice_text_minus_outline %}" + ] + }, + "invoice_text_multiple": { + "prefix": "svg.material.invoice_text_multiple", + "description": "SVG material - invoice_text_multiple", + "body": [ + "{% svg material invoice_text_multiple %}" + ] + }, + "invoice_text_multiple_outline": { + "prefix": "svg.material.invoice_text_multiple_outline", + "description": "SVG material - invoice_text_multiple_outline", + "body": [ + "{% svg material invoice_text_multiple_outline %}" + ] + }, + "invoice_text_outline": { + "prefix": "svg.material.invoice_text_outline", + "description": "SVG material - invoice_text_outline", + "body": [ + "{% svg material invoice_text_outline %}" + ] + }, + "invoice_text_plus": { + "prefix": "svg.material.invoice_text_plus", + "description": "SVG material - invoice_text_plus", + "body": [ + "{% svg material invoice_text_plus %}" + ] + }, + "invoice_text_plus_outline": { + "prefix": "svg.material.invoice_text_plus_outline", + "description": "SVG material - invoice_text_plus_outline", + "body": [ + "{% svg material invoice_text_plus_outline %}" + ] + }, + "invoice_text_remove": { + "prefix": "svg.material.invoice_text_remove", + "description": "SVG material - invoice_text_remove", + "body": [ + "{% svg material invoice_text_remove %}" + ] + }, + "invoice_text_remove_outline": { + "prefix": "svg.material.invoice_text_remove_outline", + "description": "SVG material - invoice_text_remove_outline", + "body": [ + "{% svg material invoice_text_remove_outline %}" + ] + }, + "invoice_text_send": { + "prefix": "svg.material.invoice_text_send", + "description": "SVG material - invoice_text_send", + "body": [ + "{% svg material invoice_text_send %}" + ] + }, + "invoice_text_send_outline": { + "prefix": "svg.material.invoice_text_send_outline", + "description": "SVG material - invoice_text_send_outline", + "body": [ + "{% svg material invoice_text_send_outline %}" + ] + }, + "iobroker": { + "prefix": "svg.material.iobroker", + "description": "SVG material - iobroker", + "body": [ + "{% svg material iobroker %}" + ] + }, + "ip": { + "prefix": "svg.material.ip", + "description": "SVG material - ip", + "body": [ + "{% svg material ip %}" + ] + }, + "ip_network": { + "prefix": "svg.material.ip_network", + "description": "SVG material - ip_network", + "body": [ + "{% svg material ip_network %}" + ] + }, + "ip_network_outline": { + "prefix": "svg.material.ip_network_outline", + "description": "SVG material - ip_network_outline", + "body": [ + "{% svg material ip_network_outline %}" + ] + }, + "ip_outline": { + "prefix": "svg.material.ip_outline", + "description": "SVG material - ip_outline", + "body": [ + "{% svg material ip_outline %}" + ] + }, + "ipod": { + "prefix": "svg.material.ipod", + "description": "SVG material - ipod", + "body": [ + "{% svg material ipod %}" + ] + }, + "iron": { + "prefix": "svg.material.iron", + "description": "SVG material - iron", + "body": [ + "{% svg material iron %}" + ] + }, + "iron_board": { + "prefix": "svg.material.iron_board", + "description": "SVG material - iron_board", + "body": [ + "{% svg material iron_board %}" + ] + }, + "iron_outline": { + "prefix": "svg.material.iron_outline", + "description": "SVG material - iron_outline", + "body": [ + "{% svg material iron_outline %}" + ] + }, + "island": { + "prefix": "svg.material.island", + "description": "SVG material - island", + "body": [ + "{% svg material island %}" + ] + }, + "island_variant": { + "prefix": "svg.material.island_variant", + "description": "SVG material - island_variant", + "body": [ + "{% svg material island_variant %}" + ] + }, + "iv_bag": { + "prefix": "svg.material.iv_bag", + "description": "SVG material - iv_bag", + "body": [ + "{% svg material iv_bag %}" + ] + }, + "jabber": { + "prefix": "svg.material.jabber", + "description": "SVG material - jabber", + "body": [ + "{% svg material jabber %}" + ] + }, + "jeepney": { + "prefix": "svg.material.jeepney", + "description": "SVG material - jeepney", + "body": [ + "{% svg material jeepney %}" + ] + }, + "jellyfish": { + "prefix": "svg.material.jellyfish", + "description": "SVG material - jellyfish", + "body": [ + "{% svg material jellyfish %}" + ] + }, + "jellyfish_outline": { + "prefix": "svg.material.jellyfish_outline", + "description": "SVG material - jellyfish_outline", + "body": [ + "{% svg material jellyfish_outline %}" + ] + }, + "jira": { + "prefix": "svg.material.jira", + "description": "SVG material - jira", + "body": [ + "{% svg material jira %}" + ] + }, + "jquery": { + "prefix": "svg.material.jquery", + "description": "SVG material - jquery", + "body": [ + "{% svg material jquery %}" + ] + }, + "jsfiddle": { + "prefix": "svg.material.jsfiddle", + "description": "SVG material - jsfiddle", + "body": [ + "{% svg material jsfiddle %}" + ] + }, + "jump_rope": { + "prefix": "svg.material.jump_rope", + "description": "SVG material - jump_rope", + "body": [ + "{% svg material jump_rope %}" + ] + }, + "kabaddi": { + "prefix": "svg.material.kabaddi", + "description": "SVG material - kabaddi", + "body": [ + "{% svg material kabaddi %}" + ] + }, + "kangaroo": { + "prefix": "svg.material.kangaroo", + "description": "SVG material - kangaroo", + "body": [ + "{% svg material kangaroo %}" + ] + }, + "karate": { + "prefix": "svg.material.karate", + "description": "SVG material - karate", + "body": [ + "{% svg material karate %}" + ] + }, + "kayaking": { + "prefix": "svg.material.kayaking", + "description": "SVG material - kayaking", + "body": [ + "{% svg material kayaking %}" + ] + }, + "keg": { + "prefix": "svg.material.keg", + "description": "SVG material - keg", + "body": [ + "{% svg material keg %}" + ] + }, + "kettle": { + "prefix": "svg.material.kettle", + "description": "SVG material - kettle", + "body": [ + "{% svg material kettle %}" + ] + }, + "kettle_alert": { + "prefix": "svg.material.kettle_alert", + "description": "SVG material - kettle_alert", + "body": [ + "{% svg material kettle_alert %}" + ] + }, + "kettle_alert_outline": { + "prefix": "svg.material.kettle_alert_outline", + "description": "SVG material - kettle_alert_outline", + "body": [ + "{% svg material kettle_alert_outline %}" + ] + }, + "kettle_off": { + "prefix": "svg.material.kettle_off", + "description": "SVG material - kettle_off", + "body": [ + "{% svg material kettle_off %}" + ] + }, + "kettle_off_outline": { + "prefix": "svg.material.kettle_off_outline", + "description": "SVG material - kettle_off_outline", + "body": [ + "{% svg material kettle_off_outline %}" + ] + }, + "kettle_outline": { + "prefix": "svg.material.kettle_outline", + "description": "SVG material - kettle_outline", + "body": [ + "{% svg material kettle_outline %}" + ] + }, + "kettle_pour_over": { + "prefix": "svg.material.kettle_pour_over", + "description": "SVG material - kettle_pour_over", + "body": [ + "{% svg material kettle_pour_over %}" + ] + }, + "kettle_steam": { + "prefix": "svg.material.kettle_steam", + "description": "SVG material - kettle_steam", + "body": [ + "{% svg material kettle_steam %}" + ] + }, + "kettle_steam_outline": { + "prefix": "svg.material.kettle_steam_outline", + "description": "SVG material - kettle_steam_outline", + "body": [ + "{% svg material kettle_steam_outline %}" + ] + }, + "kettlebell": { + "prefix": "svg.material.kettlebell", + "description": "SVG material - kettlebell", + "body": [ + "{% svg material kettlebell %}" + ] + }, + "key": { + "prefix": "svg.material.key", + "description": "SVG material - key", + "body": [ + "{% svg material key %}" + ] + }, + "key_alert": { + "prefix": "svg.material.key_alert", + "description": "SVG material - key_alert", + "body": [ + "{% svg material key_alert %}" + ] + }, + "key_alert_outline": { + "prefix": "svg.material.key_alert_outline", + "description": "SVG material - key_alert_outline", + "body": [ + "{% svg material key_alert_outline %}" + ] + }, + "key_arrow_right": { + "prefix": "svg.material.key_arrow_right", + "description": "SVG material - key_arrow_right", + "body": [ + "{% svg material key_arrow_right %}" + ] + }, + "key_chain": { + "prefix": "svg.material.key_chain", + "description": "SVG material - key_chain", + "body": [ + "{% svg material key_chain %}" + ] + }, + "key_chain_variant": { + "prefix": "svg.material.key_chain_variant", + "description": "SVG material - key_chain_variant", + "body": [ + "{% svg material key_chain_variant %}" + ] + }, + "key_change": { + "prefix": "svg.material.key_change", + "description": "SVG material - key_change", + "body": [ + "{% svg material key_change %}" + ] + }, + "key_link": { + "prefix": "svg.material.key_link", + "description": "SVG material - key_link", + "body": [ + "{% svg material key_link %}" + ] + }, + "key_minus": { + "prefix": "svg.material.key_minus", + "description": "SVG material - key_minus", + "body": [ + "{% svg material key_minus %}" + ] + }, + "key_outline": { + "prefix": "svg.material.key_outline", + "description": "SVG material - key_outline", + "body": [ + "{% svg material key_outline %}" + ] + }, + "key_plus": { + "prefix": "svg.material.key_plus", + "description": "SVG material - key_plus", + "body": [ + "{% svg material key_plus %}" + ] + }, + "key_remove": { + "prefix": "svg.material.key_remove", + "description": "SVG material - key_remove", + "body": [ + "{% svg material key_remove %}" + ] + }, + "key_star": { + "prefix": "svg.material.key_star", + "description": "SVG material - key_star", + "body": [ + "{% svg material key_star %}" + ] + }, + "key_variant": { + "prefix": "svg.material.key_variant", + "description": "SVG material - key_variant", + "body": [ + "{% svg material key_variant %}" + ] + }, + "key_wireless": { + "prefix": "svg.material.key_wireless", + "description": "SVG material - key_wireless", + "body": [ + "{% svg material key_wireless %}" + ] + }, + "keyboard": { + "prefix": "svg.material.keyboard", + "description": "SVG material - keyboard", + "body": [ + "{% svg material keyboard %}" + ] + }, + "keyboard_backspace": { + "prefix": "svg.material.keyboard_backspace", + "description": "SVG material - keyboard_backspace", + "body": [ + "{% svg material keyboard_backspace %}" + ] + }, + "keyboard_caps": { + "prefix": "svg.material.keyboard_caps", + "description": "SVG material - keyboard_caps", + "body": [ + "{% svg material keyboard_caps %}" + ] + }, + "keyboard_close": { + "prefix": "svg.material.keyboard_close", + "description": "SVG material - keyboard_close", + "body": [ + "{% svg material keyboard_close %}" + ] + }, + "keyboard_close_outline": { + "prefix": "svg.material.keyboard_close_outline", + "description": "SVG material - keyboard_close_outline", + "body": [ + "{% svg material keyboard_close_outline %}" + ] + }, + "keyboard_esc": { + "prefix": "svg.material.keyboard_esc", + "description": "SVG material - keyboard_esc", + "body": [ + "{% svg material keyboard_esc %}" + ] + }, + "keyboard_f1": { + "prefix": "svg.material.keyboard_f1", + "description": "SVG material - keyboard_f1", + "body": [ + "{% svg material keyboard_f1 %}" + ] + }, + "keyboard_f10": { + "prefix": "svg.material.keyboard_f10", + "description": "SVG material - keyboard_f10", + "body": [ + "{% svg material keyboard_f10 %}" + ] + }, + "keyboard_f11": { + "prefix": "svg.material.keyboard_f11", + "description": "SVG material - keyboard_f11", + "body": [ + "{% svg material keyboard_f11 %}" + ] + }, + "keyboard_f12": { + "prefix": "svg.material.keyboard_f12", + "description": "SVG material - keyboard_f12", + "body": [ + "{% svg material keyboard_f12 %}" + ] + }, + "keyboard_f2": { + "prefix": "svg.material.keyboard_f2", + "description": "SVG material - keyboard_f2", + "body": [ + "{% svg material keyboard_f2 %}" + ] + }, + "keyboard_f3": { + "prefix": "svg.material.keyboard_f3", + "description": "SVG material - keyboard_f3", + "body": [ + "{% svg material keyboard_f3 %}" + ] + }, + "keyboard_f4": { + "prefix": "svg.material.keyboard_f4", + "description": "SVG material - keyboard_f4", + "body": [ + "{% svg material keyboard_f4 %}" + ] + }, + "keyboard_f5": { + "prefix": "svg.material.keyboard_f5", + "description": "SVG material - keyboard_f5", + "body": [ + "{% svg material keyboard_f5 %}" + ] + }, + "keyboard_f6": { + "prefix": "svg.material.keyboard_f6", + "description": "SVG material - keyboard_f6", + "body": [ + "{% svg material keyboard_f6 %}" + ] + }, + "keyboard_f7": { + "prefix": "svg.material.keyboard_f7", + "description": "SVG material - keyboard_f7", + "body": [ + "{% svg material keyboard_f7 %}" + ] + }, + "keyboard_f8": { + "prefix": "svg.material.keyboard_f8", + "description": "SVG material - keyboard_f8", + "body": [ + "{% svg material keyboard_f8 %}" + ] + }, + "keyboard_f9": { + "prefix": "svg.material.keyboard_f9", + "description": "SVG material - keyboard_f9", + "body": [ + "{% svg material keyboard_f9 %}" + ] + }, + "keyboard_off": { + "prefix": "svg.material.keyboard_off", + "description": "SVG material - keyboard_off", + "body": [ + "{% svg material keyboard_off %}" + ] + }, + "keyboard_off_outline": { + "prefix": "svg.material.keyboard_off_outline", + "description": "SVG material - keyboard_off_outline", + "body": [ + "{% svg material keyboard_off_outline %}" + ] + }, + "keyboard_outline": { + "prefix": "svg.material.keyboard_outline", + "description": "SVG material - keyboard_outline", + "body": [ + "{% svg material keyboard_outline %}" + ] + }, + "keyboard_return": { + "prefix": "svg.material.keyboard_return", + "description": "SVG material - keyboard_return", + "body": [ + "{% svg material keyboard_return %}" + ] + }, + "keyboard_settings": { + "prefix": "svg.material.keyboard_settings", + "description": "SVG material - keyboard_settings", + "body": [ + "{% svg material keyboard_settings %}" + ] + }, + "keyboard_settings_outline": { + "prefix": "svg.material.keyboard_settings_outline", + "description": "SVG material - keyboard_settings_outline", + "body": [ + "{% svg material keyboard_settings_outline %}" + ] + }, + "keyboard_space": { + "prefix": "svg.material.keyboard_space", + "description": "SVG material - keyboard_space", + "body": [ + "{% svg material keyboard_space %}" + ] + }, + "keyboard_tab": { + "prefix": "svg.material.keyboard_tab", + "description": "SVG material - keyboard_tab", + "body": [ + "{% svg material keyboard_tab %}" + ] + }, + "keyboard_tab_reverse": { + "prefix": "svg.material.keyboard_tab_reverse", + "description": "SVG material - keyboard_tab_reverse", + "body": [ + "{% svg material keyboard_tab_reverse %}" + ] + }, + "keyboard_variant": { + "prefix": "svg.material.keyboard_variant", + "description": "SVG material - keyboard_variant", + "body": [ + "{% svg material keyboard_variant %}" + ] + }, + "khanda": { + "prefix": "svg.material.khanda", + "description": "SVG material - khanda", + "body": [ + "{% svg material khanda %}" + ] + }, + "kickstarter": { + "prefix": "svg.material.kickstarter", + "description": "SVG material - kickstarter", + "body": [ + "{% svg material kickstarter %}" + ] + }, + "kite": { + "prefix": "svg.material.kite", + "description": "SVG material - kite", + "body": [ + "{% svg material kite %}" + ] + }, + "kite_outline": { + "prefix": "svg.material.kite_outline", + "description": "SVG material - kite_outline", + "body": [ + "{% svg material kite_outline %}" + ] + }, + "kitesurfing": { + "prefix": "svg.material.kitesurfing", + "description": "SVG material - kitesurfing", + "body": [ + "{% svg material kitesurfing %}" + ] + }, + "klingon": { + "prefix": "svg.material.klingon", + "description": "SVG material - klingon", + "body": [ + "{% svg material klingon %}" + ] + }, + "knife": { + "prefix": "svg.material.knife", + "description": "SVG material - knife", + "body": [ + "{% svg material knife %}" + ] + }, + "knife_military": { + "prefix": "svg.material.knife_military", + "description": "SVG material - knife_military", + "body": [ + "{% svg material knife_military %}" + ] + }, + "knob": { + "prefix": "svg.material.knob", + "description": "SVG material - knob", + "body": [ + "{% svg material knob %}" + ] + }, + "koala": { + "prefix": "svg.material.koala", + "description": "SVG material - koala", + "body": [ + "{% svg material koala %}" + ] + }, + "kodi": { + "prefix": "svg.material.kodi", + "description": "SVG material - kodi", + "body": [ + "{% svg material kodi %}" + ] + }, + "kubernetes": { + "prefix": "svg.material.kubernetes", + "description": "SVG material - kubernetes", + "body": [ + "{% svg material kubernetes %}" + ] + }, + "label": { + "prefix": "svg.material.label", + "description": "SVG material - label", + "body": [ + "{% svg material label %}" + ] + }, + "label_multiple": { + "prefix": "svg.material.label_multiple", + "description": "SVG material - label_multiple", + "body": [ + "{% svg material label_multiple %}" + ] + }, + "label_multiple_outline": { + "prefix": "svg.material.label_multiple_outline", + "description": "SVG material - label_multiple_outline", + "body": [ + "{% svg material label_multiple_outline %}" + ] + }, + "label_off": { + "prefix": "svg.material.label_off", + "description": "SVG material - label_off", + "body": [ + "{% svg material label_off %}" + ] + }, + "label_off_outline": { + "prefix": "svg.material.label_off_outline", + "description": "SVG material - label_off_outline", + "body": [ + "{% svg material label_off_outline %}" + ] + }, + "label_outline": { + "prefix": "svg.material.label_outline", + "description": "SVG material - label_outline", + "body": [ + "{% svg material label_outline %}" + ] + }, + "label_percent": { + "prefix": "svg.material.label_percent", + "description": "SVG material - label_percent", + "body": [ + "{% svg material label_percent %}" + ] + }, + "label_percent_outline": { + "prefix": "svg.material.label_percent_outline", + "description": "SVG material - label_percent_outline", + "body": [ + "{% svg material label_percent_outline %}" + ] + }, + "label_variant": { + "prefix": "svg.material.label_variant", + "description": "SVG material - label_variant", + "body": [ + "{% svg material label_variant %}" + ] + }, + "label_variant_outline": { + "prefix": "svg.material.label_variant_outline", + "description": "SVG material - label_variant_outline", + "body": [ + "{% svg material label_variant_outline %}" + ] + }, + "ladder": { + "prefix": "svg.material.ladder", + "description": "SVG material - ladder", + "body": [ + "{% svg material ladder %}" + ] + }, + "ladybug": { + "prefix": "svg.material.ladybug", + "description": "SVG material - ladybug", + "body": [ + "{% svg material ladybug %}" + ] + }, + "lambda_": { + "prefix": "svg.material.lambda_", + "description": "SVG material - lambda_", + "body": [ + "{% svg material lambda_ %}" + ] + }, + "lamp": { + "prefix": "svg.material.lamp", + "description": "SVG material - lamp", + "body": [ + "{% svg material lamp %}" + ] + }, + "lamp_outline": { + "prefix": "svg.material.lamp_outline", + "description": "SVG material - lamp_outline", + "body": [ + "{% svg material lamp_outline %}" + ] + }, + "lamps": { + "prefix": "svg.material.lamps", + "description": "SVG material - lamps", + "body": [ + "{% svg material lamps %}" + ] + }, + "lamps_outline": { + "prefix": "svg.material.lamps_outline", + "description": "SVG material - lamps_outline", + "body": [ + "{% svg material lamps_outline %}" + ] + }, + "lan": { + "prefix": "svg.material.lan", + "description": "SVG material - lan", + "body": [ + "{% svg material lan %}" + ] + }, + "lan_check": { + "prefix": "svg.material.lan_check", + "description": "SVG material - lan_check", + "body": [ + "{% svg material lan_check %}" + ] + }, + "lan_connect": { + "prefix": "svg.material.lan_connect", + "description": "SVG material - lan_connect", + "body": [ + "{% svg material lan_connect %}" + ] + }, + "lan_disconnect": { + "prefix": "svg.material.lan_disconnect", + "description": "SVG material - lan_disconnect", + "body": [ + "{% svg material lan_disconnect %}" + ] + }, + "lan_pending": { + "prefix": "svg.material.lan_pending", + "description": "SVG material - lan_pending", + "body": [ + "{% svg material lan_pending %}" + ] + }, + "land_fields": { + "prefix": "svg.material.land_fields", + "description": "SVG material - land_fields", + "body": [ + "{% svg material land_fields %}" + ] + }, + "land_plots": { + "prefix": "svg.material.land_plots", + "description": "SVG material - land_plots", + "body": [ + "{% svg material land_plots %}" + ] + }, + "land_plots_circle": { + "prefix": "svg.material.land_plots_circle", + "description": "SVG material - land_plots_circle", + "body": [ + "{% svg material land_plots_circle %}" + ] + }, + "land_plots_circle_variant": { + "prefix": "svg.material.land_plots_circle_variant", + "description": "SVG material - land_plots_circle_variant", + "body": [ + "{% svg material land_plots_circle_variant %}" + ] + }, + "land_plots_marker": { + "prefix": "svg.material.land_plots_marker", + "description": "SVG material - land_plots_marker", + "body": [ + "{% svg material land_plots_marker %}" + ] + }, + "land_rows_horizontal": { + "prefix": "svg.material.land_rows_horizontal", + "description": "SVG material - land_rows_horizontal", + "body": [ + "{% svg material land_rows_horizontal %}" + ] + }, + "land_rows_vertical": { + "prefix": "svg.material.land_rows_vertical", + "description": "SVG material - land_rows_vertical", + "body": [ + "{% svg material land_rows_vertical %}" + ] + }, + "landslide": { + "prefix": "svg.material.landslide", + "description": "SVG material - landslide", + "body": [ + "{% svg material landslide %}" + ] + }, + "landslide_outline": { + "prefix": "svg.material.landslide_outline", + "description": "SVG material - landslide_outline", + "body": [ + "{% svg material landslide_outline %}" + ] + }, + "language_c": { + "prefix": "svg.material.language_c", + "description": "SVG material - language_c", + "body": [ + "{% svg material language_c %}" + ] + }, + "language_cpp": { + "prefix": "svg.material.language_cpp", + "description": "SVG material - language_cpp", + "body": [ + "{% svg material language_cpp %}" + ] + }, + "language_csharp": { + "prefix": "svg.material.language_csharp", + "description": "SVG material - language_csharp", + "body": [ + "{% svg material language_csharp %}" + ] + }, + "language_css3": { + "prefix": "svg.material.language_css3", + "description": "SVG material - language_css3", + "body": [ + "{% svg material language_css3 %}" + ] + }, + "language_fortran": { + "prefix": "svg.material.language_fortran", + "description": "SVG material - language_fortran", + "body": [ + "{% svg material language_fortran %}" + ] + }, + "language_go": { + "prefix": "svg.material.language_go", + "description": "SVG material - language_go", + "body": [ + "{% svg material language_go %}" + ] + }, + "language_haskell": { + "prefix": "svg.material.language_haskell", + "description": "SVG material - language_haskell", + "body": [ + "{% svg material language_haskell %}" + ] + }, + "language_html5": { + "prefix": "svg.material.language_html5", + "description": "SVG material - language_html5", + "body": [ + "{% svg material language_html5 %}" + ] + }, + "language_java": { + "prefix": "svg.material.language_java", + "description": "SVG material - language_java", + "body": [ + "{% svg material language_java %}" + ] + }, + "language_javascript": { + "prefix": "svg.material.language_javascript", + "description": "SVG material - language_javascript", + "body": [ + "{% svg material language_javascript %}" + ] + }, + "language_kotlin": { + "prefix": "svg.material.language_kotlin", + "description": "SVG material - language_kotlin", + "body": [ + "{% svg material language_kotlin %}" + ] + }, + "language_lua": { + "prefix": "svg.material.language_lua", + "description": "SVG material - language_lua", + "body": [ + "{% svg material language_lua %}" + ] + }, + "language_markdown": { + "prefix": "svg.material.language_markdown", + "description": "SVG material - language_markdown", + "body": [ + "{% svg material language_markdown %}" + ] + }, + "language_markdown_outline": { + "prefix": "svg.material.language_markdown_outline", + "description": "SVG material - language_markdown_outline", + "body": [ + "{% svg material language_markdown_outline %}" + ] + }, + "language_php": { + "prefix": "svg.material.language_php", + "description": "SVG material - language_php", + "body": [ + "{% svg material language_php %}" + ] + }, + "language_python": { + "prefix": "svg.material.language_python", + "description": "SVG material - language_python", + "body": [ + "{% svg material language_python %}" + ] + }, + "language_r": { + "prefix": "svg.material.language_r", + "description": "SVG material - language_r", + "body": [ + "{% svg material language_r %}" + ] + }, + "language_ruby": { + "prefix": "svg.material.language_ruby", + "description": "SVG material - language_ruby", + "body": [ + "{% svg material language_ruby %}" + ] + }, + "language_ruby_on_rails": { + "prefix": "svg.material.language_ruby_on_rails", + "description": "SVG material - language_ruby_on_rails", + "body": [ + "{% svg material language_ruby_on_rails %}" + ] + }, + "language_rust": { + "prefix": "svg.material.language_rust", + "description": "SVG material - language_rust", + "body": [ + "{% svg material language_rust %}" + ] + }, + "language_swift": { + "prefix": "svg.material.language_swift", + "description": "SVG material - language_swift", + "body": [ + "{% svg material language_swift %}" + ] + }, + "language_typescript": { + "prefix": "svg.material.language_typescript", + "description": "SVG material - language_typescript", + "body": [ + "{% svg material language_typescript %}" + ] + }, + "language_xaml": { + "prefix": "svg.material.language_xaml", + "description": "SVG material - language_xaml", + "body": [ + "{% svg material language_xaml %}" + ] + }, + "laptop": { + "prefix": "svg.material.laptop", + "description": "SVG material - laptop", + "body": [ + "{% svg material laptop %}" + ] + }, + "laptop_account": { + "prefix": "svg.material.laptop_account", + "description": "SVG material - laptop_account", + "body": [ + "{% svg material laptop_account %}" + ] + }, + "laptop_off": { + "prefix": "svg.material.laptop_off", + "description": "SVG material - laptop_off", + "body": [ + "{% svg material laptop_off %}" + ] + }, + "laravel": { + "prefix": "svg.material.laravel", + "description": "SVG material - laravel", + "body": [ + "{% svg material laravel %}" + ] + }, + "laser_pointer": { + "prefix": "svg.material.laser_pointer", + "description": "SVG material - laser_pointer", + "body": [ + "{% svg material laser_pointer %}" + ] + }, + "lasso": { + "prefix": "svg.material.lasso", + "description": "SVG material - lasso", + "body": [ + "{% svg material lasso %}" + ] + }, + "lastpass": { + "prefix": "svg.material.lastpass", + "description": "SVG material - lastpass", + "body": [ + "{% svg material lastpass %}" + ] + }, + "latitude": { + "prefix": "svg.material.latitude", + "description": "SVG material - latitude", + "body": [ + "{% svg material latitude %}" + ] + }, + "launch": { + "prefix": "svg.material.launch", + "description": "SVG material - launch", + "body": [ + "{% svg material launch %}" + ] + }, + "lava_lamp": { + "prefix": "svg.material.lava_lamp", + "description": "SVG material - lava_lamp", + "body": [ + "{% svg material lava_lamp %}" + ] + }, + "layers": { + "prefix": "svg.material.layers", + "description": "SVG material - layers", + "body": [ + "{% svg material layers %}" + ] + }, + "layers_edit": { + "prefix": "svg.material.layers_edit", + "description": "SVG material - layers_edit", + "body": [ + "{% svg material layers_edit %}" + ] + }, + "layers_minus": { + "prefix": "svg.material.layers_minus", + "description": "SVG material - layers_minus", + "body": [ + "{% svg material layers_minus %}" + ] + }, + "layers_off": { + "prefix": "svg.material.layers_off", + "description": "SVG material - layers_off", + "body": [ + "{% svg material layers_off %}" + ] + }, + "layers_off_outline": { + "prefix": "svg.material.layers_off_outline", + "description": "SVG material - layers_off_outline", + "body": [ + "{% svg material layers_off_outline %}" + ] + }, + "layers_outline": { + "prefix": "svg.material.layers_outline", + "description": "SVG material - layers_outline", + "body": [ + "{% svg material layers_outline %}" + ] + }, + "layers_plus": { + "prefix": "svg.material.layers_plus", + "description": "SVG material - layers_plus", + "body": [ + "{% svg material layers_plus %}" + ] + }, + "layers_remove": { + "prefix": "svg.material.layers_remove", + "description": "SVG material - layers_remove", + "body": [ + "{% svg material layers_remove %}" + ] + }, + "layers_search": { + "prefix": "svg.material.layers_search", + "description": "SVG material - layers_search", + "body": [ + "{% svg material layers_search %}" + ] + }, + "layers_search_outline": { + "prefix": "svg.material.layers_search_outline", + "description": "SVG material - layers_search_outline", + "body": [ + "{% svg material layers_search_outline %}" + ] + }, + "layers_triple": { + "prefix": "svg.material.layers_triple", + "description": "SVG material - layers_triple", + "body": [ + "{% svg material layers_triple %}" + ] + }, + "layers_triple_outline": { + "prefix": "svg.material.layers_triple_outline", + "description": "SVG material - layers_triple_outline", + "body": [ + "{% svg material layers_triple_outline %}" + ] + }, + "lead_pencil": { + "prefix": "svg.material.lead_pencil", + "description": "SVG material - lead_pencil", + "body": [ + "{% svg material lead_pencil %}" + ] + }, + "leaf": { + "prefix": "svg.material.leaf", + "description": "SVG material - leaf", + "body": [ + "{% svg material leaf %}" + ] + }, + "leaf_circle": { + "prefix": "svg.material.leaf_circle", + "description": "SVG material - leaf_circle", + "body": [ + "{% svg material leaf_circle %}" + ] + }, + "leaf_circle_outline": { + "prefix": "svg.material.leaf_circle_outline", + "description": "SVG material - leaf_circle_outline", + "body": [ + "{% svg material leaf_circle_outline %}" + ] + }, + "leaf_maple": { + "prefix": "svg.material.leaf_maple", + "description": "SVG material - leaf_maple", + "body": [ + "{% svg material leaf_maple %}" + ] + }, + "leaf_maple_off": { + "prefix": "svg.material.leaf_maple_off", + "description": "SVG material - leaf_maple_off", + "body": [ + "{% svg material leaf_maple_off %}" + ] + }, + "leaf_off": { + "prefix": "svg.material.leaf_off", + "description": "SVG material - leaf_off", + "body": [ + "{% svg material leaf_off %}" + ] + }, + "leak": { + "prefix": "svg.material.leak", + "description": "SVG material - leak", + "body": [ + "{% svg material leak %}" + ] + }, + "leak_off": { + "prefix": "svg.material.leak_off", + "description": "SVG material - leak_off", + "body": [ + "{% svg material leak_off %}" + ] + }, + "lectern": { + "prefix": "svg.material.lectern", + "description": "SVG material - lectern", + "body": [ + "{% svg material lectern %}" + ] + }, + "led_off": { + "prefix": "svg.material.led_off", + "description": "SVG material - led_off", + "body": [ + "{% svg material led_off %}" + ] + }, + "led_on": { + "prefix": "svg.material.led_on", + "description": "SVG material - led_on", + "body": [ + "{% svg material led_on %}" + ] + }, + "led_outline": { + "prefix": "svg.material.led_outline", + "description": "SVG material - led_outline", + "body": [ + "{% svg material led_outline %}" + ] + }, + "led_strip": { + "prefix": "svg.material.led_strip", + "description": "SVG material - led_strip", + "body": [ + "{% svg material led_strip %}" + ] + }, + "led_strip_variant": { + "prefix": "svg.material.led_strip_variant", + "description": "SVG material - led_strip_variant", + "body": [ + "{% svg material led_strip_variant %}" + ] + }, + "led_strip_variant_off": { + "prefix": "svg.material.led_strip_variant_off", + "description": "SVG material - led_strip_variant_off", + "body": [ + "{% svg material led_strip_variant_off %}" + ] + }, + "led_variant_off": { + "prefix": "svg.material.led_variant_off", + "description": "SVG material - led_variant_off", + "body": [ + "{% svg material led_variant_off %}" + ] + }, + "led_variant_on": { + "prefix": "svg.material.led_variant_on", + "description": "SVG material - led_variant_on", + "body": [ + "{% svg material led_variant_on %}" + ] + }, + "led_variant_outline": { + "prefix": "svg.material.led_variant_outline", + "description": "SVG material - led_variant_outline", + "body": [ + "{% svg material led_variant_outline %}" + ] + }, + "leek": { + "prefix": "svg.material.leek", + "description": "SVG material - leek", + "body": [ + "{% svg material leek %}" + ] + }, + "less_than": { + "prefix": "svg.material.less_than", + "description": "SVG material - less_than", + "body": [ + "{% svg material less_than %}" + ] + }, + "less_than_or_equal": { + "prefix": "svg.material.less_than_or_equal", + "description": "SVG material - less_than_or_equal", + "body": [ + "{% svg material less_than_or_equal %}" + ] + }, + "library": { + "prefix": "svg.material.library", + "description": "SVG material - library", + "body": [ + "{% svg material library %}" + ] + }, + "library_outline": { + "prefix": "svg.material.library_outline", + "description": "SVG material - library_outline", + "body": [ + "{% svg material library_outline %}" + ] + }, + "library_shelves": { + "prefix": "svg.material.library_shelves", + "description": "SVG material - library_shelves", + "body": [ + "{% svg material library_shelves %}" + ] + }, + "license": { + "prefix": "svg.material.license", + "description": "SVG material - license", + "body": [ + "{% svg material license %}" + ] + }, + "lifebuoy": { + "prefix": "svg.material.lifebuoy", + "description": "SVG material - lifebuoy", + "body": [ + "{% svg material lifebuoy %}" + ] + }, + "light_flood_down": { + "prefix": "svg.material.light_flood_down", + "description": "SVG material - light_flood_down", + "body": [ + "{% svg material light_flood_down %}" + ] + }, + "light_flood_up": { + "prefix": "svg.material.light_flood_up", + "description": "SVG material - light_flood_up", + "body": [ + "{% svg material light_flood_up %}" + ] + }, + "light_recessed": { + "prefix": "svg.material.light_recessed", + "description": "SVG material - light_recessed", + "body": [ + "{% svg material light_recessed %}" + ] + }, + "light_switch": { + "prefix": "svg.material.light_switch", + "description": "SVG material - light_switch", + "body": [ + "{% svg material light_switch %}" + ] + }, + "light_switch_off": { + "prefix": "svg.material.light_switch_off", + "description": "SVG material - light_switch_off", + "body": [ + "{% svg material light_switch_off %}" + ] + }, + "lightbulb": { + "prefix": "svg.material.lightbulb", + "description": "SVG material - lightbulb", + "body": [ + "{% svg material lightbulb %}" + ] + }, + "lightbulb_alert": { + "prefix": "svg.material.lightbulb_alert", + "description": "SVG material - lightbulb_alert", + "body": [ + "{% svg material lightbulb_alert %}" + ] + }, + "lightbulb_alert_outline": { + "prefix": "svg.material.lightbulb_alert_outline", + "description": "SVG material - lightbulb_alert_outline", + "body": [ + "{% svg material lightbulb_alert_outline %}" + ] + }, + "lightbulb_auto": { + "prefix": "svg.material.lightbulb_auto", + "description": "SVG material - lightbulb_auto", + "body": [ + "{% svg material lightbulb_auto %}" + ] + }, + "lightbulb_auto_outline": { + "prefix": "svg.material.lightbulb_auto_outline", + "description": "SVG material - lightbulb_auto_outline", + "body": [ + "{% svg material lightbulb_auto_outline %}" + ] + }, + "lightbulb_cfl": { + "prefix": "svg.material.lightbulb_cfl", + "description": "SVG material - lightbulb_cfl", + "body": [ + "{% svg material lightbulb_cfl %}" + ] + }, + "lightbulb_cfl_off": { + "prefix": "svg.material.lightbulb_cfl_off", + "description": "SVG material - lightbulb_cfl_off", + "body": [ + "{% svg material lightbulb_cfl_off %}" + ] + }, + "lightbulb_cfl_spiral": { + "prefix": "svg.material.lightbulb_cfl_spiral", + "description": "SVG material - lightbulb_cfl_spiral", + "body": [ + "{% svg material lightbulb_cfl_spiral %}" + ] + }, + "lightbulb_cfl_spiral_off": { + "prefix": "svg.material.lightbulb_cfl_spiral_off", + "description": "SVG material - lightbulb_cfl_spiral_off", + "body": [ + "{% svg material lightbulb_cfl_spiral_off %}" + ] + }, + "lightbulb_fluorescent_tube": { + "prefix": "svg.material.lightbulb_fluorescent_tube", + "description": "SVG material - lightbulb_fluorescent_tube", + "body": [ + "{% svg material lightbulb_fluorescent_tube %}" + ] + }, + "lightbulb_fluorescent_tube_outline": { + "prefix": "svg.material.lightbulb_fluorescent_tube_outline", + "description": "SVG material - lightbulb_fluorescent_tube_outline", + "body": [ + "{% svg material lightbulb_fluorescent_tube_outline %}" + ] + }, + "lightbulb_group": { + "prefix": "svg.material.lightbulb_group", + "description": "SVG material - lightbulb_group", + "body": [ + "{% svg material lightbulb_group %}" + ] + }, + "lightbulb_group_off": { + "prefix": "svg.material.lightbulb_group_off", + "description": "SVG material - lightbulb_group_off", + "body": [ + "{% svg material lightbulb_group_off %}" + ] + }, + "lightbulb_group_off_outline": { + "prefix": "svg.material.lightbulb_group_off_outline", + "description": "SVG material - lightbulb_group_off_outline", + "body": [ + "{% svg material lightbulb_group_off_outline %}" + ] + }, + "lightbulb_group_outline": { + "prefix": "svg.material.lightbulb_group_outline", + "description": "SVG material - lightbulb_group_outline", + "body": [ + "{% svg material lightbulb_group_outline %}" + ] + }, + "lightbulb_multiple": { + "prefix": "svg.material.lightbulb_multiple", + "description": "SVG material - lightbulb_multiple", + "body": [ + "{% svg material lightbulb_multiple %}" + ] + }, + "lightbulb_multiple_off": { + "prefix": "svg.material.lightbulb_multiple_off", + "description": "SVG material - lightbulb_multiple_off", + "body": [ + "{% svg material lightbulb_multiple_off %}" + ] + }, + "lightbulb_multiple_off_outline": { + "prefix": "svg.material.lightbulb_multiple_off_outline", + "description": "SVG material - lightbulb_multiple_off_outline", + "body": [ + "{% svg material lightbulb_multiple_off_outline %}" + ] + }, + "lightbulb_multiple_outline": { + "prefix": "svg.material.lightbulb_multiple_outline", + "description": "SVG material - lightbulb_multiple_outline", + "body": [ + "{% svg material lightbulb_multiple_outline %}" + ] + }, + "lightbulb_night": { + "prefix": "svg.material.lightbulb_night", + "description": "SVG material - lightbulb_night", + "body": [ + "{% svg material lightbulb_night %}" + ] + }, + "lightbulb_night_outline": { + "prefix": "svg.material.lightbulb_night_outline", + "description": "SVG material - lightbulb_night_outline", + "body": [ + "{% svg material lightbulb_night_outline %}" + ] + }, + "lightbulb_off": { + "prefix": "svg.material.lightbulb_off", + "description": "SVG material - lightbulb_off", + "body": [ + "{% svg material lightbulb_off %}" + ] + }, + "lightbulb_off_outline": { + "prefix": "svg.material.lightbulb_off_outline", + "description": "SVG material - lightbulb_off_outline", + "body": [ + "{% svg material lightbulb_off_outline %}" + ] + }, + "lightbulb_on": { + "prefix": "svg.material.lightbulb_on", + "description": "SVG material - lightbulb_on", + "body": [ + "{% svg material lightbulb_on %}" + ] + }, + "lightbulb_on_10": { + "prefix": "svg.material.lightbulb_on_10", + "description": "SVG material - lightbulb_on_10", + "body": [ + "{% svg material lightbulb_on_10 %}" + ] + }, + "lightbulb_on_20": { + "prefix": "svg.material.lightbulb_on_20", + "description": "SVG material - lightbulb_on_20", + "body": [ + "{% svg material lightbulb_on_20 %}" + ] + }, + "lightbulb_on_30": { + "prefix": "svg.material.lightbulb_on_30", + "description": "SVG material - lightbulb_on_30", + "body": [ + "{% svg material lightbulb_on_30 %}" + ] + }, + "lightbulb_on_40": { + "prefix": "svg.material.lightbulb_on_40", + "description": "SVG material - lightbulb_on_40", + "body": [ + "{% svg material lightbulb_on_40 %}" + ] + }, + "lightbulb_on_50": { + "prefix": "svg.material.lightbulb_on_50", + "description": "SVG material - lightbulb_on_50", + "body": [ + "{% svg material lightbulb_on_50 %}" + ] + }, + "lightbulb_on_60": { + "prefix": "svg.material.lightbulb_on_60", + "description": "SVG material - lightbulb_on_60", + "body": [ + "{% svg material lightbulb_on_60 %}" + ] + }, + "lightbulb_on_70": { + "prefix": "svg.material.lightbulb_on_70", + "description": "SVG material - lightbulb_on_70", + "body": [ + "{% svg material lightbulb_on_70 %}" + ] + }, + "lightbulb_on_80": { + "prefix": "svg.material.lightbulb_on_80", + "description": "SVG material - lightbulb_on_80", + "body": [ + "{% svg material lightbulb_on_80 %}" + ] + }, + "lightbulb_on_90": { + "prefix": "svg.material.lightbulb_on_90", + "description": "SVG material - lightbulb_on_90", + "body": [ + "{% svg material lightbulb_on_90 %}" + ] + }, + "lightbulb_on_outline": { + "prefix": "svg.material.lightbulb_on_outline", + "description": "SVG material - lightbulb_on_outline", + "body": [ + "{% svg material lightbulb_on_outline %}" + ] + }, + "lightbulb_outline": { + "prefix": "svg.material.lightbulb_outline", + "description": "SVG material - lightbulb_outline", + "body": [ + "{% svg material lightbulb_outline %}" + ] + }, + "lightbulb_question": { + "prefix": "svg.material.lightbulb_question", + "description": "SVG material - lightbulb_question", + "body": [ + "{% svg material lightbulb_question %}" + ] + }, + "lightbulb_question_outline": { + "prefix": "svg.material.lightbulb_question_outline", + "description": "SVG material - lightbulb_question_outline", + "body": [ + "{% svg material lightbulb_question_outline %}" + ] + }, + "lightbulb_spot": { + "prefix": "svg.material.lightbulb_spot", + "description": "SVG material - lightbulb_spot", + "body": [ + "{% svg material lightbulb_spot %}" + ] + }, + "lightbulb_spot_off": { + "prefix": "svg.material.lightbulb_spot_off", + "description": "SVG material - lightbulb_spot_off", + "body": [ + "{% svg material lightbulb_spot_off %}" + ] + }, + "lightbulb_variant": { + "prefix": "svg.material.lightbulb_variant", + "description": "SVG material - lightbulb_variant", + "body": [ + "{% svg material lightbulb_variant %}" + ] + }, + "lightbulb_variant_outline": { + "prefix": "svg.material.lightbulb_variant_outline", + "description": "SVG material - lightbulb_variant_outline", + "body": [ + "{% svg material lightbulb_variant_outline %}" + ] + }, + "lighthouse": { + "prefix": "svg.material.lighthouse", + "description": "SVG material - lighthouse", + "body": [ + "{% svg material lighthouse %}" + ] + }, + "lighthouse_on": { + "prefix": "svg.material.lighthouse_on", + "description": "SVG material - lighthouse_on", + "body": [ + "{% svg material lighthouse_on %}" + ] + }, + "lightning_bolt": { + "prefix": "svg.material.lightning_bolt", + "description": "SVG material - lightning_bolt", + "body": [ + "{% svg material lightning_bolt %}" + ] + }, + "lightning_bolt_circle": { + "prefix": "svg.material.lightning_bolt_circle", + "description": "SVG material - lightning_bolt_circle", + "body": [ + "{% svg material lightning_bolt_circle %}" + ] + }, + "lightning_bolt_outline": { + "prefix": "svg.material.lightning_bolt_outline", + "description": "SVG material - lightning_bolt_outline", + "body": [ + "{% svg material lightning_bolt_outline %}" + ] + }, + "line_scan": { + "prefix": "svg.material.line_scan", + "description": "SVG material - line_scan", + "body": [ + "{% svg material line_scan %}" + ] + }, + "lingerie": { + "prefix": "svg.material.lingerie", + "description": "SVG material - lingerie", + "body": [ + "{% svg material lingerie %}" + ] + }, + "link": { + "prefix": "svg.material.link", + "description": "SVG material - link", + "body": [ + "{% svg material link %}" + ] + }, + "link_box": { + "prefix": "svg.material.link_box", + "description": "SVG material - link_box", + "body": [ + "{% svg material link_box %}" + ] + }, + "link_box_outline": { + "prefix": "svg.material.link_box_outline", + "description": "SVG material - link_box_outline", + "body": [ + "{% svg material link_box_outline %}" + ] + }, + "link_box_variant": { + "prefix": "svg.material.link_box_variant", + "description": "SVG material - link_box_variant", + "body": [ + "{% svg material link_box_variant %}" + ] + }, + "link_box_variant_outline": { + "prefix": "svg.material.link_box_variant_outline", + "description": "SVG material - link_box_variant_outline", + "body": [ + "{% svg material link_box_variant_outline %}" + ] + }, + "link_circle": { + "prefix": "svg.material.link_circle", + "description": "SVG material - link_circle", + "body": [ + "{% svg material link_circle %}" + ] + }, + "link_circle_outline": { + "prefix": "svg.material.link_circle_outline", + "description": "SVG material - link_circle_outline", + "body": [ + "{% svg material link_circle_outline %}" + ] + }, + "link_edit": { + "prefix": "svg.material.link_edit", + "description": "SVG material - link_edit", + "body": [ + "{% svg material link_edit %}" + ] + }, + "link_lock": { + "prefix": "svg.material.link_lock", + "description": "SVG material - link_lock", + "body": [ + "{% svg material link_lock %}" + ] + }, + "link_off": { + "prefix": "svg.material.link_off", + "description": "SVG material - link_off", + "body": [ + "{% svg material link_off %}" + ] + }, + "link_plus": { + "prefix": "svg.material.link_plus", + "description": "SVG material - link_plus", + "body": [ + "{% svg material link_plus %}" + ] + }, + "link_variant": { + "prefix": "svg.material.link_variant", + "description": "SVG material - link_variant", + "body": [ + "{% svg material link_variant %}" + ] + }, + "link_variant_minus": { + "prefix": "svg.material.link_variant_minus", + "description": "SVG material - link_variant_minus", + "body": [ + "{% svg material link_variant_minus %}" + ] + }, + "link_variant_off": { + "prefix": "svg.material.link_variant_off", + "description": "SVG material - link_variant_off", + "body": [ + "{% svg material link_variant_off %}" + ] + }, + "link_variant_plus": { + "prefix": "svg.material.link_variant_plus", + "description": "SVG material - link_variant_plus", + "body": [ + "{% svg material link_variant_plus %}" + ] + }, + "link_variant_remove": { + "prefix": "svg.material.link_variant_remove", + "description": "SVG material - link_variant_remove", + "body": [ + "{% svg material link_variant_remove %}" + ] + }, + "linkedin": { + "prefix": "svg.material.linkedin", + "description": "SVG material - linkedin", + "body": [ + "{% svg material linkedin %}" + ] + }, + "linux": { + "prefix": "svg.material.linux", + "description": "SVG material - linux", + "body": [ + "{% svg material linux %}" + ] + }, + "linux_mint": { + "prefix": "svg.material.linux_mint", + "description": "SVG material - linux_mint", + "body": [ + "{% svg material linux_mint %}" + ] + }, + "lipstick": { + "prefix": "svg.material.lipstick", + "description": "SVG material - lipstick", + "body": [ + "{% svg material lipstick %}" + ] + }, + "liquid_spot": { + "prefix": "svg.material.liquid_spot", + "description": "SVG material - liquid_spot", + "body": [ + "{% svg material liquid_spot %}" + ] + }, + "liquor": { + "prefix": "svg.material.liquor", + "description": "SVG material - liquor", + "body": [ + "{% svg material liquor %}" + ] + }, + "list_box": { + "prefix": "svg.material.list_box", + "description": "SVG material - list_box", + "body": [ + "{% svg material list_box %}" + ] + }, + "list_box_outline": { + "prefix": "svg.material.list_box_outline", + "description": "SVG material - list_box_outline", + "body": [ + "{% svg material list_box_outline %}" + ] + }, + "list_status": { + "prefix": "svg.material.list_status", + "description": "SVG material - list_status", + "body": [ + "{% svg material list_status %}" + ] + }, + "litecoin": { + "prefix": "svg.material.litecoin", + "description": "SVG material - litecoin", + "body": [ + "{% svg material litecoin %}" + ] + }, + "loading": { + "prefix": "svg.material.loading", + "description": "SVG material - loading", + "body": [ + "{% svg material loading %}" + ] + }, + "location_enter": { + "prefix": "svg.material.location_enter", + "description": "SVG material - location_enter", + "body": [ + "{% svg material location_enter %}" + ] + }, + "location_exit": { + "prefix": "svg.material.location_exit", + "description": "SVG material - location_exit", + "body": [ + "{% svg material location_exit %}" + ] + }, + "lock": { + "prefix": "svg.material.lock", + "description": "SVG material - lock", + "body": [ + "{% svg material lock %}" + ] + }, + "lock_alert": { + "prefix": "svg.material.lock_alert", + "description": "SVG material - lock_alert", + "body": [ + "{% svg material lock_alert %}" + ] + }, + "lock_alert_outline": { + "prefix": "svg.material.lock_alert_outline", + "description": "SVG material - lock_alert_outline", + "body": [ + "{% svg material lock_alert_outline %}" + ] + }, + "lock_check": { + "prefix": "svg.material.lock_check", + "description": "SVG material - lock_check", + "body": [ + "{% svg material lock_check %}" + ] + }, + "lock_check_outline": { + "prefix": "svg.material.lock_check_outline", + "description": "SVG material - lock_check_outline", + "body": [ + "{% svg material lock_check_outline %}" + ] + }, + "lock_clock": { + "prefix": "svg.material.lock_clock", + "description": "SVG material - lock_clock", + "body": [ + "{% svg material lock_clock %}" + ] + }, + "lock_minus": { + "prefix": "svg.material.lock_minus", + "description": "SVG material - lock_minus", + "body": [ + "{% svg material lock_minus %}" + ] + }, + "lock_minus_outline": { + "prefix": "svg.material.lock_minus_outline", + "description": "SVG material - lock_minus_outline", + "body": [ + "{% svg material lock_minus_outline %}" + ] + }, + "lock_off": { + "prefix": "svg.material.lock_off", + "description": "SVG material - lock_off", + "body": [ + "{% svg material lock_off %}" + ] + }, + "lock_off_outline": { + "prefix": "svg.material.lock_off_outline", + "description": "SVG material - lock_off_outline", + "body": [ + "{% svg material lock_off_outline %}" + ] + }, + "lock_open": { + "prefix": "svg.material.lock_open", + "description": "SVG material - lock_open", + "body": [ + "{% svg material lock_open %}" + ] + }, + "lock_open_alert": { + "prefix": "svg.material.lock_open_alert", + "description": "SVG material - lock_open_alert", + "body": [ + "{% svg material lock_open_alert %}" + ] + }, + "lock_open_alert_outline": { + "prefix": "svg.material.lock_open_alert_outline", + "description": "SVG material - lock_open_alert_outline", + "body": [ + "{% svg material lock_open_alert_outline %}" + ] + }, + "lock_open_check": { + "prefix": "svg.material.lock_open_check", + "description": "SVG material - lock_open_check", + "body": [ + "{% svg material lock_open_check %}" + ] + }, + "lock_open_check_outline": { + "prefix": "svg.material.lock_open_check_outline", + "description": "SVG material - lock_open_check_outline", + "body": [ + "{% svg material lock_open_check_outline %}" + ] + }, + "lock_open_minus": { + "prefix": "svg.material.lock_open_minus", + "description": "SVG material - lock_open_minus", + "body": [ + "{% svg material lock_open_minus %}" + ] + }, + "lock_open_minus_outline": { + "prefix": "svg.material.lock_open_minus_outline", + "description": "SVG material - lock_open_minus_outline", + "body": [ + "{% svg material lock_open_minus_outline %}" + ] + }, + "lock_open_outline": { + "prefix": "svg.material.lock_open_outline", + "description": "SVG material - lock_open_outline", + "body": [ + "{% svg material lock_open_outline %}" + ] + }, + "lock_open_plus": { + "prefix": "svg.material.lock_open_plus", + "description": "SVG material - lock_open_plus", + "body": [ + "{% svg material lock_open_plus %}" + ] + }, + "lock_open_plus_outline": { + "prefix": "svg.material.lock_open_plus_outline", + "description": "SVG material - lock_open_plus_outline", + "body": [ + "{% svg material lock_open_plus_outline %}" + ] + }, + "lock_open_remove": { + "prefix": "svg.material.lock_open_remove", + "description": "SVG material - lock_open_remove", + "body": [ + "{% svg material lock_open_remove %}" + ] + }, + "lock_open_remove_outline": { + "prefix": "svg.material.lock_open_remove_outline", + "description": "SVG material - lock_open_remove_outline", + "body": [ + "{% svg material lock_open_remove_outline %}" + ] + }, + "lock_open_variant": { + "prefix": "svg.material.lock_open_variant", + "description": "SVG material - lock_open_variant", + "body": [ + "{% svg material lock_open_variant %}" + ] + }, + "lock_open_variant_outline": { + "prefix": "svg.material.lock_open_variant_outline", + "description": "SVG material - lock_open_variant_outline", + "body": [ + "{% svg material lock_open_variant_outline %}" + ] + }, + "lock_outline": { + "prefix": "svg.material.lock_outline", + "description": "SVG material - lock_outline", + "body": [ + "{% svg material lock_outline %}" + ] + }, + "lock_pattern": { + "prefix": "svg.material.lock_pattern", + "description": "SVG material - lock_pattern", + "body": [ + "{% svg material lock_pattern %}" + ] + }, + "lock_percent": { + "prefix": "svg.material.lock_percent", + "description": "SVG material - lock_percent", + "body": [ + "{% svg material lock_percent %}" + ] + }, + "lock_percent_open": { + "prefix": "svg.material.lock_percent_open", + "description": "SVG material - lock_percent_open", + "body": [ + "{% svg material lock_percent_open %}" + ] + }, + "lock_percent_open_outline": { + "prefix": "svg.material.lock_percent_open_outline", + "description": "SVG material - lock_percent_open_outline", + "body": [ + "{% svg material lock_percent_open_outline %}" + ] + }, + "lock_percent_open_variant": { + "prefix": "svg.material.lock_percent_open_variant", + "description": "SVG material - lock_percent_open_variant", + "body": [ + "{% svg material lock_percent_open_variant %}" + ] + }, + "lock_percent_open_variant_outline": { + "prefix": "svg.material.lock_percent_open_variant_outline", + "description": "SVG material - lock_percent_open_variant_outline", + "body": [ + "{% svg material lock_percent_open_variant_outline %}" + ] + }, + "lock_percent_outline": { + "prefix": "svg.material.lock_percent_outline", + "description": "SVG material - lock_percent_outline", + "body": [ + "{% svg material lock_percent_outline %}" + ] + }, + "lock_plus": { + "prefix": "svg.material.lock_plus", + "description": "SVG material - lock_plus", + "body": [ + "{% svg material lock_plus %}" + ] + }, + "lock_plus_outline": { + "prefix": "svg.material.lock_plus_outline", + "description": "SVG material - lock_plus_outline", + "body": [ + "{% svg material lock_plus_outline %}" + ] + }, + "lock_question": { + "prefix": "svg.material.lock_question", + "description": "SVG material - lock_question", + "body": [ + "{% svg material lock_question %}" + ] + }, + "lock_remove": { + "prefix": "svg.material.lock_remove", + "description": "SVG material - lock_remove", + "body": [ + "{% svg material lock_remove %}" + ] + }, + "lock_remove_outline": { + "prefix": "svg.material.lock_remove_outline", + "description": "SVG material - lock_remove_outline", + "body": [ + "{% svg material lock_remove_outline %}" + ] + }, + "lock_reset": { + "prefix": "svg.material.lock_reset", + "description": "SVG material - lock_reset", + "body": [ + "{% svg material lock_reset %}" + ] + }, + "lock_smart": { + "prefix": "svg.material.lock_smart", + "description": "SVG material - lock_smart", + "body": [ + "{% svg material lock_smart %}" + ] + }, + "locker": { + "prefix": "svg.material.locker", + "description": "SVG material - locker", + "body": [ + "{% svg material locker %}" + ] + }, + "locker_multiple": { + "prefix": "svg.material.locker_multiple", + "description": "SVG material - locker_multiple", + "body": [ + "{% svg material locker_multiple %}" + ] + }, + "login": { + "prefix": "svg.material.login", + "description": "SVG material - login", + "body": [ + "{% svg material login %}" + ] + }, + "login_variant": { + "prefix": "svg.material.login_variant", + "description": "SVG material - login_variant", + "body": [ + "{% svg material login_variant %}" + ] + }, + "logout": { + "prefix": "svg.material.logout", + "description": "SVG material - logout", + "body": [ + "{% svg material logout %}" + ] + }, + "logout_variant": { + "prefix": "svg.material.logout_variant", + "description": "SVG material - logout_variant", + "body": [ + "{% svg material logout_variant %}" + ] + }, + "longitude": { + "prefix": "svg.material.longitude", + "description": "SVG material - longitude", + "body": [ + "{% svg material longitude %}" + ] + }, + "looks": { + "prefix": "svg.material.looks", + "description": "SVG material - looks", + "body": [ + "{% svg material looks %}" + ] + }, + "lotion": { + "prefix": "svg.material.lotion", + "description": "SVG material - lotion", + "body": [ + "{% svg material lotion %}" + ] + }, + "lotion_outline": { + "prefix": "svg.material.lotion_outline", + "description": "SVG material - lotion_outline", + "body": [ + "{% svg material lotion_outline %}" + ] + }, + "lotion_plus": { + "prefix": "svg.material.lotion_plus", + "description": "SVG material - lotion_plus", + "body": [ + "{% svg material lotion_plus %}" + ] + }, + "lotion_plus_outline": { + "prefix": "svg.material.lotion_plus_outline", + "description": "SVG material - lotion_plus_outline", + "body": [ + "{% svg material lotion_plus_outline %}" + ] + }, + "loupe": { + "prefix": "svg.material.loupe", + "description": "SVG material - loupe", + "body": [ + "{% svg material loupe %}" + ] + }, + "lumx": { + "prefix": "svg.material.lumx", + "description": "SVG material - lumx", + "body": [ + "{% svg material lumx %}" + ] + }, + "lungs": { + "prefix": "svg.material.lungs", + "description": "SVG material - lungs", + "body": [ + "{% svg material lungs %}" + ] + }, + "mace": { + "prefix": "svg.material.mace", + "description": "SVG material - mace", + "body": [ + "{% svg material mace %}" + ] + }, + "magazine_pistol": { + "prefix": "svg.material.magazine_pistol", + "description": "SVG material - magazine_pistol", + "body": [ + "{% svg material magazine_pistol %}" + ] + }, + "magazine_rifle": { + "prefix": "svg.material.magazine_rifle", + "description": "SVG material - magazine_rifle", + "body": [ + "{% svg material magazine_rifle %}" + ] + }, + "magic_staff": { + "prefix": "svg.material.magic_staff", + "description": "SVG material - magic_staff", + "body": [ + "{% svg material magic_staff %}" + ] + }, + "magnet": { + "prefix": "svg.material.magnet", + "description": "SVG material - magnet", + "body": [ + "{% svg material magnet %}" + ] + }, + "magnet_on": { + "prefix": "svg.material.magnet_on", + "description": "SVG material - magnet_on", + "body": [ + "{% svg material magnet_on %}" + ] + }, + "magnify": { + "prefix": "svg.material.magnify", + "description": "SVG material - magnify", + "body": [ + "{% svg material magnify %}" + ] + }, + "magnify_close": { + "prefix": "svg.material.magnify_close", + "description": "SVG material - magnify_close", + "body": [ + "{% svg material magnify_close %}" + ] + }, + "magnify_expand": { + "prefix": "svg.material.magnify_expand", + "description": "SVG material - magnify_expand", + "body": [ + "{% svg material magnify_expand %}" + ] + }, + "magnify_minus": { + "prefix": "svg.material.magnify_minus", + "description": "SVG material - magnify_minus", + "body": [ + "{% svg material magnify_minus %}" + ] + }, + "magnify_minus_cursor": { + "prefix": "svg.material.magnify_minus_cursor", + "description": "SVG material - magnify_minus_cursor", + "body": [ + "{% svg material magnify_minus_cursor %}" + ] + }, + "magnify_minus_outline": { + "prefix": "svg.material.magnify_minus_outline", + "description": "SVG material - magnify_minus_outline", + "body": [ + "{% svg material magnify_minus_outline %}" + ] + }, + "magnify_plus": { + "prefix": "svg.material.magnify_plus", + "description": "SVG material - magnify_plus", + "body": [ + "{% svg material magnify_plus %}" + ] + }, + "magnify_plus_cursor": { + "prefix": "svg.material.magnify_plus_cursor", + "description": "SVG material - magnify_plus_cursor", + "body": [ + "{% svg material magnify_plus_cursor %}" + ] + }, + "magnify_plus_outline": { + "prefix": "svg.material.magnify_plus_outline", + "description": "SVG material - magnify_plus_outline", + "body": [ + "{% svg material magnify_plus_outline %}" + ] + }, + "magnify_remove_cursor": { + "prefix": "svg.material.magnify_remove_cursor", + "description": "SVG material - magnify_remove_cursor", + "body": [ + "{% svg material magnify_remove_cursor %}" + ] + }, + "magnify_remove_outline": { + "prefix": "svg.material.magnify_remove_outline", + "description": "SVG material - magnify_remove_outline", + "body": [ + "{% svg material magnify_remove_outline %}" + ] + }, + "magnify_scan": { + "prefix": "svg.material.magnify_scan", + "description": "SVG material - magnify_scan", + "body": [ + "{% svg material magnify_scan %}" + ] + }, + "mail": { + "prefix": "svg.material.mail", + "description": "SVG material - mail", + "body": [ + "{% svg material mail %}" + ] + }, + "mailbox": { + "prefix": "svg.material.mailbox", + "description": "SVG material - mailbox", + "body": [ + "{% svg material mailbox %}" + ] + }, + "mailbox_open": { + "prefix": "svg.material.mailbox_open", + "description": "SVG material - mailbox_open", + "body": [ + "{% svg material mailbox_open %}" + ] + }, + "mailbox_open_outline": { + "prefix": "svg.material.mailbox_open_outline", + "description": "SVG material - mailbox_open_outline", + "body": [ + "{% svg material mailbox_open_outline %}" + ] + }, + "mailbox_open_up": { + "prefix": "svg.material.mailbox_open_up", + "description": "SVG material - mailbox_open_up", + "body": [ + "{% svg material mailbox_open_up %}" + ] + }, + "mailbox_open_up_outline": { + "prefix": "svg.material.mailbox_open_up_outline", + "description": "SVG material - mailbox_open_up_outline", + "body": [ + "{% svg material mailbox_open_up_outline %}" + ] + }, + "mailbox_outline": { + "prefix": "svg.material.mailbox_outline", + "description": "SVG material - mailbox_outline", + "body": [ + "{% svg material mailbox_outline %}" + ] + }, + "mailbox_up": { + "prefix": "svg.material.mailbox_up", + "description": "SVG material - mailbox_up", + "body": [ + "{% svg material mailbox_up %}" + ] + }, + "mailbox_up_outline": { + "prefix": "svg.material.mailbox_up_outline", + "description": "SVG material - mailbox_up_outline", + "body": [ + "{% svg material mailbox_up_outline %}" + ] + }, + "manjaro": { + "prefix": "svg.material.manjaro", + "description": "SVG material - manjaro", + "body": [ + "{% svg material manjaro %}" + ] + }, + "map": { + "prefix": "svg.material.map", + "description": "SVG material - map", + "body": [ + "{% svg material map %}" + ] + }, + "map_check": { + "prefix": "svg.material.map_check", + "description": "SVG material - map_check", + "body": [ + "{% svg material map_check %}" + ] + }, + "map_check_outline": { + "prefix": "svg.material.map_check_outline", + "description": "SVG material - map_check_outline", + "body": [ + "{% svg material map_check_outline %}" + ] + }, + "map_clock": { + "prefix": "svg.material.map_clock", + "description": "SVG material - map_clock", + "body": [ + "{% svg material map_clock %}" + ] + }, + "map_clock_outline": { + "prefix": "svg.material.map_clock_outline", + "description": "SVG material - map_clock_outline", + "body": [ + "{% svg material map_clock_outline %}" + ] + }, + "map_legend": { + "prefix": "svg.material.map_legend", + "description": "SVG material - map_legend", + "body": [ + "{% svg material map_legend %}" + ] + }, + "map_marker": { + "prefix": "svg.material.map_marker", + "description": "SVG material - map_marker", + "body": [ + "{% svg material map_marker %}" + ] + }, + "map_marker_account": { + "prefix": "svg.material.map_marker_account", + "description": "SVG material - map_marker_account", + "body": [ + "{% svg material map_marker_account %}" + ] + }, + "map_marker_account_outline": { + "prefix": "svg.material.map_marker_account_outline", + "description": "SVG material - map_marker_account_outline", + "body": [ + "{% svg material map_marker_account_outline %}" + ] + }, + "map_marker_alert": { + "prefix": "svg.material.map_marker_alert", + "description": "SVG material - map_marker_alert", + "body": [ + "{% svg material map_marker_alert %}" + ] + }, + "map_marker_alert_outline": { + "prefix": "svg.material.map_marker_alert_outline", + "description": "SVG material - map_marker_alert_outline", + "body": [ + "{% svg material map_marker_alert_outline %}" + ] + }, + "map_marker_check": { + "prefix": "svg.material.map_marker_check", + "description": "SVG material - map_marker_check", + "body": [ + "{% svg material map_marker_check %}" + ] + }, + "map_marker_check_outline": { + "prefix": "svg.material.map_marker_check_outline", + "description": "SVG material - map_marker_check_outline", + "body": [ + "{% svg material map_marker_check_outline %}" + ] + }, + "map_marker_circle": { + "prefix": "svg.material.map_marker_circle", + "description": "SVG material - map_marker_circle", + "body": [ + "{% svg material map_marker_circle %}" + ] + }, + "map_marker_distance": { + "prefix": "svg.material.map_marker_distance", + "description": "SVG material - map_marker_distance", + "body": [ + "{% svg material map_marker_distance %}" + ] + }, + "map_marker_down": { + "prefix": "svg.material.map_marker_down", + "description": "SVG material - map_marker_down", + "body": [ + "{% svg material map_marker_down %}" + ] + }, + "map_marker_left": { + "prefix": "svg.material.map_marker_left", + "description": "SVG material - map_marker_left", + "body": [ + "{% svg material map_marker_left %}" + ] + }, + "map_marker_left_outline": { + "prefix": "svg.material.map_marker_left_outline", + "description": "SVG material - map_marker_left_outline", + "body": [ + "{% svg material map_marker_left_outline %}" + ] + }, + "map_marker_minus": { + "prefix": "svg.material.map_marker_minus", + "description": "SVG material - map_marker_minus", + "body": [ + "{% svg material map_marker_minus %}" + ] + }, + "map_marker_minus_outline": { + "prefix": "svg.material.map_marker_minus_outline", + "description": "SVG material - map_marker_minus_outline", + "body": [ + "{% svg material map_marker_minus_outline %}" + ] + }, + "map_marker_multiple": { + "prefix": "svg.material.map_marker_multiple", + "description": "SVG material - map_marker_multiple", + "body": [ + "{% svg material map_marker_multiple %}" + ] + }, + "map_marker_multiple_outline": { + "prefix": "svg.material.map_marker_multiple_outline", + "description": "SVG material - map_marker_multiple_outline", + "body": [ + "{% svg material map_marker_multiple_outline %}" + ] + }, + "map_marker_off": { + "prefix": "svg.material.map_marker_off", + "description": "SVG material - map_marker_off", + "body": [ + "{% svg material map_marker_off %}" + ] + }, + "map_marker_off_outline": { + "prefix": "svg.material.map_marker_off_outline", + "description": "SVG material - map_marker_off_outline", + "body": [ + "{% svg material map_marker_off_outline %}" + ] + }, + "map_marker_outline": { + "prefix": "svg.material.map_marker_outline", + "description": "SVG material - map_marker_outline", + "body": [ + "{% svg material map_marker_outline %}" + ] + }, + "map_marker_path": { + "prefix": "svg.material.map_marker_path", + "description": "SVG material - map_marker_path", + "body": [ + "{% svg material map_marker_path %}" + ] + }, + "map_marker_plus": { + "prefix": "svg.material.map_marker_plus", + "description": "SVG material - map_marker_plus", + "body": [ + "{% svg material map_marker_plus %}" + ] + }, + "map_marker_plus_outline": { + "prefix": "svg.material.map_marker_plus_outline", + "description": "SVG material - map_marker_plus_outline", + "body": [ + "{% svg material map_marker_plus_outline %}" + ] + }, + "map_marker_question": { + "prefix": "svg.material.map_marker_question", + "description": "SVG material - map_marker_question", + "body": [ + "{% svg material map_marker_question %}" + ] + }, + "map_marker_question_outline": { + "prefix": "svg.material.map_marker_question_outline", + "description": "SVG material - map_marker_question_outline", + "body": [ + "{% svg material map_marker_question_outline %}" + ] + }, + "map_marker_radius": { + "prefix": "svg.material.map_marker_radius", + "description": "SVG material - map_marker_radius", + "body": [ + "{% svg material map_marker_radius %}" + ] + }, + "map_marker_radius_outline": { + "prefix": "svg.material.map_marker_radius_outline", + "description": "SVG material - map_marker_radius_outline", + "body": [ + "{% svg material map_marker_radius_outline %}" + ] + }, + "map_marker_remove": { + "prefix": "svg.material.map_marker_remove", + "description": "SVG material - map_marker_remove", + "body": [ + "{% svg material map_marker_remove %}" + ] + }, + "map_marker_remove_outline": { + "prefix": "svg.material.map_marker_remove_outline", + "description": "SVG material - map_marker_remove_outline", + "body": [ + "{% svg material map_marker_remove_outline %}" + ] + }, + "map_marker_remove_variant": { + "prefix": "svg.material.map_marker_remove_variant", + "description": "SVG material - map_marker_remove_variant", + "body": [ + "{% svg material map_marker_remove_variant %}" + ] + }, + "map_marker_right": { + "prefix": "svg.material.map_marker_right", + "description": "SVG material - map_marker_right", + "body": [ + "{% svg material map_marker_right %}" + ] + }, + "map_marker_right_outline": { + "prefix": "svg.material.map_marker_right_outline", + "description": "SVG material - map_marker_right_outline", + "body": [ + "{% svg material map_marker_right_outline %}" + ] + }, + "map_marker_star": { + "prefix": "svg.material.map_marker_star", + "description": "SVG material - map_marker_star", + "body": [ + "{% svg material map_marker_star %}" + ] + }, + "map_marker_star_outline": { + "prefix": "svg.material.map_marker_star_outline", + "description": "SVG material - map_marker_star_outline", + "body": [ + "{% svg material map_marker_star_outline %}" + ] + }, + "map_marker_up": { + "prefix": "svg.material.map_marker_up", + "description": "SVG material - map_marker_up", + "body": [ + "{% svg material map_marker_up %}" + ] + }, + "map_minus": { + "prefix": "svg.material.map_minus", + "description": "SVG material - map_minus", + "body": [ + "{% svg material map_minus %}" + ] + }, + "map_outline": { + "prefix": "svg.material.map_outline", + "description": "SVG material - map_outline", + "body": [ + "{% svg material map_outline %}" + ] + }, + "map_plus": { + "prefix": "svg.material.map_plus", + "description": "SVG material - map_plus", + "body": [ + "{% svg material map_plus %}" + ] + }, + "map_search": { + "prefix": "svg.material.map_search", + "description": "SVG material - map_search", + "body": [ + "{% svg material map_search %}" + ] + }, + "map_search_outline": { + "prefix": "svg.material.map_search_outline", + "description": "SVG material - map_search_outline", + "body": [ + "{% svg material map_search_outline %}" + ] + }, + "mapbox": { + "prefix": "svg.material.mapbox", + "description": "SVG material - mapbox", + "body": [ + "{% svg material mapbox %}" + ] + }, + "margin": { + "prefix": "svg.material.margin", + "description": "SVG material - margin", + "body": [ + "{% svg material margin %}" + ] + }, + "marker": { + "prefix": "svg.material.marker", + "description": "SVG material - marker", + "body": [ + "{% svg material marker %}" + ] + }, + "marker_cancel": { + "prefix": "svg.material.marker_cancel", + "description": "SVG material - marker_cancel", + "body": [ + "{% svg material marker_cancel %}" + ] + }, + "marker_check": { + "prefix": "svg.material.marker_check", + "description": "SVG material - marker_check", + "body": [ + "{% svg material marker_check %}" + ] + }, + "mastodon": { + "prefix": "svg.material.mastodon", + "description": "SVG material - mastodon", + "body": [ + "{% svg material mastodon %}" + ] + }, + "material_design": { + "prefix": "svg.material.material_design", + "description": "SVG material - material_design", + "body": [ + "{% svg material material_design %}" + ] + }, + "material_ui": { + "prefix": "svg.material.material_ui", + "description": "SVG material - material_ui", + "body": [ + "{% svg material material_ui %}" + ] + }, + "math_compass": { + "prefix": "svg.material.math_compass", + "description": "SVG material - math_compass", + "body": [ + "{% svg material math_compass %}" + ] + }, + "math_cos": { + "prefix": "svg.material.math_cos", + "description": "SVG material - math_cos", + "body": [ + "{% svg material math_cos %}" + ] + }, + "math_integral": { + "prefix": "svg.material.math_integral", + "description": "SVG material - math_integral", + "body": [ + "{% svg material math_integral %}" + ] + }, + "math_integral_box": { + "prefix": "svg.material.math_integral_box", + "description": "SVG material - math_integral_box", + "body": [ + "{% svg material math_integral_box %}" + ] + }, + "math_log": { + "prefix": "svg.material.math_log", + "description": "SVG material - math_log", + "body": [ + "{% svg material math_log %}" + ] + }, + "math_norm": { + "prefix": "svg.material.math_norm", + "description": "SVG material - math_norm", + "body": [ + "{% svg material math_norm %}" + ] + }, + "math_norm_box": { + "prefix": "svg.material.math_norm_box", + "description": "SVG material - math_norm_box", + "body": [ + "{% svg material math_norm_box %}" + ] + }, + "math_sin": { + "prefix": "svg.material.math_sin", + "description": "SVG material - math_sin", + "body": [ + "{% svg material math_sin %}" + ] + }, + "math_tan": { + "prefix": "svg.material.math_tan", + "description": "SVG material - math_tan", + "body": [ + "{% svg material math_tan %}" + ] + }, + "matrix": { + "prefix": "svg.material.matrix", + "description": "SVG material - matrix", + "body": [ + "{% svg material matrix %}" + ] + }, + "medal": { + "prefix": "svg.material.medal", + "description": "SVG material - medal", + "body": [ + "{% svg material medal %}" + ] + }, + "medal_outline": { + "prefix": "svg.material.medal_outline", + "description": "SVG material - medal_outline", + "body": [ + "{% svg material medal_outline %}" + ] + }, + "medical_bag": { + "prefix": "svg.material.medical_bag", + "description": "SVG material - medical_bag", + "body": [ + "{% svg material medical_bag %}" + ] + }, + "medical_cotton_swab": { + "prefix": "svg.material.medical_cotton_swab", + "description": "SVG material - medical_cotton_swab", + "body": [ + "{% svg material medical_cotton_swab %}" + ] + }, + "medication": { + "prefix": "svg.material.medication", + "description": "SVG material - medication", + "body": [ + "{% svg material medication %}" + ] + }, + "medication_outline": { + "prefix": "svg.material.medication_outline", + "description": "SVG material - medication_outline", + "body": [ + "{% svg material medication_outline %}" + ] + }, + "meditation": { + "prefix": "svg.material.meditation", + "description": "SVG material - meditation", + "body": [ + "{% svg material meditation %}" + ] + }, + "memory": { + "prefix": "svg.material.memory", + "description": "SVG material - memory", + "body": [ + "{% svg material memory %}" + ] + }, + "memory_arrow_down": { + "prefix": "svg.material.memory_arrow_down", + "description": "SVG material - memory_arrow_down", + "body": [ + "{% svg material memory_arrow_down %}" + ] + }, + "menorah": { + "prefix": "svg.material.menorah", + "description": "SVG material - menorah", + "body": [ + "{% svg material menorah %}" + ] + }, + "menorah_fire": { + "prefix": "svg.material.menorah_fire", + "description": "SVG material - menorah_fire", + "body": [ + "{% svg material menorah_fire %}" + ] + }, + "menu": { + "prefix": "svg.material.menu", + "description": "SVG material - menu", + "body": [ + "{% svg material menu %}" + ] + }, + "menu_close": { + "prefix": "svg.material.menu_close", + "description": "SVG material - menu_close", + "body": [ + "{% svg material menu_close %}" + ] + }, + "menu_down": { + "prefix": "svg.material.menu_down", + "description": "SVG material - menu_down", + "body": [ + "{% svg material menu_down %}" + ] + }, + "menu_down_outline": { + "prefix": "svg.material.menu_down_outline", + "description": "SVG material - menu_down_outline", + "body": [ + "{% svg material menu_down_outline %}" + ] + }, + "menu_left": { + "prefix": "svg.material.menu_left", + "description": "SVG material - menu_left", + "body": [ + "{% svg material menu_left %}" + ] + }, + "menu_left_outline": { + "prefix": "svg.material.menu_left_outline", + "description": "SVG material - menu_left_outline", + "body": [ + "{% svg material menu_left_outline %}" + ] + }, + "menu_open": { + "prefix": "svg.material.menu_open", + "description": "SVG material - menu_open", + "body": [ + "{% svg material menu_open %}" + ] + }, + "menu_right": { + "prefix": "svg.material.menu_right", + "description": "SVG material - menu_right", + "body": [ + "{% svg material menu_right %}" + ] + }, + "menu_right_outline": { + "prefix": "svg.material.menu_right_outline", + "description": "SVG material - menu_right_outline", + "body": [ + "{% svg material menu_right_outline %}" + ] + }, + "menu_swap": { + "prefix": "svg.material.menu_swap", + "description": "SVG material - menu_swap", + "body": [ + "{% svg material menu_swap %}" + ] + }, + "menu_swap_outline": { + "prefix": "svg.material.menu_swap_outline", + "description": "SVG material - menu_swap_outline", + "body": [ + "{% svg material menu_swap_outline %}" + ] + }, + "menu_up": { + "prefix": "svg.material.menu_up", + "description": "SVG material - menu_up", + "body": [ + "{% svg material menu_up %}" + ] + }, + "menu_up_outline": { + "prefix": "svg.material.menu_up_outline", + "description": "SVG material - menu_up_outline", + "body": [ + "{% svg material menu_up_outline %}" + ] + }, + "merge": { + "prefix": "svg.material.merge", + "description": "SVG material - merge", + "body": [ + "{% svg material merge %}" + ] + }, + "message": { + "prefix": "svg.material.message", + "description": "SVG material - message", + "body": [ + "{% svg material message %}" + ] + }, + "message_alert": { + "prefix": "svg.material.message_alert", + "description": "SVG material - message_alert", + "body": [ + "{% svg material message_alert %}" + ] + }, + "message_alert_outline": { + "prefix": "svg.material.message_alert_outline", + "description": "SVG material - message_alert_outline", + "body": [ + "{% svg material message_alert_outline %}" + ] + }, + "message_arrow_left": { + "prefix": "svg.material.message_arrow_left", + "description": "SVG material - message_arrow_left", + "body": [ + "{% svg material message_arrow_left %}" + ] + }, + "message_arrow_left_outline": { + "prefix": "svg.material.message_arrow_left_outline", + "description": "SVG material - message_arrow_left_outline", + "body": [ + "{% svg material message_arrow_left_outline %}" + ] + }, + "message_arrow_right": { + "prefix": "svg.material.message_arrow_right", + "description": "SVG material - message_arrow_right", + "body": [ + "{% svg material message_arrow_right %}" + ] + }, + "message_arrow_right_outline": { + "prefix": "svg.material.message_arrow_right_outline", + "description": "SVG material - message_arrow_right_outline", + "body": [ + "{% svg material message_arrow_right_outline %}" + ] + }, + "message_badge": { + "prefix": "svg.material.message_badge", + "description": "SVG material - message_badge", + "body": [ + "{% svg material message_badge %}" + ] + }, + "message_badge_outline": { + "prefix": "svg.material.message_badge_outline", + "description": "SVG material - message_badge_outline", + "body": [ + "{% svg material message_badge_outline %}" + ] + }, + "message_bookmark": { + "prefix": "svg.material.message_bookmark", + "description": "SVG material - message_bookmark", + "body": [ + "{% svg material message_bookmark %}" + ] + }, + "message_bookmark_outline": { + "prefix": "svg.material.message_bookmark_outline", + "description": "SVG material - message_bookmark_outline", + "body": [ + "{% svg material message_bookmark_outline %}" + ] + }, + "message_bulleted": { + "prefix": "svg.material.message_bulleted", + "description": "SVG material - message_bulleted", + "body": [ + "{% svg material message_bulleted %}" + ] + }, + "message_bulleted_off": { + "prefix": "svg.material.message_bulleted_off", + "description": "SVG material - message_bulleted_off", + "body": [ + "{% svg material message_bulleted_off %}" + ] + }, + "message_check": { + "prefix": "svg.material.message_check", + "description": "SVG material - message_check", + "body": [ + "{% svg material message_check %}" + ] + }, + "message_check_outline": { + "prefix": "svg.material.message_check_outline", + "description": "SVG material - message_check_outline", + "body": [ + "{% svg material message_check_outline %}" + ] + }, + "message_cog": { + "prefix": "svg.material.message_cog", + "description": "SVG material - message_cog", + "body": [ + "{% svg material message_cog %}" + ] + }, + "message_cog_outline": { + "prefix": "svg.material.message_cog_outline", + "description": "SVG material - message_cog_outline", + "body": [ + "{% svg material message_cog_outline %}" + ] + }, + "message_draw": { + "prefix": "svg.material.message_draw", + "description": "SVG material - message_draw", + "body": [ + "{% svg material message_draw %}" + ] + }, + "message_fast": { + "prefix": "svg.material.message_fast", + "description": "SVG material - message_fast", + "body": [ + "{% svg material message_fast %}" + ] + }, + "message_fast_outline": { + "prefix": "svg.material.message_fast_outline", + "description": "SVG material - message_fast_outline", + "body": [ + "{% svg material message_fast_outline %}" + ] + }, + "message_flash": { + "prefix": "svg.material.message_flash", + "description": "SVG material - message_flash", + "body": [ + "{% svg material message_flash %}" + ] + }, + "message_flash_outline": { + "prefix": "svg.material.message_flash_outline", + "description": "SVG material - message_flash_outline", + "body": [ + "{% svg material message_flash_outline %}" + ] + }, + "message_image": { + "prefix": "svg.material.message_image", + "description": "SVG material - message_image", + "body": [ + "{% svg material message_image %}" + ] + }, + "message_image_outline": { + "prefix": "svg.material.message_image_outline", + "description": "SVG material - message_image_outline", + "body": [ + "{% svg material message_image_outline %}" + ] + }, + "message_lock": { + "prefix": "svg.material.message_lock", + "description": "SVG material - message_lock", + "body": [ + "{% svg material message_lock %}" + ] + }, + "message_lock_outline": { + "prefix": "svg.material.message_lock_outline", + "description": "SVG material - message_lock_outline", + "body": [ + "{% svg material message_lock_outline %}" + ] + }, + "message_minus": { + "prefix": "svg.material.message_minus", + "description": "SVG material - message_minus", + "body": [ + "{% svg material message_minus %}" + ] + }, + "message_minus_outline": { + "prefix": "svg.material.message_minus_outline", + "description": "SVG material - message_minus_outline", + "body": [ + "{% svg material message_minus_outline %}" + ] + }, + "message_off": { + "prefix": "svg.material.message_off", + "description": "SVG material - message_off", + "body": [ + "{% svg material message_off %}" + ] + }, + "message_off_outline": { + "prefix": "svg.material.message_off_outline", + "description": "SVG material - message_off_outline", + "body": [ + "{% svg material message_off_outline %}" + ] + }, + "message_outline": { + "prefix": "svg.material.message_outline", + "description": "SVG material - message_outline", + "body": [ + "{% svg material message_outline %}" + ] + }, + "message_plus": { + "prefix": "svg.material.message_plus", + "description": "SVG material - message_plus", + "body": [ + "{% svg material message_plus %}" + ] + }, + "message_plus_outline": { + "prefix": "svg.material.message_plus_outline", + "description": "SVG material - message_plus_outline", + "body": [ + "{% svg material message_plus_outline %}" + ] + }, + "message_processing": { + "prefix": "svg.material.message_processing", + "description": "SVG material - message_processing", + "body": [ + "{% svg material message_processing %}" + ] + }, + "message_processing_outline": { + "prefix": "svg.material.message_processing_outline", + "description": "SVG material - message_processing_outline", + "body": [ + "{% svg material message_processing_outline %}" + ] + }, + "message_question": { + "prefix": "svg.material.message_question", + "description": "SVG material - message_question", + "body": [ + "{% svg material message_question %}" + ] + }, + "message_question_outline": { + "prefix": "svg.material.message_question_outline", + "description": "SVG material - message_question_outline", + "body": [ + "{% svg material message_question_outline %}" + ] + }, + "message_reply": { + "prefix": "svg.material.message_reply", + "description": "SVG material - message_reply", + "body": [ + "{% svg material message_reply %}" + ] + }, + "message_reply_outline": { + "prefix": "svg.material.message_reply_outline", + "description": "SVG material - message_reply_outline", + "body": [ + "{% svg material message_reply_outline %}" + ] + }, + "message_reply_text": { + "prefix": "svg.material.message_reply_text", + "description": "SVG material - message_reply_text", + "body": [ + "{% svg material message_reply_text %}" + ] + }, + "message_reply_text_outline": { + "prefix": "svg.material.message_reply_text_outline", + "description": "SVG material - message_reply_text_outline", + "body": [ + "{% svg material message_reply_text_outline %}" + ] + }, + "message_settings": { + "prefix": "svg.material.message_settings", + "description": "SVG material - message_settings", + "body": [ + "{% svg material message_settings %}" + ] + }, + "message_settings_outline": { + "prefix": "svg.material.message_settings_outline", + "description": "SVG material - message_settings_outline", + "body": [ + "{% svg material message_settings_outline %}" + ] + }, + "message_star": { + "prefix": "svg.material.message_star", + "description": "SVG material - message_star", + "body": [ + "{% svg material message_star %}" + ] + }, + "message_star_outline": { + "prefix": "svg.material.message_star_outline", + "description": "SVG material - message_star_outline", + "body": [ + "{% svg material message_star_outline %}" + ] + }, + "message_text": { + "prefix": "svg.material.message_text", + "description": "SVG material - message_text", + "body": [ + "{% svg material message_text %}" + ] + }, + "message_text_clock": { + "prefix": "svg.material.message_text_clock", + "description": "SVG material - message_text_clock", + "body": [ + "{% svg material message_text_clock %}" + ] + }, + "message_text_clock_outline": { + "prefix": "svg.material.message_text_clock_outline", + "description": "SVG material - message_text_clock_outline", + "body": [ + "{% svg material message_text_clock_outline %}" + ] + }, + "message_text_fast": { + "prefix": "svg.material.message_text_fast", + "description": "SVG material - message_text_fast", + "body": [ + "{% svg material message_text_fast %}" + ] + }, + "message_text_fast_outline": { + "prefix": "svg.material.message_text_fast_outline", + "description": "SVG material - message_text_fast_outline", + "body": [ + "{% svg material message_text_fast_outline %}" + ] + }, + "message_text_lock": { + "prefix": "svg.material.message_text_lock", + "description": "SVG material - message_text_lock", + "body": [ + "{% svg material message_text_lock %}" + ] + }, + "message_text_lock_outline": { + "prefix": "svg.material.message_text_lock_outline", + "description": "SVG material - message_text_lock_outline", + "body": [ + "{% svg material message_text_lock_outline %}" + ] + }, + "message_text_outline": { + "prefix": "svg.material.message_text_outline", + "description": "SVG material - message_text_outline", + "body": [ + "{% svg material message_text_outline %}" + ] + }, + "message_video": { + "prefix": "svg.material.message_video", + "description": "SVG material - message_video", + "body": [ + "{% svg material message_video %}" + ] + }, + "meteor": { + "prefix": "svg.material.meteor", + "description": "SVG material - meteor", + "body": [ + "{% svg material meteor %}" + ] + }, + "meter_electric": { + "prefix": "svg.material.meter_electric", + "description": "SVG material - meter_electric", + "body": [ + "{% svg material meter_electric %}" + ] + }, + "meter_electric_outline": { + "prefix": "svg.material.meter_electric_outline", + "description": "SVG material - meter_electric_outline", + "body": [ + "{% svg material meter_electric_outline %}" + ] + }, + "meter_gas": { + "prefix": "svg.material.meter_gas", + "description": "SVG material - meter_gas", + "body": [ + "{% svg material meter_gas %}" + ] + }, + "meter_gas_outline": { + "prefix": "svg.material.meter_gas_outline", + "description": "SVG material - meter_gas_outline", + "body": [ + "{% svg material meter_gas_outline %}" + ] + }, + "metronome": { + "prefix": "svg.material.metronome", + "description": "SVG material - metronome", + "body": [ + "{% svg material metronome %}" + ] + }, + "metronome_tick": { + "prefix": "svg.material.metronome_tick", + "description": "SVG material - metronome_tick", + "body": [ + "{% svg material metronome_tick %}" + ] + }, + "micro_sd": { + "prefix": "svg.material.micro_sd", + "description": "SVG material - micro_sd", + "body": [ + "{% svg material micro_sd %}" + ] + }, + "microphone": { + "prefix": "svg.material.microphone", + "description": "SVG material - microphone", + "body": [ + "{% svg material microphone %}" + ] + }, + "microphone_message": { + "prefix": "svg.material.microphone_message", + "description": "SVG material - microphone_message", + "body": [ + "{% svg material microphone_message %}" + ] + }, + "microphone_message_off": { + "prefix": "svg.material.microphone_message_off", + "description": "SVG material - microphone_message_off", + "body": [ + "{% svg material microphone_message_off %}" + ] + }, + "microphone_minus": { + "prefix": "svg.material.microphone_minus", + "description": "SVG material - microphone_minus", + "body": [ + "{% svg material microphone_minus %}" + ] + }, + "microphone_off": { + "prefix": "svg.material.microphone_off", + "description": "SVG material - microphone_off", + "body": [ + "{% svg material microphone_off %}" + ] + }, + "microphone_outline": { + "prefix": "svg.material.microphone_outline", + "description": "SVG material - microphone_outline", + "body": [ + "{% svg material microphone_outline %}" + ] + }, + "microphone_plus": { + "prefix": "svg.material.microphone_plus", + "description": "SVG material - microphone_plus", + "body": [ + "{% svg material microphone_plus %}" + ] + }, + "microphone_question": { + "prefix": "svg.material.microphone_question", + "description": "SVG material - microphone_question", + "body": [ + "{% svg material microphone_question %}" + ] + }, + "microphone_question_outline": { + "prefix": "svg.material.microphone_question_outline", + "description": "SVG material - microphone_question_outline", + "body": [ + "{% svg material microphone_question_outline %}" + ] + }, + "microphone_settings": { + "prefix": "svg.material.microphone_settings", + "description": "SVG material - microphone_settings", + "body": [ + "{% svg material microphone_settings %}" + ] + }, + "microphone_variant": { + "prefix": "svg.material.microphone_variant", + "description": "SVG material - microphone_variant", + "body": [ + "{% svg material microphone_variant %}" + ] + }, + "microphone_variant_off": { + "prefix": "svg.material.microphone_variant_off", + "description": "SVG material - microphone_variant_off", + "body": [ + "{% svg material microphone_variant_off %}" + ] + }, + "microscope": { + "prefix": "svg.material.microscope", + "description": "SVG material - microscope", + "body": [ + "{% svg material microscope %}" + ] + }, + "microsoft": { + "prefix": "svg.material.microsoft", + "description": "SVG material - microsoft", + "body": [ + "{% svg material microsoft %}" + ] + }, + "microsoft_access": { + "prefix": "svg.material.microsoft_access", + "description": "SVG material - microsoft_access", + "body": [ + "{% svg material microsoft_access %}" + ] + }, + "microsoft_azure": { + "prefix": "svg.material.microsoft_azure", + "description": "SVG material - microsoft_azure", + "body": [ + "{% svg material microsoft_azure %}" + ] + }, + "microsoft_azure_devops": { + "prefix": "svg.material.microsoft_azure_devops", + "description": "SVG material - microsoft_azure_devops", + "body": [ + "{% svg material microsoft_azure_devops %}" + ] + }, + "microsoft_bing": { + "prefix": "svg.material.microsoft_bing", + "description": "SVG material - microsoft_bing", + "body": [ + "{% svg material microsoft_bing %}" + ] + }, + "microsoft_dynamics_365": { + "prefix": "svg.material.microsoft_dynamics_365", + "description": "SVG material - microsoft_dynamics_365", + "body": [ + "{% svg material microsoft_dynamics_365 %}" + ] + }, + "microsoft_edge": { + "prefix": "svg.material.microsoft_edge", + "description": "SVG material - microsoft_edge", + "body": [ + "{% svg material microsoft_edge %}" + ] + }, + "microsoft_excel": { + "prefix": "svg.material.microsoft_excel", + "description": "SVG material - microsoft_excel", + "body": [ + "{% svg material microsoft_excel %}" + ] + }, + "microsoft_internet_explorer": { + "prefix": "svg.material.microsoft_internet_explorer", + "description": "SVG material - microsoft_internet_explorer", + "body": [ + "{% svg material microsoft_internet_explorer %}" + ] + }, + "microsoft_office": { + "prefix": "svg.material.microsoft_office", + "description": "SVG material - microsoft_office", + "body": [ + "{% svg material microsoft_office %}" + ] + }, + "microsoft_onedrive": { + "prefix": "svg.material.microsoft_onedrive", + "description": "SVG material - microsoft_onedrive", + "body": [ + "{% svg material microsoft_onedrive %}" + ] + }, + "microsoft_onenote": { + "prefix": "svg.material.microsoft_onenote", + "description": "SVG material - microsoft_onenote", + "body": [ + "{% svg material microsoft_onenote %}" + ] + }, + "microsoft_outlook": { + "prefix": "svg.material.microsoft_outlook", + "description": "SVG material - microsoft_outlook", + "body": [ + "{% svg material microsoft_outlook %}" + ] + }, + "microsoft_powerpoint": { + "prefix": "svg.material.microsoft_powerpoint", + "description": "SVG material - microsoft_powerpoint", + "body": [ + "{% svg material microsoft_powerpoint %}" + ] + }, + "microsoft_sharepoint": { + "prefix": "svg.material.microsoft_sharepoint", + "description": "SVG material - microsoft_sharepoint", + "body": [ + "{% svg material microsoft_sharepoint %}" + ] + }, + "microsoft_teams": { + "prefix": "svg.material.microsoft_teams", + "description": "SVG material - microsoft_teams", + "body": [ + "{% svg material microsoft_teams %}" + ] + }, + "microsoft_visual_studio": { + "prefix": "svg.material.microsoft_visual_studio", + "description": "SVG material - microsoft_visual_studio", + "body": [ + "{% svg material microsoft_visual_studio %}" + ] + }, + "microsoft_visual_studio_code": { + "prefix": "svg.material.microsoft_visual_studio_code", + "description": "SVG material - microsoft_visual_studio_code", + "body": [ + "{% svg material microsoft_visual_studio_code %}" + ] + }, + "microsoft_windows": { + "prefix": "svg.material.microsoft_windows", + "description": "SVG material - microsoft_windows", + "body": [ + "{% svg material microsoft_windows %}" + ] + }, + "microsoft_windows_classic": { + "prefix": "svg.material.microsoft_windows_classic", + "description": "SVG material - microsoft_windows_classic", + "body": [ + "{% svg material microsoft_windows_classic %}" + ] + }, + "microsoft_word": { + "prefix": "svg.material.microsoft_word", + "description": "SVG material - microsoft_word", + "body": [ + "{% svg material microsoft_word %}" + ] + }, + "microsoft_xbox": { + "prefix": "svg.material.microsoft_xbox", + "description": "SVG material - microsoft_xbox", + "body": [ + "{% svg material microsoft_xbox %}" + ] + }, + "microsoft_xbox_controller": { + "prefix": "svg.material.microsoft_xbox_controller", + "description": "SVG material - microsoft_xbox_controller", + "body": [ + "{% svg material microsoft_xbox_controller %}" + ] + }, + "microsoft_xbox_controller_battery_alert": { + "prefix": "svg.material.microsoft_xbox_controller_battery_alert", + "description": "SVG material - microsoft_xbox_controller_battery_alert", + "body": [ + "{% svg material microsoft_xbox_controller_battery_alert %}" + ] + }, + "microsoft_xbox_controller_battery_charging": { + "prefix": "svg.material.microsoft_xbox_controller_battery_charging", + "description": "SVG material - microsoft_xbox_controller_battery_charging", + "body": [ + "{% svg material microsoft_xbox_controller_battery_charging %}" + ] + }, + "microsoft_xbox_controller_battery_empty": { + "prefix": "svg.material.microsoft_xbox_controller_battery_empty", + "description": "SVG material - microsoft_xbox_controller_battery_empty", + "body": [ + "{% svg material microsoft_xbox_controller_battery_empty %}" + ] + }, + "microsoft_xbox_controller_battery_full": { + "prefix": "svg.material.microsoft_xbox_controller_battery_full", + "description": "SVG material - microsoft_xbox_controller_battery_full", + "body": [ + "{% svg material microsoft_xbox_controller_battery_full %}" + ] + }, + "microsoft_xbox_controller_battery_low": { + "prefix": "svg.material.microsoft_xbox_controller_battery_low", + "description": "SVG material - microsoft_xbox_controller_battery_low", + "body": [ + "{% svg material microsoft_xbox_controller_battery_low %}" + ] + }, + "microsoft_xbox_controller_battery_medium": { + "prefix": "svg.material.microsoft_xbox_controller_battery_medium", + "description": "SVG material - microsoft_xbox_controller_battery_medium", + "body": [ + "{% svg material microsoft_xbox_controller_battery_medium %}" + ] + }, + "microsoft_xbox_controller_battery_unknown": { + "prefix": "svg.material.microsoft_xbox_controller_battery_unknown", + "description": "SVG material - microsoft_xbox_controller_battery_unknown", + "body": [ + "{% svg material microsoft_xbox_controller_battery_unknown %}" + ] + }, + "microsoft_xbox_controller_menu": { + "prefix": "svg.material.microsoft_xbox_controller_menu", + "description": "SVG material - microsoft_xbox_controller_menu", + "body": [ + "{% svg material microsoft_xbox_controller_menu %}" + ] + }, + "microsoft_xbox_controller_off": { + "prefix": "svg.material.microsoft_xbox_controller_off", + "description": "SVG material - microsoft_xbox_controller_off", + "body": [ + "{% svg material microsoft_xbox_controller_off %}" + ] + }, + "microsoft_xbox_controller_view": { + "prefix": "svg.material.microsoft_xbox_controller_view", + "description": "SVG material - microsoft_xbox_controller_view", + "body": [ + "{% svg material microsoft_xbox_controller_view %}" + ] + }, + "microwave": { + "prefix": "svg.material.microwave", + "description": "SVG material - microwave", + "body": [ + "{% svg material microwave %}" + ] + }, + "microwave_off": { + "prefix": "svg.material.microwave_off", + "description": "SVG material - microwave_off", + "body": [ + "{% svg material microwave_off %}" + ] + }, + "middleware": { + "prefix": "svg.material.middleware", + "description": "SVG material - middleware", + "body": [ + "{% svg material middleware %}" + ] + }, + "middleware_outline": { + "prefix": "svg.material.middleware_outline", + "description": "SVG material - middleware_outline", + "body": [ + "{% svg material middleware_outline %}" + ] + }, + "midi": { + "prefix": "svg.material.midi", + "description": "SVG material - midi", + "body": [ + "{% svg material midi %}" + ] + }, + "midi_port": { + "prefix": "svg.material.midi_port", + "description": "SVG material - midi_port", + "body": [ + "{% svg material midi_port %}" + ] + }, + "mine": { + "prefix": "svg.material.mine", + "description": "SVG material - mine", + "body": [ + "{% svg material mine %}" + ] + }, + "minecraft": { + "prefix": "svg.material.minecraft", + "description": "SVG material - minecraft", + "body": [ + "{% svg material minecraft %}" + ] + }, + "mini_sd": { + "prefix": "svg.material.mini_sd", + "description": "SVG material - mini_sd", + "body": [ + "{% svg material mini_sd %}" + ] + }, + "minidisc": { + "prefix": "svg.material.minidisc", + "description": "SVG material - minidisc", + "body": [ + "{% svg material minidisc %}" + ] + }, + "minus": { + "prefix": "svg.material.minus", + "description": "SVG material - minus", + "body": [ + "{% svg material minus %}" + ] + }, + "minus_box": { + "prefix": "svg.material.minus_box", + "description": "SVG material - minus_box", + "body": [ + "{% svg material minus_box %}" + ] + }, + "minus_box_multiple": { + "prefix": "svg.material.minus_box_multiple", + "description": "SVG material - minus_box_multiple", + "body": [ + "{% svg material minus_box_multiple %}" + ] + }, + "minus_box_multiple_outline": { + "prefix": "svg.material.minus_box_multiple_outline", + "description": "SVG material - minus_box_multiple_outline", + "body": [ + "{% svg material minus_box_multiple_outline %}" + ] + }, + "minus_box_outline": { + "prefix": "svg.material.minus_box_outline", + "description": "SVG material - minus_box_outline", + "body": [ + "{% svg material minus_box_outline %}" + ] + }, + "minus_circle": { + "prefix": "svg.material.minus_circle", + "description": "SVG material - minus_circle", + "body": [ + "{% svg material minus_circle %}" + ] + }, + "minus_circle_multiple": { + "prefix": "svg.material.minus_circle_multiple", + "description": "SVG material - minus_circle_multiple", + "body": [ + "{% svg material minus_circle_multiple %}" + ] + }, + "minus_circle_multiple_outline": { + "prefix": "svg.material.minus_circle_multiple_outline", + "description": "SVG material - minus_circle_multiple_outline", + "body": [ + "{% svg material minus_circle_multiple_outline %}" + ] + }, + "minus_circle_off": { + "prefix": "svg.material.minus_circle_off", + "description": "SVG material - minus_circle_off", + "body": [ + "{% svg material minus_circle_off %}" + ] + }, + "minus_circle_off_outline": { + "prefix": "svg.material.minus_circle_off_outline", + "description": "SVG material - minus_circle_off_outline", + "body": [ + "{% svg material minus_circle_off_outline %}" + ] + }, + "minus_circle_outline": { + "prefix": "svg.material.minus_circle_outline", + "description": "SVG material - minus_circle_outline", + "body": [ + "{% svg material minus_circle_outline %}" + ] + }, + "minus_network": { + "prefix": "svg.material.minus_network", + "description": "SVG material - minus_network", + "body": [ + "{% svg material minus_network %}" + ] + }, + "minus_network_outline": { + "prefix": "svg.material.minus_network_outline", + "description": "SVG material - minus_network_outline", + "body": [ + "{% svg material minus_network_outline %}" + ] + }, + "minus_thick": { + "prefix": "svg.material.minus_thick", + "description": "SVG material - minus_thick", + "body": [ + "{% svg material minus_thick %}" + ] + }, + "mirror": { + "prefix": "svg.material.mirror", + "description": "SVG material - mirror", + "body": [ + "{% svg material mirror %}" + ] + }, + "mirror_rectangle": { + "prefix": "svg.material.mirror_rectangle", + "description": "SVG material - mirror_rectangle", + "body": [ + "{% svg material mirror_rectangle %}" + ] + }, + "mirror_variant": { + "prefix": "svg.material.mirror_variant", + "description": "SVG material - mirror_variant", + "body": [ + "{% svg material mirror_variant %}" + ] + }, + "mixed_martial_arts": { + "prefix": "svg.material.mixed_martial_arts", + "description": "SVG material - mixed_martial_arts", + "body": [ + "{% svg material mixed_martial_arts %}" + ] + }, + "mixed_reality": { + "prefix": "svg.material.mixed_reality", + "description": "SVG material - mixed_reality", + "body": [ + "{% svg material mixed_reality %}" + ] + }, + "molecule": { + "prefix": "svg.material.molecule", + "description": "SVG material - molecule", + "body": [ + "{% svg material molecule %}" + ] + }, + "molecule_co": { + "prefix": "svg.material.molecule_co", + "description": "SVG material - molecule_co", + "body": [ + "{% svg material molecule_co %}" + ] + }, + "molecule_co2": { + "prefix": "svg.material.molecule_co2", + "description": "SVG material - molecule_co2", + "body": [ + "{% svg material molecule_co2 %}" + ] + }, + "monitor": { + "prefix": "svg.material.monitor", + "description": "SVG material - monitor", + "body": [ + "{% svg material monitor %}" + ] + }, + "monitor_account": { + "prefix": "svg.material.monitor_account", + "description": "SVG material - monitor_account", + "body": [ + "{% svg material monitor_account %}" + ] + }, + "monitor_arrow_down": { + "prefix": "svg.material.monitor_arrow_down", + "description": "SVG material - monitor_arrow_down", + "body": [ + "{% svg material monitor_arrow_down %}" + ] + }, + "monitor_arrow_down_variant": { + "prefix": "svg.material.monitor_arrow_down_variant", + "description": "SVG material - monitor_arrow_down_variant", + "body": [ + "{% svg material monitor_arrow_down_variant %}" + ] + }, + "monitor_cellphone": { + "prefix": "svg.material.monitor_cellphone", + "description": "SVG material - monitor_cellphone", + "body": [ + "{% svg material monitor_cellphone %}" + ] + }, + "monitor_cellphone_star": { + "prefix": "svg.material.monitor_cellphone_star", + "description": "SVG material - monitor_cellphone_star", + "body": [ + "{% svg material monitor_cellphone_star %}" + ] + }, + "monitor_dashboard": { + "prefix": "svg.material.monitor_dashboard", + "description": "SVG material - monitor_dashboard", + "body": [ + "{% svg material monitor_dashboard %}" + ] + }, + "monitor_edit": { + "prefix": "svg.material.monitor_edit", + "description": "SVG material - monitor_edit", + "body": [ + "{% svg material monitor_edit %}" + ] + }, + "monitor_eye": { + "prefix": "svg.material.monitor_eye", + "description": "SVG material - monitor_eye", + "body": [ + "{% svg material monitor_eye %}" + ] + }, + "monitor_lock": { + "prefix": "svg.material.monitor_lock", + "description": "SVG material - monitor_lock", + "body": [ + "{% svg material monitor_lock %}" + ] + }, + "monitor_multiple": { + "prefix": "svg.material.monitor_multiple", + "description": "SVG material - monitor_multiple", + "body": [ + "{% svg material monitor_multiple %}" + ] + }, + "monitor_off": { + "prefix": "svg.material.monitor_off", + "description": "SVG material - monitor_off", + "body": [ + "{% svg material monitor_off %}" + ] + }, + "monitor_screenshot": { + "prefix": "svg.material.monitor_screenshot", + "description": "SVG material - monitor_screenshot", + "body": [ + "{% svg material monitor_screenshot %}" + ] + }, + "monitor_share": { + "prefix": "svg.material.monitor_share", + "description": "SVG material - monitor_share", + "body": [ + "{% svg material monitor_share %}" + ] + }, + "monitor_shimmer": { + "prefix": "svg.material.monitor_shimmer", + "description": "SVG material - monitor_shimmer", + "body": [ + "{% svg material monitor_shimmer %}" + ] + }, + "monitor_small": { + "prefix": "svg.material.monitor_small", + "description": "SVG material - monitor_small", + "body": [ + "{% svg material monitor_small %}" + ] + }, + "monitor_speaker": { + "prefix": "svg.material.monitor_speaker", + "description": "SVG material - monitor_speaker", + "body": [ + "{% svg material monitor_speaker %}" + ] + }, + "monitor_speaker_off": { + "prefix": "svg.material.monitor_speaker_off", + "description": "SVG material - monitor_speaker_off", + "body": [ + "{% svg material monitor_speaker_off %}" + ] + }, + "monitor_star": { + "prefix": "svg.material.monitor_star", + "description": "SVG material - monitor_star", + "body": [ + "{% svg material monitor_star %}" + ] + }, + "monitor_vertical": { + "prefix": "svg.material.monitor_vertical", + "description": "SVG material - monitor_vertical", + "body": [ + "{% svg material monitor_vertical %}" + ] + }, + "moon_first_quarter": { + "prefix": "svg.material.moon_first_quarter", + "description": "SVG material - moon_first_quarter", + "body": [ + "{% svg material moon_first_quarter %}" + ] + }, + "moon_full": { + "prefix": "svg.material.moon_full", + "description": "SVG material - moon_full", + "body": [ + "{% svg material moon_full %}" + ] + }, + "moon_last_quarter": { + "prefix": "svg.material.moon_last_quarter", + "description": "SVG material - moon_last_quarter", + "body": [ + "{% svg material moon_last_quarter %}" + ] + }, + "moon_new": { + "prefix": "svg.material.moon_new", + "description": "SVG material - moon_new", + "body": [ + "{% svg material moon_new %}" + ] + }, + "moon_waning_crescent": { + "prefix": "svg.material.moon_waning_crescent", + "description": "SVG material - moon_waning_crescent", + "body": [ + "{% svg material moon_waning_crescent %}" + ] + }, + "moon_waning_gibbous": { + "prefix": "svg.material.moon_waning_gibbous", + "description": "SVG material - moon_waning_gibbous", + "body": [ + "{% svg material moon_waning_gibbous %}" + ] + }, + "moon_waxing_crescent": { + "prefix": "svg.material.moon_waxing_crescent", + "description": "SVG material - moon_waxing_crescent", + "body": [ + "{% svg material moon_waxing_crescent %}" + ] + }, + "moon_waxing_gibbous": { + "prefix": "svg.material.moon_waxing_gibbous", + "description": "SVG material - moon_waxing_gibbous", + "body": [ + "{% svg material moon_waxing_gibbous %}" + ] + }, + "moped": { + "prefix": "svg.material.moped", + "description": "SVG material - moped", + "body": [ + "{% svg material moped %}" + ] + }, + "moped_electric": { + "prefix": "svg.material.moped_electric", + "description": "SVG material - moped_electric", + "body": [ + "{% svg material moped_electric %}" + ] + }, + "moped_electric_outline": { + "prefix": "svg.material.moped_electric_outline", + "description": "SVG material - moped_electric_outline", + "body": [ + "{% svg material moped_electric_outline %}" + ] + }, + "moped_outline": { + "prefix": "svg.material.moped_outline", + "description": "SVG material - moped_outline", + "body": [ + "{% svg material moped_outline %}" + ] + }, + "more": { + "prefix": "svg.material.more", + "description": "SVG material - more", + "body": [ + "{% svg material more %}" + ] + }, + "mortar_pestle": { + "prefix": "svg.material.mortar_pestle", + "description": "SVG material - mortar_pestle", + "body": [ + "{% svg material mortar_pestle %}" + ] + }, + "mortar_pestle_plus": { + "prefix": "svg.material.mortar_pestle_plus", + "description": "SVG material - mortar_pestle_plus", + "body": [ + "{% svg material mortar_pestle_plus %}" + ] + }, + "mosque": { + "prefix": "svg.material.mosque", + "description": "SVG material - mosque", + "body": [ + "{% svg material mosque %}" + ] + }, + "mosque_outline": { + "prefix": "svg.material.mosque_outline", + "description": "SVG material - mosque_outline", + "body": [ + "{% svg material mosque_outline %}" + ] + }, + "mother_heart": { + "prefix": "svg.material.mother_heart", + "description": "SVG material - mother_heart", + "body": [ + "{% svg material mother_heart %}" + ] + }, + "mother_nurse": { + "prefix": "svg.material.mother_nurse", + "description": "SVG material - mother_nurse", + "body": [ + "{% svg material mother_nurse %}" + ] + }, + "motion": { + "prefix": "svg.material.motion", + "description": "SVG material - motion", + "body": [ + "{% svg material motion %}" + ] + }, + "motion_outline": { + "prefix": "svg.material.motion_outline", + "description": "SVG material - motion_outline", + "body": [ + "{% svg material motion_outline %}" + ] + }, + "motion_pause": { + "prefix": "svg.material.motion_pause", + "description": "SVG material - motion_pause", + "body": [ + "{% svg material motion_pause %}" + ] + }, + "motion_pause_outline": { + "prefix": "svg.material.motion_pause_outline", + "description": "SVG material - motion_pause_outline", + "body": [ + "{% svg material motion_pause_outline %}" + ] + }, + "motion_play": { + "prefix": "svg.material.motion_play", + "description": "SVG material - motion_play", + "body": [ + "{% svg material motion_play %}" + ] + }, + "motion_play_outline": { + "prefix": "svg.material.motion_play_outline", + "description": "SVG material - motion_play_outline", + "body": [ + "{% svg material motion_play_outline %}" + ] + }, + "motion_sensor": { + "prefix": "svg.material.motion_sensor", + "description": "SVG material - motion_sensor", + "body": [ + "{% svg material motion_sensor %}" + ] + }, + "motion_sensor_off": { + "prefix": "svg.material.motion_sensor_off", + "description": "SVG material - motion_sensor_off", + "body": [ + "{% svg material motion_sensor_off %}" + ] + }, + "motorbike": { + "prefix": "svg.material.motorbike", + "description": "SVG material - motorbike", + "body": [ + "{% svg material motorbike %}" + ] + }, + "motorbike_electric": { + "prefix": "svg.material.motorbike_electric", + "description": "SVG material - motorbike_electric", + "body": [ + "{% svg material motorbike_electric %}" + ] + }, + "motorbike_off": { + "prefix": "svg.material.motorbike_off", + "description": "SVG material - motorbike_off", + "body": [ + "{% svg material motorbike_off %}" + ] + }, + "mouse": { + "prefix": "svg.material.mouse", + "description": "SVG material - mouse", + "body": [ + "{% svg material mouse %}" + ] + }, + "mouse_bluetooth": { + "prefix": "svg.material.mouse_bluetooth", + "description": "SVG material - mouse_bluetooth", + "body": [ + "{% svg material mouse_bluetooth %}" + ] + }, + "mouse_left_click": { + "prefix": "svg.material.mouse_left_click", + "description": "SVG material - mouse_left_click", + "body": [ + "{% svg material mouse_left_click %}" + ] + }, + "mouse_left_click_outline": { + "prefix": "svg.material.mouse_left_click_outline", + "description": "SVG material - mouse_left_click_outline", + "body": [ + "{% svg material mouse_left_click_outline %}" + ] + }, + "mouse_move_down": { + "prefix": "svg.material.mouse_move_down", + "description": "SVG material - mouse_move_down", + "body": [ + "{% svg material mouse_move_down %}" + ] + }, + "mouse_move_up": { + "prefix": "svg.material.mouse_move_up", + "description": "SVG material - mouse_move_up", + "body": [ + "{% svg material mouse_move_up %}" + ] + }, + "mouse_move_vertical": { + "prefix": "svg.material.mouse_move_vertical", + "description": "SVG material - mouse_move_vertical", + "body": [ + "{% svg material mouse_move_vertical %}" + ] + }, + "mouse_off": { + "prefix": "svg.material.mouse_off", + "description": "SVG material - mouse_off", + "body": [ + "{% svg material mouse_off %}" + ] + }, + "mouse_outline": { + "prefix": "svg.material.mouse_outline", + "description": "SVG material - mouse_outline", + "body": [ + "{% svg material mouse_outline %}" + ] + }, + "mouse_right_click": { + "prefix": "svg.material.mouse_right_click", + "description": "SVG material - mouse_right_click", + "body": [ + "{% svg material mouse_right_click %}" + ] + }, + "mouse_right_click_outline": { + "prefix": "svg.material.mouse_right_click_outline", + "description": "SVG material - mouse_right_click_outline", + "body": [ + "{% svg material mouse_right_click_outline %}" + ] + }, + "mouse_scroll_wheel": { + "prefix": "svg.material.mouse_scroll_wheel", + "description": "SVG material - mouse_scroll_wheel", + "body": [ + "{% svg material mouse_scroll_wheel %}" + ] + }, + "mouse_variant": { + "prefix": "svg.material.mouse_variant", + "description": "SVG material - mouse_variant", + "body": [ + "{% svg material mouse_variant %}" + ] + }, + "mouse_variant_off": { + "prefix": "svg.material.mouse_variant_off", + "description": "SVG material - mouse_variant_off", + "body": [ + "{% svg material mouse_variant_off %}" + ] + }, + "move_resize": { + "prefix": "svg.material.move_resize", + "description": "SVG material - move_resize", + "body": [ + "{% svg material move_resize %}" + ] + }, + "move_resize_variant": { + "prefix": "svg.material.move_resize_variant", + "description": "SVG material - move_resize_variant", + "body": [ + "{% svg material move_resize_variant %}" + ] + }, + "movie": { + "prefix": "svg.material.movie", + "description": "SVG material - movie", + "body": [ + "{% svg material movie %}" + ] + }, + "movie_check": { + "prefix": "svg.material.movie_check", + "description": "SVG material - movie_check", + "body": [ + "{% svg material movie_check %}" + ] + }, + "movie_check_outline": { + "prefix": "svg.material.movie_check_outline", + "description": "SVG material - movie_check_outline", + "body": [ + "{% svg material movie_check_outline %}" + ] + }, + "movie_cog": { + "prefix": "svg.material.movie_cog", + "description": "SVG material - movie_cog", + "body": [ + "{% svg material movie_cog %}" + ] + }, + "movie_cog_outline": { + "prefix": "svg.material.movie_cog_outline", + "description": "SVG material - movie_cog_outline", + "body": [ + "{% svg material movie_cog_outline %}" + ] + }, + "movie_edit": { + "prefix": "svg.material.movie_edit", + "description": "SVG material - movie_edit", + "body": [ + "{% svg material movie_edit %}" + ] + }, + "movie_edit_outline": { + "prefix": "svg.material.movie_edit_outline", + "description": "SVG material - movie_edit_outline", + "body": [ + "{% svg material movie_edit_outline %}" + ] + }, + "movie_filter": { + "prefix": "svg.material.movie_filter", + "description": "SVG material - movie_filter", + "body": [ + "{% svg material movie_filter %}" + ] + }, + "movie_filter_outline": { + "prefix": "svg.material.movie_filter_outline", + "description": "SVG material - movie_filter_outline", + "body": [ + "{% svg material movie_filter_outline %}" + ] + }, + "movie_minus": { + "prefix": "svg.material.movie_minus", + "description": "SVG material - movie_minus", + "body": [ + "{% svg material movie_minus %}" + ] + }, + "movie_minus_outline": { + "prefix": "svg.material.movie_minus_outline", + "description": "SVG material - movie_minus_outline", + "body": [ + "{% svg material movie_minus_outline %}" + ] + }, + "movie_off": { + "prefix": "svg.material.movie_off", + "description": "SVG material - movie_off", + "body": [ + "{% svg material movie_off %}" + ] + }, + "movie_off_outline": { + "prefix": "svg.material.movie_off_outline", + "description": "SVG material - movie_off_outline", + "body": [ + "{% svg material movie_off_outline %}" + ] + }, + "movie_open": { + "prefix": "svg.material.movie_open", + "description": "SVG material - movie_open", + "body": [ + "{% svg material movie_open %}" + ] + }, + "movie_open_check": { + "prefix": "svg.material.movie_open_check", + "description": "SVG material - movie_open_check", + "body": [ + "{% svg material movie_open_check %}" + ] + }, + "movie_open_check_outline": { + "prefix": "svg.material.movie_open_check_outline", + "description": "SVG material - movie_open_check_outline", + "body": [ + "{% svg material movie_open_check_outline %}" + ] + }, + "movie_open_cog": { + "prefix": "svg.material.movie_open_cog", + "description": "SVG material - movie_open_cog", + "body": [ + "{% svg material movie_open_cog %}" + ] + }, + "movie_open_cog_outline": { + "prefix": "svg.material.movie_open_cog_outline", + "description": "SVG material - movie_open_cog_outline", + "body": [ + "{% svg material movie_open_cog_outline %}" + ] + }, + "movie_open_edit": { + "prefix": "svg.material.movie_open_edit", + "description": "SVG material - movie_open_edit", + "body": [ + "{% svg material movie_open_edit %}" + ] + }, + "movie_open_edit_outline": { + "prefix": "svg.material.movie_open_edit_outline", + "description": "SVG material - movie_open_edit_outline", + "body": [ + "{% svg material movie_open_edit_outline %}" + ] + }, + "movie_open_minus": { + "prefix": "svg.material.movie_open_minus", + "description": "SVG material - movie_open_minus", + "body": [ + "{% svg material movie_open_minus %}" + ] + }, + "movie_open_minus_outline": { + "prefix": "svg.material.movie_open_minus_outline", + "description": "SVG material - movie_open_minus_outline", + "body": [ + "{% svg material movie_open_minus_outline %}" + ] + }, + "movie_open_off": { + "prefix": "svg.material.movie_open_off", + "description": "SVG material - movie_open_off", + "body": [ + "{% svg material movie_open_off %}" + ] + }, + "movie_open_off_outline": { + "prefix": "svg.material.movie_open_off_outline", + "description": "SVG material - movie_open_off_outline", + "body": [ + "{% svg material movie_open_off_outline %}" + ] + }, + "movie_open_outline": { + "prefix": "svg.material.movie_open_outline", + "description": "SVG material - movie_open_outline", + "body": [ + "{% svg material movie_open_outline %}" + ] + }, + "movie_open_play": { + "prefix": "svg.material.movie_open_play", + "description": "SVG material - movie_open_play", + "body": [ + "{% svg material movie_open_play %}" + ] + }, + "movie_open_play_outline": { + "prefix": "svg.material.movie_open_play_outline", + "description": "SVG material - movie_open_play_outline", + "body": [ + "{% svg material movie_open_play_outline %}" + ] + }, + "movie_open_plus": { + "prefix": "svg.material.movie_open_plus", + "description": "SVG material - movie_open_plus", + "body": [ + "{% svg material movie_open_plus %}" + ] + }, + "movie_open_plus_outline": { + "prefix": "svg.material.movie_open_plus_outline", + "description": "SVG material - movie_open_plus_outline", + "body": [ + "{% svg material movie_open_plus_outline %}" + ] + }, + "movie_open_remove": { + "prefix": "svg.material.movie_open_remove", + "description": "SVG material - movie_open_remove", + "body": [ + "{% svg material movie_open_remove %}" + ] + }, + "movie_open_remove_outline": { + "prefix": "svg.material.movie_open_remove_outline", + "description": "SVG material - movie_open_remove_outline", + "body": [ + "{% svg material movie_open_remove_outline %}" + ] + }, + "movie_open_settings": { + "prefix": "svg.material.movie_open_settings", + "description": "SVG material - movie_open_settings", + "body": [ + "{% svg material movie_open_settings %}" + ] + }, + "movie_open_settings_outline": { + "prefix": "svg.material.movie_open_settings_outline", + "description": "SVG material - movie_open_settings_outline", + "body": [ + "{% svg material movie_open_settings_outline %}" + ] + }, + "movie_open_star": { + "prefix": "svg.material.movie_open_star", + "description": "SVG material - movie_open_star", + "body": [ + "{% svg material movie_open_star %}" + ] + }, + "movie_open_star_outline": { + "prefix": "svg.material.movie_open_star_outline", + "description": "SVG material - movie_open_star_outline", + "body": [ + "{% svg material movie_open_star_outline %}" + ] + }, + "movie_outline": { + "prefix": "svg.material.movie_outline", + "description": "SVG material - movie_outline", + "body": [ + "{% svg material movie_outline %}" + ] + }, + "movie_play": { + "prefix": "svg.material.movie_play", + "description": "SVG material - movie_play", + "body": [ + "{% svg material movie_play %}" + ] + }, + "movie_play_outline": { + "prefix": "svg.material.movie_play_outline", + "description": "SVG material - movie_play_outline", + "body": [ + "{% svg material movie_play_outline %}" + ] + }, + "movie_plus": { + "prefix": "svg.material.movie_plus", + "description": "SVG material - movie_plus", + "body": [ + "{% svg material movie_plus %}" + ] + }, + "movie_plus_outline": { + "prefix": "svg.material.movie_plus_outline", + "description": "SVG material - movie_plus_outline", + "body": [ + "{% svg material movie_plus_outline %}" + ] + }, + "movie_remove": { + "prefix": "svg.material.movie_remove", + "description": "SVG material - movie_remove", + "body": [ + "{% svg material movie_remove %}" + ] + }, + "movie_remove_outline": { + "prefix": "svg.material.movie_remove_outline", + "description": "SVG material - movie_remove_outline", + "body": [ + "{% svg material movie_remove_outline %}" + ] + }, + "movie_roll": { + "prefix": "svg.material.movie_roll", + "description": "SVG material - movie_roll", + "body": [ + "{% svg material movie_roll %}" + ] + }, + "movie_search": { + "prefix": "svg.material.movie_search", + "description": "SVG material - movie_search", + "body": [ + "{% svg material movie_search %}" + ] + }, + "movie_search_outline": { + "prefix": "svg.material.movie_search_outline", + "description": "SVG material - movie_search_outline", + "body": [ + "{% svg material movie_search_outline %}" + ] + }, + "movie_settings": { + "prefix": "svg.material.movie_settings", + "description": "SVG material - movie_settings", + "body": [ + "{% svg material movie_settings %}" + ] + }, + "movie_settings_outline": { + "prefix": "svg.material.movie_settings_outline", + "description": "SVG material - movie_settings_outline", + "body": [ + "{% svg material movie_settings_outline %}" + ] + }, + "movie_star": { + "prefix": "svg.material.movie_star", + "description": "SVG material - movie_star", + "body": [ + "{% svg material movie_star %}" + ] + }, + "movie_star_outline": { + "prefix": "svg.material.movie_star_outline", + "description": "SVG material - movie_star_outline", + "body": [ + "{% svg material movie_star_outline %}" + ] + }, + "mower": { + "prefix": "svg.material.mower", + "description": "SVG material - mower", + "body": [ + "{% svg material mower %}" + ] + }, + "mower_bag": { + "prefix": "svg.material.mower_bag", + "description": "SVG material - mower_bag", + "body": [ + "{% svg material mower_bag %}" + ] + }, + "mower_bag_on": { + "prefix": "svg.material.mower_bag_on", + "description": "SVG material - mower_bag_on", + "body": [ + "{% svg material mower_bag_on %}" + ] + }, + "mower_on": { + "prefix": "svg.material.mower_on", + "description": "SVG material - mower_on", + "body": [ + "{% svg material mower_on %}" + ] + }, + "muffin": { + "prefix": "svg.material.muffin", + "description": "SVG material - muffin", + "body": [ + "{% svg material muffin %}" + ] + }, + "multicast": { + "prefix": "svg.material.multicast", + "description": "SVG material - multicast", + "body": [ + "{% svg material multicast %}" + ] + }, + "multimedia": { + "prefix": "svg.material.multimedia", + "description": "SVG material - multimedia", + "body": [ + "{% svg material multimedia %}" + ] + }, + "multiplication": { + "prefix": "svg.material.multiplication", + "description": "SVG material - multiplication", + "body": [ + "{% svg material multiplication %}" + ] + }, + "multiplication_box": { + "prefix": "svg.material.multiplication_box", + "description": "SVG material - multiplication_box", + "body": [ + "{% svg material multiplication_box %}" + ] + }, + "mushroom": { + "prefix": "svg.material.mushroom", + "description": "SVG material - mushroom", + "body": [ + "{% svg material mushroom %}" + ] + }, + "mushroom_off": { + "prefix": "svg.material.mushroom_off", + "description": "SVG material - mushroom_off", + "body": [ + "{% svg material mushroom_off %}" + ] + }, + "mushroom_off_outline": { + "prefix": "svg.material.mushroom_off_outline", + "description": "SVG material - mushroom_off_outline", + "body": [ + "{% svg material mushroom_off_outline %}" + ] + }, + "mushroom_outline": { + "prefix": "svg.material.mushroom_outline", + "description": "SVG material - mushroom_outline", + "body": [ + "{% svg material mushroom_outline %}" + ] + }, + "music": { + "prefix": "svg.material.music", + "description": "SVG material - music", + "body": [ + "{% svg material music %}" + ] + }, + "music_accidental_double_flat": { + "prefix": "svg.material.music_accidental_double_flat", + "description": "SVG material - music_accidental_double_flat", + "body": [ + "{% svg material music_accidental_double_flat %}" + ] + }, + "music_accidental_double_sharp": { + "prefix": "svg.material.music_accidental_double_sharp", + "description": "SVG material - music_accidental_double_sharp", + "body": [ + "{% svg material music_accidental_double_sharp %}" + ] + }, + "music_accidental_flat": { + "prefix": "svg.material.music_accidental_flat", + "description": "SVG material - music_accidental_flat", + "body": [ + "{% svg material music_accidental_flat %}" + ] + }, + "music_accidental_natural": { + "prefix": "svg.material.music_accidental_natural", + "description": "SVG material - music_accidental_natural", + "body": [ + "{% svg material music_accidental_natural %}" + ] + }, + "music_accidental_sharp": { + "prefix": "svg.material.music_accidental_sharp", + "description": "SVG material - music_accidental_sharp", + "body": [ + "{% svg material music_accidental_sharp %}" + ] + }, + "music_box": { + "prefix": "svg.material.music_box", + "description": "SVG material - music_box", + "body": [ + "{% svg material music_box %}" + ] + }, + "music_box_multiple": { + "prefix": "svg.material.music_box_multiple", + "description": "SVG material - music_box_multiple", + "body": [ + "{% svg material music_box_multiple %}" + ] + }, + "music_box_multiple_outline": { + "prefix": "svg.material.music_box_multiple_outline", + "description": "SVG material - music_box_multiple_outline", + "body": [ + "{% svg material music_box_multiple_outline %}" + ] + }, + "music_box_outline": { + "prefix": "svg.material.music_box_outline", + "description": "SVG material - music_box_outline", + "body": [ + "{% svg material music_box_outline %}" + ] + }, + "music_circle": { + "prefix": "svg.material.music_circle", + "description": "SVG material - music_circle", + "body": [ + "{% svg material music_circle %}" + ] + }, + "music_circle_outline": { + "prefix": "svg.material.music_circle_outline", + "description": "SVG material - music_circle_outline", + "body": [ + "{% svg material music_circle_outline %}" + ] + }, + "music_clef_alto": { + "prefix": "svg.material.music_clef_alto", + "description": "SVG material - music_clef_alto", + "body": [ + "{% svg material music_clef_alto %}" + ] + }, + "music_clef_bass": { + "prefix": "svg.material.music_clef_bass", + "description": "SVG material - music_clef_bass", + "body": [ + "{% svg material music_clef_bass %}" + ] + }, + "music_clef_treble": { + "prefix": "svg.material.music_clef_treble", + "description": "SVG material - music_clef_treble", + "body": [ + "{% svg material music_clef_treble %}" + ] + }, + "music_note": { + "prefix": "svg.material.music_note", + "description": "SVG material - music_note", + "body": [ + "{% svg material music_note %}" + ] + }, + "music_note_bluetooth": { + "prefix": "svg.material.music_note_bluetooth", + "description": "SVG material - music_note_bluetooth", + "body": [ + "{% svg material music_note_bluetooth %}" + ] + }, + "music_note_bluetooth_off": { + "prefix": "svg.material.music_note_bluetooth_off", + "description": "SVG material - music_note_bluetooth_off", + "body": [ + "{% svg material music_note_bluetooth_off %}" + ] + }, + "music_note_eighth": { + "prefix": "svg.material.music_note_eighth", + "description": "SVG material - music_note_eighth", + "body": [ + "{% svg material music_note_eighth %}" + ] + }, + "music_note_eighth_dotted": { + "prefix": "svg.material.music_note_eighth_dotted", + "description": "SVG material - music_note_eighth_dotted", + "body": [ + "{% svg material music_note_eighth_dotted %}" + ] + }, + "music_note_half": { + "prefix": "svg.material.music_note_half", + "description": "SVG material - music_note_half", + "body": [ + "{% svg material music_note_half %}" + ] + }, + "music_note_half_dotted": { + "prefix": "svg.material.music_note_half_dotted", + "description": "SVG material - music_note_half_dotted", + "body": [ + "{% svg material music_note_half_dotted %}" + ] + }, + "music_note_minus": { + "prefix": "svg.material.music_note_minus", + "description": "SVG material - music_note_minus", + "body": [ + "{% svg material music_note_minus %}" + ] + }, + "music_note_off": { + "prefix": "svg.material.music_note_off", + "description": "SVG material - music_note_off", + "body": [ + "{% svg material music_note_off %}" + ] + }, + "music_note_off_outline": { + "prefix": "svg.material.music_note_off_outline", + "description": "SVG material - music_note_off_outline", + "body": [ + "{% svg material music_note_off_outline %}" + ] + }, + "music_note_outline": { + "prefix": "svg.material.music_note_outline", + "description": "SVG material - music_note_outline", + "body": [ + "{% svg material music_note_outline %}" + ] + }, + "music_note_plus": { + "prefix": "svg.material.music_note_plus", + "description": "SVG material - music_note_plus", + "body": [ + "{% svg material music_note_plus %}" + ] + }, + "music_note_quarter": { + "prefix": "svg.material.music_note_quarter", + "description": "SVG material - music_note_quarter", + "body": [ + "{% svg material music_note_quarter %}" + ] + }, + "music_note_quarter_dotted": { + "prefix": "svg.material.music_note_quarter_dotted", + "description": "SVG material - music_note_quarter_dotted", + "body": [ + "{% svg material music_note_quarter_dotted %}" + ] + }, + "music_note_sixteenth": { + "prefix": "svg.material.music_note_sixteenth", + "description": "SVG material - music_note_sixteenth", + "body": [ + "{% svg material music_note_sixteenth %}" + ] + }, + "music_note_sixteenth_dotted": { + "prefix": "svg.material.music_note_sixteenth_dotted", + "description": "SVG material - music_note_sixteenth_dotted", + "body": [ + "{% svg material music_note_sixteenth_dotted %}" + ] + }, + "music_note_whole": { + "prefix": "svg.material.music_note_whole", + "description": "SVG material - music_note_whole", + "body": [ + "{% svg material music_note_whole %}" + ] + }, + "music_note_whole_dotted": { + "prefix": "svg.material.music_note_whole_dotted", + "description": "SVG material - music_note_whole_dotted", + "body": [ + "{% svg material music_note_whole_dotted %}" + ] + }, + "music_off": { + "prefix": "svg.material.music_off", + "description": "SVG material - music_off", + "body": [ + "{% svg material music_off %}" + ] + }, + "music_rest_eighth": { + "prefix": "svg.material.music_rest_eighth", + "description": "SVG material - music_rest_eighth", + "body": [ + "{% svg material music_rest_eighth %}" + ] + }, + "music_rest_half": { + "prefix": "svg.material.music_rest_half", + "description": "SVG material - music_rest_half", + "body": [ + "{% svg material music_rest_half %}" + ] + }, + "music_rest_quarter": { + "prefix": "svg.material.music_rest_quarter", + "description": "SVG material - music_rest_quarter", + "body": [ + "{% svg material music_rest_quarter %}" + ] + }, + "music_rest_sixteenth": { + "prefix": "svg.material.music_rest_sixteenth", + "description": "SVG material - music_rest_sixteenth", + "body": [ + "{% svg material music_rest_sixteenth %}" + ] + }, + "music_rest_whole": { + "prefix": "svg.material.music_rest_whole", + "description": "SVG material - music_rest_whole", + "body": [ + "{% svg material music_rest_whole %}" + ] + }, + "mustache": { + "prefix": "svg.material.mustache", + "description": "SVG material - mustache", + "body": [ + "{% svg material mustache %}" + ] + }, + "nail": { + "prefix": "svg.material.nail", + "description": "SVG material - nail", + "body": [ + "{% svg material nail %}" + ] + }, + "nas": { + "prefix": "svg.material.nas", + "description": "SVG material - nas", + "body": [ + "{% svg material nas %}" + ] + }, + "nativescript": { + "prefix": "svg.material.nativescript", + "description": "SVG material - nativescript", + "body": [ + "{% svg material nativescript %}" + ] + }, + "nature": { + "prefix": "svg.material.nature", + "description": "SVG material - nature", + "body": [ + "{% svg material nature %}" + ] + }, + "nature_outline": { + "prefix": "svg.material.nature_outline", + "description": "SVG material - nature_outline", + "body": [ + "{% svg material nature_outline %}" + ] + }, + "nature_people": { + "prefix": "svg.material.nature_people", + "description": "SVG material - nature_people", + "body": [ + "{% svg material nature_people %}" + ] + }, + "nature_people_outline": { + "prefix": "svg.material.nature_people_outline", + "description": "SVG material - nature_people_outline", + "body": [ + "{% svg material nature_people_outline %}" + ] + }, + "navigation": { + "prefix": "svg.material.navigation", + "description": "SVG material - navigation", + "body": [ + "{% svg material navigation %}" + ] + }, + "navigation_outline": { + "prefix": "svg.material.navigation_outline", + "description": "SVG material - navigation_outline", + "body": [ + "{% svg material navigation_outline %}" + ] + }, + "navigation_variant": { + "prefix": "svg.material.navigation_variant", + "description": "SVG material - navigation_variant", + "body": [ + "{% svg material navigation_variant %}" + ] + }, + "navigation_variant_outline": { + "prefix": "svg.material.navigation_variant_outline", + "description": "SVG material - navigation_variant_outline", + "body": [ + "{% svg material navigation_variant_outline %}" + ] + }, + "near_me": { + "prefix": "svg.material.near_me", + "description": "SVG material - near_me", + "body": [ + "{% svg material near_me %}" + ] + }, + "necklace": { + "prefix": "svg.material.necklace", + "description": "SVG material - necklace", + "body": [ + "{% svg material necklace %}" + ] + }, + "needle": { + "prefix": "svg.material.needle", + "description": "SVG material - needle", + "body": [ + "{% svg material needle %}" + ] + }, + "needle_off": { + "prefix": "svg.material.needle_off", + "description": "SVG material - needle_off", + "body": [ + "{% svg material needle_off %}" + ] + }, + "netflix": { + "prefix": "svg.material.netflix", + "description": "SVG material - netflix", + "body": [ + "{% svg material netflix %}" + ] + }, + "network": { + "prefix": "svg.material.network", + "description": "SVG material - network", + "body": [ + "{% svg material network %}" + ] + }, + "network_off": { + "prefix": "svg.material.network_off", + "description": "SVG material - network_off", + "body": [ + "{% svg material network_off %}" + ] + }, + "network_off_outline": { + "prefix": "svg.material.network_off_outline", + "description": "SVG material - network_off_outline", + "body": [ + "{% svg material network_off_outline %}" + ] + }, + "network_outline": { + "prefix": "svg.material.network_outline", + "description": "SVG material - network_outline", + "body": [ + "{% svg material network_outline %}" + ] + }, + "network_pos": { + "prefix": "svg.material.network_pos", + "description": "SVG material - network_pos", + "body": [ + "{% svg material network_pos %}" + ] + }, + "network_strength_1": { + "prefix": "svg.material.network_strength_1", + "description": "SVG material - network_strength_1", + "body": [ + "{% svg material network_strength_1 %}" + ] + }, + "network_strength_1_alert": { + "prefix": "svg.material.network_strength_1_alert", + "description": "SVG material - network_strength_1_alert", + "body": [ + "{% svg material network_strength_1_alert %}" + ] + }, + "network_strength_2": { + "prefix": "svg.material.network_strength_2", + "description": "SVG material - network_strength_2", + "body": [ + "{% svg material network_strength_2 %}" + ] + }, + "network_strength_2_alert": { + "prefix": "svg.material.network_strength_2_alert", + "description": "SVG material - network_strength_2_alert", + "body": [ + "{% svg material network_strength_2_alert %}" + ] + }, + "network_strength_3": { + "prefix": "svg.material.network_strength_3", + "description": "SVG material - network_strength_3", + "body": [ + "{% svg material network_strength_3 %}" + ] + }, + "network_strength_3_alert": { + "prefix": "svg.material.network_strength_3_alert", + "description": "SVG material - network_strength_3_alert", + "body": [ + "{% svg material network_strength_3_alert %}" + ] + }, + "network_strength_4": { + "prefix": "svg.material.network_strength_4", + "description": "SVG material - network_strength_4", + "body": [ + "{% svg material network_strength_4 %}" + ] + }, + "network_strength_4_alert": { + "prefix": "svg.material.network_strength_4_alert", + "description": "SVG material - network_strength_4_alert", + "body": [ + "{% svg material network_strength_4_alert %}" + ] + }, + "network_strength_4_cog": { + "prefix": "svg.material.network_strength_4_cog", + "description": "SVG material - network_strength_4_cog", + "body": [ + "{% svg material network_strength_4_cog %}" + ] + }, + "network_strength_off": { + "prefix": "svg.material.network_strength_off", + "description": "SVG material - network_strength_off", + "body": [ + "{% svg material network_strength_off %}" + ] + }, + "network_strength_off_outline": { + "prefix": "svg.material.network_strength_off_outline", + "description": "SVG material - network_strength_off_outline", + "body": [ + "{% svg material network_strength_off_outline %}" + ] + }, + "network_strength_outline": { + "prefix": "svg.material.network_strength_outline", + "description": "SVG material - network_strength_outline", + "body": [ + "{% svg material network_strength_outline %}" + ] + }, + "new_box": { + "prefix": "svg.material.new_box", + "description": "SVG material - new_box", + "body": [ + "{% svg material new_box %}" + ] + }, + "newspaper": { + "prefix": "svg.material.newspaper", + "description": "SVG material - newspaper", + "body": [ + "{% svg material newspaper %}" + ] + }, + "newspaper_check": { + "prefix": "svg.material.newspaper_check", + "description": "SVG material - newspaper_check", + "body": [ + "{% svg material newspaper_check %}" + ] + }, + "newspaper_minus": { + "prefix": "svg.material.newspaper_minus", + "description": "SVG material - newspaper_minus", + "body": [ + "{% svg material newspaper_minus %}" + ] + }, + "newspaper_plus": { + "prefix": "svg.material.newspaper_plus", + "description": "SVG material - newspaper_plus", + "body": [ + "{% svg material newspaper_plus %}" + ] + }, + "newspaper_remove": { + "prefix": "svg.material.newspaper_remove", + "description": "SVG material - newspaper_remove", + "body": [ + "{% svg material newspaper_remove %}" + ] + }, + "newspaper_variant": { + "prefix": "svg.material.newspaper_variant", + "description": "SVG material - newspaper_variant", + "body": [ + "{% svg material newspaper_variant %}" + ] + }, + "newspaper_variant_multiple": { + "prefix": "svg.material.newspaper_variant_multiple", + "description": "SVG material - newspaper_variant_multiple", + "body": [ + "{% svg material newspaper_variant_multiple %}" + ] + }, + "newspaper_variant_multiple_outline": { + "prefix": "svg.material.newspaper_variant_multiple_outline", + "description": "SVG material - newspaper_variant_multiple_outline", + "body": [ + "{% svg material newspaper_variant_multiple_outline %}" + ] + }, + "newspaper_variant_outline": { + "prefix": "svg.material.newspaper_variant_outline", + "description": "SVG material - newspaper_variant_outline", + "body": [ + "{% svg material newspaper_variant_outline %}" + ] + }, + "nfc": { + "prefix": "svg.material.nfc", + "description": "SVG material - nfc", + "body": [ + "{% svg material nfc %}" + ] + }, + "nfc_search_variant": { + "prefix": "svg.material.nfc_search_variant", + "description": "SVG material - nfc_search_variant", + "body": [ + "{% svg material nfc_search_variant %}" + ] + }, + "nfc_tap": { + "prefix": "svg.material.nfc_tap", + "description": "SVG material - nfc_tap", + "body": [ + "{% svg material nfc_tap %}" + ] + }, + "nfc_variant": { + "prefix": "svg.material.nfc_variant", + "description": "SVG material - nfc_variant", + "body": [ + "{% svg material nfc_variant %}" + ] + }, + "nfc_variant_off": { + "prefix": "svg.material.nfc_variant_off", + "description": "SVG material - nfc_variant_off", + "body": [ + "{% svg material nfc_variant_off %}" + ] + }, + "ninja": { + "prefix": "svg.material.ninja", + "description": "SVG material - ninja", + "body": [ + "{% svg material ninja %}" + ] + }, + "nintendo_game_boy": { + "prefix": "svg.material.nintendo_game_boy", + "description": "SVG material - nintendo_game_boy", + "body": [ + "{% svg material nintendo_game_boy %}" + ] + }, + "nintendo_switch": { + "prefix": "svg.material.nintendo_switch", + "description": "SVG material - nintendo_switch", + "body": [ + "{% svg material nintendo_switch %}" + ] + }, + "nintendo_wii": { + "prefix": "svg.material.nintendo_wii", + "description": "SVG material - nintendo_wii", + "body": [ + "{% svg material nintendo_wii %}" + ] + }, + "nintendo_wiiu": { + "prefix": "svg.material.nintendo_wiiu", + "description": "SVG material - nintendo_wiiu", + "body": [ + "{% svg material nintendo_wiiu %}" + ] + }, + "nix": { + "prefix": "svg.material.nix", + "description": "SVG material - nix", + "body": [ + "{% svg material nix %}" + ] + }, + "nodejs": { + "prefix": "svg.material.nodejs", + "description": "SVG material - nodejs", + "body": [ + "{% svg material nodejs %}" + ] + }, + "noodles": { + "prefix": "svg.material.noodles", + "description": "SVG material - noodles", + "body": [ + "{% svg material noodles %}" + ] + }, + "not_equal": { + "prefix": "svg.material.not_equal", + "description": "SVG material - not_equal", + "body": [ + "{% svg material not_equal %}" + ] + }, + "not_equal_variant": { + "prefix": "svg.material.not_equal_variant", + "description": "SVG material - not_equal_variant", + "body": [ + "{% svg material not_equal_variant %}" + ] + }, + "note": { + "prefix": "svg.material.note", + "description": "SVG material - note", + "body": [ + "{% svg material note %}" + ] + }, + "note_alert": { + "prefix": "svg.material.note_alert", + "description": "SVG material - note_alert", + "body": [ + "{% svg material note_alert %}" + ] + }, + "note_alert_outline": { + "prefix": "svg.material.note_alert_outline", + "description": "SVG material - note_alert_outline", + "body": [ + "{% svg material note_alert_outline %}" + ] + }, + "note_check": { + "prefix": "svg.material.note_check", + "description": "SVG material - note_check", + "body": [ + "{% svg material note_check %}" + ] + }, + "note_check_outline": { + "prefix": "svg.material.note_check_outline", + "description": "SVG material - note_check_outline", + "body": [ + "{% svg material note_check_outline %}" + ] + }, + "note_edit": { + "prefix": "svg.material.note_edit", + "description": "SVG material - note_edit", + "body": [ + "{% svg material note_edit %}" + ] + }, + "note_edit_outline": { + "prefix": "svg.material.note_edit_outline", + "description": "SVG material - note_edit_outline", + "body": [ + "{% svg material note_edit_outline %}" + ] + }, + "note_minus": { + "prefix": "svg.material.note_minus", + "description": "SVG material - note_minus", + "body": [ + "{% svg material note_minus %}" + ] + }, + "note_minus_outline": { + "prefix": "svg.material.note_minus_outline", + "description": "SVG material - note_minus_outline", + "body": [ + "{% svg material note_minus_outline %}" + ] + }, + "note_multiple": { + "prefix": "svg.material.note_multiple", + "description": "SVG material - note_multiple", + "body": [ + "{% svg material note_multiple %}" + ] + }, + "note_multiple_outline": { + "prefix": "svg.material.note_multiple_outline", + "description": "SVG material - note_multiple_outline", + "body": [ + "{% svg material note_multiple_outline %}" + ] + }, + "note_off": { + "prefix": "svg.material.note_off", + "description": "SVG material - note_off", + "body": [ + "{% svg material note_off %}" + ] + }, + "note_off_outline": { + "prefix": "svg.material.note_off_outline", + "description": "SVG material - note_off_outline", + "body": [ + "{% svg material note_off_outline %}" + ] + }, + "note_outline": { + "prefix": "svg.material.note_outline", + "description": "SVG material - note_outline", + "body": [ + "{% svg material note_outline %}" + ] + }, + "note_plus": { + "prefix": "svg.material.note_plus", + "description": "SVG material - note_plus", + "body": [ + "{% svg material note_plus %}" + ] + }, + "note_plus_outline": { + "prefix": "svg.material.note_plus_outline", + "description": "SVG material - note_plus_outline", + "body": [ + "{% svg material note_plus_outline %}" + ] + }, + "note_remove": { + "prefix": "svg.material.note_remove", + "description": "SVG material - note_remove", + "body": [ + "{% svg material note_remove %}" + ] + }, + "note_remove_outline": { + "prefix": "svg.material.note_remove_outline", + "description": "SVG material - note_remove_outline", + "body": [ + "{% svg material note_remove_outline %}" + ] + }, + "note_search": { + "prefix": "svg.material.note_search", + "description": "SVG material - note_search", + "body": [ + "{% svg material note_search %}" + ] + }, + "note_search_outline": { + "prefix": "svg.material.note_search_outline", + "description": "SVG material - note_search_outline", + "body": [ + "{% svg material note_search_outline %}" + ] + }, + "note_text": { + "prefix": "svg.material.note_text", + "description": "SVG material - note_text", + "body": [ + "{% svg material note_text %}" + ] + }, + "note_text_outline": { + "prefix": "svg.material.note_text_outline", + "description": "SVG material - note_text_outline", + "body": [ + "{% svg material note_text_outline %}" + ] + }, + "notebook": { + "prefix": "svg.material.notebook", + "description": "SVG material - notebook", + "body": [ + "{% svg material notebook %}" + ] + }, + "notebook_check": { + "prefix": "svg.material.notebook_check", + "description": "SVG material - notebook_check", + "body": [ + "{% svg material notebook_check %}" + ] + }, + "notebook_check_outline": { + "prefix": "svg.material.notebook_check_outline", + "description": "SVG material - notebook_check_outline", + "body": [ + "{% svg material notebook_check_outline %}" + ] + }, + "notebook_edit": { + "prefix": "svg.material.notebook_edit", + "description": "SVG material - notebook_edit", + "body": [ + "{% svg material notebook_edit %}" + ] + }, + "notebook_edit_outline": { + "prefix": "svg.material.notebook_edit_outline", + "description": "SVG material - notebook_edit_outline", + "body": [ + "{% svg material notebook_edit_outline %}" + ] + }, + "notebook_heart": { + "prefix": "svg.material.notebook_heart", + "description": "SVG material - notebook_heart", + "body": [ + "{% svg material notebook_heart %}" + ] + }, + "notebook_heart_outline": { + "prefix": "svg.material.notebook_heart_outline", + "description": "SVG material - notebook_heart_outline", + "body": [ + "{% svg material notebook_heart_outline %}" + ] + }, + "notebook_minus": { + "prefix": "svg.material.notebook_minus", + "description": "SVG material - notebook_minus", + "body": [ + "{% svg material notebook_minus %}" + ] + }, + "notebook_minus_outline": { + "prefix": "svg.material.notebook_minus_outline", + "description": "SVG material - notebook_minus_outline", + "body": [ + "{% svg material notebook_minus_outline %}" + ] + }, + "notebook_multiple": { + "prefix": "svg.material.notebook_multiple", + "description": "SVG material - notebook_multiple", + "body": [ + "{% svg material notebook_multiple %}" + ] + }, + "notebook_outline": { + "prefix": "svg.material.notebook_outline", + "description": "SVG material - notebook_outline", + "body": [ + "{% svg material notebook_outline %}" + ] + }, + "notebook_plus": { + "prefix": "svg.material.notebook_plus", + "description": "SVG material - notebook_plus", + "body": [ + "{% svg material notebook_plus %}" + ] + }, + "notebook_plus_outline": { + "prefix": "svg.material.notebook_plus_outline", + "description": "SVG material - notebook_plus_outline", + "body": [ + "{% svg material notebook_plus_outline %}" + ] + }, + "notebook_remove": { + "prefix": "svg.material.notebook_remove", + "description": "SVG material - notebook_remove", + "body": [ + "{% svg material notebook_remove %}" + ] + }, + "notebook_remove_outline": { + "prefix": "svg.material.notebook_remove_outline", + "description": "SVG material - notebook_remove_outline", + "body": [ + "{% svg material notebook_remove_outline %}" + ] + }, + "notification_clear_all": { + "prefix": "svg.material.notification_clear_all", + "description": "SVG material - notification_clear_all", + "body": [ + "{% svg material notification_clear_all %}" + ] + }, + "npm": { + "prefix": "svg.material.npm", + "description": "SVG material - npm", + "body": [ + "{% svg material npm %}" + ] + }, + "nuke": { + "prefix": "svg.material.nuke", + "description": "SVG material - nuke", + "body": [ + "{% svg material nuke %}" + ] + }, + "null": { + "prefix": "svg.material.null", + "description": "SVG material - null", + "body": [ + "{% svg material null %}" + ] + }, + "numeric": { + "prefix": "svg.material.numeric", + "description": "SVG material - numeric", + "body": [ + "{% svg material numeric %}" + ] + }, + "numeric_0": { + "prefix": "svg.material.numeric_0", + "description": "SVG material - numeric_0", + "body": [ + "{% svg material numeric_0 %}" + ] + }, + "numeric_0_box": { + "prefix": "svg.material.numeric_0_box", + "description": "SVG material - numeric_0_box", + "body": [ + "{% svg material numeric_0_box %}" + ] + }, + "numeric_0_box_multiple": { + "prefix": "svg.material.numeric_0_box_multiple", + "description": "SVG material - numeric_0_box_multiple", + "body": [ + "{% svg material numeric_0_box_multiple %}" + ] + }, + "numeric_0_box_multiple_outline": { + "prefix": "svg.material.numeric_0_box_multiple_outline", + "description": "SVG material - numeric_0_box_multiple_outline", + "body": [ + "{% svg material numeric_0_box_multiple_outline %}" + ] + }, + "numeric_0_box_outline": { + "prefix": "svg.material.numeric_0_box_outline", + "description": "SVG material - numeric_0_box_outline", + "body": [ + "{% svg material numeric_0_box_outline %}" + ] + }, + "numeric_0_circle": { + "prefix": "svg.material.numeric_0_circle", + "description": "SVG material - numeric_0_circle", + "body": [ + "{% svg material numeric_0_circle %}" + ] + }, + "numeric_0_circle_outline": { + "prefix": "svg.material.numeric_0_circle_outline", + "description": "SVG material - numeric_0_circle_outline", + "body": [ + "{% svg material numeric_0_circle_outline %}" + ] + }, + "numeric_1": { + "prefix": "svg.material.numeric_1", + "description": "SVG material - numeric_1", + "body": [ + "{% svg material numeric_1 %}" + ] + }, + "numeric_10": { + "prefix": "svg.material.numeric_10", + "description": "SVG material - numeric_10", + "body": [ + "{% svg material numeric_10 %}" + ] + }, + "numeric_10_box": { + "prefix": "svg.material.numeric_10_box", + "description": "SVG material - numeric_10_box", + "body": [ + "{% svg material numeric_10_box %}" + ] + }, + "numeric_10_box_multiple": { + "prefix": "svg.material.numeric_10_box_multiple", + "description": "SVG material - numeric_10_box_multiple", + "body": [ + "{% svg material numeric_10_box_multiple %}" + ] + }, + "numeric_10_box_multiple_outline": { + "prefix": "svg.material.numeric_10_box_multiple_outline", + "description": "SVG material - numeric_10_box_multiple_outline", + "body": [ + "{% svg material numeric_10_box_multiple_outline %}" + ] + }, + "numeric_10_box_outline": { + "prefix": "svg.material.numeric_10_box_outline", + "description": "SVG material - numeric_10_box_outline", + "body": [ + "{% svg material numeric_10_box_outline %}" + ] + }, + "numeric_10_circle": { + "prefix": "svg.material.numeric_10_circle", + "description": "SVG material - numeric_10_circle", + "body": [ + "{% svg material numeric_10_circle %}" + ] + }, + "numeric_10_circle_outline": { + "prefix": "svg.material.numeric_10_circle_outline", + "description": "SVG material - numeric_10_circle_outline", + "body": [ + "{% svg material numeric_10_circle_outline %}" + ] + }, + "numeric_1_box": { + "prefix": "svg.material.numeric_1_box", + "description": "SVG material - numeric_1_box", + "body": [ + "{% svg material numeric_1_box %}" + ] + }, + "numeric_1_box_multiple": { + "prefix": "svg.material.numeric_1_box_multiple", + "description": "SVG material - numeric_1_box_multiple", + "body": [ + "{% svg material numeric_1_box_multiple %}" + ] + }, + "numeric_1_box_multiple_outline": { + "prefix": "svg.material.numeric_1_box_multiple_outline", + "description": "SVG material - numeric_1_box_multiple_outline", + "body": [ + "{% svg material numeric_1_box_multiple_outline %}" + ] + }, + "numeric_1_box_outline": { + "prefix": "svg.material.numeric_1_box_outline", + "description": "SVG material - numeric_1_box_outline", + "body": [ + "{% svg material numeric_1_box_outline %}" + ] + }, + "numeric_1_circle": { + "prefix": "svg.material.numeric_1_circle", + "description": "SVG material - numeric_1_circle", + "body": [ + "{% svg material numeric_1_circle %}" + ] + }, + "numeric_1_circle_outline": { + "prefix": "svg.material.numeric_1_circle_outline", + "description": "SVG material - numeric_1_circle_outline", + "body": [ + "{% svg material numeric_1_circle_outline %}" + ] + }, + "numeric_2": { + "prefix": "svg.material.numeric_2", + "description": "SVG material - numeric_2", + "body": [ + "{% svg material numeric_2 %}" + ] + }, + "numeric_2_box": { + "prefix": "svg.material.numeric_2_box", + "description": "SVG material - numeric_2_box", + "body": [ + "{% svg material numeric_2_box %}" + ] + }, + "numeric_2_box_multiple": { + "prefix": "svg.material.numeric_2_box_multiple", + "description": "SVG material - numeric_2_box_multiple", + "body": [ + "{% svg material numeric_2_box_multiple %}" + ] + }, + "numeric_2_box_multiple_outline": { + "prefix": "svg.material.numeric_2_box_multiple_outline", + "description": "SVG material - numeric_2_box_multiple_outline", + "body": [ + "{% svg material numeric_2_box_multiple_outline %}" + ] + }, + "numeric_2_box_outline": { + "prefix": "svg.material.numeric_2_box_outline", + "description": "SVG material - numeric_2_box_outline", + "body": [ + "{% svg material numeric_2_box_outline %}" + ] + }, + "numeric_2_circle": { + "prefix": "svg.material.numeric_2_circle", + "description": "SVG material - numeric_2_circle", + "body": [ + "{% svg material numeric_2_circle %}" + ] + }, + "numeric_2_circle_outline": { + "prefix": "svg.material.numeric_2_circle_outline", + "description": "SVG material - numeric_2_circle_outline", + "body": [ + "{% svg material numeric_2_circle_outline %}" + ] + }, + "numeric_3": { + "prefix": "svg.material.numeric_3", + "description": "SVG material - numeric_3", + "body": [ + "{% svg material numeric_3 %}" + ] + }, + "numeric_3_box": { + "prefix": "svg.material.numeric_3_box", + "description": "SVG material - numeric_3_box", + "body": [ + "{% svg material numeric_3_box %}" + ] + }, + "numeric_3_box_multiple": { + "prefix": "svg.material.numeric_3_box_multiple", + "description": "SVG material - numeric_3_box_multiple", + "body": [ + "{% svg material numeric_3_box_multiple %}" + ] + }, + "numeric_3_box_multiple_outline": { + "prefix": "svg.material.numeric_3_box_multiple_outline", + "description": "SVG material - numeric_3_box_multiple_outline", + "body": [ + "{% svg material numeric_3_box_multiple_outline %}" + ] + }, + "numeric_3_box_outline": { + "prefix": "svg.material.numeric_3_box_outline", + "description": "SVG material - numeric_3_box_outline", + "body": [ + "{% svg material numeric_3_box_outline %}" + ] + }, + "numeric_3_circle": { + "prefix": "svg.material.numeric_3_circle", + "description": "SVG material - numeric_3_circle", + "body": [ + "{% svg material numeric_3_circle %}" + ] + }, + "numeric_3_circle_outline": { + "prefix": "svg.material.numeric_3_circle_outline", + "description": "SVG material - numeric_3_circle_outline", + "body": [ + "{% svg material numeric_3_circle_outline %}" + ] + }, + "numeric_4": { + "prefix": "svg.material.numeric_4", + "description": "SVG material - numeric_4", + "body": [ + "{% svg material numeric_4 %}" + ] + }, + "numeric_4_box": { + "prefix": "svg.material.numeric_4_box", + "description": "SVG material - numeric_4_box", + "body": [ + "{% svg material numeric_4_box %}" + ] + }, + "numeric_4_box_multiple": { + "prefix": "svg.material.numeric_4_box_multiple", + "description": "SVG material - numeric_4_box_multiple", + "body": [ + "{% svg material numeric_4_box_multiple %}" + ] + }, + "numeric_4_box_multiple_outline": { + "prefix": "svg.material.numeric_4_box_multiple_outline", + "description": "SVG material - numeric_4_box_multiple_outline", + "body": [ + "{% svg material numeric_4_box_multiple_outline %}" + ] + }, + "numeric_4_box_outline": { + "prefix": "svg.material.numeric_4_box_outline", + "description": "SVG material - numeric_4_box_outline", + "body": [ + "{% svg material numeric_4_box_outline %}" + ] + }, + "numeric_4_circle": { + "prefix": "svg.material.numeric_4_circle", + "description": "SVG material - numeric_4_circle", + "body": [ + "{% svg material numeric_4_circle %}" + ] + }, + "numeric_4_circle_outline": { + "prefix": "svg.material.numeric_4_circle_outline", + "description": "SVG material - numeric_4_circle_outline", + "body": [ + "{% svg material numeric_4_circle_outline %}" + ] + }, + "numeric_5": { + "prefix": "svg.material.numeric_5", + "description": "SVG material - numeric_5", + "body": [ + "{% svg material numeric_5 %}" + ] + }, + "numeric_5_box": { + "prefix": "svg.material.numeric_5_box", + "description": "SVG material - numeric_5_box", + "body": [ + "{% svg material numeric_5_box %}" + ] + }, + "numeric_5_box_multiple": { + "prefix": "svg.material.numeric_5_box_multiple", + "description": "SVG material - numeric_5_box_multiple", + "body": [ + "{% svg material numeric_5_box_multiple %}" + ] + }, + "numeric_5_box_multiple_outline": { + "prefix": "svg.material.numeric_5_box_multiple_outline", + "description": "SVG material - numeric_5_box_multiple_outline", + "body": [ + "{% svg material numeric_5_box_multiple_outline %}" + ] + }, + "numeric_5_box_outline": { + "prefix": "svg.material.numeric_5_box_outline", + "description": "SVG material - numeric_5_box_outline", + "body": [ + "{% svg material numeric_5_box_outline %}" + ] + }, + "numeric_5_circle": { + "prefix": "svg.material.numeric_5_circle", + "description": "SVG material - numeric_5_circle", + "body": [ + "{% svg material numeric_5_circle %}" + ] + }, + "numeric_5_circle_outline": { + "prefix": "svg.material.numeric_5_circle_outline", + "description": "SVG material - numeric_5_circle_outline", + "body": [ + "{% svg material numeric_5_circle_outline %}" + ] + }, + "numeric_6": { + "prefix": "svg.material.numeric_6", + "description": "SVG material - numeric_6", + "body": [ + "{% svg material numeric_6 %}" + ] + }, + "numeric_6_box": { + "prefix": "svg.material.numeric_6_box", + "description": "SVG material - numeric_6_box", + "body": [ + "{% svg material numeric_6_box %}" + ] + }, + "numeric_6_box_multiple": { + "prefix": "svg.material.numeric_6_box_multiple", + "description": "SVG material - numeric_6_box_multiple", + "body": [ + "{% svg material numeric_6_box_multiple %}" + ] + }, + "numeric_6_box_multiple_outline": { + "prefix": "svg.material.numeric_6_box_multiple_outline", + "description": "SVG material - numeric_6_box_multiple_outline", + "body": [ + "{% svg material numeric_6_box_multiple_outline %}" + ] + }, + "numeric_6_box_outline": { + "prefix": "svg.material.numeric_6_box_outline", + "description": "SVG material - numeric_6_box_outline", + "body": [ + "{% svg material numeric_6_box_outline %}" + ] + }, + "numeric_6_circle": { + "prefix": "svg.material.numeric_6_circle", + "description": "SVG material - numeric_6_circle", + "body": [ + "{% svg material numeric_6_circle %}" + ] + }, + "numeric_6_circle_outline": { + "prefix": "svg.material.numeric_6_circle_outline", + "description": "SVG material - numeric_6_circle_outline", + "body": [ + "{% svg material numeric_6_circle_outline %}" + ] + }, + "numeric_7": { + "prefix": "svg.material.numeric_7", + "description": "SVG material - numeric_7", + "body": [ + "{% svg material numeric_7 %}" + ] + }, + "numeric_7_box": { + "prefix": "svg.material.numeric_7_box", + "description": "SVG material - numeric_7_box", + "body": [ + "{% svg material numeric_7_box %}" + ] + }, + "numeric_7_box_multiple": { + "prefix": "svg.material.numeric_7_box_multiple", + "description": "SVG material - numeric_7_box_multiple", + "body": [ + "{% svg material numeric_7_box_multiple %}" + ] + }, + "numeric_7_box_multiple_outline": { + "prefix": "svg.material.numeric_7_box_multiple_outline", + "description": "SVG material - numeric_7_box_multiple_outline", + "body": [ + "{% svg material numeric_7_box_multiple_outline %}" + ] + }, + "numeric_7_box_outline": { + "prefix": "svg.material.numeric_7_box_outline", + "description": "SVG material - numeric_7_box_outline", + "body": [ + "{% svg material numeric_7_box_outline %}" + ] + }, + "numeric_7_circle": { + "prefix": "svg.material.numeric_7_circle", + "description": "SVG material - numeric_7_circle", + "body": [ + "{% svg material numeric_7_circle %}" + ] + }, + "numeric_7_circle_outline": { + "prefix": "svg.material.numeric_7_circle_outline", + "description": "SVG material - numeric_7_circle_outline", + "body": [ + "{% svg material numeric_7_circle_outline %}" + ] + }, + "numeric_8": { + "prefix": "svg.material.numeric_8", + "description": "SVG material - numeric_8", + "body": [ + "{% svg material numeric_8 %}" + ] + }, + "numeric_8_box": { + "prefix": "svg.material.numeric_8_box", + "description": "SVG material - numeric_8_box", + "body": [ + "{% svg material numeric_8_box %}" + ] + }, + "numeric_8_box_multiple": { + "prefix": "svg.material.numeric_8_box_multiple", + "description": "SVG material - numeric_8_box_multiple", + "body": [ + "{% svg material numeric_8_box_multiple %}" + ] + }, + "numeric_8_box_multiple_outline": { + "prefix": "svg.material.numeric_8_box_multiple_outline", + "description": "SVG material - numeric_8_box_multiple_outline", + "body": [ + "{% svg material numeric_8_box_multiple_outline %}" + ] + }, + "numeric_8_box_outline": { + "prefix": "svg.material.numeric_8_box_outline", + "description": "SVG material - numeric_8_box_outline", + "body": [ + "{% svg material numeric_8_box_outline %}" + ] + }, + "numeric_8_circle": { + "prefix": "svg.material.numeric_8_circle", + "description": "SVG material - numeric_8_circle", + "body": [ + "{% svg material numeric_8_circle %}" + ] + }, + "numeric_8_circle_outline": { + "prefix": "svg.material.numeric_8_circle_outline", + "description": "SVG material - numeric_8_circle_outline", + "body": [ + "{% svg material numeric_8_circle_outline %}" + ] + }, + "numeric_9": { + "prefix": "svg.material.numeric_9", + "description": "SVG material - numeric_9", + "body": [ + "{% svg material numeric_9 %}" + ] + }, + "numeric_9_box": { + "prefix": "svg.material.numeric_9_box", + "description": "SVG material - numeric_9_box", + "body": [ + "{% svg material numeric_9_box %}" + ] + }, + "numeric_9_box_multiple": { + "prefix": "svg.material.numeric_9_box_multiple", + "description": "SVG material - numeric_9_box_multiple", + "body": [ + "{% svg material numeric_9_box_multiple %}" + ] + }, + "numeric_9_box_multiple_outline": { + "prefix": "svg.material.numeric_9_box_multiple_outline", + "description": "SVG material - numeric_9_box_multiple_outline", + "body": [ + "{% svg material numeric_9_box_multiple_outline %}" + ] + }, + "numeric_9_box_outline": { + "prefix": "svg.material.numeric_9_box_outline", + "description": "SVG material - numeric_9_box_outline", + "body": [ + "{% svg material numeric_9_box_outline %}" + ] + }, + "numeric_9_circle": { + "prefix": "svg.material.numeric_9_circle", + "description": "SVG material - numeric_9_circle", + "body": [ + "{% svg material numeric_9_circle %}" + ] + }, + "numeric_9_circle_outline": { + "prefix": "svg.material.numeric_9_circle_outline", + "description": "SVG material - numeric_9_circle_outline", + "body": [ + "{% svg material numeric_9_circle_outline %}" + ] + }, + "numeric_9_plus": { + "prefix": "svg.material.numeric_9_plus", + "description": "SVG material - numeric_9_plus", + "body": [ + "{% svg material numeric_9_plus %}" + ] + }, + "numeric_9_plus_box": { + "prefix": "svg.material.numeric_9_plus_box", + "description": "SVG material - numeric_9_plus_box", + "body": [ + "{% svg material numeric_9_plus_box %}" + ] + }, + "numeric_9_plus_box_multiple": { + "prefix": "svg.material.numeric_9_plus_box_multiple", + "description": "SVG material - numeric_9_plus_box_multiple", + "body": [ + "{% svg material numeric_9_plus_box_multiple %}" + ] + }, + "numeric_9_plus_box_multiple_outline": { + "prefix": "svg.material.numeric_9_plus_box_multiple_outline", + "description": "SVG material - numeric_9_plus_box_multiple_outline", + "body": [ + "{% svg material numeric_9_plus_box_multiple_outline %}" + ] + }, + "numeric_9_plus_box_outline": { + "prefix": "svg.material.numeric_9_plus_box_outline", + "description": "SVG material - numeric_9_plus_box_outline", + "body": [ + "{% svg material numeric_9_plus_box_outline %}" + ] + }, + "numeric_9_plus_circle": { + "prefix": "svg.material.numeric_9_plus_circle", + "description": "SVG material - numeric_9_plus_circle", + "body": [ + "{% svg material numeric_9_plus_circle %}" + ] + }, + "numeric_9_plus_circle_outline": { + "prefix": "svg.material.numeric_9_plus_circle_outline", + "description": "SVG material - numeric_9_plus_circle_outline", + "body": [ + "{% svg material numeric_9_plus_circle_outline %}" + ] + }, + "numeric_negative_1": { + "prefix": "svg.material.numeric_negative_1", + "description": "SVG material - numeric_negative_1", + "body": [ + "{% svg material numeric_negative_1 %}" + ] + }, + "numeric_off": { + "prefix": "svg.material.numeric_off", + "description": "SVG material - numeric_off", + "body": [ + "{% svg material numeric_off %}" + ] + }, + "numeric_positive_1": { + "prefix": "svg.material.numeric_positive_1", + "description": "SVG material - numeric_positive_1", + "body": [ + "{% svg material numeric_positive_1 %}" + ] + }, + "nut": { + "prefix": "svg.material.nut", + "description": "SVG material - nut", + "body": [ + "{% svg material nut %}" + ] + }, + "nutrition": { + "prefix": "svg.material.nutrition", + "description": "SVG material - nutrition", + "body": [ + "{% svg material nutrition %}" + ] + }, + "nuxt": { + "prefix": "svg.material.nuxt", + "description": "SVG material - nuxt", + "body": [ + "{% svg material nuxt %}" + ] + }, + "oar": { + "prefix": "svg.material.oar", + "description": "SVG material - oar", + "body": [ + "{% svg material oar %}" + ] + }, + "ocarina": { + "prefix": "svg.material.ocarina", + "description": "SVG material - ocarina", + "body": [ + "{% svg material ocarina %}" + ] + }, + "oci": { + "prefix": "svg.material.oci", + "description": "SVG material - oci", + "body": [ + "{% svg material oci %}" + ] + }, + "ocr": { + "prefix": "svg.material.ocr", + "description": "SVG material - ocr", + "body": [ + "{% svg material ocr %}" + ] + }, + "octagon": { + "prefix": "svg.material.octagon", + "description": "SVG material - octagon", + "body": [ + "{% svg material octagon %}" + ] + }, + "octagon_outline": { + "prefix": "svg.material.octagon_outline", + "description": "SVG material - octagon_outline", + "body": [ + "{% svg material octagon_outline %}" + ] + }, + "octagram": { + "prefix": "svg.material.octagram", + "description": "SVG material - octagram", + "body": [ + "{% svg material octagram %}" + ] + }, + "octagram_edit": { + "prefix": "svg.material.octagram_edit", + "description": "SVG material - octagram_edit", + "body": [ + "{% svg material octagram_edit %}" + ] + }, + "octagram_edit_outline": { + "prefix": "svg.material.octagram_edit_outline", + "description": "SVG material - octagram_edit_outline", + "body": [ + "{% svg material octagram_edit_outline %}" + ] + }, + "octagram_minus": { + "prefix": "svg.material.octagram_minus", + "description": "SVG material - octagram_minus", + "body": [ + "{% svg material octagram_minus %}" + ] + }, + "octagram_minus_outline": { + "prefix": "svg.material.octagram_minus_outline", + "description": "SVG material - octagram_minus_outline", + "body": [ + "{% svg material octagram_minus_outline %}" + ] + }, + "octagram_outline": { + "prefix": "svg.material.octagram_outline", + "description": "SVG material - octagram_outline", + "body": [ + "{% svg material octagram_outline %}" + ] + }, + "octagram_plus": { + "prefix": "svg.material.octagram_plus", + "description": "SVG material - octagram_plus", + "body": [ + "{% svg material octagram_plus %}" + ] + }, + "octagram_plus_outline": { + "prefix": "svg.material.octagram_plus_outline", + "description": "SVG material - octagram_plus_outline", + "body": [ + "{% svg material octagram_plus_outline %}" + ] + }, + "octahedron": { + "prefix": "svg.material.octahedron", + "description": "SVG material - octahedron", + "body": [ + "{% svg material octahedron %}" + ] + }, + "octahedron_off": { + "prefix": "svg.material.octahedron_off", + "description": "SVG material - octahedron_off", + "body": [ + "{% svg material octahedron_off %}" + ] + }, + "odnoklassniki": { + "prefix": "svg.material.odnoklassniki", + "description": "SVG material - odnoklassniki", + "body": [ + "{% svg material odnoklassniki %}" + ] + }, + "offer": { + "prefix": "svg.material.offer", + "description": "SVG material - offer", + "body": [ + "{% svg material offer %}" + ] + }, + "office_building": { + "prefix": "svg.material.office_building", + "description": "SVG material - office_building", + "body": [ + "{% svg material office_building %}" + ] + }, + "office_building_cog": { + "prefix": "svg.material.office_building_cog", + "description": "SVG material - office_building_cog", + "body": [ + "{% svg material office_building_cog %}" + ] + }, + "office_building_cog_outline": { + "prefix": "svg.material.office_building_cog_outline", + "description": "SVG material - office_building_cog_outline", + "body": [ + "{% svg material office_building_cog_outline %}" + ] + }, + "office_building_marker": { + "prefix": "svg.material.office_building_marker", + "description": "SVG material - office_building_marker", + "body": [ + "{% svg material office_building_marker %}" + ] + }, + "office_building_marker_outline": { + "prefix": "svg.material.office_building_marker_outline", + "description": "SVG material - office_building_marker_outline", + "body": [ + "{% svg material office_building_marker_outline %}" + ] + }, + "office_building_minus": { + "prefix": "svg.material.office_building_minus", + "description": "SVG material - office_building_minus", + "body": [ + "{% svg material office_building_minus %}" + ] + }, + "office_building_minus_outline": { + "prefix": "svg.material.office_building_minus_outline", + "description": "SVG material - office_building_minus_outline", + "body": [ + "{% svg material office_building_minus_outline %}" + ] + }, + "office_building_outline": { + "prefix": "svg.material.office_building_outline", + "description": "SVG material - office_building_outline", + "body": [ + "{% svg material office_building_outline %}" + ] + }, + "office_building_plus": { + "prefix": "svg.material.office_building_plus", + "description": "SVG material - office_building_plus", + "body": [ + "{% svg material office_building_plus %}" + ] + }, + "office_building_plus_outline": { + "prefix": "svg.material.office_building_plus_outline", + "description": "SVG material - office_building_plus_outline", + "body": [ + "{% svg material office_building_plus_outline %}" + ] + }, + "office_building_remove": { + "prefix": "svg.material.office_building_remove", + "description": "SVG material - office_building_remove", + "body": [ + "{% svg material office_building_remove %}" + ] + }, + "office_building_remove_outline": { + "prefix": "svg.material.office_building_remove_outline", + "description": "SVG material - office_building_remove_outline", + "body": [ + "{% svg material office_building_remove_outline %}" + ] + }, + "oil": { + "prefix": "svg.material.oil", + "description": "SVG material - oil", + "body": [ + "{% svg material oil %}" + ] + }, + "oil_lamp": { + "prefix": "svg.material.oil_lamp", + "description": "SVG material - oil_lamp", + "body": [ + "{% svg material oil_lamp %}" + ] + }, + "oil_level": { + "prefix": "svg.material.oil_level", + "description": "SVG material - oil_level", + "body": [ + "{% svg material oil_level %}" + ] + }, + "oil_temperature": { + "prefix": "svg.material.oil_temperature", + "description": "SVG material - oil_temperature", + "body": [ + "{% svg material oil_temperature %}" + ] + }, + "om": { + "prefix": "svg.material.om", + "description": "SVG material - om", + "body": [ + "{% svg material om %}" + ] + }, + "omega": { + "prefix": "svg.material.omega", + "description": "SVG material - omega", + "body": [ + "{% svg material omega %}" + ] + }, + "one_up": { + "prefix": "svg.material.one_up", + "description": "SVG material - one_up", + "body": [ + "{% svg material one_up %}" + ] + }, + "onepassword": { + "prefix": "svg.material.onepassword", + "description": "SVG material - onepassword", + "body": [ + "{% svg material onepassword %}" + ] + }, + "opacity": { + "prefix": "svg.material.opacity", + "description": "SVG material - opacity", + "body": [ + "{% svg material opacity %}" + ] + }, + "open_in_app": { + "prefix": "svg.material.open_in_app", + "description": "SVG material - open_in_app", + "body": [ + "{% svg material open_in_app %}" + ] + }, + "open_in_new": { + "prefix": "svg.material.open_in_new", + "description": "SVG material - open_in_new", + "body": [ + "{% svg material open_in_new %}" + ] + }, + "open_source_initiative": { + "prefix": "svg.material.open_source_initiative", + "description": "SVG material - open_source_initiative", + "body": [ + "{% svg material open_source_initiative %}" + ] + }, + "openid": { + "prefix": "svg.material.openid", + "description": "SVG material - openid", + "body": [ + "{% svg material openid %}" + ] + }, + "opera": { + "prefix": "svg.material.opera", + "description": "SVG material - opera", + "body": [ + "{% svg material opera %}" + ] + }, + "orbit": { + "prefix": "svg.material.orbit", + "description": "SVG material - orbit", + "body": [ + "{% svg material orbit %}" + ] + }, + "orbit_variant": { + "prefix": "svg.material.orbit_variant", + "description": "SVG material - orbit_variant", + "body": [ + "{% svg material orbit_variant %}" + ] + }, + "order_alphabetical_ascending": { + "prefix": "svg.material.order_alphabetical_ascending", + "description": "SVG material - order_alphabetical_ascending", + "body": [ + "{% svg material order_alphabetical_ascending %}" + ] + }, + "order_alphabetical_descending": { + "prefix": "svg.material.order_alphabetical_descending", + "description": "SVG material - order_alphabetical_descending", + "body": [ + "{% svg material order_alphabetical_descending %}" + ] + }, + "order_bool_ascending": { + "prefix": "svg.material.order_bool_ascending", + "description": "SVG material - order_bool_ascending", + "body": [ + "{% svg material order_bool_ascending %}" + ] + }, + "order_bool_ascending_variant": { + "prefix": "svg.material.order_bool_ascending_variant", + "description": "SVG material - order_bool_ascending_variant", + "body": [ + "{% svg material order_bool_ascending_variant %}" + ] + }, + "order_bool_descending": { + "prefix": "svg.material.order_bool_descending", + "description": "SVG material - order_bool_descending", + "body": [ + "{% svg material order_bool_descending %}" + ] + }, + "order_bool_descending_variant": { + "prefix": "svg.material.order_bool_descending_variant", + "description": "SVG material - order_bool_descending_variant", + "body": [ + "{% svg material order_bool_descending_variant %}" + ] + }, + "order_numeric_ascending": { + "prefix": "svg.material.order_numeric_ascending", + "description": "SVG material - order_numeric_ascending", + "body": [ + "{% svg material order_numeric_ascending %}" + ] + }, + "order_numeric_descending": { + "prefix": "svg.material.order_numeric_descending", + "description": "SVG material - order_numeric_descending", + "body": [ + "{% svg material order_numeric_descending %}" + ] + }, + "origin": { + "prefix": "svg.material.origin", + "description": "SVG material - origin", + "body": [ + "{% svg material origin %}" + ] + }, + "ornament": { + "prefix": "svg.material.ornament", + "description": "SVG material - ornament", + "body": [ + "{% svg material ornament %}" + ] + }, + "ornament_variant": { + "prefix": "svg.material.ornament_variant", + "description": "SVG material - ornament_variant", + "body": [ + "{% svg material ornament_variant %}" + ] + }, + "outdoor_lamp": { + "prefix": "svg.material.outdoor_lamp", + "description": "SVG material - outdoor_lamp", + "body": [ + "{% svg material outdoor_lamp %}" + ] + }, + "overscan": { + "prefix": "svg.material.overscan", + "description": "SVG material - overscan", + "body": [ + "{% svg material overscan %}" + ] + }, + "owl": { + "prefix": "svg.material.owl", + "description": "SVG material - owl", + "body": [ + "{% svg material owl %}" + ] + }, + "pac_man": { + "prefix": "svg.material.pac_man", + "description": "SVG material - pac_man", + "body": [ + "{% svg material pac_man %}" + ] + }, + "package": { + "prefix": "svg.material.package", + "description": "SVG material - package", + "body": [ + "{% svg material package %}" + ] + }, + "package_check": { + "prefix": "svg.material.package_check", + "description": "SVG material - package_check", + "body": [ + "{% svg material package_check %}" + ] + }, + "package_down": { + "prefix": "svg.material.package_down", + "description": "SVG material - package_down", + "body": [ + "{% svg material package_down %}" + ] + }, + "package_up": { + "prefix": "svg.material.package_up", + "description": "SVG material - package_up", + "body": [ + "{% svg material package_up %}" + ] + }, + "package_variant": { + "prefix": "svg.material.package_variant", + "description": "SVG material - package_variant", + "body": [ + "{% svg material package_variant %}" + ] + }, + "package_variant_closed": { + "prefix": "svg.material.package_variant_closed", + "description": "SVG material - package_variant_closed", + "body": [ + "{% svg material package_variant_closed %}" + ] + }, + "package_variant_closed_check": { + "prefix": "svg.material.package_variant_closed_check", + "description": "SVG material - package_variant_closed_check", + "body": [ + "{% svg material package_variant_closed_check %}" + ] + }, + "package_variant_closed_minus": { + "prefix": "svg.material.package_variant_closed_minus", + "description": "SVG material - package_variant_closed_minus", + "body": [ + "{% svg material package_variant_closed_minus %}" + ] + }, + "package_variant_closed_plus": { + "prefix": "svg.material.package_variant_closed_plus", + "description": "SVG material - package_variant_closed_plus", + "body": [ + "{% svg material package_variant_closed_plus %}" + ] + }, + "package_variant_closed_remove": { + "prefix": "svg.material.package_variant_closed_remove", + "description": "SVG material - package_variant_closed_remove", + "body": [ + "{% svg material package_variant_closed_remove %}" + ] + }, + "package_variant_minus": { + "prefix": "svg.material.package_variant_minus", + "description": "SVG material - package_variant_minus", + "body": [ + "{% svg material package_variant_minus %}" + ] + }, + "package_variant_plus": { + "prefix": "svg.material.package_variant_plus", + "description": "SVG material - package_variant_plus", + "body": [ + "{% svg material package_variant_plus %}" + ] + }, + "package_variant_remove": { + "prefix": "svg.material.package_variant_remove", + "description": "SVG material - package_variant_remove", + "body": [ + "{% svg material package_variant_remove %}" + ] + }, + "page_first": { + "prefix": "svg.material.page_first", + "description": "SVG material - page_first", + "body": [ + "{% svg material page_first %}" + ] + }, + "page_last": { + "prefix": "svg.material.page_last", + "description": "SVG material - page_last", + "body": [ + "{% svg material page_last %}" + ] + }, + "page_layout_body": { + "prefix": "svg.material.page_layout_body", + "description": "SVG material - page_layout_body", + "body": [ + "{% svg material page_layout_body %}" + ] + }, + "page_layout_footer": { + "prefix": "svg.material.page_layout_footer", + "description": "SVG material - page_layout_footer", + "body": [ + "{% svg material page_layout_footer %}" + ] + }, + "page_layout_header": { + "prefix": "svg.material.page_layout_header", + "description": "SVG material - page_layout_header", + "body": [ + "{% svg material page_layout_header %}" + ] + }, + "page_layout_header_footer": { + "prefix": "svg.material.page_layout_header_footer", + "description": "SVG material - page_layout_header_footer", + "body": [ + "{% svg material page_layout_header_footer %}" + ] + }, + "page_layout_sidebar_left": { + "prefix": "svg.material.page_layout_sidebar_left", + "description": "SVG material - page_layout_sidebar_left", + "body": [ + "{% svg material page_layout_sidebar_left %}" + ] + }, + "page_layout_sidebar_right": { + "prefix": "svg.material.page_layout_sidebar_right", + "description": "SVG material - page_layout_sidebar_right", + "body": [ + "{% svg material page_layout_sidebar_right %}" + ] + }, + "page_next": { + "prefix": "svg.material.page_next", + "description": "SVG material - page_next", + "body": [ + "{% svg material page_next %}" + ] + }, + "page_next_outline": { + "prefix": "svg.material.page_next_outline", + "description": "SVG material - page_next_outline", + "body": [ + "{% svg material page_next_outline %}" + ] + }, + "page_previous": { + "prefix": "svg.material.page_previous", + "description": "SVG material - page_previous", + "body": [ + "{% svg material page_previous %}" + ] + }, + "page_previous_outline": { + "prefix": "svg.material.page_previous_outline", + "description": "SVG material - page_previous_outline", + "body": [ + "{% svg material page_previous_outline %}" + ] + }, + "pail": { + "prefix": "svg.material.pail", + "description": "SVG material - pail", + "body": [ + "{% svg material pail %}" + ] + }, + "pail_minus": { + "prefix": "svg.material.pail_minus", + "description": "SVG material - pail_minus", + "body": [ + "{% svg material pail_minus %}" + ] + }, + "pail_minus_outline": { + "prefix": "svg.material.pail_minus_outline", + "description": "SVG material - pail_minus_outline", + "body": [ + "{% svg material pail_minus_outline %}" + ] + }, + "pail_off": { + "prefix": "svg.material.pail_off", + "description": "SVG material - pail_off", + "body": [ + "{% svg material pail_off %}" + ] + }, + "pail_off_outline": { + "prefix": "svg.material.pail_off_outline", + "description": "SVG material - pail_off_outline", + "body": [ + "{% svg material pail_off_outline %}" + ] + }, + "pail_outline": { + "prefix": "svg.material.pail_outline", + "description": "SVG material - pail_outline", + "body": [ + "{% svg material pail_outline %}" + ] + }, + "pail_plus": { + "prefix": "svg.material.pail_plus", + "description": "SVG material - pail_plus", + "body": [ + "{% svg material pail_plus %}" + ] + }, + "pail_plus_outline": { + "prefix": "svg.material.pail_plus_outline", + "description": "SVG material - pail_plus_outline", + "body": [ + "{% svg material pail_plus_outline %}" + ] + }, + "pail_remove": { + "prefix": "svg.material.pail_remove", + "description": "SVG material - pail_remove", + "body": [ + "{% svg material pail_remove %}" + ] + }, + "pail_remove_outline": { + "prefix": "svg.material.pail_remove_outline", + "description": "SVG material - pail_remove_outline", + "body": [ + "{% svg material pail_remove_outline %}" + ] + }, + "palette": { + "prefix": "svg.material.palette", + "description": "SVG material - palette", + "body": [ + "{% svg material palette %}" + ] + }, + "palette_advanced": { + "prefix": "svg.material.palette_advanced", + "description": "SVG material - palette_advanced", + "body": [ + "{% svg material palette_advanced %}" + ] + }, + "palette_outline": { + "prefix": "svg.material.palette_outline", + "description": "SVG material - palette_outline", + "body": [ + "{% svg material palette_outline %}" + ] + }, + "palette_swatch": { + "prefix": "svg.material.palette_swatch", + "description": "SVG material - palette_swatch", + "body": [ + "{% svg material palette_swatch %}" + ] + }, + "palette_swatch_outline": { + "prefix": "svg.material.palette_swatch_outline", + "description": "SVG material - palette_swatch_outline", + "body": [ + "{% svg material palette_swatch_outline %}" + ] + }, + "palette_swatch_variant": { + "prefix": "svg.material.palette_swatch_variant", + "description": "SVG material - palette_swatch_variant", + "body": [ + "{% svg material palette_swatch_variant %}" + ] + }, + "palm_tree": { + "prefix": "svg.material.palm_tree", + "description": "SVG material - palm_tree", + "body": [ + "{% svg material palm_tree %}" + ] + }, + "pan": { + "prefix": "svg.material.pan", + "description": "SVG material - pan", + "body": [ + "{% svg material pan %}" + ] + }, + "pan_bottom_left": { + "prefix": "svg.material.pan_bottom_left", + "description": "SVG material - pan_bottom_left", + "body": [ + "{% svg material pan_bottom_left %}" + ] + }, + "pan_bottom_right": { + "prefix": "svg.material.pan_bottom_right", + "description": "SVG material - pan_bottom_right", + "body": [ + "{% svg material pan_bottom_right %}" + ] + }, + "pan_down": { + "prefix": "svg.material.pan_down", + "description": "SVG material - pan_down", + "body": [ + "{% svg material pan_down %}" + ] + }, + "pan_horizontal": { + "prefix": "svg.material.pan_horizontal", + "description": "SVG material - pan_horizontal", + "body": [ + "{% svg material pan_horizontal %}" + ] + }, + "pan_left": { + "prefix": "svg.material.pan_left", + "description": "SVG material - pan_left", + "body": [ + "{% svg material pan_left %}" + ] + }, + "pan_right": { + "prefix": "svg.material.pan_right", + "description": "SVG material - pan_right", + "body": [ + "{% svg material pan_right %}" + ] + }, + "pan_top_left": { + "prefix": "svg.material.pan_top_left", + "description": "SVG material - pan_top_left", + "body": [ + "{% svg material pan_top_left %}" + ] + }, + "pan_top_right": { + "prefix": "svg.material.pan_top_right", + "description": "SVG material - pan_top_right", + "body": [ + "{% svg material pan_top_right %}" + ] + }, + "pan_up": { + "prefix": "svg.material.pan_up", + "description": "SVG material - pan_up", + "body": [ + "{% svg material pan_up %}" + ] + }, + "pan_vertical": { + "prefix": "svg.material.pan_vertical", + "description": "SVG material - pan_vertical", + "body": [ + "{% svg material pan_vertical %}" + ] + }, + "panda": { + "prefix": "svg.material.panda", + "description": "SVG material - panda", + "body": [ + "{% svg material panda %}" + ] + }, + "pandora": { + "prefix": "svg.material.pandora", + "description": "SVG material - pandora", + "body": [ + "{% svg material pandora %}" + ] + }, + "panorama": { + "prefix": "svg.material.panorama", + "description": "SVG material - panorama", + "body": [ + "{% svg material panorama %}" + ] + }, + "panorama_fisheye": { + "prefix": "svg.material.panorama_fisheye", + "description": "SVG material - panorama_fisheye", + "body": [ + "{% svg material panorama_fisheye %}" + ] + }, + "panorama_horizontal": { + "prefix": "svg.material.panorama_horizontal", + "description": "SVG material - panorama_horizontal", + "body": [ + "{% svg material panorama_horizontal %}" + ] + }, + "panorama_horizontal_outline": { + "prefix": "svg.material.panorama_horizontal_outline", + "description": "SVG material - panorama_horizontal_outline", + "body": [ + "{% svg material panorama_horizontal_outline %}" + ] + }, + "panorama_outline": { + "prefix": "svg.material.panorama_outline", + "description": "SVG material - panorama_outline", + "body": [ + "{% svg material panorama_outline %}" + ] + }, + "panorama_sphere": { + "prefix": "svg.material.panorama_sphere", + "description": "SVG material - panorama_sphere", + "body": [ + "{% svg material panorama_sphere %}" + ] + }, + "panorama_sphere_outline": { + "prefix": "svg.material.panorama_sphere_outline", + "description": "SVG material - panorama_sphere_outline", + "body": [ + "{% svg material panorama_sphere_outline %}" + ] + }, + "panorama_variant": { + "prefix": "svg.material.panorama_variant", + "description": "SVG material - panorama_variant", + "body": [ + "{% svg material panorama_variant %}" + ] + }, + "panorama_variant_outline": { + "prefix": "svg.material.panorama_variant_outline", + "description": "SVG material - panorama_variant_outline", + "body": [ + "{% svg material panorama_variant_outline %}" + ] + }, + "panorama_vertical": { + "prefix": "svg.material.panorama_vertical", + "description": "SVG material - panorama_vertical", + "body": [ + "{% svg material panorama_vertical %}" + ] + }, + "panorama_vertical_outline": { + "prefix": "svg.material.panorama_vertical_outline", + "description": "SVG material - panorama_vertical_outline", + "body": [ + "{% svg material panorama_vertical_outline %}" + ] + }, + "panorama_wide_angle": { + "prefix": "svg.material.panorama_wide_angle", + "description": "SVG material - panorama_wide_angle", + "body": [ + "{% svg material panorama_wide_angle %}" + ] + }, + "panorama_wide_angle_outline": { + "prefix": "svg.material.panorama_wide_angle_outline", + "description": "SVG material - panorama_wide_angle_outline", + "body": [ + "{% svg material panorama_wide_angle_outline %}" + ] + }, + "paper_cut_vertical": { + "prefix": "svg.material.paper_cut_vertical", + "description": "SVG material - paper_cut_vertical", + "body": [ + "{% svg material paper_cut_vertical %}" + ] + }, + "paper_roll": { + "prefix": "svg.material.paper_roll", + "description": "SVG material - paper_roll", + "body": [ + "{% svg material paper_roll %}" + ] + }, + "paper_roll_outline": { + "prefix": "svg.material.paper_roll_outline", + "description": "SVG material - paper_roll_outline", + "body": [ + "{% svg material paper_roll_outline %}" + ] + }, + "paperclip": { + "prefix": "svg.material.paperclip", + "description": "SVG material - paperclip", + "body": [ + "{% svg material paperclip %}" + ] + }, + "paperclip_check": { + "prefix": "svg.material.paperclip_check", + "description": "SVG material - paperclip_check", + "body": [ + "{% svg material paperclip_check %}" + ] + }, + "paperclip_lock": { + "prefix": "svg.material.paperclip_lock", + "description": "SVG material - paperclip_lock", + "body": [ + "{% svg material paperclip_lock %}" + ] + }, + "paperclip_minus": { + "prefix": "svg.material.paperclip_minus", + "description": "SVG material - paperclip_minus", + "body": [ + "{% svg material paperclip_minus %}" + ] + }, + "paperclip_off": { + "prefix": "svg.material.paperclip_off", + "description": "SVG material - paperclip_off", + "body": [ + "{% svg material paperclip_off %}" + ] + }, + "paperclip_plus": { + "prefix": "svg.material.paperclip_plus", + "description": "SVG material - paperclip_plus", + "body": [ + "{% svg material paperclip_plus %}" + ] + }, + "paperclip_remove": { + "prefix": "svg.material.paperclip_remove", + "description": "SVG material - paperclip_remove", + "body": [ + "{% svg material paperclip_remove %}" + ] + }, + "parachute": { + "prefix": "svg.material.parachute", + "description": "SVG material - parachute", + "body": [ + "{% svg material parachute %}" + ] + }, + "parachute_outline": { + "prefix": "svg.material.parachute_outline", + "description": "SVG material - parachute_outline", + "body": [ + "{% svg material parachute_outline %}" + ] + }, + "paragliding": { + "prefix": "svg.material.paragliding", + "description": "SVG material - paragliding", + "body": [ + "{% svg material paragliding %}" + ] + }, + "parking": { + "prefix": "svg.material.parking", + "description": "SVG material - parking", + "body": [ + "{% svg material parking %}" + ] + }, + "party_popper": { + "prefix": "svg.material.party_popper", + "description": "SVG material - party_popper", + "body": [ + "{% svg material party_popper %}" + ] + }, + "passport": { + "prefix": "svg.material.passport", + "description": "SVG material - passport", + "body": [ + "{% svg material passport %}" + ] + }, + "passport_alert": { + "prefix": "svg.material.passport_alert", + "description": "SVG material - passport_alert", + "body": [ + "{% svg material passport_alert %}" + ] + }, + "passport_biometric": { + "prefix": "svg.material.passport_biometric", + "description": "SVG material - passport_biometric", + "body": [ + "{% svg material passport_biometric %}" + ] + }, + "passport_cancel": { + "prefix": "svg.material.passport_cancel", + "description": "SVG material - passport_cancel", + "body": [ + "{% svg material passport_cancel %}" + ] + }, + "passport_check": { + "prefix": "svg.material.passport_check", + "description": "SVG material - passport_check", + "body": [ + "{% svg material passport_check %}" + ] + }, + "passport_minus": { + "prefix": "svg.material.passport_minus", + "description": "SVG material - passport_minus", + "body": [ + "{% svg material passport_minus %}" + ] + }, + "passport_plus": { + "prefix": "svg.material.passport_plus", + "description": "SVG material - passport_plus", + "body": [ + "{% svg material passport_plus %}" + ] + }, + "passport_remove": { + "prefix": "svg.material.passport_remove", + "description": "SVG material - passport_remove", + "body": [ + "{% svg material passport_remove %}" + ] + }, + "pasta": { + "prefix": "svg.material.pasta", + "description": "SVG material - pasta", + "body": [ + "{% svg material pasta %}" + ] + }, + "patio_heater": { + "prefix": "svg.material.patio_heater", + "description": "SVG material - patio_heater", + "body": [ + "{% svg material patio_heater %}" + ] + }, + "patreon": { + "prefix": "svg.material.patreon", + "description": "SVG material - patreon", + "body": [ + "{% svg material patreon %}" + ] + }, + "pause": { + "prefix": "svg.material.pause", + "description": "SVG material - pause", + "body": [ + "{% svg material pause %}" + ] + }, + "pause_box": { + "prefix": "svg.material.pause_box", + "description": "SVG material - pause_box", + "body": [ + "{% svg material pause_box %}" + ] + }, + "pause_box_outline": { + "prefix": "svg.material.pause_box_outline", + "description": "SVG material - pause_box_outline", + "body": [ + "{% svg material pause_box_outline %}" + ] + }, + "pause_circle": { + "prefix": "svg.material.pause_circle", + "description": "SVG material - pause_circle", + "body": [ + "{% svg material pause_circle %}" + ] + }, + "pause_circle_outline": { + "prefix": "svg.material.pause_circle_outline", + "description": "SVG material - pause_circle_outline", + "body": [ + "{% svg material pause_circle_outline %}" + ] + }, + "pause_octagon": { + "prefix": "svg.material.pause_octagon", + "description": "SVG material - pause_octagon", + "body": [ + "{% svg material pause_octagon %}" + ] + }, + "pause_octagon_outline": { + "prefix": "svg.material.pause_octagon_outline", + "description": "SVG material - pause_octagon_outline", + "body": [ + "{% svg material pause_octagon_outline %}" + ] + }, + "paw": { + "prefix": "svg.material.paw", + "description": "SVG material - paw", + "body": [ + "{% svg material paw %}" + ] + }, + "paw_off": { + "prefix": "svg.material.paw_off", + "description": "SVG material - paw_off", + "body": [ + "{% svg material paw_off %}" + ] + }, + "paw_off_outline": { + "prefix": "svg.material.paw_off_outline", + "description": "SVG material - paw_off_outline", + "body": [ + "{% svg material paw_off_outline %}" + ] + }, + "paw_outline": { + "prefix": "svg.material.paw_outline", + "description": "SVG material - paw_outline", + "body": [ + "{% svg material paw_outline %}" + ] + }, + "peace": { + "prefix": "svg.material.peace", + "description": "SVG material - peace", + "body": [ + "{% svg material peace %}" + ] + }, + "peanut": { + "prefix": "svg.material.peanut", + "description": "SVG material - peanut", + "body": [ + "{% svg material peanut %}" + ] + }, + "peanut_off": { + "prefix": "svg.material.peanut_off", + "description": "SVG material - peanut_off", + "body": [ + "{% svg material peanut_off %}" + ] + }, + "peanut_off_outline": { + "prefix": "svg.material.peanut_off_outline", + "description": "SVG material - peanut_off_outline", + "body": [ + "{% svg material peanut_off_outline %}" + ] + }, + "peanut_outline": { + "prefix": "svg.material.peanut_outline", + "description": "SVG material - peanut_outline", + "body": [ + "{% svg material peanut_outline %}" + ] + }, + "pen": { + "prefix": "svg.material.pen", + "description": "SVG material - pen", + "body": [ + "{% svg material pen %}" + ] + }, + "pen_lock": { + "prefix": "svg.material.pen_lock", + "description": "SVG material - pen_lock", + "body": [ + "{% svg material pen_lock %}" + ] + }, + "pen_minus": { + "prefix": "svg.material.pen_minus", + "description": "SVG material - pen_minus", + "body": [ + "{% svg material pen_minus %}" + ] + }, + "pen_off": { + "prefix": "svg.material.pen_off", + "description": "SVG material - pen_off", + "body": [ + "{% svg material pen_off %}" + ] + }, + "pen_plus": { + "prefix": "svg.material.pen_plus", + "description": "SVG material - pen_plus", + "body": [ + "{% svg material pen_plus %}" + ] + }, + "pen_remove": { + "prefix": "svg.material.pen_remove", + "description": "SVG material - pen_remove", + "body": [ + "{% svg material pen_remove %}" + ] + }, + "pencil": { + "prefix": "svg.material.pencil", + "description": "SVG material - pencil", + "body": [ + "{% svg material pencil %}" + ] + }, + "pencil_box": { + "prefix": "svg.material.pencil_box", + "description": "SVG material - pencil_box", + "body": [ + "{% svg material pencil_box %}" + ] + }, + "pencil_box_multiple": { + "prefix": "svg.material.pencil_box_multiple", + "description": "SVG material - pencil_box_multiple", + "body": [ + "{% svg material pencil_box_multiple %}" + ] + }, + "pencil_box_multiple_outline": { + "prefix": "svg.material.pencil_box_multiple_outline", + "description": "SVG material - pencil_box_multiple_outline", + "body": [ + "{% svg material pencil_box_multiple_outline %}" + ] + }, + "pencil_box_outline": { + "prefix": "svg.material.pencil_box_outline", + "description": "SVG material - pencil_box_outline", + "body": [ + "{% svg material pencil_box_outline %}" + ] + }, + "pencil_circle": { + "prefix": "svg.material.pencil_circle", + "description": "SVG material - pencil_circle", + "body": [ + "{% svg material pencil_circle %}" + ] + }, + "pencil_circle_outline": { + "prefix": "svg.material.pencil_circle_outline", + "description": "SVG material - pencil_circle_outline", + "body": [ + "{% svg material pencil_circle_outline %}" + ] + }, + "pencil_lock": { + "prefix": "svg.material.pencil_lock", + "description": "SVG material - pencil_lock", + "body": [ + "{% svg material pencil_lock %}" + ] + }, + "pencil_lock_outline": { + "prefix": "svg.material.pencil_lock_outline", + "description": "SVG material - pencil_lock_outline", + "body": [ + "{% svg material pencil_lock_outline %}" + ] + }, + "pencil_minus": { + "prefix": "svg.material.pencil_minus", + "description": "SVG material - pencil_minus", + "body": [ + "{% svg material pencil_minus %}" + ] + }, + "pencil_minus_outline": { + "prefix": "svg.material.pencil_minus_outline", + "description": "SVG material - pencil_minus_outline", + "body": [ + "{% svg material pencil_minus_outline %}" + ] + }, + "pencil_off": { + "prefix": "svg.material.pencil_off", + "description": "SVG material - pencil_off", + "body": [ + "{% svg material pencil_off %}" + ] + }, + "pencil_off_outline": { + "prefix": "svg.material.pencil_off_outline", + "description": "SVG material - pencil_off_outline", + "body": [ + "{% svg material pencil_off_outline %}" + ] + }, + "pencil_outline": { + "prefix": "svg.material.pencil_outline", + "description": "SVG material - pencil_outline", + "body": [ + "{% svg material pencil_outline %}" + ] + }, + "pencil_plus": { + "prefix": "svg.material.pencil_plus", + "description": "SVG material - pencil_plus", + "body": [ + "{% svg material pencil_plus %}" + ] + }, + "pencil_plus_outline": { + "prefix": "svg.material.pencil_plus_outline", + "description": "SVG material - pencil_plus_outline", + "body": [ + "{% svg material pencil_plus_outline %}" + ] + }, + "pencil_remove": { + "prefix": "svg.material.pencil_remove", + "description": "SVG material - pencil_remove", + "body": [ + "{% svg material pencil_remove %}" + ] + }, + "pencil_remove_outline": { + "prefix": "svg.material.pencil_remove_outline", + "description": "SVG material - pencil_remove_outline", + "body": [ + "{% svg material pencil_remove_outline %}" + ] + }, + "pencil_ruler": { + "prefix": "svg.material.pencil_ruler", + "description": "SVG material - pencil_ruler", + "body": [ + "{% svg material pencil_ruler %}" + ] + }, + "pencil_ruler_outline": { + "prefix": "svg.material.pencil_ruler_outline", + "description": "SVG material - pencil_ruler_outline", + "body": [ + "{% svg material pencil_ruler_outline %}" + ] + }, + "penguin": { + "prefix": "svg.material.penguin", + "description": "SVG material - penguin", + "body": [ + "{% svg material penguin %}" + ] + }, + "pentagon": { + "prefix": "svg.material.pentagon", + "description": "SVG material - pentagon", + "body": [ + "{% svg material pentagon %}" + ] + }, + "pentagon_outline": { + "prefix": "svg.material.pentagon_outline", + "description": "SVG material - pentagon_outline", + "body": [ + "{% svg material pentagon_outline %}" + ] + }, + "pentagram": { + "prefix": "svg.material.pentagram", + "description": "SVG material - pentagram", + "body": [ + "{% svg material pentagram %}" + ] + }, + "percent": { + "prefix": "svg.material.percent", + "description": "SVG material - percent", + "body": [ + "{% svg material percent %}" + ] + }, + "percent_box": { + "prefix": "svg.material.percent_box", + "description": "SVG material - percent_box", + "body": [ + "{% svg material percent_box %}" + ] + }, + "percent_box_outline": { + "prefix": "svg.material.percent_box_outline", + "description": "SVG material - percent_box_outline", + "body": [ + "{% svg material percent_box_outline %}" + ] + }, + "percent_circle": { + "prefix": "svg.material.percent_circle", + "description": "SVG material - percent_circle", + "body": [ + "{% svg material percent_circle %}" + ] + }, + "percent_circle_outline": { + "prefix": "svg.material.percent_circle_outline", + "description": "SVG material - percent_circle_outline", + "body": [ + "{% svg material percent_circle_outline %}" + ] + }, + "percent_outline": { + "prefix": "svg.material.percent_outline", + "description": "SVG material - percent_outline", + "body": [ + "{% svg material percent_outline %}" + ] + }, + "periodic_table": { + "prefix": "svg.material.periodic_table", + "description": "SVG material - periodic_table", + "body": [ + "{% svg material periodic_table %}" + ] + }, + "perspective_less": { + "prefix": "svg.material.perspective_less", + "description": "SVG material - perspective_less", + "body": [ + "{% svg material perspective_less %}" + ] + }, + "perspective_more": { + "prefix": "svg.material.perspective_more", + "description": "SVG material - perspective_more", + "body": [ + "{% svg material perspective_more %}" + ] + }, + "ph": { + "prefix": "svg.material.ph", + "description": "SVG material - ph", + "body": [ + "{% svg material ph %}" + ] + }, + "phone": { + "prefix": "svg.material.phone", + "description": "SVG material - phone", + "body": [ + "{% svg material phone %}" + ] + }, + "phone_alert": { + "prefix": "svg.material.phone_alert", + "description": "SVG material - phone_alert", + "body": [ + "{% svg material phone_alert %}" + ] + }, + "phone_alert_outline": { + "prefix": "svg.material.phone_alert_outline", + "description": "SVG material - phone_alert_outline", + "body": [ + "{% svg material phone_alert_outline %}" + ] + }, + "phone_bluetooth": { + "prefix": "svg.material.phone_bluetooth", + "description": "SVG material - phone_bluetooth", + "body": [ + "{% svg material phone_bluetooth %}" + ] + }, + "phone_bluetooth_outline": { + "prefix": "svg.material.phone_bluetooth_outline", + "description": "SVG material - phone_bluetooth_outline", + "body": [ + "{% svg material phone_bluetooth_outline %}" + ] + }, + "phone_cancel": { + "prefix": "svg.material.phone_cancel", + "description": "SVG material - phone_cancel", + "body": [ + "{% svg material phone_cancel %}" + ] + }, + "phone_cancel_outline": { + "prefix": "svg.material.phone_cancel_outline", + "description": "SVG material - phone_cancel_outline", + "body": [ + "{% svg material phone_cancel_outline %}" + ] + }, + "phone_check": { + "prefix": "svg.material.phone_check", + "description": "SVG material - phone_check", + "body": [ + "{% svg material phone_check %}" + ] + }, + "phone_check_outline": { + "prefix": "svg.material.phone_check_outline", + "description": "SVG material - phone_check_outline", + "body": [ + "{% svg material phone_check_outline %}" + ] + }, + "phone_classic": { + "prefix": "svg.material.phone_classic", + "description": "SVG material - phone_classic", + "body": [ + "{% svg material phone_classic %}" + ] + }, + "phone_classic_off": { + "prefix": "svg.material.phone_classic_off", + "description": "SVG material - phone_classic_off", + "body": [ + "{% svg material phone_classic_off %}" + ] + }, + "phone_clock": { + "prefix": "svg.material.phone_clock", + "description": "SVG material - phone_clock", + "body": [ + "{% svg material phone_clock %}" + ] + }, + "phone_dial": { + "prefix": "svg.material.phone_dial", + "description": "SVG material - phone_dial", + "body": [ + "{% svg material phone_dial %}" + ] + }, + "phone_dial_outline": { + "prefix": "svg.material.phone_dial_outline", + "description": "SVG material - phone_dial_outline", + "body": [ + "{% svg material phone_dial_outline %}" + ] + }, + "phone_forward": { + "prefix": "svg.material.phone_forward", + "description": "SVG material - phone_forward", + "body": [ + "{% svg material phone_forward %}" + ] + }, + "phone_forward_outline": { + "prefix": "svg.material.phone_forward_outline", + "description": "SVG material - phone_forward_outline", + "body": [ + "{% svg material phone_forward_outline %}" + ] + }, + "phone_hangup": { + "prefix": "svg.material.phone_hangup", + "description": "SVG material - phone_hangup", + "body": [ + "{% svg material phone_hangup %}" + ] + }, + "phone_hangup_outline": { + "prefix": "svg.material.phone_hangup_outline", + "description": "SVG material - phone_hangup_outline", + "body": [ + "{% svg material phone_hangup_outline %}" + ] + }, + "phone_in_talk": { + "prefix": "svg.material.phone_in_talk", + "description": "SVG material - phone_in_talk", + "body": [ + "{% svg material phone_in_talk %}" + ] + }, + "phone_in_talk_outline": { + "prefix": "svg.material.phone_in_talk_outline", + "description": "SVG material - phone_in_talk_outline", + "body": [ + "{% svg material phone_in_talk_outline %}" + ] + }, + "phone_incoming": { + "prefix": "svg.material.phone_incoming", + "description": "SVG material - phone_incoming", + "body": [ + "{% svg material phone_incoming %}" + ] + }, + "phone_incoming_outgoing": { + "prefix": "svg.material.phone_incoming_outgoing", + "description": "SVG material - phone_incoming_outgoing", + "body": [ + "{% svg material phone_incoming_outgoing %}" + ] + }, + "phone_incoming_outgoing_outline": { + "prefix": "svg.material.phone_incoming_outgoing_outline", + "description": "SVG material - phone_incoming_outgoing_outline", + "body": [ + "{% svg material phone_incoming_outgoing_outline %}" + ] + }, + "phone_incoming_outline": { + "prefix": "svg.material.phone_incoming_outline", + "description": "SVG material - phone_incoming_outline", + "body": [ + "{% svg material phone_incoming_outline %}" + ] + }, + "phone_lock": { + "prefix": "svg.material.phone_lock", + "description": "SVG material - phone_lock", + "body": [ + "{% svg material phone_lock %}" + ] + }, + "phone_lock_outline": { + "prefix": "svg.material.phone_lock_outline", + "description": "SVG material - phone_lock_outline", + "body": [ + "{% svg material phone_lock_outline %}" + ] + }, + "phone_log": { + "prefix": "svg.material.phone_log", + "description": "SVG material - phone_log", + "body": [ + "{% svg material phone_log %}" + ] + }, + "phone_log_outline": { + "prefix": "svg.material.phone_log_outline", + "description": "SVG material - phone_log_outline", + "body": [ + "{% svg material phone_log_outline %}" + ] + }, + "phone_message": { + "prefix": "svg.material.phone_message", + "description": "SVG material - phone_message", + "body": [ + "{% svg material phone_message %}" + ] + }, + "phone_message_outline": { + "prefix": "svg.material.phone_message_outline", + "description": "SVG material - phone_message_outline", + "body": [ + "{% svg material phone_message_outline %}" + ] + }, + "phone_minus": { + "prefix": "svg.material.phone_minus", + "description": "SVG material - phone_minus", + "body": [ + "{% svg material phone_minus %}" + ] + }, + "phone_minus_outline": { + "prefix": "svg.material.phone_minus_outline", + "description": "SVG material - phone_minus_outline", + "body": [ + "{% svg material phone_minus_outline %}" + ] + }, + "phone_missed": { + "prefix": "svg.material.phone_missed", + "description": "SVG material - phone_missed", + "body": [ + "{% svg material phone_missed %}" + ] + }, + "phone_missed_outline": { + "prefix": "svg.material.phone_missed_outline", + "description": "SVG material - phone_missed_outline", + "body": [ + "{% svg material phone_missed_outline %}" + ] + }, + "phone_off": { + "prefix": "svg.material.phone_off", + "description": "SVG material - phone_off", + "body": [ + "{% svg material phone_off %}" + ] + }, + "phone_off_outline": { + "prefix": "svg.material.phone_off_outline", + "description": "SVG material - phone_off_outline", + "body": [ + "{% svg material phone_off_outline %}" + ] + }, + "phone_outgoing": { + "prefix": "svg.material.phone_outgoing", + "description": "SVG material - phone_outgoing", + "body": [ + "{% svg material phone_outgoing %}" + ] + }, + "phone_outgoing_outline": { + "prefix": "svg.material.phone_outgoing_outline", + "description": "SVG material - phone_outgoing_outline", + "body": [ + "{% svg material phone_outgoing_outline %}" + ] + }, + "phone_outline": { + "prefix": "svg.material.phone_outline", + "description": "SVG material - phone_outline", + "body": [ + "{% svg material phone_outline %}" + ] + }, + "phone_paused": { + "prefix": "svg.material.phone_paused", + "description": "SVG material - phone_paused", + "body": [ + "{% svg material phone_paused %}" + ] + }, + "phone_paused_outline": { + "prefix": "svg.material.phone_paused_outline", + "description": "SVG material - phone_paused_outline", + "body": [ + "{% svg material phone_paused_outline %}" + ] + }, + "phone_plus": { + "prefix": "svg.material.phone_plus", + "description": "SVG material - phone_plus", + "body": [ + "{% svg material phone_plus %}" + ] + }, + "phone_plus_outline": { + "prefix": "svg.material.phone_plus_outline", + "description": "SVG material - phone_plus_outline", + "body": [ + "{% svg material phone_plus_outline %}" + ] + }, + "phone_refresh": { + "prefix": "svg.material.phone_refresh", + "description": "SVG material - phone_refresh", + "body": [ + "{% svg material phone_refresh %}" + ] + }, + "phone_refresh_outline": { + "prefix": "svg.material.phone_refresh_outline", + "description": "SVG material - phone_refresh_outline", + "body": [ + "{% svg material phone_refresh_outline %}" + ] + }, + "phone_remove": { + "prefix": "svg.material.phone_remove", + "description": "SVG material - phone_remove", + "body": [ + "{% svg material phone_remove %}" + ] + }, + "phone_remove_outline": { + "prefix": "svg.material.phone_remove_outline", + "description": "SVG material - phone_remove_outline", + "body": [ + "{% svg material phone_remove_outline %}" + ] + }, + "phone_return": { + "prefix": "svg.material.phone_return", + "description": "SVG material - phone_return", + "body": [ + "{% svg material phone_return %}" + ] + }, + "phone_return_outline": { + "prefix": "svg.material.phone_return_outline", + "description": "SVG material - phone_return_outline", + "body": [ + "{% svg material phone_return_outline %}" + ] + }, + "phone_ring": { + "prefix": "svg.material.phone_ring", + "description": "SVG material - phone_ring", + "body": [ + "{% svg material phone_ring %}" + ] + }, + "phone_ring_outline": { + "prefix": "svg.material.phone_ring_outline", + "description": "SVG material - phone_ring_outline", + "body": [ + "{% svg material phone_ring_outline %}" + ] + }, + "phone_rotate_landscape": { + "prefix": "svg.material.phone_rotate_landscape", + "description": "SVG material - phone_rotate_landscape", + "body": [ + "{% svg material phone_rotate_landscape %}" + ] + }, + "phone_rotate_portrait": { + "prefix": "svg.material.phone_rotate_portrait", + "description": "SVG material - phone_rotate_portrait", + "body": [ + "{% svg material phone_rotate_portrait %}" + ] + }, + "phone_settings": { + "prefix": "svg.material.phone_settings", + "description": "SVG material - phone_settings", + "body": [ + "{% svg material phone_settings %}" + ] + }, + "phone_settings_outline": { + "prefix": "svg.material.phone_settings_outline", + "description": "SVG material - phone_settings_outline", + "body": [ + "{% svg material phone_settings_outline %}" + ] + }, + "phone_sync": { + "prefix": "svg.material.phone_sync", + "description": "SVG material - phone_sync", + "body": [ + "{% svg material phone_sync %}" + ] + }, + "phone_sync_outline": { + "prefix": "svg.material.phone_sync_outline", + "description": "SVG material - phone_sync_outline", + "body": [ + "{% svg material phone_sync_outline %}" + ] + }, + "phone_voip": { + "prefix": "svg.material.phone_voip", + "description": "SVG material - phone_voip", + "body": [ + "{% svg material phone_voip %}" + ] + }, + "pi": { + "prefix": "svg.material.pi", + "description": "SVG material - pi", + "body": [ + "{% svg material pi %}" + ] + }, + "pi_box": { + "prefix": "svg.material.pi_box", + "description": "SVG material - pi_box", + "body": [ + "{% svg material pi_box %}" + ] + }, + "pi_hole": { + "prefix": "svg.material.pi_hole", + "description": "SVG material - pi_hole", + "body": [ + "{% svg material pi_hole %}" + ] + }, + "piano": { + "prefix": "svg.material.piano", + "description": "SVG material - piano", + "body": [ + "{% svg material piano %}" + ] + }, + "piano_off": { + "prefix": "svg.material.piano_off", + "description": "SVG material - piano_off", + "body": [ + "{% svg material piano_off %}" + ] + }, + "pickaxe": { + "prefix": "svg.material.pickaxe", + "description": "SVG material - pickaxe", + "body": [ + "{% svg material pickaxe %}" + ] + }, + "picture_in_picture_bottom_right": { + "prefix": "svg.material.picture_in_picture_bottom_right", + "description": "SVG material - picture_in_picture_bottom_right", + "body": [ + "{% svg material picture_in_picture_bottom_right %}" + ] + }, + "picture_in_picture_bottom_right_outline": { + "prefix": "svg.material.picture_in_picture_bottom_right_outline", + "description": "SVG material - picture_in_picture_bottom_right_outline", + "body": [ + "{% svg material picture_in_picture_bottom_right_outline %}" + ] + }, + "picture_in_picture_top_right": { + "prefix": "svg.material.picture_in_picture_top_right", + "description": "SVG material - picture_in_picture_top_right", + "body": [ + "{% svg material picture_in_picture_top_right %}" + ] + }, + "picture_in_picture_top_right_outline": { + "prefix": "svg.material.picture_in_picture_top_right_outline", + "description": "SVG material - picture_in_picture_top_right_outline", + "body": [ + "{% svg material picture_in_picture_top_right_outline %}" + ] + }, + "pier": { + "prefix": "svg.material.pier", + "description": "SVG material - pier", + "body": [ + "{% svg material pier %}" + ] + }, + "pier_crane": { + "prefix": "svg.material.pier_crane", + "description": "SVG material - pier_crane", + "body": [ + "{% svg material pier_crane %}" + ] + }, + "pig": { + "prefix": "svg.material.pig", + "description": "SVG material - pig", + "body": [ + "{% svg material pig %}" + ] + }, + "pig_variant": { + "prefix": "svg.material.pig_variant", + "description": "SVG material - pig_variant", + "body": [ + "{% svg material pig_variant %}" + ] + }, + "pig_variant_outline": { + "prefix": "svg.material.pig_variant_outline", + "description": "SVG material - pig_variant_outline", + "body": [ + "{% svg material pig_variant_outline %}" + ] + }, + "piggy_bank": { + "prefix": "svg.material.piggy_bank", + "description": "SVG material - piggy_bank", + "body": [ + "{% svg material piggy_bank %}" + ] + }, + "piggy_bank_outline": { + "prefix": "svg.material.piggy_bank_outline", + "description": "SVG material - piggy_bank_outline", + "body": [ + "{% svg material piggy_bank_outline %}" + ] + }, + "pill": { + "prefix": "svg.material.pill", + "description": "SVG material - pill", + "body": [ + "{% svg material pill %}" + ] + }, + "pill_multiple": { + "prefix": "svg.material.pill_multiple", + "description": "SVG material - pill_multiple", + "body": [ + "{% svg material pill_multiple %}" + ] + }, + "pill_off": { + "prefix": "svg.material.pill_off", + "description": "SVG material - pill_off", + "body": [ + "{% svg material pill_off %}" + ] + }, + "pillar": { + "prefix": "svg.material.pillar", + "description": "SVG material - pillar", + "body": [ + "{% svg material pillar %}" + ] + }, + "pin": { + "prefix": "svg.material.pin", + "description": "SVG material - pin", + "body": [ + "{% svg material pin %}" + ] + }, + "pin_off": { + "prefix": "svg.material.pin_off", + "description": "SVG material - pin_off", + "body": [ + "{% svg material pin_off %}" + ] + }, + "pin_off_outline": { + "prefix": "svg.material.pin_off_outline", + "description": "SVG material - pin_off_outline", + "body": [ + "{% svg material pin_off_outline %}" + ] + }, + "pin_outline": { + "prefix": "svg.material.pin_outline", + "description": "SVG material - pin_outline", + "body": [ + "{% svg material pin_outline %}" + ] + }, + "pine_tree": { + "prefix": "svg.material.pine_tree", + "description": "SVG material - pine_tree", + "body": [ + "{% svg material pine_tree %}" + ] + }, + "pine_tree_box": { + "prefix": "svg.material.pine_tree_box", + "description": "SVG material - pine_tree_box", + "body": [ + "{% svg material pine_tree_box %}" + ] + }, + "pine_tree_fire": { + "prefix": "svg.material.pine_tree_fire", + "description": "SVG material - pine_tree_fire", + "body": [ + "{% svg material pine_tree_fire %}" + ] + }, + "pine_tree_variant": { + "prefix": "svg.material.pine_tree_variant", + "description": "SVG material - pine_tree_variant", + "body": [ + "{% svg material pine_tree_variant %}" + ] + }, + "pine_tree_variant_outline": { + "prefix": "svg.material.pine_tree_variant_outline", + "description": "SVG material - pine_tree_variant_outline", + "body": [ + "{% svg material pine_tree_variant_outline %}" + ] + }, + "pinterest": { + "prefix": "svg.material.pinterest", + "description": "SVG material - pinterest", + "body": [ + "{% svg material pinterest %}" + ] + }, + "pinwheel": { + "prefix": "svg.material.pinwheel", + "description": "SVG material - pinwheel", + "body": [ + "{% svg material pinwheel %}" + ] + }, + "pinwheel_outline": { + "prefix": "svg.material.pinwheel_outline", + "description": "SVG material - pinwheel_outline", + "body": [ + "{% svg material pinwheel_outline %}" + ] + }, + "pipe": { + "prefix": "svg.material.pipe", + "description": "SVG material - pipe", + "body": [ + "{% svg material pipe %}" + ] + }, + "pipe_disconnected": { + "prefix": "svg.material.pipe_disconnected", + "description": "SVG material - pipe_disconnected", + "body": [ + "{% svg material pipe_disconnected %}" + ] + }, + "pipe_leak": { + "prefix": "svg.material.pipe_leak", + "description": "SVG material - pipe_leak", + "body": [ + "{% svg material pipe_leak %}" + ] + }, + "pipe_valve": { + "prefix": "svg.material.pipe_valve", + "description": "SVG material - pipe_valve", + "body": [ + "{% svg material pipe_valve %}" + ] + }, + "pipe_wrench": { + "prefix": "svg.material.pipe_wrench", + "description": "SVG material - pipe_wrench", + "body": [ + "{% svg material pipe_wrench %}" + ] + }, + "pirate": { + "prefix": "svg.material.pirate", + "description": "SVG material - pirate", + "body": [ + "{% svg material pirate %}" + ] + }, + "pistol": { + "prefix": "svg.material.pistol", + "description": "SVG material - pistol", + "body": [ + "{% svg material pistol %}" + ] + }, + "piston": { + "prefix": "svg.material.piston", + "description": "SVG material - piston", + "body": [ + "{% svg material piston %}" + ] + }, + "pitchfork": { + "prefix": "svg.material.pitchfork", + "description": "SVG material - pitchfork", + "body": [ + "{% svg material pitchfork %}" + ] + }, + "pizza": { + "prefix": "svg.material.pizza", + "description": "SVG material - pizza", + "body": [ + "{% svg material pizza %}" + ] + }, + "plane_car": { + "prefix": "svg.material.plane_car", + "description": "SVG material - plane_car", + "body": [ + "{% svg material plane_car %}" + ] + }, + "plane_train": { + "prefix": "svg.material.plane_train", + "description": "SVG material - plane_train", + "body": [ + "{% svg material plane_train %}" + ] + }, + "play": { + "prefix": "svg.material.play", + "description": "SVG material - play", + "body": [ + "{% svg material play %}" + ] + }, + "play_box": { + "prefix": "svg.material.play_box", + "description": "SVG material - play_box", + "body": [ + "{% svg material play_box %}" + ] + }, + "play_box_edit_outline": { + "prefix": "svg.material.play_box_edit_outline", + "description": "SVG material - play_box_edit_outline", + "body": [ + "{% svg material play_box_edit_outline %}" + ] + }, + "play_box_lock": { + "prefix": "svg.material.play_box_lock", + "description": "SVG material - play_box_lock", + "body": [ + "{% svg material play_box_lock %}" + ] + }, + "play_box_lock_open": { + "prefix": "svg.material.play_box_lock_open", + "description": "SVG material - play_box_lock_open", + "body": [ + "{% svg material play_box_lock_open %}" + ] + }, + "play_box_lock_open_outline": { + "prefix": "svg.material.play_box_lock_open_outline", + "description": "SVG material - play_box_lock_open_outline", + "body": [ + "{% svg material play_box_lock_open_outline %}" + ] + }, + "play_box_lock_outline": { + "prefix": "svg.material.play_box_lock_outline", + "description": "SVG material - play_box_lock_outline", + "body": [ + "{% svg material play_box_lock_outline %}" + ] + }, + "play_box_multiple": { + "prefix": "svg.material.play_box_multiple", + "description": "SVG material - play_box_multiple", + "body": [ + "{% svg material play_box_multiple %}" + ] + }, + "play_box_multiple_outline": { + "prefix": "svg.material.play_box_multiple_outline", + "description": "SVG material - play_box_multiple_outline", + "body": [ + "{% svg material play_box_multiple_outline %}" + ] + }, + "play_box_outline": { + "prefix": "svg.material.play_box_outline", + "description": "SVG material - play_box_outline", + "body": [ + "{% svg material play_box_outline %}" + ] + }, + "play_circle": { + "prefix": "svg.material.play_circle", + "description": "SVG material - play_circle", + "body": [ + "{% svg material play_circle %}" + ] + }, + "play_circle_outline": { + "prefix": "svg.material.play_circle_outline", + "description": "SVG material - play_circle_outline", + "body": [ + "{% svg material play_circle_outline %}" + ] + }, + "play_network": { + "prefix": "svg.material.play_network", + "description": "SVG material - play_network", + "body": [ + "{% svg material play_network %}" + ] + }, + "play_network_outline": { + "prefix": "svg.material.play_network_outline", + "description": "SVG material - play_network_outline", + "body": [ + "{% svg material play_network_outline %}" + ] + }, + "play_outline": { + "prefix": "svg.material.play_outline", + "description": "SVG material - play_outline", + "body": [ + "{% svg material play_outline %}" + ] + }, + "play_pause": { + "prefix": "svg.material.play_pause", + "description": "SVG material - play_pause", + "body": [ + "{% svg material play_pause %}" + ] + }, + "play_protected_content": { + "prefix": "svg.material.play_protected_content", + "description": "SVG material - play_protected_content", + "body": [ + "{% svg material play_protected_content %}" + ] + }, + "play_speed": { + "prefix": "svg.material.play_speed", + "description": "SVG material - play_speed", + "body": [ + "{% svg material play_speed %}" + ] + }, + "playlist_check": { + "prefix": "svg.material.playlist_check", + "description": "SVG material - playlist_check", + "body": [ + "{% svg material playlist_check %}" + ] + }, + "playlist_edit": { + "prefix": "svg.material.playlist_edit", + "description": "SVG material - playlist_edit", + "body": [ + "{% svg material playlist_edit %}" + ] + }, + "playlist_minus": { + "prefix": "svg.material.playlist_minus", + "description": "SVG material - playlist_minus", + "body": [ + "{% svg material playlist_minus %}" + ] + }, + "playlist_music": { + "prefix": "svg.material.playlist_music", + "description": "SVG material - playlist_music", + "body": [ + "{% svg material playlist_music %}" + ] + }, + "playlist_music_outline": { + "prefix": "svg.material.playlist_music_outline", + "description": "SVG material - playlist_music_outline", + "body": [ + "{% svg material playlist_music_outline %}" + ] + }, + "playlist_play": { + "prefix": "svg.material.playlist_play", + "description": "SVG material - playlist_play", + "body": [ + "{% svg material playlist_play %}" + ] + }, + "playlist_plus": { + "prefix": "svg.material.playlist_plus", + "description": "SVG material - playlist_plus", + "body": [ + "{% svg material playlist_plus %}" + ] + }, + "playlist_remove": { + "prefix": "svg.material.playlist_remove", + "description": "SVG material - playlist_remove", + "body": [ + "{% svg material playlist_remove %}" + ] + }, + "playlist_star": { + "prefix": "svg.material.playlist_star", + "description": "SVG material - playlist_star", + "body": [ + "{% svg material playlist_star %}" + ] + }, + "plex": { + "prefix": "svg.material.plex", + "description": "SVG material - plex", + "body": [ + "{% svg material plex %}" + ] + }, + "pliers": { + "prefix": "svg.material.pliers", + "description": "SVG material - pliers", + "body": [ + "{% svg material pliers %}" + ] + }, + "plus": { + "prefix": "svg.material.plus", + "description": "SVG material - plus", + "body": [ + "{% svg material plus %}" + ] + }, + "plus_box": { + "prefix": "svg.material.plus_box", + "description": "SVG material - plus_box", + "body": [ + "{% svg material plus_box %}" + ] + }, + "plus_box_multiple": { + "prefix": "svg.material.plus_box_multiple", + "description": "SVG material - plus_box_multiple", + "body": [ + "{% svg material plus_box_multiple %}" + ] + }, + "plus_box_multiple_outline": { + "prefix": "svg.material.plus_box_multiple_outline", + "description": "SVG material - plus_box_multiple_outline", + "body": [ + "{% svg material plus_box_multiple_outline %}" + ] + }, + "plus_box_outline": { + "prefix": "svg.material.plus_box_outline", + "description": "SVG material - plus_box_outline", + "body": [ + "{% svg material plus_box_outline %}" + ] + }, + "plus_circle": { + "prefix": "svg.material.plus_circle", + "description": "SVG material - plus_circle", + "body": [ + "{% svg material plus_circle %}" + ] + }, + "plus_circle_multiple": { + "prefix": "svg.material.plus_circle_multiple", + "description": "SVG material - plus_circle_multiple", + "body": [ + "{% svg material plus_circle_multiple %}" + ] + }, + "plus_circle_multiple_outline": { + "prefix": "svg.material.plus_circle_multiple_outline", + "description": "SVG material - plus_circle_multiple_outline", + "body": [ + "{% svg material plus_circle_multiple_outline %}" + ] + }, + "plus_circle_outline": { + "prefix": "svg.material.plus_circle_outline", + "description": "SVG material - plus_circle_outline", + "body": [ + "{% svg material plus_circle_outline %}" + ] + }, + "plus_lock": { + "prefix": "svg.material.plus_lock", + "description": "SVG material - plus_lock", + "body": [ + "{% svg material plus_lock %}" + ] + }, + "plus_lock_open": { + "prefix": "svg.material.plus_lock_open", + "description": "SVG material - plus_lock_open", + "body": [ + "{% svg material plus_lock_open %}" + ] + }, + "plus_minus": { + "prefix": "svg.material.plus_minus", + "description": "SVG material - plus_minus", + "body": [ + "{% svg material plus_minus %}" + ] + }, + "plus_minus_box": { + "prefix": "svg.material.plus_minus_box", + "description": "SVG material - plus_minus_box", + "body": [ + "{% svg material plus_minus_box %}" + ] + }, + "plus_minus_variant": { + "prefix": "svg.material.plus_minus_variant", + "description": "SVG material - plus_minus_variant", + "body": [ + "{% svg material plus_minus_variant %}" + ] + }, + "plus_network": { + "prefix": "svg.material.plus_network", + "description": "SVG material - plus_network", + "body": [ + "{% svg material plus_network %}" + ] + }, + "plus_network_outline": { + "prefix": "svg.material.plus_network_outline", + "description": "SVG material - plus_network_outline", + "body": [ + "{% svg material plus_network_outline %}" + ] + }, + "plus_outline": { + "prefix": "svg.material.plus_outline", + "description": "SVG material - plus_outline", + "body": [ + "{% svg material plus_outline %}" + ] + }, + "plus_thick": { + "prefix": "svg.material.plus_thick", + "description": "SVG material - plus_thick", + "body": [ + "{% svg material plus_thick %}" + ] + }, + "pocket": { + "prefix": "svg.material.pocket", + "description": "SVG material - pocket", + "body": [ + "{% svg material pocket %}" + ] + }, + "podcast": { + "prefix": "svg.material.podcast", + "description": "SVG material - podcast", + "body": [ + "{% svg material podcast %}" + ] + }, + "podium": { + "prefix": "svg.material.podium", + "description": "SVG material - podium", + "body": [ + "{% svg material podium %}" + ] + }, + "podium_bronze": { + "prefix": "svg.material.podium_bronze", + "description": "SVG material - podium_bronze", + "body": [ + "{% svg material podium_bronze %}" + ] + }, + "podium_gold": { + "prefix": "svg.material.podium_gold", + "description": "SVG material - podium_gold", + "body": [ + "{% svg material podium_gold %}" + ] + }, + "podium_silver": { + "prefix": "svg.material.podium_silver", + "description": "SVG material - podium_silver", + "body": [ + "{% svg material podium_silver %}" + ] + }, + "point_of_sale": { + "prefix": "svg.material.point_of_sale", + "description": "SVG material - point_of_sale", + "body": [ + "{% svg material point_of_sale %}" + ] + }, + "pokeball": { + "prefix": "svg.material.pokeball", + "description": "SVG material - pokeball", + "body": [ + "{% svg material pokeball %}" + ] + }, + "pokemon_go": { + "prefix": "svg.material.pokemon_go", + "description": "SVG material - pokemon_go", + "body": [ + "{% svg material pokemon_go %}" + ] + }, + "poker_chip": { + "prefix": "svg.material.poker_chip", + "description": "SVG material - poker_chip", + "body": [ + "{% svg material poker_chip %}" + ] + }, + "polaroid": { + "prefix": "svg.material.polaroid", + "description": "SVG material - polaroid", + "body": [ + "{% svg material polaroid %}" + ] + }, + "police_badge": { + "prefix": "svg.material.police_badge", + "description": "SVG material - police_badge", + "body": [ + "{% svg material police_badge %}" + ] + }, + "police_badge_outline": { + "prefix": "svg.material.police_badge_outline", + "description": "SVG material - police_badge_outline", + "body": [ + "{% svg material police_badge_outline %}" + ] + }, + "police_station": { + "prefix": "svg.material.police_station", + "description": "SVG material - police_station", + "body": [ + "{% svg material police_station %}" + ] + }, + "poll": { + "prefix": "svg.material.poll", + "description": "SVG material - poll", + "body": [ + "{% svg material poll %}" + ] + }, + "polo": { + "prefix": "svg.material.polo", + "description": "SVG material - polo", + "body": [ + "{% svg material polo %}" + ] + }, + "polymer": { + "prefix": "svg.material.polymer", + "description": "SVG material - polymer", + "body": [ + "{% svg material polymer %}" + ] + }, + "pool": { + "prefix": "svg.material.pool", + "description": "SVG material - pool", + "body": [ + "{% svg material pool %}" + ] + }, + "pool_thermometer": { + "prefix": "svg.material.pool_thermometer", + "description": "SVG material - pool_thermometer", + "body": [ + "{% svg material pool_thermometer %}" + ] + }, + "popcorn": { + "prefix": "svg.material.popcorn", + "description": "SVG material - popcorn", + "body": [ + "{% svg material popcorn %}" + ] + }, + "post": { + "prefix": "svg.material.post", + "description": "SVG material - post", + "body": [ + "{% svg material post %}" + ] + }, + "post_lamp": { + "prefix": "svg.material.post_lamp", + "description": "SVG material - post_lamp", + "body": [ + "{% svg material post_lamp %}" + ] + }, + "post_outline": { + "prefix": "svg.material.post_outline", + "description": "SVG material - post_outline", + "body": [ + "{% svg material post_outline %}" + ] + }, + "postage_stamp": { + "prefix": "svg.material.postage_stamp", + "description": "SVG material - postage_stamp", + "body": [ + "{% svg material postage_stamp %}" + ] + }, + "pot": { + "prefix": "svg.material.pot", + "description": "SVG material - pot", + "body": [ + "{% svg material pot %}" + ] + }, + "pot_mix": { + "prefix": "svg.material.pot_mix", + "description": "SVG material - pot_mix", + "body": [ + "{% svg material pot_mix %}" + ] + }, + "pot_mix_outline": { + "prefix": "svg.material.pot_mix_outline", + "description": "SVG material - pot_mix_outline", + "body": [ + "{% svg material pot_mix_outline %}" + ] + }, + "pot_outline": { + "prefix": "svg.material.pot_outline", + "description": "SVG material - pot_outline", + "body": [ + "{% svg material pot_outline %}" + ] + }, + "pot_steam": { + "prefix": "svg.material.pot_steam", + "description": "SVG material - pot_steam", + "body": [ + "{% svg material pot_steam %}" + ] + }, + "pot_steam_outline": { + "prefix": "svg.material.pot_steam_outline", + "description": "SVG material - pot_steam_outline", + "body": [ + "{% svg material pot_steam_outline %}" + ] + }, + "pound": { + "prefix": "svg.material.pound", + "description": "SVG material - pound", + "body": [ + "{% svg material pound %}" + ] + }, + "pound_box": { + "prefix": "svg.material.pound_box", + "description": "SVG material - pound_box", + "body": [ + "{% svg material pound_box %}" + ] + }, + "pound_box_outline": { + "prefix": "svg.material.pound_box_outline", + "description": "SVG material - pound_box_outline", + "body": [ + "{% svg material pound_box_outline %}" + ] + }, + "power": { + "prefix": "svg.material.power", + "description": "SVG material - power", + "body": [ + "{% svg material power %}" + ] + }, + "power_cycle": { + "prefix": "svg.material.power_cycle", + "description": "SVG material - power_cycle", + "body": [ + "{% svg material power_cycle %}" + ] + }, + "power_off": { + "prefix": "svg.material.power_off", + "description": "SVG material - power_off", + "body": [ + "{% svg material power_off %}" + ] + }, + "power_on": { + "prefix": "svg.material.power_on", + "description": "SVG material - power_on", + "body": [ + "{% svg material power_on %}" + ] + }, + "power_plug": { + "prefix": "svg.material.power_plug", + "description": "SVG material - power_plug", + "body": [ + "{% svg material power_plug %}" + ] + }, + "power_plug_battery": { + "prefix": "svg.material.power_plug_battery", + "description": "SVG material - power_plug_battery", + "body": [ + "{% svg material power_plug_battery %}" + ] + }, + "power_plug_battery_outline": { + "prefix": "svg.material.power_plug_battery_outline", + "description": "SVG material - power_plug_battery_outline", + "body": [ + "{% svg material power_plug_battery_outline %}" + ] + }, + "power_plug_off": { + "prefix": "svg.material.power_plug_off", + "description": "SVG material - power_plug_off", + "body": [ + "{% svg material power_plug_off %}" + ] + }, + "power_plug_off_outline": { + "prefix": "svg.material.power_plug_off_outline", + "description": "SVG material - power_plug_off_outline", + "body": [ + "{% svg material power_plug_off_outline %}" + ] + }, + "power_plug_outline": { + "prefix": "svg.material.power_plug_outline", + "description": "SVG material - power_plug_outline", + "body": [ + "{% svg material power_plug_outline %}" + ] + }, + "power_settings": { + "prefix": "svg.material.power_settings", + "description": "SVG material - power_settings", + "body": [ + "{% svg material power_settings %}" + ] + }, + "power_sleep": { + "prefix": "svg.material.power_sleep", + "description": "SVG material - power_sleep", + "body": [ + "{% svg material power_sleep %}" + ] + }, + "power_socket": { + "prefix": "svg.material.power_socket", + "description": "SVG material - power_socket", + "body": [ + "{% svg material power_socket %}" + ] + }, + "power_socket_au": { + "prefix": "svg.material.power_socket_au", + "description": "SVG material - power_socket_au", + "body": [ + "{% svg material power_socket_au %}" + ] + }, + "power_socket_ch": { + "prefix": "svg.material.power_socket_ch", + "description": "SVG material - power_socket_ch", + "body": [ + "{% svg material power_socket_ch %}" + ] + }, + "power_socket_de": { + "prefix": "svg.material.power_socket_de", + "description": "SVG material - power_socket_de", + "body": [ + "{% svg material power_socket_de %}" + ] + }, + "power_socket_eu": { + "prefix": "svg.material.power_socket_eu", + "description": "SVG material - power_socket_eu", + "body": [ + "{% svg material power_socket_eu %}" + ] + }, + "power_socket_fr": { + "prefix": "svg.material.power_socket_fr", + "description": "SVG material - power_socket_fr", + "body": [ + "{% svg material power_socket_fr %}" + ] + }, + "power_socket_it": { + "prefix": "svg.material.power_socket_it", + "description": "SVG material - power_socket_it", + "body": [ + "{% svg material power_socket_it %}" + ] + }, + "power_socket_jp": { + "prefix": "svg.material.power_socket_jp", + "description": "SVG material - power_socket_jp", + "body": [ + "{% svg material power_socket_jp %}" + ] + }, + "power_socket_uk": { + "prefix": "svg.material.power_socket_uk", + "description": "SVG material - power_socket_uk", + "body": [ + "{% svg material power_socket_uk %}" + ] + }, + "power_socket_us": { + "prefix": "svg.material.power_socket_us", + "description": "SVG material - power_socket_us", + "body": [ + "{% svg material power_socket_us %}" + ] + }, + "power_standby": { + "prefix": "svg.material.power_standby", + "description": "SVG material - power_standby", + "body": [ + "{% svg material power_standby %}" + ] + }, + "powershell": { + "prefix": "svg.material.powershell", + "description": "SVG material - powershell", + "body": [ + "{% svg material powershell %}" + ] + }, + "prescription": { + "prefix": "svg.material.prescription", + "description": "SVG material - prescription", + "body": [ + "{% svg material prescription %}" + ] + }, + "presentation": { + "prefix": "svg.material.presentation", + "description": "SVG material - presentation", + "body": [ + "{% svg material presentation %}" + ] + }, + "presentation_play": { + "prefix": "svg.material.presentation_play", + "description": "SVG material - presentation_play", + "body": [ + "{% svg material presentation_play %}" + ] + }, + "pretzel": { + "prefix": "svg.material.pretzel", + "description": "SVG material - pretzel", + "body": [ + "{% svg material pretzel %}" + ] + }, + "printer": { + "prefix": "svg.material.printer", + "description": "SVG material - printer", + "body": [ + "{% svg material printer %}" + ] + }, + "printer_3d": { + "prefix": "svg.material.printer_3d", + "description": "SVG material - printer_3d", + "body": [ + "{% svg material printer_3d %}" + ] + }, + "printer_3d_nozzle": { + "prefix": "svg.material.printer_3d_nozzle", + "description": "SVG material - printer_3d_nozzle", + "body": [ + "{% svg material printer_3d_nozzle %}" + ] + }, + "printer_3d_nozzle_alert": { + "prefix": "svg.material.printer_3d_nozzle_alert", + "description": "SVG material - printer_3d_nozzle_alert", + "body": [ + "{% svg material printer_3d_nozzle_alert %}" + ] + }, + "printer_3d_nozzle_alert_outline": { + "prefix": "svg.material.printer_3d_nozzle_alert_outline", + "description": "SVG material - printer_3d_nozzle_alert_outline", + "body": [ + "{% svg material printer_3d_nozzle_alert_outline %}" + ] + }, + "printer_3d_nozzle_heat": { + "prefix": "svg.material.printer_3d_nozzle_heat", + "description": "SVG material - printer_3d_nozzle_heat", + "body": [ + "{% svg material printer_3d_nozzle_heat %}" + ] + }, + "printer_3d_nozzle_heat_outline": { + "prefix": "svg.material.printer_3d_nozzle_heat_outline", + "description": "SVG material - printer_3d_nozzle_heat_outline", + "body": [ + "{% svg material printer_3d_nozzle_heat_outline %}" + ] + }, + "printer_3d_nozzle_off": { + "prefix": "svg.material.printer_3d_nozzle_off", + "description": "SVG material - printer_3d_nozzle_off", + "body": [ + "{% svg material printer_3d_nozzle_off %}" + ] + }, + "printer_3d_nozzle_off_outline": { + "prefix": "svg.material.printer_3d_nozzle_off_outline", + "description": "SVG material - printer_3d_nozzle_off_outline", + "body": [ + "{% svg material printer_3d_nozzle_off_outline %}" + ] + }, + "printer_3d_nozzle_outline": { + "prefix": "svg.material.printer_3d_nozzle_outline", + "description": "SVG material - printer_3d_nozzle_outline", + "body": [ + "{% svg material printer_3d_nozzle_outline %}" + ] + }, + "printer_3d_off": { + "prefix": "svg.material.printer_3d_off", + "description": "SVG material - printer_3d_off", + "body": [ + "{% svg material printer_3d_off %}" + ] + }, + "printer_alert": { + "prefix": "svg.material.printer_alert", + "description": "SVG material - printer_alert", + "body": [ + "{% svg material printer_alert %}" + ] + }, + "printer_check": { + "prefix": "svg.material.printer_check", + "description": "SVG material - printer_check", + "body": [ + "{% svg material printer_check %}" + ] + }, + "printer_eye": { + "prefix": "svg.material.printer_eye", + "description": "SVG material - printer_eye", + "body": [ + "{% svg material printer_eye %}" + ] + }, + "printer_off": { + "prefix": "svg.material.printer_off", + "description": "SVG material - printer_off", + "body": [ + "{% svg material printer_off %}" + ] + }, + "printer_off_outline": { + "prefix": "svg.material.printer_off_outline", + "description": "SVG material - printer_off_outline", + "body": [ + "{% svg material printer_off_outline %}" + ] + }, + "printer_outline": { + "prefix": "svg.material.printer_outline", + "description": "SVG material - printer_outline", + "body": [ + "{% svg material printer_outline %}" + ] + }, + "printer_pos": { + "prefix": "svg.material.printer_pos", + "description": "SVG material - printer_pos", + "body": [ + "{% svg material printer_pos %}" + ] + }, + "printer_pos_alert": { + "prefix": "svg.material.printer_pos_alert", + "description": "SVG material - printer_pos_alert", + "body": [ + "{% svg material printer_pos_alert %}" + ] + }, + "printer_pos_alert_outline": { + "prefix": "svg.material.printer_pos_alert_outline", + "description": "SVG material - printer_pos_alert_outline", + "body": [ + "{% svg material printer_pos_alert_outline %}" + ] + }, + "printer_pos_cancel": { + "prefix": "svg.material.printer_pos_cancel", + "description": "SVG material - printer_pos_cancel", + "body": [ + "{% svg material printer_pos_cancel %}" + ] + }, + "printer_pos_cancel_outline": { + "prefix": "svg.material.printer_pos_cancel_outline", + "description": "SVG material - printer_pos_cancel_outline", + "body": [ + "{% svg material printer_pos_cancel_outline %}" + ] + }, + "printer_pos_check": { + "prefix": "svg.material.printer_pos_check", + "description": "SVG material - printer_pos_check", + "body": [ + "{% svg material printer_pos_check %}" + ] + }, + "printer_pos_check_outline": { + "prefix": "svg.material.printer_pos_check_outline", + "description": "SVG material - printer_pos_check_outline", + "body": [ + "{% svg material printer_pos_check_outline %}" + ] + }, + "printer_pos_cog": { + "prefix": "svg.material.printer_pos_cog", + "description": "SVG material - printer_pos_cog", + "body": [ + "{% svg material printer_pos_cog %}" + ] + }, + "printer_pos_cog_outline": { + "prefix": "svg.material.printer_pos_cog_outline", + "description": "SVG material - printer_pos_cog_outline", + "body": [ + "{% svg material printer_pos_cog_outline %}" + ] + }, + "printer_pos_edit": { + "prefix": "svg.material.printer_pos_edit", + "description": "SVG material - printer_pos_edit", + "body": [ + "{% svg material printer_pos_edit %}" + ] + }, + "printer_pos_edit_outline": { + "prefix": "svg.material.printer_pos_edit_outline", + "description": "SVG material - printer_pos_edit_outline", + "body": [ + "{% svg material printer_pos_edit_outline %}" + ] + }, + "printer_pos_minus": { + "prefix": "svg.material.printer_pos_minus", + "description": "SVG material - printer_pos_minus", + "body": [ + "{% svg material printer_pos_minus %}" + ] + }, + "printer_pos_minus_outline": { + "prefix": "svg.material.printer_pos_minus_outline", + "description": "SVG material - printer_pos_minus_outline", + "body": [ + "{% svg material printer_pos_minus_outline %}" + ] + }, + "printer_pos_network": { + "prefix": "svg.material.printer_pos_network", + "description": "SVG material - printer_pos_network", + "body": [ + "{% svg material printer_pos_network %}" + ] + }, + "printer_pos_network_outline": { + "prefix": "svg.material.printer_pos_network_outline", + "description": "SVG material - printer_pos_network_outline", + "body": [ + "{% svg material printer_pos_network_outline %}" + ] + }, + "printer_pos_off": { + "prefix": "svg.material.printer_pos_off", + "description": "SVG material - printer_pos_off", + "body": [ + "{% svg material printer_pos_off %}" + ] + }, + "printer_pos_off_outline": { + "prefix": "svg.material.printer_pos_off_outline", + "description": "SVG material - printer_pos_off_outline", + "body": [ + "{% svg material printer_pos_off_outline %}" + ] + }, + "printer_pos_outline": { + "prefix": "svg.material.printer_pos_outline", + "description": "SVG material - printer_pos_outline", + "body": [ + "{% svg material printer_pos_outline %}" + ] + }, + "printer_pos_pause": { + "prefix": "svg.material.printer_pos_pause", + "description": "SVG material - printer_pos_pause", + "body": [ + "{% svg material printer_pos_pause %}" + ] + }, + "printer_pos_pause_outline": { + "prefix": "svg.material.printer_pos_pause_outline", + "description": "SVG material - printer_pos_pause_outline", + "body": [ + "{% svg material printer_pos_pause_outline %}" + ] + }, + "printer_pos_play": { + "prefix": "svg.material.printer_pos_play", + "description": "SVG material - printer_pos_play", + "body": [ + "{% svg material printer_pos_play %}" + ] + }, + "printer_pos_play_outline": { + "prefix": "svg.material.printer_pos_play_outline", + "description": "SVG material - printer_pos_play_outline", + "body": [ + "{% svg material printer_pos_play_outline %}" + ] + }, + "printer_pos_plus": { + "prefix": "svg.material.printer_pos_plus", + "description": "SVG material - printer_pos_plus", + "body": [ + "{% svg material printer_pos_plus %}" + ] + }, + "printer_pos_plus_outline": { + "prefix": "svg.material.printer_pos_plus_outline", + "description": "SVG material - printer_pos_plus_outline", + "body": [ + "{% svg material printer_pos_plus_outline %}" + ] + }, + "printer_pos_refresh": { + "prefix": "svg.material.printer_pos_refresh", + "description": "SVG material - printer_pos_refresh", + "body": [ + "{% svg material printer_pos_refresh %}" + ] + }, + "printer_pos_refresh_outline": { + "prefix": "svg.material.printer_pos_refresh_outline", + "description": "SVG material - printer_pos_refresh_outline", + "body": [ + "{% svg material printer_pos_refresh_outline %}" + ] + }, + "printer_pos_remove": { + "prefix": "svg.material.printer_pos_remove", + "description": "SVG material - printer_pos_remove", + "body": [ + "{% svg material printer_pos_remove %}" + ] + }, + "printer_pos_remove_outline": { + "prefix": "svg.material.printer_pos_remove_outline", + "description": "SVG material - printer_pos_remove_outline", + "body": [ + "{% svg material printer_pos_remove_outline %}" + ] + }, + "printer_pos_star": { + "prefix": "svg.material.printer_pos_star", + "description": "SVG material - printer_pos_star", + "body": [ + "{% svg material printer_pos_star %}" + ] + }, + "printer_pos_star_outline": { + "prefix": "svg.material.printer_pos_star_outline", + "description": "SVG material - printer_pos_star_outline", + "body": [ + "{% svg material printer_pos_star_outline %}" + ] + }, + "printer_pos_stop": { + "prefix": "svg.material.printer_pos_stop", + "description": "SVG material - printer_pos_stop", + "body": [ + "{% svg material printer_pos_stop %}" + ] + }, + "printer_pos_stop_outline": { + "prefix": "svg.material.printer_pos_stop_outline", + "description": "SVG material - printer_pos_stop_outline", + "body": [ + "{% svg material printer_pos_stop_outline %}" + ] + }, + "printer_pos_sync": { + "prefix": "svg.material.printer_pos_sync", + "description": "SVG material - printer_pos_sync", + "body": [ + "{% svg material printer_pos_sync %}" + ] + }, + "printer_pos_sync_outline": { + "prefix": "svg.material.printer_pos_sync_outline", + "description": "SVG material - printer_pos_sync_outline", + "body": [ + "{% svg material printer_pos_sync_outline %}" + ] + }, + "printer_pos_wrench": { + "prefix": "svg.material.printer_pos_wrench", + "description": "SVG material - printer_pos_wrench", + "body": [ + "{% svg material printer_pos_wrench %}" + ] + }, + "printer_pos_wrench_outline": { + "prefix": "svg.material.printer_pos_wrench_outline", + "description": "SVG material - printer_pos_wrench_outline", + "body": [ + "{% svg material printer_pos_wrench_outline %}" + ] + }, + "printer_search": { + "prefix": "svg.material.printer_search", + "description": "SVG material - printer_search", + "body": [ + "{% svg material printer_search %}" + ] + }, + "printer_settings": { + "prefix": "svg.material.printer_settings", + "description": "SVG material - printer_settings", + "body": [ + "{% svg material printer_settings %}" + ] + }, + "printer_wireless": { + "prefix": "svg.material.printer_wireless", + "description": "SVG material - printer_wireless", + "body": [ + "{% svg material printer_wireless %}" + ] + }, + "priority_high": { + "prefix": "svg.material.priority_high", + "description": "SVG material - priority_high", + "body": [ + "{% svg material priority_high %}" + ] + }, + "priority_low": { + "prefix": "svg.material.priority_low", + "description": "SVG material - priority_low", + "body": [ + "{% svg material priority_low %}" + ] + }, + "professional_hexagon": { + "prefix": "svg.material.professional_hexagon", + "description": "SVG material - professional_hexagon", + "body": [ + "{% svg material professional_hexagon %}" + ] + }, + "progress_alert": { + "prefix": "svg.material.progress_alert", + "description": "SVG material - progress_alert", + "body": [ + "{% svg material progress_alert %}" + ] + }, + "progress_check": { + "prefix": "svg.material.progress_check", + "description": "SVG material - progress_check", + "body": [ + "{% svg material progress_check %}" + ] + }, + "progress_clock": { + "prefix": "svg.material.progress_clock", + "description": "SVG material - progress_clock", + "body": [ + "{% svg material progress_clock %}" + ] + }, + "progress_close": { + "prefix": "svg.material.progress_close", + "description": "SVG material - progress_close", + "body": [ + "{% svg material progress_close %}" + ] + }, + "progress_download": { + "prefix": "svg.material.progress_download", + "description": "SVG material - progress_download", + "body": [ + "{% svg material progress_download %}" + ] + }, + "progress_helper": { + "prefix": "svg.material.progress_helper", + "description": "SVG material - progress_helper", + "body": [ + "{% svg material progress_helper %}" + ] + }, + "progress_pencil": { + "prefix": "svg.material.progress_pencil", + "description": "SVG material - progress_pencil", + "body": [ + "{% svg material progress_pencil %}" + ] + }, + "progress_question": { + "prefix": "svg.material.progress_question", + "description": "SVG material - progress_question", + "body": [ + "{% svg material progress_question %}" + ] + }, + "progress_star": { + "prefix": "svg.material.progress_star", + "description": "SVG material - progress_star", + "body": [ + "{% svg material progress_star %}" + ] + }, + "progress_star_four_points": { + "prefix": "svg.material.progress_star_four_points", + "description": "SVG material - progress_star_four_points", + "body": [ + "{% svg material progress_star_four_points %}" + ] + }, + "progress_tag": { + "prefix": "svg.material.progress_tag", + "description": "SVG material - progress_tag", + "body": [ + "{% svg material progress_tag %}" + ] + }, + "progress_upload": { + "prefix": "svg.material.progress_upload", + "description": "SVG material - progress_upload", + "body": [ + "{% svg material progress_upload %}" + ] + }, + "progress_wrench": { + "prefix": "svg.material.progress_wrench", + "description": "SVG material - progress_wrench", + "body": [ + "{% svg material progress_wrench %}" + ] + }, + "projector": { + "prefix": "svg.material.projector", + "description": "SVG material - projector", + "body": [ + "{% svg material projector %}" + ] + }, + "projector_off": { + "prefix": "svg.material.projector_off", + "description": "SVG material - projector_off", + "body": [ + "{% svg material projector_off %}" + ] + }, + "projector_screen": { + "prefix": "svg.material.projector_screen", + "description": "SVG material - projector_screen", + "body": [ + "{% svg material projector_screen %}" + ] + }, + "projector_screen_off": { + "prefix": "svg.material.projector_screen_off", + "description": "SVG material - projector_screen_off", + "body": [ + "{% svg material projector_screen_off %}" + ] + }, + "projector_screen_off_outline": { + "prefix": "svg.material.projector_screen_off_outline", + "description": "SVG material - projector_screen_off_outline", + "body": [ + "{% svg material projector_screen_off_outline %}" + ] + }, + "projector_screen_outline": { + "prefix": "svg.material.projector_screen_outline", + "description": "SVG material - projector_screen_outline", + "body": [ + "{% svg material projector_screen_outline %}" + ] + }, + "projector_screen_variant": { + "prefix": "svg.material.projector_screen_variant", + "description": "SVG material - projector_screen_variant", + "body": [ + "{% svg material projector_screen_variant %}" + ] + }, + "projector_screen_variant_off": { + "prefix": "svg.material.projector_screen_variant_off", + "description": "SVG material - projector_screen_variant_off", + "body": [ + "{% svg material projector_screen_variant_off %}" + ] + }, + "projector_screen_variant_off_outline": { + "prefix": "svg.material.projector_screen_variant_off_outline", + "description": "SVG material - projector_screen_variant_off_outline", + "body": [ + "{% svg material projector_screen_variant_off_outline %}" + ] + }, + "projector_screen_variant_outline": { + "prefix": "svg.material.projector_screen_variant_outline", + "description": "SVG material - projector_screen_variant_outline", + "body": [ + "{% svg material projector_screen_variant_outline %}" + ] + }, + "propane_tank": { + "prefix": "svg.material.propane_tank", + "description": "SVG material - propane_tank", + "body": [ + "{% svg material propane_tank %}" + ] + }, + "propane_tank_outline": { + "prefix": "svg.material.propane_tank_outline", + "description": "SVG material - propane_tank_outline", + "body": [ + "{% svg material propane_tank_outline %}" + ] + }, + "protocol": { + "prefix": "svg.material.protocol", + "description": "SVG material - protocol", + "body": [ + "{% svg material protocol %}" + ] + }, + "publish": { + "prefix": "svg.material.publish", + "description": "SVG material - publish", + "body": [ + "{% svg material publish %}" + ] + }, + "publish_off": { + "prefix": "svg.material.publish_off", + "description": "SVG material - publish_off", + "body": [ + "{% svg material publish_off %}" + ] + }, + "pulse": { + "prefix": "svg.material.pulse", + "description": "SVG material - pulse", + "body": [ + "{% svg material pulse %}" + ] + }, + "pump": { + "prefix": "svg.material.pump", + "description": "SVG material - pump", + "body": [ + "{% svg material pump %}" + ] + }, + "pump_off": { + "prefix": "svg.material.pump_off", + "description": "SVG material - pump_off", + "body": [ + "{% svg material pump_off %}" + ] + }, + "pumpkin": { + "prefix": "svg.material.pumpkin", + "description": "SVG material - pumpkin", + "body": [ + "{% svg material pumpkin %}" + ] + }, + "purse": { + "prefix": "svg.material.purse", + "description": "SVG material - purse", + "body": [ + "{% svg material purse %}" + ] + }, + "purse_outline": { + "prefix": "svg.material.purse_outline", + "description": "SVG material - purse_outline", + "body": [ + "{% svg material purse_outline %}" + ] + }, + "puzzle": { + "prefix": "svg.material.puzzle", + "description": "SVG material - puzzle", + "body": [ + "{% svg material puzzle %}" + ] + }, + "puzzle_check": { + "prefix": "svg.material.puzzle_check", + "description": "SVG material - puzzle_check", + "body": [ + "{% svg material puzzle_check %}" + ] + }, + "puzzle_check_outline": { + "prefix": "svg.material.puzzle_check_outline", + "description": "SVG material - puzzle_check_outline", + "body": [ + "{% svg material puzzle_check_outline %}" + ] + }, + "puzzle_edit": { + "prefix": "svg.material.puzzle_edit", + "description": "SVG material - puzzle_edit", + "body": [ + "{% svg material puzzle_edit %}" + ] + }, + "puzzle_edit_outline": { + "prefix": "svg.material.puzzle_edit_outline", + "description": "SVG material - puzzle_edit_outline", + "body": [ + "{% svg material puzzle_edit_outline %}" + ] + }, + "puzzle_heart": { + "prefix": "svg.material.puzzle_heart", + "description": "SVG material - puzzle_heart", + "body": [ + "{% svg material puzzle_heart %}" + ] + }, + "puzzle_heart_outline": { + "prefix": "svg.material.puzzle_heart_outline", + "description": "SVG material - puzzle_heart_outline", + "body": [ + "{% svg material puzzle_heart_outline %}" + ] + }, + "puzzle_minus": { + "prefix": "svg.material.puzzle_minus", + "description": "SVG material - puzzle_minus", + "body": [ + "{% svg material puzzle_minus %}" + ] + }, + "puzzle_minus_outline": { + "prefix": "svg.material.puzzle_minus_outline", + "description": "SVG material - puzzle_minus_outline", + "body": [ + "{% svg material puzzle_minus_outline %}" + ] + }, + "puzzle_outline": { + "prefix": "svg.material.puzzle_outline", + "description": "SVG material - puzzle_outline", + "body": [ + "{% svg material puzzle_outline %}" + ] + }, + "puzzle_plus": { + "prefix": "svg.material.puzzle_plus", + "description": "SVG material - puzzle_plus", + "body": [ + "{% svg material puzzle_plus %}" + ] + }, + "puzzle_plus_outline": { + "prefix": "svg.material.puzzle_plus_outline", + "description": "SVG material - puzzle_plus_outline", + "body": [ + "{% svg material puzzle_plus_outline %}" + ] + }, + "puzzle_remove": { + "prefix": "svg.material.puzzle_remove", + "description": "SVG material - puzzle_remove", + "body": [ + "{% svg material puzzle_remove %}" + ] + }, + "puzzle_remove_outline": { + "prefix": "svg.material.puzzle_remove_outline", + "description": "SVG material - puzzle_remove_outline", + "body": [ + "{% svg material puzzle_remove_outline %}" + ] + }, + "puzzle_star": { + "prefix": "svg.material.puzzle_star", + "description": "SVG material - puzzle_star", + "body": [ + "{% svg material puzzle_star %}" + ] + }, + "puzzle_star_outline": { + "prefix": "svg.material.puzzle_star_outline", + "description": "SVG material - puzzle_star_outline", + "body": [ + "{% svg material puzzle_star_outline %}" + ] + }, + "pyramid": { + "prefix": "svg.material.pyramid", + "description": "SVG material - pyramid", + "body": [ + "{% svg material pyramid %}" + ] + }, + "pyramid_off": { + "prefix": "svg.material.pyramid_off", + "description": "SVG material - pyramid_off", + "body": [ + "{% svg material pyramid_off %}" + ] + }, + "qi": { + "prefix": "svg.material.qi", + "description": "SVG material - qi", + "body": [ + "{% svg material qi %}" + ] + }, + "qqchat": { + "prefix": "svg.material.qqchat", + "description": "SVG material - qqchat", + "body": [ + "{% svg material qqchat %}" + ] + }, + "qrcode": { + "prefix": "svg.material.qrcode", + "description": "SVG material - qrcode", + "body": [ + "{% svg material qrcode %}" + ] + }, + "qrcode_edit": { + "prefix": "svg.material.qrcode_edit", + "description": "SVG material - qrcode_edit", + "body": [ + "{% svg material qrcode_edit %}" + ] + }, + "qrcode_minus": { + "prefix": "svg.material.qrcode_minus", + "description": "SVG material - qrcode_minus", + "body": [ + "{% svg material qrcode_minus %}" + ] + }, + "qrcode_plus": { + "prefix": "svg.material.qrcode_plus", + "description": "SVG material - qrcode_plus", + "body": [ + "{% svg material qrcode_plus %}" + ] + }, + "qrcode_remove": { + "prefix": "svg.material.qrcode_remove", + "description": "SVG material - qrcode_remove", + "body": [ + "{% svg material qrcode_remove %}" + ] + }, + "qrcode_scan": { + "prefix": "svg.material.qrcode_scan", + "description": "SVG material - qrcode_scan", + "body": [ + "{% svg material qrcode_scan %}" + ] + }, + "quadcopter": { + "prefix": "svg.material.quadcopter", + "description": "SVG material - quadcopter", + "body": [ + "{% svg material quadcopter %}" + ] + }, + "quality_high": { + "prefix": "svg.material.quality_high", + "description": "SVG material - quality_high", + "body": [ + "{% svg material quality_high %}" + ] + }, + "quality_low": { + "prefix": "svg.material.quality_low", + "description": "SVG material - quality_low", + "body": [ + "{% svg material quality_low %}" + ] + }, + "quality_medium": { + "prefix": "svg.material.quality_medium", + "description": "SVG material - quality_medium", + "body": [ + "{% svg material quality_medium %}" + ] + }, + "queue_first_in_last_out": { + "prefix": "svg.material.queue_first_in_last_out", + "description": "SVG material - queue_first_in_last_out", + "body": [ + "{% svg material queue_first_in_last_out %}" + ] + }, + "quora": { + "prefix": "svg.material.quora", + "description": "SVG material - quora", + "body": [ + "{% svg material quora %}" + ] + }, + "rabbit": { + "prefix": "svg.material.rabbit", + "description": "SVG material - rabbit", + "body": [ + "{% svg material rabbit %}" + ] + }, + "rabbit_variant": { + "prefix": "svg.material.rabbit_variant", + "description": "SVG material - rabbit_variant", + "body": [ + "{% svg material rabbit_variant %}" + ] + }, + "rabbit_variant_outline": { + "prefix": "svg.material.rabbit_variant_outline", + "description": "SVG material - rabbit_variant_outline", + "body": [ + "{% svg material rabbit_variant_outline %}" + ] + }, + "racing_helmet": { + "prefix": "svg.material.racing_helmet", + "description": "SVG material - racing_helmet", + "body": [ + "{% svg material racing_helmet %}" + ] + }, + "racquetball": { + "prefix": "svg.material.racquetball", + "description": "SVG material - racquetball", + "body": [ + "{% svg material racquetball %}" + ] + }, + "radar": { + "prefix": "svg.material.radar", + "description": "SVG material - radar", + "body": [ + "{% svg material radar %}" + ] + }, + "radiator": { + "prefix": "svg.material.radiator", + "description": "SVG material - radiator", + "body": [ + "{% svg material radiator %}" + ] + }, + "radiator_disabled": { + "prefix": "svg.material.radiator_disabled", + "description": "SVG material - radiator_disabled", + "body": [ + "{% svg material radiator_disabled %}" + ] + }, + "radiator_off": { + "prefix": "svg.material.radiator_off", + "description": "SVG material - radiator_off", + "body": [ + "{% svg material radiator_off %}" + ] + }, + "radio": { + "prefix": "svg.material.radio", + "description": "SVG material - radio", + "body": [ + "{% svg material radio %}" + ] + }, + "radio_am": { + "prefix": "svg.material.radio_am", + "description": "SVG material - radio_am", + "body": [ + "{% svg material radio_am %}" + ] + }, + "radio_fm": { + "prefix": "svg.material.radio_fm", + "description": "SVG material - radio_fm", + "body": [ + "{% svg material radio_fm %}" + ] + }, + "radio_handheld": { + "prefix": "svg.material.radio_handheld", + "description": "SVG material - radio_handheld", + "body": [ + "{% svg material radio_handheld %}" + ] + }, + "radio_off": { + "prefix": "svg.material.radio_off", + "description": "SVG material - radio_off", + "body": [ + "{% svg material radio_off %}" + ] + }, + "radio_tower": { + "prefix": "svg.material.radio_tower", + "description": "SVG material - radio_tower", + "body": [ + "{% svg material radio_tower %}" + ] + }, + "radioactive": { + "prefix": "svg.material.radioactive", + "description": "SVG material - radioactive", + "body": [ + "{% svg material radioactive %}" + ] + }, + "radioactive_circle": { + "prefix": "svg.material.radioactive_circle", + "description": "SVG material - radioactive_circle", + "body": [ + "{% svg material radioactive_circle %}" + ] + }, + "radioactive_circle_outline": { + "prefix": "svg.material.radioactive_circle_outline", + "description": "SVG material - radioactive_circle_outline", + "body": [ + "{% svg material radioactive_circle_outline %}" + ] + }, + "radioactive_off": { + "prefix": "svg.material.radioactive_off", + "description": "SVG material - radioactive_off", + "body": [ + "{% svg material radioactive_off %}" + ] + }, + "radiobox_blank": { + "prefix": "svg.material.radiobox_blank", + "description": "SVG material - radiobox_blank", + "body": [ + "{% svg material radiobox_blank %}" + ] + }, + "radiobox_indeterminate_variant": { + "prefix": "svg.material.radiobox_indeterminate_variant", + "description": "SVG material - radiobox_indeterminate_variant", + "body": [ + "{% svg material radiobox_indeterminate_variant %}" + ] + }, + "radiobox_marked": { + "prefix": "svg.material.radiobox_marked", + "description": "SVG material - radiobox_marked", + "body": [ + "{% svg material radiobox_marked %}" + ] + }, + "radiology_box": { + "prefix": "svg.material.radiology_box", + "description": "SVG material - radiology_box", + "body": [ + "{% svg material radiology_box %}" + ] + }, + "radiology_box_outline": { + "prefix": "svg.material.radiology_box_outline", + "description": "SVG material - radiology_box_outline", + "body": [ + "{% svg material radiology_box_outline %}" + ] + }, + "radius": { + "prefix": "svg.material.radius", + "description": "SVG material - radius", + "body": [ + "{% svg material radius %}" + ] + }, + "radius_outline": { + "prefix": "svg.material.radius_outline", + "description": "SVG material - radius_outline", + "body": [ + "{% svg material radius_outline %}" + ] + }, + "railroad_light": { + "prefix": "svg.material.railroad_light", + "description": "SVG material - railroad_light", + "body": [ + "{% svg material railroad_light %}" + ] + }, + "rake": { + "prefix": "svg.material.rake", + "description": "SVG material - rake", + "body": [ + "{% svg material rake %}" + ] + }, + "raspberry_pi": { + "prefix": "svg.material.raspberry_pi", + "description": "SVG material - raspberry_pi", + "body": [ + "{% svg material raspberry_pi %}" + ] + }, + "raw": { + "prefix": "svg.material.raw", + "description": "SVG material - raw", + "body": [ + "{% svg material raw %}" + ] + }, + "raw_off": { + "prefix": "svg.material.raw_off", + "description": "SVG material - raw_off", + "body": [ + "{% svg material raw_off %}" + ] + }, + "ray_end": { + "prefix": "svg.material.ray_end", + "description": "SVG material - ray_end", + "body": [ + "{% svg material ray_end %}" + ] + }, + "ray_end_arrow": { + "prefix": "svg.material.ray_end_arrow", + "description": "SVG material - ray_end_arrow", + "body": [ + "{% svg material ray_end_arrow %}" + ] + }, + "ray_start": { + "prefix": "svg.material.ray_start", + "description": "SVG material - ray_start", + "body": [ + "{% svg material ray_start %}" + ] + }, + "ray_start_arrow": { + "prefix": "svg.material.ray_start_arrow", + "description": "SVG material - ray_start_arrow", + "body": [ + "{% svg material ray_start_arrow %}" + ] + }, + "ray_start_end": { + "prefix": "svg.material.ray_start_end", + "description": "SVG material - ray_start_end", + "body": [ + "{% svg material ray_start_end %}" + ] + }, + "ray_start_vertex_end": { + "prefix": "svg.material.ray_start_vertex_end", + "description": "SVG material - ray_start_vertex_end", + "body": [ + "{% svg material ray_start_vertex_end %}" + ] + }, + "ray_vertex": { + "prefix": "svg.material.ray_vertex", + "description": "SVG material - ray_vertex", + "body": [ + "{% svg material ray_vertex %}" + ] + }, + "razor_double_edge": { + "prefix": "svg.material.razor_double_edge", + "description": "SVG material - razor_double_edge", + "body": [ + "{% svg material razor_double_edge %}" + ] + }, + "razor_single_edge": { + "prefix": "svg.material.razor_single_edge", + "description": "SVG material - razor_single_edge", + "body": [ + "{% svg material razor_single_edge %}" + ] + }, + "react": { + "prefix": "svg.material.react", + "description": "SVG material - react", + "body": [ + "{% svg material react %}" + ] + }, + "read": { + "prefix": "svg.material.read", + "description": "SVG material - read", + "body": [ + "{% svg material read %}" + ] + }, + "receipt": { + "prefix": "svg.material.receipt", + "description": "SVG material - receipt", + "body": [ + "{% svg material receipt %}" + ] + }, + "receipt_clock": { + "prefix": "svg.material.receipt_clock", + "description": "SVG material - receipt_clock", + "body": [ + "{% svg material receipt_clock %}" + ] + }, + "receipt_clock_outline": { + "prefix": "svg.material.receipt_clock_outline", + "description": "SVG material - receipt_clock_outline", + "body": [ + "{% svg material receipt_clock_outline %}" + ] + }, + "receipt_outline": { + "prefix": "svg.material.receipt_outline", + "description": "SVG material - receipt_outline", + "body": [ + "{% svg material receipt_outline %}" + ] + }, + "receipt_send": { + "prefix": "svg.material.receipt_send", + "description": "SVG material - receipt_send", + "body": [ + "{% svg material receipt_send %}" + ] + }, + "receipt_send_outline": { + "prefix": "svg.material.receipt_send_outline", + "description": "SVG material - receipt_send_outline", + "body": [ + "{% svg material receipt_send_outline %}" + ] + }, + "receipt_text": { + "prefix": "svg.material.receipt_text", + "description": "SVG material - receipt_text", + "body": [ + "{% svg material receipt_text %}" + ] + }, + "receipt_text_arrow_left": { + "prefix": "svg.material.receipt_text_arrow_left", + "description": "SVG material - receipt_text_arrow_left", + "body": [ + "{% svg material receipt_text_arrow_left %}" + ] + }, + "receipt_text_arrow_left_outline": { + "prefix": "svg.material.receipt_text_arrow_left_outline", + "description": "SVG material - receipt_text_arrow_left_outline", + "body": [ + "{% svg material receipt_text_arrow_left_outline %}" + ] + }, + "receipt_text_arrow_right": { + "prefix": "svg.material.receipt_text_arrow_right", + "description": "SVG material - receipt_text_arrow_right", + "body": [ + "{% svg material receipt_text_arrow_right %}" + ] + }, + "receipt_text_arrow_right_outline": { + "prefix": "svg.material.receipt_text_arrow_right_outline", + "description": "SVG material - receipt_text_arrow_right_outline", + "body": [ + "{% svg material receipt_text_arrow_right_outline %}" + ] + }, + "receipt_text_check": { + "prefix": "svg.material.receipt_text_check", + "description": "SVG material - receipt_text_check", + "body": [ + "{% svg material receipt_text_check %}" + ] + }, + "receipt_text_check_outline": { + "prefix": "svg.material.receipt_text_check_outline", + "description": "SVG material - receipt_text_check_outline", + "body": [ + "{% svg material receipt_text_check_outline %}" + ] + }, + "receipt_text_clock": { + "prefix": "svg.material.receipt_text_clock", + "description": "SVG material - receipt_text_clock", + "body": [ + "{% svg material receipt_text_clock %}" + ] + }, + "receipt_text_clock_outline": { + "prefix": "svg.material.receipt_text_clock_outline", + "description": "SVG material - receipt_text_clock_outline", + "body": [ + "{% svg material receipt_text_clock_outline %}" + ] + }, + "receipt_text_edit": { + "prefix": "svg.material.receipt_text_edit", + "description": "SVG material - receipt_text_edit", + "body": [ + "{% svg material receipt_text_edit %}" + ] + }, + "receipt_text_edit_outline": { + "prefix": "svg.material.receipt_text_edit_outline", + "description": "SVG material - receipt_text_edit_outline", + "body": [ + "{% svg material receipt_text_edit_outline %}" + ] + }, + "receipt_text_minus": { + "prefix": "svg.material.receipt_text_minus", + "description": "SVG material - receipt_text_minus", + "body": [ + "{% svg material receipt_text_minus %}" + ] + }, + "receipt_text_minus_outline": { + "prefix": "svg.material.receipt_text_minus_outline", + "description": "SVG material - receipt_text_minus_outline", + "body": [ + "{% svg material receipt_text_minus_outline %}" + ] + }, + "receipt_text_outline": { + "prefix": "svg.material.receipt_text_outline", + "description": "SVG material - receipt_text_outline", + "body": [ + "{% svg material receipt_text_outline %}" + ] + }, + "receipt_text_plus": { + "prefix": "svg.material.receipt_text_plus", + "description": "SVG material - receipt_text_plus", + "body": [ + "{% svg material receipt_text_plus %}" + ] + }, + "receipt_text_plus_outline": { + "prefix": "svg.material.receipt_text_plus_outline", + "description": "SVG material - receipt_text_plus_outline", + "body": [ + "{% svg material receipt_text_plus_outline %}" + ] + }, + "receipt_text_remove": { + "prefix": "svg.material.receipt_text_remove", + "description": "SVG material - receipt_text_remove", + "body": [ + "{% svg material receipt_text_remove %}" + ] + }, + "receipt_text_remove_outline": { + "prefix": "svg.material.receipt_text_remove_outline", + "description": "SVG material - receipt_text_remove_outline", + "body": [ + "{% svg material receipt_text_remove_outline %}" + ] + }, + "receipt_text_send": { + "prefix": "svg.material.receipt_text_send", + "description": "SVG material - receipt_text_send", + "body": [ + "{% svg material receipt_text_send %}" + ] + }, + "receipt_text_send_outline": { + "prefix": "svg.material.receipt_text_send_outline", + "description": "SVG material - receipt_text_send_outline", + "body": [ + "{% svg material receipt_text_send_outline %}" + ] + }, + "record": { + "prefix": "svg.material.record", + "description": "SVG material - record", + "body": [ + "{% svg material record %}" + ] + }, + "record_circle": { + "prefix": "svg.material.record_circle", + "description": "SVG material - record_circle", + "body": [ + "{% svg material record_circle %}" + ] + }, + "record_circle_outline": { + "prefix": "svg.material.record_circle_outline", + "description": "SVG material - record_circle_outline", + "body": [ + "{% svg material record_circle_outline %}" + ] + }, + "record_player": { + "prefix": "svg.material.record_player", + "description": "SVG material - record_player", + "body": [ + "{% svg material record_player %}" + ] + }, + "record_rec": { + "prefix": "svg.material.record_rec", + "description": "SVG material - record_rec", + "body": [ + "{% svg material record_rec %}" + ] + }, + "rectangle": { + "prefix": "svg.material.rectangle", + "description": "SVG material - rectangle", + "body": [ + "{% svg material rectangle %}" + ] + }, + "rectangle_outline": { + "prefix": "svg.material.rectangle_outline", + "description": "SVG material - rectangle_outline", + "body": [ + "{% svg material rectangle_outline %}" + ] + }, + "recycle": { + "prefix": "svg.material.recycle", + "description": "SVG material - recycle", + "body": [ + "{% svg material recycle %}" + ] + }, + "recycle_variant": { + "prefix": "svg.material.recycle_variant", + "description": "SVG material - recycle_variant", + "body": [ + "{% svg material recycle_variant %}" + ] + }, + "reddit": { + "prefix": "svg.material.reddit", + "description": "SVG material - reddit", + "body": [ + "{% svg material reddit %}" + ] + }, + "redhat": { + "prefix": "svg.material.redhat", + "description": "SVG material - redhat", + "body": [ + "{% svg material redhat %}" + ] + }, + "redo": { + "prefix": "svg.material.redo", + "description": "SVG material - redo", + "body": [ + "{% svg material redo %}" + ] + }, + "redo_variant": { + "prefix": "svg.material.redo_variant", + "description": "SVG material - redo_variant", + "body": [ + "{% svg material redo_variant %}" + ] + }, + "reflect_horizontal": { + "prefix": "svg.material.reflect_horizontal", + "description": "SVG material - reflect_horizontal", + "body": [ + "{% svg material reflect_horizontal %}" + ] + }, + "reflect_vertical": { + "prefix": "svg.material.reflect_vertical", + "description": "SVG material - reflect_vertical", + "body": [ + "{% svg material reflect_vertical %}" + ] + }, + "refresh": { + "prefix": "svg.material.refresh", + "description": "SVG material - refresh", + "body": [ + "{% svg material refresh %}" + ] + }, + "refresh_auto": { + "prefix": "svg.material.refresh_auto", + "description": "SVG material - refresh_auto", + "body": [ + "{% svg material refresh_auto %}" + ] + }, + "refresh_circle": { + "prefix": "svg.material.refresh_circle", + "description": "SVG material - refresh_circle", + "body": [ + "{% svg material refresh_circle %}" + ] + }, + "regex": { + "prefix": "svg.material.regex", + "description": "SVG material - regex", + "body": [ + "{% svg material regex %}" + ] + }, + "registered_trademark": { + "prefix": "svg.material.registered_trademark", + "description": "SVG material - registered_trademark", + "body": [ + "{% svg material registered_trademark %}" + ] + }, + "reiterate": { + "prefix": "svg.material.reiterate", + "description": "SVG material - reiterate", + "body": [ + "{% svg material reiterate %}" + ] + }, + "relation_many_to_many": { + "prefix": "svg.material.relation_many_to_many", + "description": "SVG material - relation_many_to_many", + "body": [ + "{% svg material relation_many_to_many %}" + ] + }, + "relation_many_to_one": { + "prefix": "svg.material.relation_many_to_one", + "description": "SVG material - relation_many_to_one", + "body": [ + "{% svg material relation_many_to_one %}" + ] + }, + "relation_many_to_one_or_many": { + "prefix": "svg.material.relation_many_to_one_or_many", + "description": "SVG material - relation_many_to_one_or_many", + "body": [ + "{% svg material relation_many_to_one_or_many %}" + ] + }, + "relation_many_to_only_one": { + "prefix": "svg.material.relation_many_to_only_one", + "description": "SVG material - relation_many_to_only_one", + "body": [ + "{% svg material relation_many_to_only_one %}" + ] + }, + "relation_many_to_zero_or_many": { + "prefix": "svg.material.relation_many_to_zero_or_many", + "description": "SVG material - relation_many_to_zero_or_many", + "body": [ + "{% svg material relation_many_to_zero_or_many %}" + ] + }, + "relation_many_to_zero_or_one": { + "prefix": "svg.material.relation_many_to_zero_or_one", + "description": "SVG material - relation_many_to_zero_or_one", + "body": [ + "{% svg material relation_many_to_zero_or_one %}" + ] + }, + "relation_one_or_many_to_many": { + "prefix": "svg.material.relation_one_or_many_to_many", + "description": "SVG material - relation_one_or_many_to_many", + "body": [ + "{% svg material relation_one_or_many_to_many %}" + ] + }, + "relation_one_or_many_to_one": { + "prefix": "svg.material.relation_one_or_many_to_one", + "description": "SVG material - relation_one_or_many_to_one", + "body": [ + "{% svg material relation_one_or_many_to_one %}" + ] + }, + "relation_one_or_many_to_one_or_many": { + "prefix": "svg.material.relation_one_or_many_to_one_or_many", + "description": "SVG material - relation_one_or_many_to_one_or_many", + "body": [ + "{% svg material relation_one_or_many_to_one_or_many %}" + ] + }, + "relation_one_or_many_to_only_one": { + "prefix": "svg.material.relation_one_or_many_to_only_one", + "description": "SVG material - relation_one_or_many_to_only_one", + "body": [ + "{% svg material relation_one_or_many_to_only_one %}" + ] + }, + "relation_one_or_many_to_zero_or_many": { + "prefix": "svg.material.relation_one_or_many_to_zero_or_many", + "description": "SVG material - relation_one_or_many_to_zero_or_many", + "body": [ + "{% svg material relation_one_or_many_to_zero_or_many %}" + ] + }, + "relation_one_or_many_to_zero_or_one": { + "prefix": "svg.material.relation_one_or_many_to_zero_or_one", + "description": "SVG material - relation_one_or_many_to_zero_or_one", + "body": [ + "{% svg material relation_one_or_many_to_zero_or_one %}" + ] + }, + "relation_one_to_many": { + "prefix": "svg.material.relation_one_to_many", + "description": "SVG material - relation_one_to_many", + "body": [ + "{% svg material relation_one_to_many %}" + ] + }, + "relation_one_to_one": { + "prefix": "svg.material.relation_one_to_one", + "description": "SVG material - relation_one_to_one", + "body": [ + "{% svg material relation_one_to_one %}" + ] + }, + "relation_one_to_one_or_many": { + "prefix": "svg.material.relation_one_to_one_or_many", + "description": "SVG material - relation_one_to_one_or_many", + "body": [ + "{% svg material relation_one_to_one_or_many %}" + ] + }, + "relation_one_to_only_one": { + "prefix": "svg.material.relation_one_to_only_one", + "description": "SVG material - relation_one_to_only_one", + "body": [ + "{% svg material relation_one_to_only_one %}" + ] + }, + "relation_one_to_zero_or_many": { + "prefix": "svg.material.relation_one_to_zero_or_many", + "description": "SVG material - relation_one_to_zero_or_many", + "body": [ + "{% svg material relation_one_to_zero_or_many %}" + ] + }, + "relation_one_to_zero_or_one": { + "prefix": "svg.material.relation_one_to_zero_or_one", + "description": "SVG material - relation_one_to_zero_or_one", + "body": [ + "{% svg material relation_one_to_zero_or_one %}" + ] + }, + "relation_only_one_to_many": { + "prefix": "svg.material.relation_only_one_to_many", + "description": "SVG material - relation_only_one_to_many", + "body": [ + "{% svg material relation_only_one_to_many %}" + ] + }, + "relation_only_one_to_one": { + "prefix": "svg.material.relation_only_one_to_one", + "description": "SVG material - relation_only_one_to_one", + "body": [ + "{% svg material relation_only_one_to_one %}" + ] + }, + "relation_only_one_to_one_or_many": { + "prefix": "svg.material.relation_only_one_to_one_or_many", + "description": "SVG material - relation_only_one_to_one_or_many", + "body": [ + "{% svg material relation_only_one_to_one_or_many %}" + ] + }, + "relation_only_one_to_only_one": { + "prefix": "svg.material.relation_only_one_to_only_one", + "description": "SVG material - relation_only_one_to_only_one", + "body": [ + "{% svg material relation_only_one_to_only_one %}" + ] + }, + "relation_only_one_to_zero_or_many": { + "prefix": "svg.material.relation_only_one_to_zero_or_many", + "description": "SVG material - relation_only_one_to_zero_or_many", + "body": [ + "{% svg material relation_only_one_to_zero_or_many %}" + ] + }, + "relation_only_one_to_zero_or_one": { + "prefix": "svg.material.relation_only_one_to_zero_or_one", + "description": "SVG material - relation_only_one_to_zero_or_one", + "body": [ + "{% svg material relation_only_one_to_zero_or_one %}" + ] + }, + "relation_zero_or_many_to_many": { + "prefix": "svg.material.relation_zero_or_many_to_many", + "description": "SVG material - relation_zero_or_many_to_many", + "body": [ + "{% svg material relation_zero_or_many_to_many %}" + ] + }, + "relation_zero_or_many_to_one": { + "prefix": "svg.material.relation_zero_or_many_to_one", + "description": "SVG material - relation_zero_or_many_to_one", + "body": [ + "{% svg material relation_zero_or_many_to_one %}" + ] + }, + "relation_zero_or_many_to_one_or_many": { + "prefix": "svg.material.relation_zero_or_many_to_one_or_many", + "description": "SVG material - relation_zero_or_many_to_one_or_many", + "body": [ + "{% svg material relation_zero_or_many_to_one_or_many %}" + ] + }, + "relation_zero_or_many_to_only_one": { + "prefix": "svg.material.relation_zero_or_many_to_only_one", + "description": "SVG material - relation_zero_or_many_to_only_one", + "body": [ + "{% svg material relation_zero_or_many_to_only_one %}" + ] + }, + "relation_zero_or_many_to_zero_or_many": { + "prefix": "svg.material.relation_zero_or_many_to_zero_or_many", + "description": "SVG material - relation_zero_or_many_to_zero_or_many", + "body": [ + "{% svg material relation_zero_or_many_to_zero_or_many %}" + ] + }, + "relation_zero_or_many_to_zero_or_one": { + "prefix": "svg.material.relation_zero_or_many_to_zero_or_one", + "description": "SVG material - relation_zero_or_many_to_zero_or_one", + "body": [ + "{% svg material relation_zero_or_many_to_zero_or_one %}" + ] + }, + "relation_zero_or_one_to_many": { + "prefix": "svg.material.relation_zero_or_one_to_many", + "description": "SVG material - relation_zero_or_one_to_many", + "body": [ + "{% svg material relation_zero_or_one_to_many %}" + ] + }, + "relation_zero_or_one_to_one": { + "prefix": "svg.material.relation_zero_or_one_to_one", + "description": "SVG material - relation_zero_or_one_to_one", + "body": [ + "{% svg material relation_zero_or_one_to_one %}" + ] + }, + "relation_zero_or_one_to_one_or_many": { + "prefix": "svg.material.relation_zero_or_one_to_one_or_many", + "description": "SVG material - relation_zero_or_one_to_one_or_many", + "body": [ + "{% svg material relation_zero_or_one_to_one_or_many %}" + ] + }, + "relation_zero_or_one_to_only_one": { + "prefix": "svg.material.relation_zero_or_one_to_only_one", + "description": "SVG material - relation_zero_or_one_to_only_one", + "body": [ + "{% svg material relation_zero_or_one_to_only_one %}" + ] + }, + "relation_zero_or_one_to_zero_or_many": { + "prefix": "svg.material.relation_zero_or_one_to_zero_or_many", + "description": "SVG material - relation_zero_or_one_to_zero_or_many", + "body": [ + "{% svg material relation_zero_or_one_to_zero_or_many %}" + ] + }, + "relation_zero_or_one_to_zero_or_one": { + "prefix": "svg.material.relation_zero_or_one_to_zero_or_one", + "description": "SVG material - relation_zero_or_one_to_zero_or_one", + "body": [ + "{% svg material relation_zero_or_one_to_zero_or_one %}" + ] + }, + "relative_scale": { + "prefix": "svg.material.relative_scale", + "description": "SVG material - relative_scale", + "body": [ + "{% svg material relative_scale %}" + ] + }, + "reload": { + "prefix": "svg.material.reload", + "description": "SVG material - reload", + "body": [ + "{% svg material reload %}" + ] + }, + "reload_alert": { + "prefix": "svg.material.reload_alert", + "description": "SVG material - reload_alert", + "body": [ + "{% svg material reload_alert %}" + ] + }, + "reminder": { + "prefix": "svg.material.reminder", + "description": "SVG material - reminder", + "body": [ + "{% svg material reminder %}" + ] + }, + "remote": { + "prefix": "svg.material.remote", + "description": "SVG material - remote", + "body": [ + "{% svg material remote %}" + ] + }, + "remote_desktop": { + "prefix": "svg.material.remote_desktop", + "description": "SVG material - remote_desktop", + "body": [ + "{% svg material remote_desktop %}" + ] + }, + "remote_off": { + "prefix": "svg.material.remote_off", + "description": "SVG material - remote_off", + "body": [ + "{% svg material remote_off %}" + ] + }, + "remote_tv": { + "prefix": "svg.material.remote_tv", + "description": "SVG material - remote_tv", + "body": [ + "{% svg material remote_tv %}" + ] + }, + "remote_tv_off": { + "prefix": "svg.material.remote_tv_off", + "description": "SVG material - remote_tv_off", + "body": [ + "{% svg material remote_tv_off %}" + ] + }, + "rename": { + "prefix": "svg.material.rename", + "description": "SVG material - rename", + "body": [ + "{% svg material rename %}" + ] + }, + "rename_box": { + "prefix": "svg.material.rename_box", + "description": "SVG material - rename_box", + "body": [ + "{% svg material rename_box %}" + ] + }, + "rename_box_outline": { + "prefix": "svg.material.rename_box_outline", + "description": "SVG material - rename_box_outline", + "body": [ + "{% svg material rename_box_outline %}" + ] + }, + "rename_outline": { + "prefix": "svg.material.rename_outline", + "description": "SVG material - rename_outline", + "body": [ + "{% svg material rename_outline %}" + ] + }, + "reorder_horizontal": { + "prefix": "svg.material.reorder_horizontal", + "description": "SVG material - reorder_horizontal", + "body": [ + "{% svg material reorder_horizontal %}" + ] + }, + "reorder_vertical": { + "prefix": "svg.material.reorder_vertical", + "description": "SVG material - reorder_vertical", + "body": [ + "{% svg material reorder_vertical %}" + ] + }, + "repeat": { + "prefix": "svg.material.repeat", + "description": "SVG material - repeat", + "body": [ + "{% svg material repeat %}" + ] + }, + "repeat_off": { + "prefix": "svg.material.repeat_off", + "description": "SVG material - repeat_off", + "body": [ + "{% svg material repeat_off %}" + ] + }, + "repeat_once": { + "prefix": "svg.material.repeat_once", + "description": "SVG material - repeat_once", + "body": [ + "{% svg material repeat_once %}" + ] + }, + "repeat_variant": { + "prefix": "svg.material.repeat_variant", + "description": "SVG material - repeat_variant", + "body": [ + "{% svg material repeat_variant %}" + ] + }, + "replay": { + "prefix": "svg.material.replay", + "description": "SVG material - replay", + "body": [ + "{% svg material replay %}" + ] + }, + "reply": { + "prefix": "svg.material.reply", + "description": "SVG material - reply", + "body": [ + "{% svg material reply %}" + ] + }, + "reply_all": { + "prefix": "svg.material.reply_all", + "description": "SVG material - reply_all", + "body": [ + "{% svg material reply_all %}" + ] + }, + "reply_all_outline": { + "prefix": "svg.material.reply_all_outline", + "description": "SVG material - reply_all_outline", + "body": [ + "{% svg material reply_all_outline %}" + ] + }, + "reply_circle": { + "prefix": "svg.material.reply_circle", + "description": "SVG material - reply_circle", + "body": [ + "{% svg material reply_circle %}" + ] + }, + "reply_outline": { + "prefix": "svg.material.reply_outline", + "description": "SVG material - reply_outline", + "body": [ + "{% svg material reply_outline %}" + ] + }, + "reproduction": { + "prefix": "svg.material.reproduction", + "description": "SVG material - reproduction", + "body": [ + "{% svg material reproduction %}" + ] + }, + "resistor": { + "prefix": "svg.material.resistor", + "description": "SVG material - resistor", + "body": [ + "{% svg material resistor %}" + ] + }, + "resistor_nodes": { + "prefix": "svg.material.resistor_nodes", + "description": "SVG material - resistor_nodes", + "body": [ + "{% svg material resistor_nodes %}" + ] + }, + "resize": { + "prefix": "svg.material.resize", + "description": "SVG material - resize", + "body": [ + "{% svg material resize %}" + ] + }, + "resize_bottom_right": { + "prefix": "svg.material.resize_bottom_right", + "description": "SVG material - resize_bottom_right", + "body": [ + "{% svg material resize_bottom_right %}" + ] + }, + "responsive": { + "prefix": "svg.material.responsive", + "description": "SVG material - responsive", + "body": [ + "{% svg material responsive %}" + ] + }, + "restart": { + "prefix": "svg.material.restart", + "description": "SVG material - restart", + "body": [ + "{% svg material restart %}" + ] + }, + "restart_alert": { + "prefix": "svg.material.restart_alert", + "description": "SVG material - restart_alert", + "body": [ + "{% svg material restart_alert %}" + ] + }, + "restart_off": { + "prefix": "svg.material.restart_off", + "description": "SVG material - restart_off", + "body": [ + "{% svg material restart_off %}" + ] + }, + "restore": { + "prefix": "svg.material.restore", + "description": "SVG material - restore", + "body": [ + "{% svg material restore %}" + ] + }, + "restore_alert": { + "prefix": "svg.material.restore_alert", + "description": "SVG material - restore_alert", + "body": [ + "{% svg material restore_alert %}" + ] + }, + "rewind": { + "prefix": "svg.material.rewind", + "description": "SVG material - rewind", + "body": [ + "{% svg material rewind %}" + ] + }, + "rewind_10": { + "prefix": "svg.material.rewind_10", + "description": "SVG material - rewind_10", + "body": [ + "{% svg material rewind_10 %}" + ] + }, + "rewind_15": { + "prefix": "svg.material.rewind_15", + "description": "SVG material - rewind_15", + "body": [ + "{% svg material rewind_15 %}" + ] + }, + "rewind_30": { + "prefix": "svg.material.rewind_30", + "description": "SVG material - rewind_30", + "body": [ + "{% svg material rewind_30 %}" + ] + }, + "rewind_45": { + "prefix": "svg.material.rewind_45", + "description": "SVG material - rewind_45", + "body": [ + "{% svg material rewind_45 %}" + ] + }, + "rewind_5": { + "prefix": "svg.material.rewind_5", + "description": "SVG material - rewind_5", + "body": [ + "{% svg material rewind_5 %}" + ] + }, + "rewind_60": { + "prefix": "svg.material.rewind_60", + "description": "SVG material - rewind_60", + "body": [ + "{% svg material rewind_60 %}" + ] + }, + "rewind_outline": { + "prefix": "svg.material.rewind_outline", + "description": "SVG material - rewind_outline", + "body": [ + "{% svg material rewind_outline %}" + ] + }, + "rhombus": { + "prefix": "svg.material.rhombus", + "description": "SVG material - rhombus", + "body": [ + "{% svg material rhombus %}" + ] + }, + "rhombus_medium": { + "prefix": "svg.material.rhombus_medium", + "description": "SVG material - rhombus_medium", + "body": [ + "{% svg material rhombus_medium %}" + ] + }, + "rhombus_medium_outline": { + "prefix": "svg.material.rhombus_medium_outline", + "description": "SVG material - rhombus_medium_outline", + "body": [ + "{% svg material rhombus_medium_outline %}" + ] + }, + "rhombus_outline": { + "prefix": "svg.material.rhombus_outline", + "description": "SVG material - rhombus_outline", + "body": [ + "{% svg material rhombus_outline %}" + ] + }, + "rhombus_split": { + "prefix": "svg.material.rhombus_split", + "description": "SVG material - rhombus_split", + "body": [ + "{% svg material rhombus_split %}" + ] + }, + "rhombus_split_outline": { + "prefix": "svg.material.rhombus_split_outline", + "description": "SVG material - rhombus_split_outline", + "body": [ + "{% svg material rhombus_split_outline %}" + ] + }, + "ribbon": { + "prefix": "svg.material.ribbon", + "description": "SVG material - ribbon", + "body": [ + "{% svg material ribbon %}" + ] + }, + "rice": { + "prefix": "svg.material.rice", + "description": "SVG material - rice", + "body": [ + "{% svg material rice %}" + ] + }, + "rickshaw": { + "prefix": "svg.material.rickshaw", + "description": "SVG material - rickshaw", + "body": [ + "{% svg material rickshaw %}" + ] + }, + "rickshaw_electric": { + "prefix": "svg.material.rickshaw_electric", + "description": "SVG material - rickshaw_electric", + "body": [ + "{% svg material rickshaw_electric %}" + ] + }, + "ring": { + "prefix": "svg.material.ring", + "description": "SVG material - ring", + "body": [ + "{% svg material ring %}" + ] + }, + "rivet": { + "prefix": "svg.material.rivet", + "description": "SVG material - rivet", + "body": [ + "{% svg material rivet %}" + ] + }, + "road": { + "prefix": "svg.material.road", + "description": "SVG material - road", + "body": [ + "{% svg material road %}" + ] + }, + "road_variant": { + "prefix": "svg.material.road_variant", + "description": "SVG material - road_variant", + "body": [ + "{% svg material road_variant %}" + ] + }, + "robber": { + "prefix": "svg.material.robber", + "description": "SVG material - robber", + "body": [ + "{% svg material robber %}" + ] + }, + "robot": { + "prefix": "svg.material.robot", + "description": "SVG material - robot", + "body": [ + "{% svg material robot %}" + ] + }, + "robot_angry": { + "prefix": "svg.material.robot_angry", + "description": "SVG material - robot_angry", + "body": [ + "{% svg material robot_angry %}" + ] + }, + "robot_angry_outline": { + "prefix": "svg.material.robot_angry_outline", + "description": "SVG material - robot_angry_outline", + "body": [ + "{% svg material robot_angry_outline %}" + ] + }, + "robot_confused": { + "prefix": "svg.material.robot_confused", + "description": "SVG material - robot_confused", + "body": [ + "{% svg material robot_confused %}" + ] + }, + "robot_confused_outline": { + "prefix": "svg.material.robot_confused_outline", + "description": "SVG material - robot_confused_outline", + "body": [ + "{% svg material robot_confused_outline %}" + ] + }, + "robot_dead": { + "prefix": "svg.material.robot_dead", + "description": "SVG material - robot_dead", + "body": [ + "{% svg material robot_dead %}" + ] + }, + "robot_dead_outline": { + "prefix": "svg.material.robot_dead_outline", + "description": "SVG material - robot_dead_outline", + "body": [ + "{% svg material robot_dead_outline %}" + ] + }, + "robot_excited": { + "prefix": "svg.material.robot_excited", + "description": "SVG material - robot_excited", + "body": [ + "{% svg material robot_excited %}" + ] + }, + "robot_excited_outline": { + "prefix": "svg.material.robot_excited_outline", + "description": "SVG material - robot_excited_outline", + "body": [ + "{% svg material robot_excited_outline %}" + ] + }, + "robot_happy": { + "prefix": "svg.material.robot_happy", + "description": "SVG material - robot_happy", + "body": [ + "{% svg material robot_happy %}" + ] + }, + "robot_happy_outline": { + "prefix": "svg.material.robot_happy_outline", + "description": "SVG material - robot_happy_outline", + "body": [ + "{% svg material robot_happy_outline %}" + ] + }, + "robot_industrial": { + "prefix": "svg.material.robot_industrial", + "description": "SVG material - robot_industrial", + "body": [ + "{% svg material robot_industrial %}" + ] + }, + "robot_industrial_outline": { + "prefix": "svg.material.robot_industrial_outline", + "description": "SVG material - robot_industrial_outline", + "body": [ + "{% svg material robot_industrial_outline %}" + ] + }, + "robot_love": { + "prefix": "svg.material.robot_love", + "description": "SVG material - robot_love", + "body": [ + "{% svg material robot_love %}" + ] + }, + "robot_love_outline": { + "prefix": "svg.material.robot_love_outline", + "description": "SVG material - robot_love_outline", + "body": [ + "{% svg material robot_love_outline %}" + ] + }, + "robot_mower": { + "prefix": "svg.material.robot_mower", + "description": "SVG material - robot_mower", + "body": [ + "{% svg material robot_mower %}" + ] + }, + "robot_mower_outline": { + "prefix": "svg.material.robot_mower_outline", + "description": "SVG material - robot_mower_outline", + "body": [ + "{% svg material robot_mower_outline %}" + ] + }, + "robot_off": { + "prefix": "svg.material.robot_off", + "description": "SVG material - robot_off", + "body": [ + "{% svg material robot_off %}" + ] + }, + "robot_off_outline": { + "prefix": "svg.material.robot_off_outline", + "description": "SVG material - robot_off_outline", + "body": [ + "{% svg material robot_off_outline %}" + ] + }, + "robot_outline": { + "prefix": "svg.material.robot_outline", + "description": "SVG material - robot_outline", + "body": [ + "{% svg material robot_outline %}" + ] + }, + "robot_vacuum": { + "prefix": "svg.material.robot_vacuum", + "description": "SVG material - robot_vacuum", + "body": [ + "{% svg material robot_vacuum %}" + ] + }, + "robot_vacuum_alert": { + "prefix": "svg.material.robot_vacuum_alert", + "description": "SVG material - robot_vacuum_alert", + "body": [ + "{% svg material robot_vacuum_alert %}" + ] + }, + "robot_vacuum_off": { + "prefix": "svg.material.robot_vacuum_off", + "description": "SVG material - robot_vacuum_off", + "body": [ + "{% svg material robot_vacuum_off %}" + ] + }, + "robot_vacuum_variant": { + "prefix": "svg.material.robot_vacuum_variant", + "description": "SVG material - robot_vacuum_variant", + "body": [ + "{% svg material robot_vacuum_variant %}" + ] + }, + "robot_vacuum_variant_alert": { + "prefix": "svg.material.robot_vacuum_variant_alert", + "description": "SVG material - robot_vacuum_variant_alert", + "body": [ + "{% svg material robot_vacuum_variant_alert %}" + ] + }, + "robot_vacuum_variant_off": { + "prefix": "svg.material.robot_vacuum_variant_off", + "description": "SVG material - robot_vacuum_variant_off", + "body": [ + "{% svg material robot_vacuum_variant_off %}" + ] + }, + "rocket": { + "prefix": "svg.material.rocket", + "description": "SVG material - rocket", + "body": [ + "{% svg material rocket %}" + ] + }, + "rocket_launch": { + "prefix": "svg.material.rocket_launch", + "description": "SVG material - rocket_launch", + "body": [ + "{% svg material rocket_launch %}" + ] + }, + "rocket_launch_outline": { + "prefix": "svg.material.rocket_launch_outline", + "description": "SVG material - rocket_launch_outline", + "body": [ + "{% svg material rocket_launch_outline %}" + ] + }, + "rocket_outline": { + "prefix": "svg.material.rocket_outline", + "description": "SVG material - rocket_outline", + "body": [ + "{% svg material rocket_outline %}" + ] + }, + "rodent": { + "prefix": "svg.material.rodent", + "description": "SVG material - rodent", + "body": [ + "{% svg material rodent %}" + ] + }, + "roller_shade": { + "prefix": "svg.material.roller_shade", + "description": "SVG material - roller_shade", + "body": [ + "{% svg material roller_shade %}" + ] + }, + "roller_shade_closed": { + "prefix": "svg.material.roller_shade_closed", + "description": "SVG material - roller_shade_closed", + "body": [ + "{% svg material roller_shade_closed %}" + ] + }, + "roller_skate": { + "prefix": "svg.material.roller_skate", + "description": "SVG material - roller_skate", + "body": [ + "{% svg material roller_skate %}" + ] + }, + "roller_skate_off": { + "prefix": "svg.material.roller_skate_off", + "description": "SVG material - roller_skate_off", + "body": [ + "{% svg material roller_skate_off %}" + ] + }, + "rollerblade": { + "prefix": "svg.material.rollerblade", + "description": "SVG material - rollerblade", + "body": [ + "{% svg material rollerblade %}" + ] + }, + "rollerblade_off": { + "prefix": "svg.material.rollerblade_off", + "description": "SVG material - rollerblade_off", + "body": [ + "{% svg material rollerblade_off %}" + ] + }, + "rollupjs": { + "prefix": "svg.material.rollupjs", + "description": "SVG material - rollupjs", + "body": [ + "{% svg material rollupjs %}" + ] + }, + "rolodex": { + "prefix": "svg.material.rolodex", + "description": "SVG material - rolodex", + "body": [ + "{% svg material rolodex %}" + ] + }, + "rolodex_outline": { + "prefix": "svg.material.rolodex_outline", + "description": "SVG material - rolodex_outline", + "body": [ + "{% svg material rolodex_outline %}" + ] + }, + "roman_numeral_1": { + "prefix": "svg.material.roman_numeral_1", + "description": "SVG material - roman_numeral_1", + "body": [ + "{% svg material roman_numeral_1 %}" + ] + }, + "roman_numeral_10": { + "prefix": "svg.material.roman_numeral_10", + "description": "SVG material - roman_numeral_10", + "body": [ + "{% svg material roman_numeral_10 %}" + ] + }, + "roman_numeral_2": { + "prefix": "svg.material.roman_numeral_2", + "description": "SVG material - roman_numeral_2", + "body": [ + "{% svg material roman_numeral_2 %}" + ] + }, + "roman_numeral_3": { + "prefix": "svg.material.roman_numeral_3", + "description": "SVG material - roman_numeral_3", + "body": [ + "{% svg material roman_numeral_3 %}" + ] + }, + "roman_numeral_4": { + "prefix": "svg.material.roman_numeral_4", + "description": "SVG material - roman_numeral_4", + "body": [ + "{% svg material roman_numeral_4 %}" + ] + }, + "roman_numeral_5": { + "prefix": "svg.material.roman_numeral_5", + "description": "SVG material - roman_numeral_5", + "body": [ + "{% svg material roman_numeral_5 %}" + ] + }, + "roman_numeral_6": { + "prefix": "svg.material.roman_numeral_6", + "description": "SVG material - roman_numeral_6", + "body": [ + "{% svg material roman_numeral_6 %}" + ] + }, + "roman_numeral_7": { + "prefix": "svg.material.roman_numeral_7", + "description": "SVG material - roman_numeral_7", + "body": [ + "{% svg material roman_numeral_7 %}" + ] + }, + "roman_numeral_8": { + "prefix": "svg.material.roman_numeral_8", + "description": "SVG material - roman_numeral_8", + "body": [ + "{% svg material roman_numeral_8 %}" + ] + }, + "roman_numeral_9": { + "prefix": "svg.material.roman_numeral_9", + "description": "SVG material - roman_numeral_9", + "body": [ + "{% svg material roman_numeral_9 %}" + ] + }, + "room_service": { + "prefix": "svg.material.room_service", + "description": "SVG material - room_service", + "body": [ + "{% svg material room_service %}" + ] + }, + "room_service_outline": { + "prefix": "svg.material.room_service_outline", + "description": "SVG material - room_service_outline", + "body": [ + "{% svg material room_service_outline %}" + ] + }, + "rotate_360": { + "prefix": "svg.material.rotate_360", + "description": "SVG material - rotate_360", + "body": [ + "{% svg material rotate_360 %}" + ] + }, + "rotate_3d": { + "prefix": "svg.material.rotate_3d", + "description": "SVG material - rotate_3d", + "body": [ + "{% svg material rotate_3d %}" + ] + }, + "rotate_3d_variant": { + "prefix": "svg.material.rotate_3d_variant", + "description": "SVG material - rotate_3d_variant", + "body": [ + "{% svg material rotate_3d_variant %}" + ] + }, + "rotate_left": { + "prefix": "svg.material.rotate_left", + "description": "SVG material - rotate_left", + "body": [ + "{% svg material rotate_left %}" + ] + }, + "rotate_left_variant": { + "prefix": "svg.material.rotate_left_variant", + "description": "SVG material - rotate_left_variant", + "body": [ + "{% svg material rotate_left_variant %}" + ] + }, + "rotate_orbit": { + "prefix": "svg.material.rotate_orbit", + "description": "SVG material - rotate_orbit", + "body": [ + "{% svg material rotate_orbit %}" + ] + }, + "rotate_right": { + "prefix": "svg.material.rotate_right", + "description": "SVG material - rotate_right", + "body": [ + "{% svg material rotate_right %}" + ] + }, + "rotate_right_variant": { + "prefix": "svg.material.rotate_right_variant", + "description": "SVG material - rotate_right_variant", + "body": [ + "{% svg material rotate_right_variant %}" + ] + }, + "rounded_corner": { + "prefix": "svg.material.rounded_corner", + "description": "SVG material - rounded_corner", + "body": [ + "{% svg material rounded_corner %}" + ] + }, + "router": { + "prefix": "svg.material.router", + "description": "SVG material - router", + "body": [ + "{% svg material router %}" + ] + }, + "router_network": { + "prefix": "svg.material.router_network", + "description": "SVG material - router_network", + "body": [ + "{% svg material router_network %}" + ] + }, + "router_network_wireless": { + "prefix": "svg.material.router_network_wireless", + "description": "SVG material - router_network_wireless", + "body": [ + "{% svg material router_network_wireless %}" + ] + }, + "router_wireless": { + "prefix": "svg.material.router_wireless", + "description": "SVG material - router_wireless", + "body": [ + "{% svg material router_wireless %}" + ] + }, + "router_wireless_off": { + "prefix": "svg.material.router_wireless_off", + "description": "SVG material - router_wireless_off", + "body": [ + "{% svg material router_wireless_off %}" + ] + }, + "router_wireless_settings": { + "prefix": "svg.material.router_wireless_settings", + "description": "SVG material - router_wireless_settings", + "body": [ + "{% svg material router_wireless_settings %}" + ] + }, + "routes": { + "prefix": "svg.material.routes", + "description": "SVG material - routes", + "body": [ + "{% svg material routes %}" + ] + }, + "routes_clock": { + "prefix": "svg.material.routes_clock", + "description": "SVG material - routes_clock", + "body": [ + "{% svg material routes_clock %}" + ] + }, + "rowing": { + "prefix": "svg.material.rowing", + "description": "SVG material - rowing", + "body": [ + "{% svg material rowing %}" + ] + }, + "rss": { + "prefix": "svg.material.rss", + "description": "SVG material - rss", + "body": [ + "{% svg material rss %}" + ] + }, + "rss_box": { + "prefix": "svg.material.rss_box", + "description": "SVG material - rss_box", + "body": [ + "{% svg material rss_box %}" + ] + }, + "rss_off": { + "prefix": "svg.material.rss_off", + "description": "SVG material - rss_off", + "body": [ + "{% svg material rss_off %}" + ] + }, + "rug": { + "prefix": "svg.material.rug", + "description": "SVG material - rug", + "body": [ + "{% svg material rug %}" + ] + }, + "rugby": { + "prefix": "svg.material.rugby", + "description": "SVG material - rugby", + "body": [ + "{% svg material rugby %}" + ] + }, + "ruler": { + "prefix": "svg.material.ruler", + "description": "SVG material - ruler", + "body": [ + "{% svg material ruler %}" + ] + }, + "ruler_square": { + "prefix": "svg.material.ruler_square", + "description": "SVG material - ruler_square", + "body": [ + "{% svg material ruler_square %}" + ] + }, + "ruler_square_compass": { + "prefix": "svg.material.ruler_square_compass", + "description": "SVG material - ruler_square_compass", + "body": [ + "{% svg material ruler_square_compass %}" + ] + }, + "run": { + "prefix": "svg.material.run", + "description": "SVG material - run", + "body": [ + "{% svg material run %}" + ] + }, + "run_fast": { + "prefix": "svg.material.run_fast", + "description": "SVG material - run_fast", + "body": [ + "{% svg material run_fast %}" + ] + }, + "rv_truck": { + "prefix": "svg.material.rv_truck", + "description": "SVG material - rv_truck", + "body": [ + "{% svg material rv_truck %}" + ] + }, + "sack": { + "prefix": "svg.material.sack", + "description": "SVG material - sack", + "body": [ + "{% svg material sack %}" + ] + }, + "sack_outline": { + "prefix": "svg.material.sack_outline", + "description": "SVG material - sack_outline", + "body": [ + "{% svg material sack_outline %}" + ] + }, + "sack_percent": { + "prefix": "svg.material.sack_percent", + "description": "SVG material - sack_percent", + "body": [ + "{% svg material sack_percent %}" + ] + }, + "safe": { + "prefix": "svg.material.safe", + "description": "SVG material - safe", + "body": [ + "{% svg material safe %}" + ] + }, + "safe_square": { + "prefix": "svg.material.safe_square", + "description": "SVG material - safe_square", + "body": [ + "{% svg material safe_square %}" + ] + }, + "safe_square_outline": { + "prefix": "svg.material.safe_square_outline", + "description": "SVG material - safe_square_outline", + "body": [ + "{% svg material safe_square_outline %}" + ] + }, + "safety_goggles": { + "prefix": "svg.material.safety_goggles", + "description": "SVG material - safety_goggles", + "body": [ + "{% svg material safety_goggles %}" + ] + }, + "sail_boat": { + "prefix": "svg.material.sail_boat", + "description": "SVG material - sail_boat", + "body": [ + "{% svg material sail_boat %}" + ] + }, + "sail_boat_sink": { + "prefix": "svg.material.sail_boat_sink", + "description": "SVG material - sail_boat_sink", + "body": [ + "{% svg material sail_boat_sink %}" + ] + }, + "sale": { + "prefix": "svg.material.sale", + "description": "SVG material - sale", + "body": [ + "{% svg material sale %}" + ] + }, + "sale_outline": { + "prefix": "svg.material.sale_outline", + "description": "SVG material - sale_outline", + "body": [ + "{% svg material sale_outline %}" + ] + }, + "salesforce": { + "prefix": "svg.material.salesforce", + "description": "SVG material - salesforce", + "body": [ + "{% svg material salesforce %}" + ] + }, + "sass": { + "prefix": "svg.material.sass", + "description": "SVG material - sass", + "body": [ + "{% svg material sass %}" + ] + }, + "satellite": { + "prefix": "svg.material.satellite", + "description": "SVG material - satellite", + "body": [ + "{% svg material satellite %}" + ] + }, + "satellite_uplink": { + "prefix": "svg.material.satellite_uplink", + "description": "SVG material - satellite_uplink", + "body": [ + "{% svg material satellite_uplink %}" + ] + }, + "satellite_variant": { + "prefix": "svg.material.satellite_variant", + "description": "SVG material - satellite_variant", + "body": [ + "{% svg material satellite_variant %}" + ] + }, + "sausage": { + "prefix": "svg.material.sausage", + "description": "SVG material - sausage", + "body": [ + "{% svg material sausage %}" + ] + }, + "sausage_off": { + "prefix": "svg.material.sausage_off", + "description": "SVG material - sausage_off", + "body": [ + "{% svg material sausage_off %}" + ] + }, + "saw_blade": { + "prefix": "svg.material.saw_blade", + "description": "SVG material - saw_blade", + "body": [ + "{% svg material saw_blade %}" + ] + }, + "sawtooth_wave": { + "prefix": "svg.material.sawtooth_wave", + "description": "SVG material - sawtooth_wave", + "body": [ + "{% svg material sawtooth_wave %}" + ] + }, + "saxophone": { + "prefix": "svg.material.saxophone", + "description": "SVG material - saxophone", + "body": [ + "{% svg material saxophone %}" + ] + }, + "scale": { + "prefix": "svg.material.scale", + "description": "SVG material - scale", + "body": [ + "{% svg material scale %}" + ] + }, + "scale_balance": { + "prefix": "svg.material.scale_balance", + "description": "SVG material - scale_balance", + "body": [ + "{% svg material scale_balance %}" + ] + }, + "scale_bathroom": { + "prefix": "svg.material.scale_bathroom", + "description": "SVG material - scale_bathroom", + "body": [ + "{% svg material scale_bathroom %}" + ] + }, + "scale_off": { + "prefix": "svg.material.scale_off", + "description": "SVG material - scale_off", + "body": [ + "{% svg material scale_off %}" + ] + }, + "scale_unbalanced": { + "prefix": "svg.material.scale_unbalanced", + "description": "SVG material - scale_unbalanced", + "body": [ + "{% svg material scale_unbalanced %}" + ] + }, + "scan_helper": { + "prefix": "svg.material.scan_helper", + "description": "SVG material - scan_helper", + "body": [ + "{% svg material scan_helper %}" + ] + }, + "scanner": { + "prefix": "svg.material.scanner", + "description": "SVG material - scanner", + "body": [ + "{% svg material scanner %}" + ] + }, + "scanner_off": { + "prefix": "svg.material.scanner_off", + "description": "SVG material - scanner_off", + "body": [ + "{% svg material scanner_off %}" + ] + }, + "scatter_plot": { + "prefix": "svg.material.scatter_plot", + "description": "SVG material - scatter_plot", + "body": [ + "{% svg material scatter_plot %}" + ] + }, + "scatter_plot_outline": { + "prefix": "svg.material.scatter_plot_outline", + "description": "SVG material - scatter_plot_outline", + "body": [ + "{% svg material scatter_plot_outline %}" + ] + }, + "scent": { + "prefix": "svg.material.scent", + "description": "SVG material - scent", + "body": [ + "{% svg material scent %}" + ] + }, + "scent_off": { + "prefix": "svg.material.scent_off", + "description": "SVG material - scent_off", + "body": [ + "{% svg material scent_off %}" + ] + }, + "school": { + "prefix": "svg.material.school", + "description": "SVG material - school", + "body": [ + "{% svg material school %}" + ] + }, + "school_outline": { + "prefix": "svg.material.school_outline", + "description": "SVG material - school_outline", + "body": [ + "{% svg material school_outline %}" + ] + }, + "scissors_cutting": { + "prefix": "svg.material.scissors_cutting", + "description": "SVG material - scissors_cutting", + "body": [ + "{% svg material scissors_cutting %}" + ] + }, + "scooter": { + "prefix": "svg.material.scooter", + "description": "SVG material - scooter", + "body": [ + "{% svg material scooter %}" + ] + }, + "scooter_electric": { + "prefix": "svg.material.scooter_electric", + "description": "SVG material - scooter_electric", + "body": [ + "{% svg material scooter_electric %}" + ] + }, + "scoreboard": { + "prefix": "svg.material.scoreboard", + "description": "SVG material - scoreboard", + "body": [ + "{% svg material scoreboard %}" + ] + }, + "scoreboard_outline": { + "prefix": "svg.material.scoreboard_outline", + "description": "SVG material - scoreboard_outline", + "body": [ + "{% svg material scoreboard_outline %}" + ] + }, + "screen_rotation": { + "prefix": "svg.material.screen_rotation", + "description": "SVG material - screen_rotation", + "body": [ + "{% svg material screen_rotation %}" + ] + }, + "screen_rotation_lock": { + "prefix": "svg.material.screen_rotation_lock", + "description": "SVG material - screen_rotation_lock", + "body": [ + "{% svg material screen_rotation_lock %}" + ] + }, + "screw_flat_top": { + "prefix": "svg.material.screw_flat_top", + "description": "SVG material - screw_flat_top", + "body": [ + "{% svg material screw_flat_top %}" + ] + }, + "screw_lag": { + "prefix": "svg.material.screw_lag", + "description": "SVG material - screw_lag", + "body": [ + "{% svg material screw_lag %}" + ] + }, + "screw_machine_flat_top": { + "prefix": "svg.material.screw_machine_flat_top", + "description": "SVG material - screw_machine_flat_top", + "body": [ + "{% svg material screw_machine_flat_top %}" + ] + }, + "screw_machine_round_top": { + "prefix": "svg.material.screw_machine_round_top", + "description": "SVG material - screw_machine_round_top", + "body": [ + "{% svg material screw_machine_round_top %}" + ] + }, + "screw_round_top": { + "prefix": "svg.material.screw_round_top", + "description": "SVG material - screw_round_top", + "body": [ + "{% svg material screw_round_top %}" + ] + }, + "screwdriver": { + "prefix": "svg.material.screwdriver", + "description": "SVG material - screwdriver", + "body": [ + "{% svg material screwdriver %}" + ] + }, + "script": { + "prefix": "svg.material.script", + "description": "SVG material - script", + "body": [ + "{% svg material script %}" + ] + }, + "script_outline": { + "prefix": "svg.material.script_outline", + "description": "SVG material - script_outline", + "body": [ + "{% svg material script_outline %}" + ] + }, + "script_text": { + "prefix": "svg.material.script_text", + "description": "SVG material - script_text", + "body": [ + "{% svg material script_text %}" + ] + }, + "script_text_key": { + "prefix": "svg.material.script_text_key", + "description": "SVG material - script_text_key", + "body": [ + "{% svg material script_text_key %}" + ] + }, + "script_text_key_outline": { + "prefix": "svg.material.script_text_key_outline", + "description": "SVG material - script_text_key_outline", + "body": [ + "{% svg material script_text_key_outline %}" + ] + }, + "script_text_outline": { + "prefix": "svg.material.script_text_outline", + "description": "SVG material - script_text_outline", + "body": [ + "{% svg material script_text_outline %}" + ] + }, + "script_text_play": { + "prefix": "svg.material.script_text_play", + "description": "SVG material - script_text_play", + "body": [ + "{% svg material script_text_play %}" + ] + }, + "script_text_play_outline": { + "prefix": "svg.material.script_text_play_outline", + "description": "SVG material - script_text_play_outline", + "body": [ + "{% svg material script_text_play_outline %}" + ] + }, + "sd": { + "prefix": "svg.material.sd", + "description": "SVG material - sd", + "body": [ + "{% svg material sd %}" + ] + }, + "seal": { + "prefix": "svg.material.seal", + "description": "SVG material - seal", + "body": [ + "{% svg material seal %}" + ] + }, + "seal_variant": { + "prefix": "svg.material.seal_variant", + "description": "SVG material - seal_variant", + "body": [ + "{% svg material seal_variant %}" + ] + }, + "search_web": { + "prefix": "svg.material.search_web", + "description": "SVG material - search_web", + "body": [ + "{% svg material search_web %}" + ] + }, + "seat": { + "prefix": "svg.material.seat", + "description": "SVG material - seat", + "body": [ + "{% svg material seat %}" + ] + }, + "seat_flat": { + "prefix": "svg.material.seat_flat", + "description": "SVG material - seat_flat", + "body": [ + "{% svg material seat_flat %}" + ] + }, + "seat_flat_angled": { + "prefix": "svg.material.seat_flat_angled", + "description": "SVG material - seat_flat_angled", + "body": [ + "{% svg material seat_flat_angled %}" + ] + }, + "seat_individual_suite": { + "prefix": "svg.material.seat_individual_suite", + "description": "SVG material - seat_individual_suite", + "body": [ + "{% svg material seat_individual_suite %}" + ] + }, + "seat_legroom_extra": { + "prefix": "svg.material.seat_legroom_extra", + "description": "SVG material - seat_legroom_extra", + "body": [ + "{% svg material seat_legroom_extra %}" + ] + }, + "seat_legroom_normal": { + "prefix": "svg.material.seat_legroom_normal", + "description": "SVG material - seat_legroom_normal", + "body": [ + "{% svg material seat_legroom_normal %}" + ] + }, + "seat_legroom_reduced": { + "prefix": "svg.material.seat_legroom_reduced", + "description": "SVG material - seat_legroom_reduced", + "body": [ + "{% svg material seat_legroom_reduced %}" + ] + }, + "seat_outline": { + "prefix": "svg.material.seat_outline", + "description": "SVG material - seat_outline", + "body": [ + "{% svg material seat_outline %}" + ] + }, + "seat_passenger": { + "prefix": "svg.material.seat_passenger", + "description": "SVG material - seat_passenger", + "body": [ + "{% svg material seat_passenger %}" + ] + }, + "seat_recline_extra": { + "prefix": "svg.material.seat_recline_extra", + "description": "SVG material - seat_recline_extra", + "body": [ + "{% svg material seat_recline_extra %}" + ] + }, + "seat_recline_normal": { + "prefix": "svg.material.seat_recline_normal", + "description": "SVG material - seat_recline_normal", + "body": [ + "{% svg material seat_recline_normal %}" + ] + }, + "seatbelt": { + "prefix": "svg.material.seatbelt", + "description": "SVG material - seatbelt", + "body": [ + "{% svg material seatbelt %}" + ] + }, + "security": { + "prefix": "svg.material.security", + "description": "SVG material - security", + "body": [ + "{% svg material security %}" + ] + }, + "security_network": { + "prefix": "svg.material.security_network", + "description": "SVG material - security_network", + "body": [ + "{% svg material security_network %}" + ] + }, + "seed": { + "prefix": "svg.material.seed", + "description": "SVG material - seed", + "body": [ + "{% svg material seed %}" + ] + }, + "seed_off": { + "prefix": "svg.material.seed_off", + "description": "SVG material - seed_off", + "body": [ + "{% svg material seed_off %}" + ] + }, + "seed_off_outline": { + "prefix": "svg.material.seed_off_outline", + "description": "SVG material - seed_off_outline", + "body": [ + "{% svg material seed_off_outline %}" + ] + }, + "seed_outline": { + "prefix": "svg.material.seed_outline", + "description": "SVG material - seed_outline", + "body": [ + "{% svg material seed_outline %}" + ] + }, + "seed_plus": { + "prefix": "svg.material.seed_plus", + "description": "SVG material - seed_plus", + "body": [ + "{% svg material seed_plus %}" + ] + }, + "seed_plus_outline": { + "prefix": "svg.material.seed_plus_outline", + "description": "SVG material - seed_plus_outline", + "body": [ + "{% svg material seed_plus_outline %}" + ] + }, + "seesaw": { + "prefix": "svg.material.seesaw", + "description": "SVG material - seesaw", + "body": [ + "{% svg material seesaw %}" + ] + }, + "segment": { + "prefix": "svg.material.segment", + "description": "SVG material - segment", + "body": [ + "{% svg material segment %}" + ] + }, + "select": { + "prefix": "svg.material.select", + "description": "SVG material - select", + "body": [ + "{% svg material select %}" + ] + }, + "select_all": { + "prefix": "svg.material.select_all", + "description": "SVG material - select_all", + "body": [ + "{% svg material select_all %}" + ] + }, + "select_arrow_down": { + "prefix": "svg.material.select_arrow_down", + "description": "SVG material - select_arrow_down", + "body": [ + "{% svg material select_arrow_down %}" + ] + }, + "select_arrow_up": { + "prefix": "svg.material.select_arrow_up", + "description": "SVG material - select_arrow_up", + "body": [ + "{% svg material select_arrow_up %}" + ] + }, + "select_color": { + "prefix": "svg.material.select_color", + "description": "SVG material - select_color", + "body": [ + "{% svg material select_color %}" + ] + }, + "select_compare": { + "prefix": "svg.material.select_compare", + "description": "SVG material - select_compare", + "body": [ + "{% svg material select_compare %}" + ] + }, + "select_drag": { + "prefix": "svg.material.select_drag", + "description": "SVG material - select_drag", + "body": [ + "{% svg material select_drag %}" + ] + }, + "select_group": { + "prefix": "svg.material.select_group", + "description": "SVG material - select_group", + "body": [ + "{% svg material select_group %}" + ] + }, + "select_inverse": { + "prefix": "svg.material.select_inverse", + "description": "SVG material - select_inverse", + "body": [ + "{% svg material select_inverse %}" + ] + }, + "select_marker": { + "prefix": "svg.material.select_marker", + "description": "SVG material - select_marker", + "body": [ + "{% svg material select_marker %}" + ] + }, + "select_multiple": { + "prefix": "svg.material.select_multiple", + "description": "SVG material - select_multiple", + "body": [ + "{% svg material select_multiple %}" + ] + }, + "select_multiple_marker": { + "prefix": "svg.material.select_multiple_marker", + "description": "SVG material - select_multiple_marker", + "body": [ + "{% svg material select_multiple_marker %}" + ] + }, + "select_off": { + "prefix": "svg.material.select_off", + "description": "SVG material - select_off", + "body": [ + "{% svg material select_off %}" + ] + }, + "select_place": { + "prefix": "svg.material.select_place", + "description": "SVG material - select_place", + "body": [ + "{% svg material select_place %}" + ] + }, + "select_remove": { + "prefix": "svg.material.select_remove", + "description": "SVG material - select_remove", + "body": [ + "{% svg material select_remove %}" + ] + }, + "select_search": { + "prefix": "svg.material.select_search", + "description": "SVG material - select_search", + "body": [ + "{% svg material select_search %}" + ] + }, + "selection": { + "prefix": "svg.material.selection", + "description": "SVG material - selection", + "body": [ + "{% svg material selection %}" + ] + }, + "selection_drag": { + "prefix": "svg.material.selection_drag", + "description": "SVG material - selection_drag", + "body": [ + "{% svg material selection_drag %}" + ] + }, + "selection_ellipse": { + "prefix": "svg.material.selection_ellipse", + "description": "SVG material - selection_ellipse", + "body": [ + "{% svg material selection_ellipse %}" + ] + }, + "selection_ellipse_arrow_inside": { + "prefix": "svg.material.selection_ellipse_arrow_inside", + "description": "SVG material - selection_ellipse_arrow_inside", + "body": [ + "{% svg material selection_ellipse_arrow_inside %}" + ] + }, + "selection_ellipse_remove": { + "prefix": "svg.material.selection_ellipse_remove", + "description": "SVG material - selection_ellipse_remove", + "body": [ + "{% svg material selection_ellipse_remove %}" + ] + }, + "selection_marker": { + "prefix": "svg.material.selection_marker", + "description": "SVG material - selection_marker", + "body": [ + "{% svg material selection_marker %}" + ] + }, + "selection_multiple": { + "prefix": "svg.material.selection_multiple", + "description": "SVG material - selection_multiple", + "body": [ + "{% svg material selection_multiple %}" + ] + }, + "selection_multiple_marker": { + "prefix": "svg.material.selection_multiple_marker", + "description": "SVG material - selection_multiple_marker", + "body": [ + "{% svg material selection_multiple_marker %}" + ] + }, + "selection_off": { + "prefix": "svg.material.selection_off", + "description": "SVG material - selection_off", + "body": [ + "{% svg material selection_off %}" + ] + }, + "selection_remove": { + "prefix": "svg.material.selection_remove", + "description": "SVG material - selection_remove", + "body": [ + "{% svg material selection_remove %}" + ] + }, + "selection_search": { + "prefix": "svg.material.selection_search", + "description": "SVG material - selection_search", + "body": [ + "{% svg material selection_search %}" + ] + }, + "semantic_web": { + "prefix": "svg.material.semantic_web", + "description": "SVG material - semantic_web", + "body": [ + "{% svg material semantic_web %}" + ] + }, + "send": { + "prefix": "svg.material.send", + "description": "SVG material - send", + "body": [ + "{% svg material send %}" + ] + }, + "send_check": { + "prefix": "svg.material.send_check", + "description": "SVG material - send_check", + "body": [ + "{% svg material send_check %}" + ] + }, + "send_check_outline": { + "prefix": "svg.material.send_check_outline", + "description": "SVG material - send_check_outline", + "body": [ + "{% svg material send_check_outline %}" + ] + }, + "send_circle": { + "prefix": "svg.material.send_circle", + "description": "SVG material - send_circle", + "body": [ + "{% svg material send_circle %}" + ] + }, + "send_circle_outline": { + "prefix": "svg.material.send_circle_outline", + "description": "SVG material - send_circle_outline", + "body": [ + "{% svg material send_circle_outline %}" + ] + }, + "send_clock": { + "prefix": "svg.material.send_clock", + "description": "SVG material - send_clock", + "body": [ + "{% svg material send_clock %}" + ] + }, + "send_clock_outline": { + "prefix": "svg.material.send_clock_outline", + "description": "SVG material - send_clock_outline", + "body": [ + "{% svg material send_clock_outline %}" + ] + }, + "send_lock": { + "prefix": "svg.material.send_lock", + "description": "SVG material - send_lock", + "body": [ + "{% svg material send_lock %}" + ] + }, + "send_lock_outline": { + "prefix": "svg.material.send_lock_outline", + "description": "SVG material - send_lock_outline", + "body": [ + "{% svg material send_lock_outline %}" + ] + }, + "send_outline": { + "prefix": "svg.material.send_outline", + "description": "SVG material - send_outline", + "body": [ + "{% svg material send_outline %}" + ] + }, + "send_variant": { + "prefix": "svg.material.send_variant", + "description": "SVG material - send_variant", + "body": [ + "{% svg material send_variant %}" + ] + }, + "send_variant_clock": { + "prefix": "svg.material.send_variant_clock", + "description": "SVG material - send_variant_clock", + "body": [ + "{% svg material send_variant_clock %}" + ] + }, + "send_variant_clock_outline": { + "prefix": "svg.material.send_variant_clock_outline", + "description": "SVG material - send_variant_clock_outline", + "body": [ + "{% svg material send_variant_clock_outline %}" + ] + }, + "send_variant_outline": { + "prefix": "svg.material.send_variant_outline", + "description": "SVG material - send_variant_outline", + "body": [ + "{% svg material send_variant_outline %}" + ] + }, + "serial_port": { + "prefix": "svg.material.serial_port", + "description": "SVG material - serial_port", + "body": [ + "{% svg material serial_port %}" + ] + }, + "server": { + "prefix": "svg.material.server", + "description": "SVG material - server", + "body": [ + "{% svg material server %}" + ] + }, + "server_minus": { + "prefix": "svg.material.server_minus", + "description": "SVG material - server_minus", + "body": [ + "{% svg material server_minus %}" + ] + }, + "server_minus_outline": { + "prefix": "svg.material.server_minus_outline", + "description": "SVG material - server_minus_outline", + "body": [ + "{% svg material server_minus_outline %}" + ] + }, + "server_network": { + "prefix": "svg.material.server_network", + "description": "SVG material - server_network", + "body": [ + "{% svg material server_network %}" + ] + }, + "server_network_off": { + "prefix": "svg.material.server_network_off", + "description": "SVG material - server_network_off", + "body": [ + "{% svg material server_network_off %}" + ] + }, + "server_network_outline": { + "prefix": "svg.material.server_network_outline", + "description": "SVG material - server_network_outline", + "body": [ + "{% svg material server_network_outline %}" + ] + }, + "server_off": { + "prefix": "svg.material.server_off", + "description": "SVG material - server_off", + "body": [ + "{% svg material server_off %}" + ] + }, + "server_outline": { + "prefix": "svg.material.server_outline", + "description": "SVG material - server_outline", + "body": [ + "{% svg material server_outline %}" + ] + }, + "server_plus": { + "prefix": "svg.material.server_plus", + "description": "SVG material - server_plus", + "body": [ + "{% svg material server_plus %}" + ] + }, + "server_plus_outline": { + "prefix": "svg.material.server_plus_outline", + "description": "SVG material - server_plus_outline", + "body": [ + "{% svg material server_plus_outline %}" + ] + }, + "server_remove": { + "prefix": "svg.material.server_remove", + "description": "SVG material - server_remove", + "body": [ + "{% svg material server_remove %}" + ] + }, + "server_security": { + "prefix": "svg.material.server_security", + "description": "SVG material - server_security", + "body": [ + "{% svg material server_security %}" + ] + }, + "set_all": { + "prefix": "svg.material.set_all", + "description": "SVG material - set_all", + "body": [ + "{% svg material set_all %}" + ] + }, + "set_center": { + "prefix": "svg.material.set_center", + "description": "SVG material - set_center", + "body": [ + "{% svg material set_center %}" + ] + }, + "set_center_right": { + "prefix": "svg.material.set_center_right", + "description": "SVG material - set_center_right", + "body": [ + "{% svg material set_center_right %}" + ] + }, + "set_left": { + "prefix": "svg.material.set_left", + "description": "SVG material - set_left", + "body": [ + "{% svg material set_left %}" + ] + }, + "set_left_center": { + "prefix": "svg.material.set_left_center", + "description": "SVG material - set_left_center", + "body": [ + "{% svg material set_left_center %}" + ] + }, + "set_left_right": { + "prefix": "svg.material.set_left_right", + "description": "SVG material - set_left_right", + "body": [ + "{% svg material set_left_right %}" + ] + }, + "set_merge": { + "prefix": "svg.material.set_merge", + "description": "SVG material - set_merge", + "body": [ + "{% svg material set_merge %}" + ] + }, + "set_none": { + "prefix": "svg.material.set_none", + "description": "SVG material - set_none", + "body": [ + "{% svg material set_none %}" + ] + }, + "set_right": { + "prefix": "svg.material.set_right", + "description": "SVG material - set_right", + "body": [ + "{% svg material set_right %}" + ] + }, + "set_split": { + "prefix": "svg.material.set_split", + "description": "SVG material - set_split", + "body": [ + "{% svg material set_split %}" + ] + }, + "set_square": { + "prefix": "svg.material.set_square", + "description": "SVG material - set_square", + "body": [ + "{% svg material set_square %}" + ] + }, + "set_top_box": { + "prefix": "svg.material.set_top_box", + "description": "SVG material - set_top_box", + "body": [ + "{% svg material set_top_box %}" + ] + }, + "settings_helper": { + "prefix": "svg.material.settings_helper", + "description": "SVG material - settings_helper", + "body": [ + "{% svg material settings_helper %}" + ] + }, + "shaker": { + "prefix": "svg.material.shaker", + "description": "SVG material - shaker", + "body": [ + "{% svg material shaker %}" + ] + }, + "shaker_outline": { + "prefix": "svg.material.shaker_outline", + "description": "SVG material - shaker_outline", + "body": [ + "{% svg material shaker_outline %}" + ] + }, + "shape": { + "prefix": "svg.material.shape", + "description": "SVG material - shape", + "body": [ + "{% svg material shape %}" + ] + }, + "shape_circle_plus": { + "prefix": "svg.material.shape_circle_plus", + "description": "SVG material - shape_circle_plus", + "body": [ + "{% svg material shape_circle_plus %}" + ] + }, + "shape_outline": { + "prefix": "svg.material.shape_outline", + "description": "SVG material - shape_outline", + "body": [ + "{% svg material shape_outline %}" + ] + }, + "shape_oval_plus": { + "prefix": "svg.material.shape_oval_plus", + "description": "SVG material - shape_oval_plus", + "body": [ + "{% svg material shape_oval_plus %}" + ] + }, + "shape_plus": { + "prefix": "svg.material.shape_plus", + "description": "SVG material - shape_plus", + "body": [ + "{% svg material shape_plus %}" + ] + }, + "shape_plus_outline": { + "prefix": "svg.material.shape_plus_outline", + "description": "SVG material - shape_plus_outline", + "body": [ + "{% svg material shape_plus_outline %}" + ] + }, + "shape_polygon_plus": { + "prefix": "svg.material.shape_polygon_plus", + "description": "SVG material - shape_polygon_plus", + "body": [ + "{% svg material shape_polygon_plus %}" + ] + }, + "shape_rectangle_plus": { + "prefix": "svg.material.shape_rectangle_plus", + "description": "SVG material - shape_rectangle_plus", + "body": [ + "{% svg material shape_rectangle_plus %}" + ] + }, + "shape_square_plus": { + "prefix": "svg.material.shape_square_plus", + "description": "SVG material - shape_square_plus", + "body": [ + "{% svg material shape_square_plus %}" + ] + }, + "shape_square_rounded_plus": { + "prefix": "svg.material.shape_square_rounded_plus", + "description": "SVG material - shape_square_rounded_plus", + "body": [ + "{% svg material shape_square_rounded_plus %}" + ] + }, + "share": { + "prefix": "svg.material.share", + "description": "SVG material - share", + "body": [ + "{% svg material share %}" + ] + }, + "share_all": { + "prefix": "svg.material.share_all", + "description": "SVG material - share_all", + "body": [ + "{% svg material share_all %}" + ] + }, + "share_all_outline": { + "prefix": "svg.material.share_all_outline", + "description": "SVG material - share_all_outline", + "body": [ + "{% svg material share_all_outline %}" + ] + }, + "share_circle": { + "prefix": "svg.material.share_circle", + "description": "SVG material - share_circle", + "body": [ + "{% svg material share_circle %}" + ] + }, + "share_off": { + "prefix": "svg.material.share_off", + "description": "SVG material - share_off", + "body": [ + "{% svg material share_off %}" + ] + }, + "share_off_outline": { + "prefix": "svg.material.share_off_outline", + "description": "SVG material - share_off_outline", + "body": [ + "{% svg material share_off_outline %}" + ] + }, + "share_outline": { + "prefix": "svg.material.share_outline", + "description": "SVG material - share_outline", + "body": [ + "{% svg material share_outline %}" + ] + }, + "share_variant": { + "prefix": "svg.material.share_variant", + "description": "SVG material - share_variant", + "body": [ + "{% svg material share_variant %}" + ] + }, + "share_variant_outline": { + "prefix": "svg.material.share_variant_outline", + "description": "SVG material - share_variant_outline", + "body": [ + "{% svg material share_variant_outline %}" + ] + }, + "shark": { + "prefix": "svg.material.shark", + "description": "SVG material - shark", + "body": [ + "{% svg material shark %}" + ] + }, + "shark_fin": { + "prefix": "svg.material.shark_fin", + "description": "SVG material - shark_fin", + "body": [ + "{% svg material shark_fin %}" + ] + }, + "shark_fin_outline": { + "prefix": "svg.material.shark_fin_outline", + "description": "SVG material - shark_fin_outline", + "body": [ + "{% svg material shark_fin_outline %}" + ] + }, + "shark_off": { + "prefix": "svg.material.shark_off", + "description": "SVG material - shark_off", + "body": [ + "{% svg material shark_off %}" + ] + }, + "sheep": { + "prefix": "svg.material.sheep", + "description": "SVG material - sheep", + "body": [ + "{% svg material sheep %}" + ] + }, + "shield": { + "prefix": "svg.material.shield", + "description": "SVG material - shield", + "body": [ + "{% svg material shield %}" + ] + }, + "shield_account": { + "prefix": "svg.material.shield_account", + "description": "SVG material - shield_account", + "body": [ + "{% svg material shield_account %}" + ] + }, + "shield_account_outline": { + "prefix": "svg.material.shield_account_outline", + "description": "SVG material - shield_account_outline", + "body": [ + "{% svg material shield_account_outline %}" + ] + }, + "shield_account_variant": { + "prefix": "svg.material.shield_account_variant", + "description": "SVG material - shield_account_variant", + "body": [ + "{% svg material shield_account_variant %}" + ] + }, + "shield_account_variant_outline": { + "prefix": "svg.material.shield_account_variant_outline", + "description": "SVG material - shield_account_variant_outline", + "body": [ + "{% svg material shield_account_variant_outline %}" + ] + }, + "shield_airplane": { + "prefix": "svg.material.shield_airplane", + "description": "SVG material - shield_airplane", + "body": [ + "{% svg material shield_airplane %}" + ] + }, + "shield_airplane_outline": { + "prefix": "svg.material.shield_airplane_outline", + "description": "SVG material - shield_airplane_outline", + "body": [ + "{% svg material shield_airplane_outline %}" + ] + }, + "shield_alert": { + "prefix": "svg.material.shield_alert", + "description": "SVG material - shield_alert", + "body": [ + "{% svg material shield_alert %}" + ] + }, + "shield_alert_outline": { + "prefix": "svg.material.shield_alert_outline", + "description": "SVG material - shield_alert_outline", + "body": [ + "{% svg material shield_alert_outline %}" + ] + }, + "shield_bug": { + "prefix": "svg.material.shield_bug", + "description": "SVG material - shield_bug", + "body": [ + "{% svg material shield_bug %}" + ] + }, + "shield_bug_outline": { + "prefix": "svg.material.shield_bug_outline", + "description": "SVG material - shield_bug_outline", + "body": [ + "{% svg material shield_bug_outline %}" + ] + }, + "shield_car": { + "prefix": "svg.material.shield_car", + "description": "SVG material - shield_car", + "body": [ + "{% svg material shield_car %}" + ] + }, + "shield_check": { + "prefix": "svg.material.shield_check", + "description": "SVG material - shield_check", + "body": [ + "{% svg material shield_check %}" + ] + }, + "shield_check_outline": { + "prefix": "svg.material.shield_check_outline", + "description": "SVG material - shield_check_outline", + "body": [ + "{% svg material shield_check_outline %}" + ] + }, + "shield_cross": { + "prefix": "svg.material.shield_cross", + "description": "SVG material - shield_cross", + "body": [ + "{% svg material shield_cross %}" + ] + }, + "shield_cross_outline": { + "prefix": "svg.material.shield_cross_outline", + "description": "SVG material - shield_cross_outline", + "body": [ + "{% svg material shield_cross_outline %}" + ] + }, + "shield_crown": { + "prefix": "svg.material.shield_crown", + "description": "SVG material - shield_crown", + "body": [ + "{% svg material shield_crown %}" + ] + }, + "shield_crown_outline": { + "prefix": "svg.material.shield_crown_outline", + "description": "SVG material - shield_crown_outline", + "body": [ + "{% svg material shield_crown_outline %}" + ] + }, + "shield_edit": { + "prefix": "svg.material.shield_edit", + "description": "SVG material - shield_edit", + "body": [ + "{% svg material shield_edit %}" + ] + }, + "shield_edit_outline": { + "prefix": "svg.material.shield_edit_outline", + "description": "SVG material - shield_edit_outline", + "body": [ + "{% svg material shield_edit_outline %}" + ] + }, + "shield_half": { + "prefix": "svg.material.shield_half", + "description": "SVG material - shield_half", + "body": [ + "{% svg material shield_half %}" + ] + }, + "shield_half_full": { + "prefix": "svg.material.shield_half_full", + "description": "SVG material - shield_half_full", + "body": [ + "{% svg material shield_half_full %}" + ] + }, + "shield_home": { + "prefix": "svg.material.shield_home", + "description": "SVG material - shield_home", + "body": [ + "{% svg material shield_home %}" + ] + }, + "shield_home_outline": { + "prefix": "svg.material.shield_home_outline", + "description": "SVG material - shield_home_outline", + "body": [ + "{% svg material shield_home_outline %}" + ] + }, + "shield_key": { + "prefix": "svg.material.shield_key", + "description": "SVG material - shield_key", + "body": [ + "{% svg material shield_key %}" + ] + }, + "shield_key_outline": { + "prefix": "svg.material.shield_key_outline", + "description": "SVG material - shield_key_outline", + "body": [ + "{% svg material shield_key_outline %}" + ] + }, + "shield_link_variant": { + "prefix": "svg.material.shield_link_variant", + "description": "SVG material - shield_link_variant", + "body": [ + "{% svg material shield_link_variant %}" + ] + }, + "shield_link_variant_outline": { + "prefix": "svg.material.shield_link_variant_outline", + "description": "SVG material - shield_link_variant_outline", + "body": [ + "{% svg material shield_link_variant_outline %}" + ] + }, + "shield_lock": { + "prefix": "svg.material.shield_lock", + "description": "SVG material - shield_lock", + "body": [ + "{% svg material shield_lock %}" + ] + }, + "shield_lock_open": { + "prefix": "svg.material.shield_lock_open", + "description": "SVG material - shield_lock_open", + "body": [ + "{% svg material shield_lock_open %}" + ] + }, + "shield_lock_open_outline": { + "prefix": "svg.material.shield_lock_open_outline", + "description": "SVG material - shield_lock_open_outline", + "body": [ + "{% svg material shield_lock_open_outline %}" + ] + }, + "shield_lock_outline": { + "prefix": "svg.material.shield_lock_outline", + "description": "SVG material - shield_lock_outline", + "body": [ + "{% svg material shield_lock_outline %}" + ] + }, + "shield_moon": { + "prefix": "svg.material.shield_moon", + "description": "SVG material - shield_moon", + "body": [ + "{% svg material shield_moon %}" + ] + }, + "shield_moon_outline": { + "prefix": "svg.material.shield_moon_outline", + "description": "SVG material - shield_moon_outline", + "body": [ + "{% svg material shield_moon_outline %}" + ] + }, + "shield_off": { + "prefix": "svg.material.shield_off", + "description": "SVG material - shield_off", + "body": [ + "{% svg material shield_off %}" + ] + }, + "shield_off_outline": { + "prefix": "svg.material.shield_off_outline", + "description": "SVG material - shield_off_outline", + "body": [ + "{% svg material shield_off_outline %}" + ] + }, + "shield_outline": { + "prefix": "svg.material.shield_outline", + "description": "SVG material - shield_outline", + "body": [ + "{% svg material shield_outline %}" + ] + }, + "shield_plus": { + "prefix": "svg.material.shield_plus", + "description": "SVG material - shield_plus", + "body": [ + "{% svg material shield_plus %}" + ] + }, + "shield_plus_outline": { + "prefix": "svg.material.shield_plus_outline", + "description": "SVG material - shield_plus_outline", + "body": [ + "{% svg material shield_plus_outline %}" + ] + }, + "shield_refresh": { + "prefix": "svg.material.shield_refresh", + "description": "SVG material - shield_refresh", + "body": [ + "{% svg material shield_refresh %}" + ] + }, + "shield_refresh_outline": { + "prefix": "svg.material.shield_refresh_outline", + "description": "SVG material - shield_refresh_outline", + "body": [ + "{% svg material shield_refresh_outline %}" + ] + }, + "shield_remove": { + "prefix": "svg.material.shield_remove", + "description": "SVG material - shield_remove", + "body": [ + "{% svg material shield_remove %}" + ] + }, + "shield_remove_outline": { + "prefix": "svg.material.shield_remove_outline", + "description": "SVG material - shield_remove_outline", + "body": [ + "{% svg material shield_remove_outline %}" + ] + }, + "shield_search": { + "prefix": "svg.material.shield_search", + "description": "SVG material - shield_search", + "body": [ + "{% svg material shield_search %}" + ] + }, + "shield_star": { + "prefix": "svg.material.shield_star", + "description": "SVG material - shield_star", + "body": [ + "{% svg material shield_star %}" + ] + }, + "shield_star_outline": { + "prefix": "svg.material.shield_star_outline", + "description": "SVG material - shield_star_outline", + "body": [ + "{% svg material shield_star_outline %}" + ] + }, + "shield_sun": { + "prefix": "svg.material.shield_sun", + "description": "SVG material - shield_sun", + "body": [ + "{% svg material shield_sun %}" + ] + }, + "shield_sun_outline": { + "prefix": "svg.material.shield_sun_outline", + "description": "SVG material - shield_sun_outline", + "body": [ + "{% svg material shield_sun_outline %}" + ] + }, + "shield_sword": { + "prefix": "svg.material.shield_sword", + "description": "SVG material - shield_sword", + "body": [ + "{% svg material shield_sword %}" + ] + }, + "shield_sword_outline": { + "prefix": "svg.material.shield_sword_outline", + "description": "SVG material - shield_sword_outline", + "body": [ + "{% svg material shield_sword_outline %}" + ] + }, + "shield_sync": { + "prefix": "svg.material.shield_sync", + "description": "SVG material - shield_sync", + "body": [ + "{% svg material shield_sync %}" + ] + }, + "shield_sync_outline": { + "prefix": "svg.material.shield_sync_outline", + "description": "SVG material - shield_sync_outline", + "body": [ + "{% svg material shield_sync_outline %}" + ] + }, + "shimmer": { + "prefix": "svg.material.shimmer", + "description": "SVG material - shimmer", + "body": [ + "{% svg material shimmer %}" + ] + }, + "ship_wheel": { + "prefix": "svg.material.ship_wheel", + "description": "SVG material - ship_wheel", + "body": [ + "{% svg material ship_wheel %}" + ] + }, + "shipping_pallet": { + "prefix": "svg.material.shipping_pallet", + "description": "SVG material - shipping_pallet", + "body": [ + "{% svg material shipping_pallet %}" + ] + }, + "shoe_ballet": { + "prefix": "svg.material.shoe_ballet", + "description": "SVG material - shoe_ballet", + "body": [ + "{% svg material shoe_ballet %}" + ] + }, + "shoe_cleat": { + "prefix": "svg.material.shoe_cleat", + "description": "SVG material - shoe_cleat", + "body": [ + "{% svg material shoe_cleat %}" + ] + }, + "shoe_formal": { + "prefix": "svg.material.shoe_formal", + "description": "SVG material - shoe_formal", + "body": [ + "{% svg material shoe_formal %}" + ] + }, + "shoe_heel": { + "prefix": "svg.material.shoe_heel", + "description": "SVG material - shoe_heel", + "body": [ + "{% svg material shoe_heel %}" + ] + }, + "shoe_print": { + "prefix": "svg.material.shoe_print", + "description": "SVG material - shoe_print", + "body": [ + "{% svg material shoe_print %}" + ] + }, + "shoe_sneaker": { + "prefix": "svg.material.shoe_sneaker", + "description": "SVG material - shoe_sneaker", + "body": [ + "{% svg material shoe_sneaker %}" + ] + }, + "shopping": { + "prefix": "svg.material.shopping", + "description": "SVG material - shopping", + "body": [ + "{% svg material shopping %}" + ] + }, + "shopping_music": { + "prefix": "svg.material.shopping_music", + "description": "SVG material - shopping_music", + "body": [ + "{% svg material shopping_music %}" + ] + }, + "shopping_outline": { + "prefix": "svg.material.shopping_outline", + "description": "SVG material - shopping_outline", + "body": [ + "{% svg material shopping_outline %}" + ] + }, + "shopping_search": { + "prefix": "svg.material.shopping_search", + "description": "SVG material - shopping_search", + "body": [ + "{% svg material shopping_search %}" + ] + }, + "shopping_search_outline": { + "prefix": "svg.material.shopping_search_outline", + "description": "SVG material - shopping_search_outline", + "body": [ + "{% svg material shopping_search_outline %}" + ] + }, + "shore": { + "prefix": "svg.material.shore", + "description": "SVG material - shore", + "body": [ + "{% svg material shore %}" + ] + }, + "shovel": { + "prefix": "svg.material.shovel", + "description": "SVG material - shovel", + "body": [ + "{% svg material shovel %}" + ] + }, + "shovel_off": { + "prefix": "svg.material.shovel_off", + "description": "SVG material - shovel_off", + "body": [ + "{% svg material shovel_off %}" + ] + }, + "shower": { + "prefix": "svg.material.shower", + "description": "SVG material - shower", + "body": [ + "{% svg material shower %}" + ] + }, + "shower_head": { + "prefix": "svg.material.shower_head", + "description": "SVG material - shower_head", + "body": [ + "{% svg material shower_head %}" + ] + }, + "shredder": { + "prefix": "svg.material.shredder", + "description": "SVG material - shredder", + "body": [ + "{% svg material shredder %}" + ] + }, + "shuffle": { + "prefix": "svg.material.shuffle", + "description": "SVG material - shuffle", + "body": [ + "{% svg material shuffle %}" + ] + }, + "shuffle_disabled": { + "prefix": "svg.material.shuffle_disabled", + "description": "SVG material - shuffle_disabled", + "body": [ + "{% svg material shuffle_disabled %}" + ] + }, + "shuffle_variant": { + "prefix": "svg.material.shuffle_variant", + "description": "SVG material - shuffle_variant", + "body": [ + "{% svg material shuffle_variant %}" + ] + }, + "shuriken": { + "prefix": "svg.material.shuriken", + "description": "SVG material - shuriken", + "body": [ + "{% svg material shuriken %}" + ] + }, + "sickle": { + "prefix": "svg.material.sickle", + "description": "SVG material - sickle", + "body": [ + "{% svg material sickle %}" + ] + }, + "sigma": { + "prefix": "svg.material.sigma", + "description": "SVG material - sigma", + "body": [ + "{% svg material sigma %}" + ] + }, + "sigma_lower": { + "prefix": "svg.material.sigma_lower", + "description": "SVG material - sigma_lower", + "body": [ + "{% svg material sigma_lower %}" + ] + }, + "sign_caution": { + "prefix": "svg.material.sign_caution", + "description": "SVG material - sign_caution", + "body": [ + "{% svg material sign_caution %}" + ] + }, + "sign_direction": { + "prefix": "svg.material.sign_direction", + "description": "SVG material - sign_direction", + "body": [ + "{% svg material sign_direction %}" + ] + }, + "sign_direction_minus": { + "prefix": "svg.material.sign_direction_minus", + "description": "SVG material - sign_direction_minus", + "body": [ + "{% svg material sign_direction_minus %}" + ] + }, + "sign_direction_plus": { + "prefix": "svg.material.sign_direction_plus", + "description": "SVG material - sign_direction_plus", + "body": [ + "{% svg material sign_direction_plus %}" + ] + }, + "sign_direction_remove": { + "prefix": "svg.material.sign_direction_remove", + "description": "SVG material - sign_direction_remove", + "body": [ + "{% svg material sign_direction_remove %}" + ] + }, + "sign_language": { + "prefix": "svg.material.sign_language", + "description": "SVG material - sign_language", + "body": [ + "{% svg material sign_language %}" + ] + }, + "sign_language_outline": { + "prefix": "svg.material.sign_language_outline", + "description": "SVG material - sign_language_outline", + "body": [ + "{% svg material sign_language_outline %}" + ] + }, + "sign_pole": { + "prefix": "svg.material.sign_pole", + "description": "SVG material - sign_pole", + "body": [ + "{% svg material sign_pole %}" + ] + }, + "sign_real_estate": { + "prefix": "svg.material.sign_real_estate", + "description": "SVG material - sign_real_estate", + "body": [ + "{% svg material sign_real_estate %}" + ] + }, + "sign_text": { + "prefix": "svg.material.sign_text", + "description": "SVG material - sign_text", + "body": [ + "{% svg material sign_text %}" + ] + }, + "sign_yield": { + "prefix": "svg.material.sign_yield", + "description": "SVG material - sign_yield", + "body": [ + "{% svg material sign_yield %}" + ] + }, + "signal": { + "prefix": "svg.material.signal", + "description": "SVG material - signal", + "body": [ + "{% svg material signal %}" + ] + }, + "signal_2g": { + "prefix": "svg.material.signal_2g", + "description": "SVG material - signal_2g", + "body": [ + "{% svg material signal_2g %}" + ] + }, + "signal_3g": { + "prefix": "svg.material.signal_3g", + "description": "SVG material - signal_3g", + "body": [ + "{% svg material signal_3g %}" + ] + }, + "signal_4g": { + "prefix": "svg.material.signal_4g", + "description": "SVG material - signal_4g", + "body": [ + "{% svg material signal_4g %}" + ] + }, + "signal_5g": { + "prefix": "svg.material.signal_5g", + "description": "SVG material - signal_5g", + "body": [ + "{% svg material signal_5g %}" + ] + }, + "signal_cellular_1": { + "prefix": "svg.material.signal_cellular_1", + "description": "SVG material - signal_cellular_1", + "body": [ + "{% svg material signal_cellular_1 %}" + ] + }, + "signal_cellular_2": { + "prefix": "svg.material.signal_cellular_2", + "description": "SVG material - signal_cellular_2", + "body": [ + "{% svg material signal_cellular_2 %}" + ] + }, + "signal_cellular_3": { + "prefix": "svg.material.signal_cellular_3", + "description": "SVG material - signal_cellular_3", + "body": [ + "{% svg material signal_cellular_3 %}" + ] + }, + "signal_cellular_outline": { + "prefix": "svg.material.signal_cellular_outline", + "description": "SVG material - signal_cellular_outline", + "body": [ + "{% svg material signal_cellular_outline %}" + ] + }, + "signal_distance_variant": { + "prefix": "svg.material.signal_distance_variant", + "description": "SVG material - signal_distance_variant", + "body": [ + "{% svg material signal_distance_variant %}" + ] + }, + "signal_hspa": { + "prefix": "svg.material.signal_hspa", + "description": "SVG material - signal_hspa", + "body": [ + "{% svg material signal_hspa %}" + ] + }, + "signal_hspa_plus": { + "prefix": "svg.material.signal_hspa_plus", + "description": "SVG material - signal_hspa_plus", + "body": [ + "{% svg material signal_hspa_plus %}" + ] + }, + "signal_off": { + "prefix": "svg.material.signal_off", + "description": "SVG material - signal_off", + "body": [ + "{% svg material signal_off %}" + ] + }, + "signal_variant": { + "prefix": "svg.material.signal_variant", + "description": "SVG material - signal_variant", + "body": [ + "{% svg material signal_variant %}" + ] + }, + "signature": { + "prefix": "svg.material.signature", + "description": "SVG material - signature", + "body": [ + "{% svg material signature %}" + ] + }, + "signature_freehand": { + "prefix": "svg.material.signature_freehand", + "description": "SVG material - signature_freehand", + "body": [ + "{% svg material signature_freehand %}" + ] + }, + "signature_image": { + "prefix": "svg.material.signature_image", + "description": "SVG material - signature_image", + "body": [ + "{% svg material signature_image %}" + ] + }, + "signature_text": { + "prefix": "svg.material.signature_text", + "description": "SVG material - signature_text", + "body": [ + "{% svg material signature_text %}" + ] + }, + "silo": { + "prefix": "svg.material.silo", + "description": "SVG material - silo", + "body": [ + "{% svg material silo %}" + ] + }, + "silo_outline": { + "prefix": "svg.material.silo_outline", + "description": "SVG material - silo_outline", + "body": [ + "{% svg material silo_outline %}" + ] + }, + "silverware": { + "prefix": "svg.material.silverware", + "description": "SVG material - silverware", + "body": [ + "{% svg material silverware %}" + ] + }, + "silverware_clean": { + "prefix": "svg.material.silverware_clean", + "description": "SVG material - silverware_clean", + "body": [ + "{% svg material silverware_clean %}" + ] + }, + "silverware_fork": { + "prefix": "svg.material.silverware_fork", + "description": "SVG material - silverware_fork", + "body": [ + "{% svg material silverware_fork %}" + ] + }, + "silverware_fork_knife": { + "prefix": "svg.material.silverware_fork_knife", + "description": "SVG material - silverware_fork_knife", + "body": [ + "{% svg material silverware_fork_knife %}" + ] + }, + "silverware_spoon": { + "prefix": "svg.material.silverware_spoon", + "description": "SVG material - silverware_spoon", + "body": [ + "{% svg material silverware_spoon %}" + ] + }, + "silverware_variant": { + "prefix": "svg.material.silverware_variant", + "description": "SVG material - silverware_variant", + "body": [ + "{% svg material silverware_variant %}" + ] + }, + "sim": { + "prefix": "svg.material.sim", + "description": "SVG material - sim", + "body": [ + "{% svg material sim %}" + ] + }, + "sim_alert": { + "prefix": "svg.material.sim_alert", + "description": "SVG material - sim_alert", + "body": [ + "{% svg material sim_alert %}" + ] + }, + "sim_alert_outline": { + "prefix": "svg.material.sim_alert_outline", + "description": "SVG material - sim_alert_outline", + "body": [ + "{% svg material sim_alert_outline %}" + ] + }, + "sim_off": { + "prefix": "svg.material.sim_off", + "description": "SVG material - sim_off", + "body": [ + "{% svg material sim_off %}" + ] + }, + "sim_off_outline": { + "prefix": "svg.material.sim_off_outline", + "description": "SVG material - sim_off_outline", + "body": [ + "{% svg material sim_off_outline %}" + ] + }, + "sim_outline": { + "prefix": "svg.material.sim_outline", + "description": "SVG material - sim_outline", + "body": [ + "{% svg material sim_outline %}" + ] + }, + "simple_icons": { + "prefix": "svg.material.simple_icons", + "description": "SVG material - simple_icons", + "body": [ + "{% svg material simple_icons %}" + ] + }, + "sina_weibo": { + "prefix": "svg.material.sina_weibo", + "description": "SVG material - sina_weibo", + "body": [ + "{% svg material sina_weibo %}" + ] + }, + "sine_wave": { + "prefix": "svg.material.sine_wave", + "description": "SVG material - sine_wave", + "body": [ + "{% svg material sine_wave %}" + ] + }, + "sitemap": { + "prefix": "svg.material.sitemap", + "description": "SVG material - sitemap", + "body": [ + "{% svg material sitemap %}" + ] + }, + "sitemap_outline": { + "prefix": "svg.material.sitemap_outline", + "description": "SVG material - sitemap_outline", + "body": [ + "{% svg material sitemap_outline %}" + ] + }, + "size_l": { + "prefix": "svg.material.size_l", + "description": "SVG material - size_l", + "body": [ + "{% svg material size_l %}" + ] + }, + "size_m": { + "prefix": "svg.material.size_m", + "description": "SVG material - size_m", + "body": [ + "{% svg material size_m %}" + ] + }, + "size_s": { + "prefix": "svg.material.size_s", + "description": "SVG material - size_s", + "body": [ + "{% svg material size_s %}" + ] + }, + "size_xl": { + "prefix": "svg.material.size_xl", + "description": "SVG material - size_xl", + "body": [ + "{% svg material size_xl %}" + ] + }, + "size_xs": { + "prefix": "svg.material.size_xs", + "description": "SVG material - size_xs", + "body": [ + "{% svg material size_xs %}" + ] + }, + "size_xxl": { + "prefix": "svg.material.size_xxl", + "description": "SVG material - size_xxl", + "body": [ + "{% svg material size_xxl %}" + ] + }, + "size_xxs": { + "prefix": "svg.material.size_xxs", + "description": "SVG material - size_xxs", + "body": [ + "{% svg material size_xxs %}" + ] + }, + "size_xxxl": { + "prefix": "svg.material.size_xxxl", + "description": "SVG material - size_xxxl", + "body": [ + "{% svg material size_xxxl %}" + ] + }, + "skate": { + "prefix": "svg.material.skate", + "description": "SVG material - skate", + "body": [ + "{% svg material skate %}" + ] + }, + "skate_off": { + "prefix": "svg.material.skate_off", + "description": "SVG material - skate_off", + "body": [ + "{% svg material skate_off %}" + ] + }, + "skateboard": { + "prefix": "svg.material.skateboard", + "description": "SVG material - skateboard", + "body": [ + "{% svg material skateboard %}" + ] + }, + "skateboarding": { + "prefix": "svg.material.skateboarding", + "description": "SVG material - skateboarding", + "body": [ + "{% svg material skateboarding %}" + ] + }, + "skew_less": { + "prefix": "svg.material.skew_less", + "description": "SVG material - skew_less", + "body": [ + "{% svg material skew_less %}" + ] + }, + "skew_more": { + "prefix": "svg.material.skew_more", + "description": "SVG material - skew_more", + "body": [ + "{% svg material skew_more %}" + ] + }, + "ski": { + "prefix": "svg.material.ski", + "description": "SVG material - ski", + "body": [ + "{% svg material ski %}" + ] + }, + "ski_cross_country": { + "prefix": "svg.material.ski_cross_country", + "description": "SVG material - ski_cross_country", + "body": [ + "{% svg material ski_cross_country %}" + ] + }, + "ski_water": { + "prefix": "svg.material.ski_water", + "description": "SVG material - ski_water", + "body": [ + "{% svg material ski_water %}" + ] + }, + "skip_backward": { + "prefix": "svg.material.skip_backward", + "description": "SVG material - skip_backward", + "body": [ + "{% svg material skip_backward %}" + ] + }, + "skip_backward_outline": { + "prefix": "svg.material.skip_backward_outline", + "description": "SVG material - skip_backward_outline", + "body": [ + "{% svg material skip_backward_outline %}" + ] + }, + "skip_forward": { + "prefix": "svg.material.skip_forward", + "description": "SVG material - skip_forward", + "body": [ + "{% svg material skip_forward %}" + ] + }, + "skip_forward_outline": { + "prefix": "svg.material.skip_forward_outline", + "description": "SVG material - skip_forward_outline", + "body": [ + "{% svg material skip_forward_outline %}" + ] + }, + "skip_next": { + "prefix": "svg.material.skip_next", + "description": "SVG material - skip_next", + "body": [ + "{% svg material skip_next %}" + ] + }, + "skip_next_circle": { + "prefix": "svg.material.skip_next_circle", + "description": "SVG material - skip_next_circle", + "body": [ + "{% svg material skip_next_circle %}" + ] + }, + "skip_next_circle_outline": { + "prefix": "svg.material.skip_next_circle_outline", + "description": "SVG material - skip_next_circle_outline", + "body": [ + "{% svg material skip_next_circle_outline %}" + ] + }, + "skip_next_outline": { + "prefix": "svg.material.skip_next_outline", + "description": "SVG material - skip_next_outline", + "body": [ + "{% svg material skip_next_outline %}" + ] + }, + "skip_previous": { + "prefix": "svg.material.skip_previous", + "description": "SVG material - skip_previous", + "body": [ + "{% svg material skip_previous %}" + ] + }, + "skip_previous_circle": { + "prefix": "svg.material.skip_previous_circle", + "description": "SVG material - skip_previous_circle", + "body": [ + "{% svg material skip_previous_circle %}" + ] + }, + "skip_previous_circle_outline": { + "prefix": "svg.material.skip_previous_circle_outline", + "description": "SVG material - skip_previous_circle_outline", + "body": [ + "{% svg material skip_previous_circle_outline %}" + ] + }, + "skip_previous_outline": { + "prefix": "svg.material.skip_previous_outline", + "description": "SVG material - skip_previous_outline", + "body": [ + "{% svg material skip_previous_outline %}" + ] + }, + "skull": { + "prefix": "svg.material.skull", + "description": "SVG material - skull", + "body": [ + "{% svg material skull %}" + ] + }, + "skull_crossbones": { + "prefix": "svg.material.skull_crossbones", + "description": "SVG material - skull_crossbones", + "body": [ + "{% svg material skull_crossbones %}" + ] + }, + "skull_crossbones_outline": { + "prefix": "svg.material.skull_crossbones_outline", + "description": "SVG material - skull_crossbones_outline", + "body": [ + "{% svg material skull_crossbones_outline %}" + ] + }, + "skull_outline": { + "prefix": "svg.material.skull_outline", + "description": "SVG material - skull_outline", + "body": [ + "{% svg material skull_outline %}" + ] + }, + "skull_scan": { + "prefix": "svg.material.skull_scan", + "description": "SVG material - skull_scan", + "body": [ + "{% svg material skull_scan %}" + ] + }, + "skull_scan_outline": { + "prefix": "svg.material.skull_scan_outline", + "description": "SVG material - skull_scan_outline", + "body": [ + "{% svg material skull_scan_outline %}" + ] + }, + "skype": { + "prefix": "svg.material.skype", + "description": "SVG material - skype", + "body": [ + "{% svg material skype %}" + ] + }, + "skype_business": { + "prefix": "svg.material.skype_business", + "description": "SVG material - skype_business", + "body": [ + "{% svg material skype_business %}" + ] + }, + "slack": { + "prefix": "svg.material.slack", + "description": "SVG material - slack", + "body": [ + "{% svg material slack %}" + ] + }, + "slash_forward": { + "prefix": "svg.material.slash_forward", + "description": "SVG material - slash_forward", + "body": [ + "{% svg material slash_forward %}" + ] + }, + "slash_forward_box": { + "prefix": "svg.material.slash_forward_box", + "description": "SVG material - slash_forward_box", + "body": [ + "{% svg material slash_forward_box %}" + ] + }, + "sledding": { + "prefix": "svg.material.sledding", + "description": "SVG material - sledding", + "body": [ + "{% svg material sledding %}" + ] + }, + "sleep": { + "prefix": "svg.material.sleep", + "description": "SVG material - sleep", + "body": [ + "{% svg material sleep %}" + ] + }, + "sleep_off": { + "prefix": "svg.material.sleep_off", + "description": "SVG material - sleep_off", + "body": [ + "{% svg material sleep_off %}" + ] + }, + "slide": { + "prefix": "svg.material.slide", + "description": "SVG material - slide", + "body": [ + "{% svg material slide %}" + ] + }, + "slope_downhill": { + "prefix": "svg.material.slope_downhill", + "description": "SVG material - slope_downhill", + "body": [ + "{% svg material slope_downhill %}" + ] + }, + "slope_uphill": { + "prefix": "svg.material.slope_uphill", + "description": "SVG material - slope_uphill", + "body": [ + "{% svg material slope_uphill %}" + ] + }, + "slot_machine": { + "prefix": "svg.material.slot_machine", + "description": "SVG material - slot_machine", + "body": [ + "{% svg material slot_machine %}" + ] + }, + "slot_machine_outline": { + "prefix": "svg.material.slot_machine_outline", + "description": "SVG material - slot_machine_outline", + "body": [ + "{% svg material slot_machine_outline %}" + ] + }, + "smart_card": { + "prefix": "svg.material.smart_card", + "description": "SVG material - smart_card", + "body": [ + "{% svg material smart_card %}" + ] + }, + "smart_card_off": { + "prefix": "svg.material.smart_card_off", + "description": "SVG material - smart_card_off", + "body": [ + "{% svg material smart_card_off %}" + ] + }, + "smart_card_off_outline": { + "prefix": "svg.material.smart_card_off_outline", + "description": "SVG material - smart_card_off_outline", + "body": [ + "{% svg material smart_card_off_outline %}" + ] + }, + "smart_card_outline": { + "prefix": "svg.material.smart_card_outline", + "description": "SVG material - smart_card_outline", + "body": [ + "{% svg material smart_card_outline %}" + ] + }, + "smart_card_reader": { + "prefix": "svg.material.smart_card_reader", + "description": "SVG material - smart_card_reader", + "body": [ + "{% svg material smart_card_reader %}" + ] + }, + "smart_card_reader_outline": { + "prefix": "svg.material.smart_card_reader_outline", + "description": "SVG material - smart_card_reader_outline", + "body": [ + "{% svg material smart_card_reader_outline %}" + ] + }, + "smog": { + "prefix": "svg.material.smog", + "description": "SVG material - smog", + "body": [ + "{% svg material smog %}" + ] + }, + "smoke": { + "prefix": "svg.material.smoke", + "description": "SVG material - smoke", + "body": [ + "{% svg material smoke %}" + ] + }, + "smoke_detector": { + "prefix": "svg.material.smoke_detector", + "description": "SVG material - smoke_detector", + "body": [ + "{% svg material smoke_detector %}" + ] + }, + "smoke_detector_alert": { + "prefix": "svg.material.smoke_detector_alert", + "description": "SVG material - smoke_detector_alert", + "body": [ + "{% svg material smoke_detector_alert %}" + ] + }, + "smoke_detector_alert_outline": { + "prefix": "svg.material.smoke_detector_alert_outline", + "description": "SVG material - smoke_detector_alert_outline", + "body": [ + "{% svg material smoke_detector_alert_outline %}" + ] + }, + "smoke_detector_off": { + "prefix": "svg.material.smoke_detector_off", + "description": "SVG material - smoke_detector_off", + "body": [ + "{% svg material smoke_detector_off %}" + ] + }, + "smoke_detector_off_outline": { + "prefix": "svg.material.smoke_detector_off_outline", + "description": "SVG material - smoke_detector_off_outline", + "body": [ + "{% svg material smoke_detector_off_outline %}" + ] + }, + "smoke_detector_outline": { + "prefix": "svg.material.smoke_detector_outline", + "description": "SVG material - smoke_detector_outline", + "body": [ + "{% svg material smoke_detector_outline %}" + ] + }, + "smoke_detector_variant": { + "prefix": "svg.material.smoke_detector_variant", + "description": "SVG material - smoke_detector_variant", + "body": [ + "{% svg material smoke_detector_variant %}" + ] + }, + "smoke_detector_variant_alert": { + "prefix": "svg.material.smoke_detector_variant_alert", + "description": "SVG material - smoke_detector_variant_alert", + "body": [ + "{% svg material smoke_detector_variant_alert %}" + ] + }, + "smoke_detector_variant_off": { + "prefix": "svg.material.smoke_detector_variant_off", + "description": "SVG material - smoke_detector_variant_off", + "body": [ + "{% svg material smoke_detector_variant_off %}" + ] + }, + "smoking": { + "prefix": "svg.material.smoking", + "description": "SVG material - smoking", + "body": [ + "{% svg material smoking %}" + ] + }, + "smoking_off": { + "prefix": "svg.material.smoking_off", + "description": "SVG material - smoking_off", + "body": [ + "{% svg material smoking_off %}" + ] + }, + "smoking_pipe": { + "prefix": "svg.material.smoking_pipe", + "description": "SVG material - smoking_pipe", + "body": [ + "{% svg material smoking_pipe %}" + ] + }, + "smoking_pipe_off": { + "prefix": "svg.material.smoking_pipe_off", + "description": "SVG material - smoking_pipe_off", + "body": [ + "{% svg material smoking_pipe_off %}" + ] + }, + "snail": { + "prefix": "svg.material.snail", + "description": "SVG material - snail", + "body": [ + "{% svg material snail %}" + ] + }, + "snake": { + "prefix": "svg.material.snake", + "description": "SVG material - snake", + "body": [ + "{% svg material snake %}" + ] + }, + "snapchat": { + "prefix": "svg.material.snapchat", + "description": "SVG material - snapchat", + "body": [ + "{% svg material snapchat %}" + ] + }, + "snowboard": { + "prefix": "svg.material.snowboard", + "description": "SVG material - snowboard", + "body": [ + "{% svg material snowboard %}" + ] + }, + "snowflake": { + "prefix": "svg.material.snowflake", + "description": "SVG material - snowflake", + "body": [ + "{% svg material snowflake %}" + ] + }, + "snowflake_alert": { + "prefix": "svg.material.snowflake_alert", + "description": "SVG material - snowflake_alert", + "body": [ + "{% svg material snowflake_alert %}" + ] + }, + "snowflake_check": { + "prefix": "svg.material.snowflake_check", + "description": "SVG material - snowflake_check", + "body": [ + "{% svg material snowflake_check %}" + ] + }, + "snowflake_melt": { + "prefix": "svg.material.snowflake_melt", + "description": "SVG material - snowflake_melt", + "body": [ + "{% svg material snowflake_melt %}" + ] + }, + "snowflake_off": { + "prefix": "svg.material.snowflake_off", + "description": "SVG material - snowflake_off", + "body": [ + "{% svg material snowflake_off %}" + ] + }, + "snowflake_thermometer": { + "prefix": "svg.material.snowflake_thermometer", + "description": "SVG material - snowflake_thermometer", + "body": [ + "{% svg material snowflake_thermometer %}" + ] + }, + "snowflake_variant": { + "prefix": "svg.material.snowflake_variant", + "description": "SVG material - snowflake_variant", + "body": [ + "{% svg material snowflake_variant %}" + ] + }, + "snowman": { + "prefix": "svg.material.snowman", + "description": "SVG material - snowman", + "body": [ + "{% svg material snowman %}" + ] + }, + "snowmobile": { + "prefix": "svg.material.snowmobile", + "description": "SVG material - snowmobile", + "body": [ + "{% svg material snowmobile %}" + ] + }, + "snowshoeing": { + "prefix": "svg.material.snowshoeing", + "description": "SVG material - snowshoeing", + "body": [ + "{% svg material snowshoeing %}" + ] + }, + "soccer": { + "prefix": "svg.material.soccer", + "description": "SVG material - soccer", + "body": [ + "{% svg material soccer %}" + ] + }, + "soccer_field": { + "prefix": "svg.material.soccer_field", + "description": "SVG material - soccer_field", + "body": [ + "{% svg material soccer_field %}" + ] + }, + "social_distance_2_meters": { + "prefix": "svg.material.social_distance_2_meters", + "description": "SVG material - social_distance_2_meters", + "body": [ + "{% svg material social_distance_2_meters %}" + ] + }, + "social_distance_6_feet": { + "prefix": "svg.material.social_distance_6_feet", + "description": "SVG material - social_distance_6_feet", + "body": [ + "{% svg material social_distance_6_feet %}" + ] + }, + "sofa": { + "prefix": "svg.material.sofa", + "description": "SVG material - sofa", + "body": [ + "{% svg material sofa %}" + ] + }, + "sofa_outline": { + "prefix": "svg.material.sofa_outline", + "description": "SVG material - sofa_outline", + "body": [ + "{% svg material sofa_outline %}" + ] + }, + "sofa_single": { + "prefix": "svg.material.sofa_single", + "description": "SVG material - sofa_single", + "body": [ + "{% svg material sofa_single %}" + ] + }, + "sofa_single_outline": { + "prefix": "svg.material.sofa_single_outline", + "description": "SVG material - sofa_single_outline", + "body": [ + "{% svg material sofa_single_outline %}" + ] + }, + "solar_panel": { + "prefix": "svg.material.solar_panel", + "description": "SVG material - solar_panel", + "body": [ + "{% svg material solar_panel %}" + ] + }, + "solar_panel_large": { + "prefix": "svg.material.solar_panel_large", + "description": "SVG material - solar_panel_large", + "body": [ + "{% svg material solar_panel_large %}" + ] + }, + "solar_power": { + "prefix": "svg.material.solar_power", + "description": "SVG material - solar_power", + "body": [ + "{% svg material solar_power %}" + ] + }, + "solar_power_variant": { + "prefix": "svg.material.solar_power_variant", + "description": "SVG material - solar_power_variant", + "body": [ + "{% svg material solar_power_variant %}" + ] + }, + "solar_power_variant_outline": { + "prefix": "svg.material.solar_power_variant_outline", + "description": "SVG material - solar_power_variant_outline", + "body": [ + "{% svg material solar_power_variant_outline %}" + ] + }, + "soldering_iron": { + "prefix": "svg.material.soldering_iron", + "description": "SVG material - soldering_iron", + "body": [ + "{% svg material soldering_iron %}" + ] + }, + "solid": { + "prefix": "svg.material.solid", + "description": "SVG material - solid", + "body": [ + "{% svg material solid %}" + ] + }, + "sony_playstation": { + "prefix": "svg.material.sony_playstation", + "description": "SVG material - sony_playstation", + "body": [ + "{% svg material sony_playstation %}" + ] + }, + "sort": { + "prefix": "svg.material.sort", + "description": "SVG material - sort", + "body": [ + "{% svg material sort %}" + ] + }, + "sort_alphabetical_ascending": { + "prefix": "svg.material.sort_alphabetical_ascending", + "description": "SVG material - sort_alphabetical_ascending", + "body": [ + "{% svg material sort_alphabetical_ascending %}" + ] + }, + "sort_alphabetical_ascending_variant": { + "prefix": "svg.material.sort_alphabetical_ascending_variant", + "description": "SVG material - sort_alphabetical_ascending_variant", + "body": [ + "{% svg material sort_alphabetical_ascending_variant %}" + ] + }, + "sort_alphabetical_descending": { + "prefix": "svg.material.sort_alphabetical_descending", + "description": "SVG material - sort_alphabetical_descending", + "body": [ + "{% svg material sort_alphabetical_descending %}" + ] + }, + "sort_alphabetical_descending_variant": { + "prefix": "svg.material.sort_alphabetical_descending_variant", + "description": "SVG material - sort_alphabetical_descending_variant", + "body": [ + "{% svg material sort_alphabetical_descending_variant %}" + ] + }, + "sort_alphabetical_variant": { + "prefix": "svg.material.sort_alphabetical_variant", + "description": "SVG material - sort_alphabetical_variant", + "body": [ + "{% svg material sort_alphabetical_variant %}" + ] + }, + "sort_ascending": { + "prefix": "svg.material.sort_ascending", + "description": "SVG material - sort_ascending", + "body": [ + "{% svg material sort_ascending %}" + ] + }, + "sort_bool_ascending": { + "prefix": "svg.material.sort_bool_ascending", + "description": "SVG material - sort_bool_ascending", + "body": [ + "{% svg material sort_bool_ascending %}" + ] + }, + "sort_bool_ascending_variant": { + "prefix": "svg.material.sort_bool_ascending_variant", + "description": "SVG material - sort_bool_ascending_variant", + "body": [ + "{% svg material sort_bool_ascending_variant %}" + ] + }, + "sort_bool_descending": { + "prefix": "svg.material.sort_bool_descending", + "description": "SVG material - sort_bool_descending", + "body": [ + "{% svg material sort_bool_descending %}" + ] + }, + "sort_bool_descending_variant": { + "prefix": "svg.material.sort_bool_descending_variant", + "description": "SVG material - sort_bool_descending_variant", + "body": [ + "{% svg material sort_bool_descending_variant %}" + ] + }, + "sort_calendar_ascending": { + "prefix": "svg.material.sort_calendar_ascending", + "description": "SVG material - sort_calendar_ascending", + "body": [ + "{% svg material sort_calendar_ascending %}" + ] + }, + "sort_calendar_descending": { + "prefix": "svg.material.sort_calendar_descending", + "description": "SVG material - sort_calendar_descending", + "body": [ + "{% svg material sort_calendar_descending %}" + ] + }, + "sort_clock_ascending": { + "prefix": "svg.material.sort_clock_ascending", + "description": "SVG material - sort_clock_ascending", + "body": [ + "{% svg material sort_clock_ascending %}" + ] + }, + "sort_clock_ascending_outline": { + "prefix": "svg.material.sort_clock_ascending_outline", + "description": "SVG material - sort_clock_ascending_outline", + "body": [ + "{% svg material sort_clock_ascending_outline %}" + ] + }, + "sort_clock_descending": { + "prefix": "svg.material.sort_clock_descending", + "description": "SVG material - sort_clock_descending", + "body": [ + "{% svg material sort_clock_descending %}" + ] + }, + "sort_clock_descending_outline": { + "prefix": "svg.material.sort_clock_descending_outline", + "description": "SVG material - sort_clock_descending_outline", + "body": [ + "{% svg material sort_clock_descending_outline %}" + ] + }, + "sort_descending": { + "prefix": "svg.material.sort_descending", + "description": "SVG material - sort_descending", + "body": [ + "{% svg material sort_descending %}" + ] + }, + "sort_numeric_ascending": { + "prefix": "svg.material.sort_numeric_ascending", + "description": "SVG material - sort_numeric_ascending", + "body": [ + "{% svg material sort_numeric_ascending %}" + ] + }, + "sort_numeric_ascending_variant": { + "prefix": "svg.material.sort_numeric_ascending_variant", + "description": "SVG material - sort_numeric_ascending_variant", + "body": [ + "{% svg material sort_numeric_ascending_variant %}" + ] + }, + "sort_numeric_descending": { + "prefix": "svg.material.sort_numeric_descending", + "description": "SVG material - sort_numeric_descending", + "body": [ + "{% svg material sort_numeric_descending %}" + ] + }, + "sort_numeric_descending_variant": { + "prefix": "svg.material.sort_numeric_descending_variant", + "description": "SVG material - sort_numeric_descending_variant", + "body": [ + "{% svg material sort_numeric_descending_variant %}" + ] + }, + "sort_numeric_variant": { + "prefix": "svg.material.sort_numeric_variant", + "description": "SVG material - sort_numeric_variant", + "body": [ + "{% svg material sort_numeric_variant %}" + ] + }, + "sort_reverse_variant": { + "prefix": "svg.material.sort_reverse_variant", + "description": "SVG material - sort_reverse_variant", + "body": [ + "{% svg material sort_reverse_variant %}" + ] + }, + "sort_variant": { + "prefix": "svg.material.sort_variant", + "description": "SVG material - sort_variant", + "body": [ + "{% svg material sort_variant %}" + ] + }, + "sort_variant_lock": { + "prefix": "svg.material.sort_variant_lock", + "description": "SVG material - sort_variant_lock", + "body": [ + "{% svg material sort_variant_lock %}" + ] + }, + "sort_variant_lock_open": { + "prefix": "svg.material.sort_variant_lock_open", + "description": "SVG material - sort_variant_lock_open", + "body": [ + "{% svg material sort_variant_lock_open %}" + ] + }, + "sort_variant_off": { + "prefix": "svg.material.sort_variant_off", + "description": "SVG material - sort_variant_off", + "body": [ + "{% svg material sort_variant_off %}" + ] + }, + "sort_variant_remove": { + "prefix": "svg.material.sort_variant_remove", + "description": "SVG material - sort_variant_remove", + "body": [ + "{% svg material sort_variant_remove %}" + ] + }, + "soundbar": { + "prefix": "svg.material.soundbar", + "description": "SVG material - soundbar", + "body": [ + "{% svg material soundbar %}" + ] + }, + "soundcloud": { + "prefix": "svg.material.soundcloud", + "description": "SVG material - soundcloud", + "body": [ + "{% svg material soundcloud %}" + ] + }, + "source_branch": { + "prefix": "svg.material.source_branch", + "description": "SVG material - source_branch", + "body": [ + "{% svg material source_branch %}" + ] + }, + "source_branch_check": { + "prefix": "svg.material.source_branch_check", + "description": "SVG material - source_branch_check", + "body": [ + "{% svg material source_branch_check %}" + ] + }, + "source_branch_minus": { + "prefix": "svg.material.source_branch_minus", + "description": "SVG material - source_branch_minus", + "body": [ + "{% svg material source_branch_minus %}" + ] + }, + "source_branch_plus": { + "prefix": "svg.material.source_branch_plus", + "description": "SVG material - source_branch_plus", + "body": [ + "{% svg material source_branch_plus %}" + ] + }, + "source_branch_refresh": { + "prefix": "svg.material.source_branch_refresh", + "description": "SVG material - source_branch_refresh", + "body": [ + "{% svg material source_branch_refresh %}" + ] + }, + "source_branch_remove": { + "prefix": "svg.material.source_branch_remove", + "description": "SVG material - source_branch_remove", + "body": [ + "{% svg material source_branch_remove %}" + ] + }, + "source_branch_sync": { + "prefix": "svg.material.source_branch_sync", + "description": "SVG material - source_branch_sync", + "body": [ + "{% svg material source_branch_sync %}" + ] + }, + "source_commit": { + "prefix": "svg.material.source_commit", + "description": "SVG material - source_commit", + "body": [ + "{% svg material source_commit %}" + ] + }, + "source_commit_end": { + "prefix": "svg.material.source_commit_end", + "description": "SVG material - source_commit_end", + "body": [ + "{% svg material source_commit_end %}" + ] + }, + "source_commit_end_local": { + "prefix": "svg.material.source_commit_end_local", + "description": "SVG material - source_commit_end_local", + "body": [ + "{% svg material source_commit_end_local %}" + ] + }, + "source_commit_local": { + "prefix": "svg.material.source_commit_local", + "description": "SVG material - source_commit_local", + "body": [ + "{% svg material source_commit_local %}" + ] + }, + "source_commit_next_local": { + "prefix": "svg.material.source_commit_next_local", + "description": "SVG material - source_commit_next_local", + "body": [ + "{% svg material source_commit_next_local %}" + ] + }, + "source_commit_start": { + "prefix": "svg.material.source_commit_start", + "description": "SVG material - source_commit_start", + "body": [ + "{% svg material source_commit_start %}" + ] + }, + "source_commit_start_next_local": { + "prefix": "svg.material.source_commit_start_next_local", + "description": "SVG material - source_commit_start_next_local", + "body": [ + "{% svg material source_commit_start_next_local %}" + ] + }, + "source_fork": { + "prefix": "svg.material.source_fork", + "description": "SVG material - source_fork", + "body": [ + "{% svg material source_fork %}" + ] + }, + "source_merge": { + "prefix": "svg.material.source_merge", + "description": "SVG material - source_merge", + "body": [ + "{% svg material source_merge %}" + ] + }, + "source_pull": { + "prefix": "svg.material.source_pull", + "description": "SVG material - source_pull", + "body": [ + "{% svg material source_pull %}" + ] + }, + "source_repository": { + "prefix": "svg.material.source_repository", + "description": "SVG material - source_repository", + "body": [ + "{% svg material source_repository %}" + ] + }, + "source_repository_multiple": { + "prefix": "svg.material.source_repository_multiple", + "description": "SVG material - source_repository_multiple", + "body": [ + "{% svg material source_repository_multiple %}" + ] + }, + "soy_sauce": { + "prefix": "svg.material.soy_sauce", + "description": "SVG material - soy_sauce", + "body": [ + "{% svg material soy_sauce %}" + ] + }, + "soy_sauce_off": { + "prefix": "svg.material.soy_sauce_off", + "description": "SVG material - soy_sauce_off", + "body": [ + "{% svg material soy_sauce_off %}" + ] + }, + "spa": { + "prefix": "svg.material.spa", + "description": "SVG material - spa", + "body": [ + "{% svg material spa %}" + ] + }, + "spa_outline": { + "prefix": "svg.material.spa_outline", + "description": "SVG material - spa_outline", + "body": [ + "{% svg material spa_outline %}" + ] + }, + "space_invaders": { + "prefix": "svg.material.space_invaders", + "description": "SVG material - space_invaders", + "body": [ + "{% svg material space_invaders %}" + ] + }, + "space_station": { + "prefix": "svg.material.space_station", + "description": "SVG material - space_station", + "body": [ + "{% svg material space_station %}" + ] + }, + "spade": { + "prefix": "svg.material.spade", + "description": "SVG material - spade", + "body": [ + "{% svg material spade %}" + ] + }, + "speaker": { + "prefix": "svg.material.speaker", + "description": "SVG material - speaker", + "body": [ + "{% svg material speaker %}" + ] + }, + "speaker_bluetooth": { + "prefix": "svg.material.speaker_bluetooth", + "description": "SVG material - speaker_bluetooth", + "body": [ + "{% svg material speaker_bluetooth %}" + ] + }, + "speaker_message": { + "prefix": "svg.material.speaker_message", + "description": "SVG material - speaker_message", + "body": [ + "{% svg material speaker_message %}" + ] + }, + "speaker_multiple": { + "prefix": "svg.material.speaker_multiple", + "description": "SVG material - speaker_multiple", + "body": [ + "{% svg material speaker_multiple %}" + ] + }, + "speaker_off": { + "prefix": "svg.material.speaker_off", + "description": "SVG material - speaker_off", + "body": [ + "{% svg material speaker_off %}" + ] + }, + "speaker_pause": { + "prefix": "svg.material.speaker_pause", + "description": "SVG material - speaker_pause", + "body": [ + "{% svg material speaker_pause %}" + ] + }, + "speaker_play": { + "prefix": "svg.material.speaker_play", + "description": "SVG material - speaker_play", + "body": [ + "{% svg material speaker_play %}" + ] + }, + "speaker_stop": { + "prefix": "svg.material.speaker_stop", + "description": "SVG material - speaker_stop", + "body": [ + "{% svg material speaker_stop %}" + ] + }, + "speaker_wireless": { + "prefix": "svg.material.speaker_wireless", + "description": "SVG material - speaker_wireless", + "body": [ + "{% svg material speaker_wireless %}" + ] + }, + "spear": { + "prefix": "svg.material.spear", + "description": "SVG material - spear", + "body": [ + "{% svg material spear %}" + ] + }, + "speedometer": { + "prefix": "svg.material.speedometer", + "description": "SVG material - speedometer", + "body": [ + "{% svg material speedometer %}" + ] + }, + "speedometer_medium": { + "prefix": "svg.material.speedometer_medium", + "description": "SVG material - speedometer_medium", + "body": [ + "{% svg material speedometer_medium %}" + ] + }, + "speedometer_slow": { + "prefix": "svg.material.speedometer_slow", + "description": "SVG material - speedometer_slow", + "body": [ + "{% svg material speedometer_slow %}" + ] + }, + "spellcheck": { + "prefix": "svg.material.spellcheck", + "description": "SVG material - spellcheck", + "body": [ + "{% svg material spellcheck %}" + ] + }, + "sphere": { + "prefix": "svg.material.sphere", + "description": "SVG material - sphere", + "body": [ + "{% svg material sphere %}" + ] + }, + "sphere_off": { + "prefix": "svg.material.sphere_off", + "description": "SVG material - sphere_off", + "body": [ + "{% svg material sphere_off %}" + ] + }, + "spider": { + "prefix": "svg.material.spider", + "description": "SVG material - spider", + "body": [ + "{% svg material spider %}" + ] + }, + "spider_outline": { + "prefix": "svg.material.spider_outline", + "description": "SVG material - spider_outline", + "body": [ + "{% svg material spider_outline %}" + ] + }, + "spider_thread": { + "prefix": "svg.material.spider_thread", + "description": "SVG material - spider_thread", + "body": [ + "{% svg material spider_thread %}" + ] + }, + "spider_web": { + "prefix": "svg.material.spider_web", + "description": "SVG material - spider_web", + "body": [ + "{% svg material spider_web %}" + ] + }, + "spirit_level": { + "prefix": "svg.material.spirit_level", + "description": "SVG material - spirit_level", + "body": [ + "{% svg material spirit_level %}" + ] + }, + "spoon_sugar": { + "prefix": "svg.material.spoon_sugar", + "description": "SVG material - spoon_sugar", + "body": [ + "{% svg material spoon_sugar %}" + ] + }, + "spotify": { + "prefix": "svg.material.spotify", + "description": "SVG material - spotify", + "body": [ + "{% svg material spotify %}" + ] + }, + "spotlight": { + "prefix": "svg.material.spotlight", + "description": "SVG material - spotlight", + "body": [ + "{% svg material spotlight %}" + ] + }, + "spotlight_beam": { + "prefix": "svg.material.spotlight_beam", + "description": "SVG material - spotlight_beam", + "body": [ + "{% svg material spotlight_beam %}" + ] + }, + "spray": { + "prefix": "svg.material.spray", + "description": "SVG material - spray", + "body": [ + "{% svg material spray %}" + ] + }, + "spray_bottle": { + "prefix": "svg.material.spray_bottle", + "description": "SVG material - spray_bottle", + "body": [ + "{% svg material spray_bottle %}" + ] + }, + "sprinkler": { + "prefix": "svg.material.sprinkler", + "description": "SVG material - sprinkler", + "body": [ + "{% svg material sprinkler %}" + ] + }, + "sprinkler_fire": { + "prefix": "svg.material.sprinkler_fire", + "description": "SVG material - sprinkler_fire", + "body": [ + "{% svg material sprinkler_fire %}" + ] + }, + "sprinkler_variant": { + "prefix": "svg.material.sprinkler_variant", + "description": "SVG material - sprinkler_variant", + "body": [ + "{% svg material sprinkler_variant %}" + ] + }, + "sprout": { + "prefix": "svg.material.sprout", + "description": "SVG material - sprout", + "body": [ + "{% svg material sprout %}" + ] + }, + "sprout_outline": { + "prefix": "svg.material.sprout_outline", + "description": "SVG material - sprout_outline", + "body": [ + "{% svg material sprout_outline %}" + ] + }, + "square": { + "prefix": "svg.material.square", + "description": "SVG material - square", + "body": [ + "{% svg material square %}" + ] + }, + "square_circle": { + "prefix": "svg.material.square_circle", + "description": "SVG material - square_circle", + "body": [ + "{% svg material square_circle %}" + ] + }, + "square_circle_outline": { + "prefix": "svg.material.square_circle_outline", + "description": "SVG material - square_circle_outline", + "body": [ + "{% svg material square_circle_outline %}" + ] + }, + "square_edit_outline": { + "prefix": "svg.material.square_edit_outline", + "description": "SVG material - square_edit_outline", + "body": [ + "{% svg material square_edit_outline %}" + ] + }, + "square_medium": { + "prefix": "svg.material.square_medium", + "description": "SVG material - square_medium", + "body": [ + "{% svg material square_medium %}" + ] + }, + "square_medium_outline": { + "prefix": "svg.material.square_medium_outline", + "description": "SVG material - square_medium_outline", + "body": [ + "{% svg material square_medium_outline %}" + ] + }, + "square_off": { + "prefix": "svg.material.square_off", + "description": "SVG material - square_off", + "body": [ + "{% svg material square_off %}" + ] + }, + "square_off_outline": { + "prefix": "svg.material.square_off_outline", + "description": "SVG material - square_off_outline", + "body": [ + "{% svg material square_off_outline %}" + ] + }, + "square_opacity": { + "prefix": "svg.material.square_opacity", + "description": "SVG material - square_opacity", + "body": [ + "{% svg material square_opacity %}" + ] + }, + "square_outline": { + "prefix": "svg.material.square_outline", + "description": "SVG material - square_outline", + "body": [ + "{% svg material square_outline %}" + ] + }, + "square_root": { + "prefix": "svg.material.square_root", + "description": "SVG material - square_root", + "body": [ + "{% svg material square_root %}" + ] + }, + "square_root_box": { + "prefix": "svg.material.square_root_box", + "description": "SVG material - square_root_box", + "body": [ + "{% svg material square_root_box %}" + ] + }, + "square_rounded": { + "prefix": "svg.material.square_rounded", + "description": "SVG material - square_rounded", + "body": [ + "{% svg material square_rounded %}" + ] + }, + "square_rounded_badge": { + "prefix": "svg.material.square_rounded_badge", + "description": "SVG material - square_rounded_badge", + "body": [ + "{% svg material square_rounded_badge %}" + ] + }, + "square_rounded_badge_outline": { + "prefix": "svg.material.square_rounded_badge_outline", + "description": "SVG material - square_rounded_badge_outline", + "body": [ + "{% svg material square_rounded_badge_outline %}" + ] + }, + "square_rounded_outline": { + "prefix": "svg.material.square_rounded_outline", + "description": "SVG material - square_rounded_outline", + "body": [ + "{% svg material square_rounded_outline %}" + ] + }, + "square_small": { + "prefix": "svg.material.square_small", + "description": "SVG material - square_small", + "body": [ + "{% svg material square_small %}" + ] + }, + "square_wave": { + "prefix": "svg.material.square_wave", + "description": "SVG material - square_wave", + "body": [ + "{% svg material square_wave %}" + ] + }, + "squeegee": { + "prefix": "svg.material.squeegee", + "description": "SVG material - squeegee", + "body": [ + "{% svg material squeegee %}" + ] + }, + "ssh": { + "prefix": "svg.material.ssh", + "description": "SVG material - ssh", + "body": [ + "{% svg material ssh %}" + ] + }, + "stack_exchange": { + "prefix": "svg.material.stack_exchange", + "description": "SVG material - stack_exchange", + "body": [ + "{% svg material stack_exchange %}" + ] + }, + "stack_overflow": { + "prefix": "svg.material.stack_overflow", + "description": "SVG material - stack_overflow", + "body": [ + "{% svg material stack_overflow %}" + ] + }, + "stackpath": { + "prefix": "svg.material.stackpath", + "description": "SVG material - stackpath", + "body": [ + "{% svg material stackpath %}" + ] + }, + "stadium": { + "prefix": "svg.material.stadium", + "description": "SVG material - stadium", + "body": [ + "{% svg material stadium %}" + ] + }, + "stadium_outline": { + "prefix": "svg.material.stadium_outline", + "description": "SVG material - stadium_outline", + "body": [ + "{% svg material stadium_outline %}" + ] + }, + "stadium_variant": { + "prefix": "svg.material.stadium_variant", + "description": "SVG material - stadium_variant", + "body": [ + "{% svg material stadium_variant %}" + ] + }, + "stairs": { + "prefix": "svg.material.stairs", + "description": "SVG material - stairs", + "body": [ + "{% svg material stairs %}" + ] + }, + "stairs_box": { + "prefix": "svg.material.stairs_box", + "description": "SVG material - stairs_box", + "body": [ + "{% svg material stairs_box %}" + ] + }, + "stairs_down": { + "prefix": "svg.material.stairs_down", + "description": "SVG material - stairs_down", + "body": [ + "{% svg material stairs_down %}" + ] + }, + "stairs_up": { + "prefix": "svg.material.stairs_up", + "description": "SVG material - stairs_up", + "body": [ + "{% svg material stairs_up %}" + ] + }, + "stamper": { + "prefix": "svg.material.stamper", + "description": "SVG material - stamper", + "body": [ + "{% svg material stamper %}" + ] + }, + "standard_definition": { + "prefix": "svg.material.standard_definition", + "description": "SVG material - standard_definition", + "body": [ + "{% svg material standard_definition %}" + ] + }, + "star": { + "prefix": "svg.material.star", + "description": "SVG material - star", + "body": [ + "{% svg material star %}" + ] + }, + "star_box": { + "prefix": "svg.material.star_box", + "description": "SVG material - star_box", + "body": [ + "{% svg material star_box %}" + ] + }, + "star_box_multiple": { + "prefix": "svg.material.star_box_multiple", + "description": "SVG material - star_box_multiple", + "body": [ + "{% svg material star_box_multiple %}" + ] + }, + "star_box_multiple_outline": { + "prefix": "svg.material.star_box_multiple_outline", + "description": "SVG material - star_box_multiple_outline", + "body": [ + "{% svg material star_box_multiple_outline %}" + ] + }, + "star_box_outline": { + "prefix": "svg.material.star_box_outline", + "description": "SVG material - star_box_outline", + "body": [ + "{% svg material star_box_outline %}" + ] + }, + "star_check": { + "prefix": "svg.material.star_check", + "description": "SVG material - star_check", + "body": [ + "{% svg material star_check %}" + ] + }, + "star_check_outline": { + "prefix": "svg.material.star_check_outline", + "description": "SVG material - star_check_outline", + "body": [ + "{% svg material star_check_outline %}" + ] + }, + "star_circle": { + "prefix": "svg.material.star_circle", + "description": "SVG material - star_circle", + "body": [ + "{% svg material star_circle %}" + ] + }, + "star_circle_outline": { + "prefix": "svg.material.star_circle_outline", + "description": "SVG material - star_circle_outline", + "body": [ + "{% svg material star_circle_outline %}" + ] + }, + "star_cog": { + "prefix": "svg.material.star_cog", + "description": "SVG material - star_cog", + "body": [ + "{% svg material star_cog %}" + ] + }, + "star_cog_outline": { + "prefix": "svg.material.star_cog_outline", + "description": "SVG material - star_cog_outline", + "body": [ + "{% svg material star_cog_outline %}" + ] + }, + "star_crescent": { + "prefix": "svg.material.star_crescent", + "description": "SVG material - star_crescent", + "body": [ + "{% svg material star_crescent %}" + ] + }, + "star_david": { + "prefix": "svg.material.star_david", + "description": "SVG material - star_david", + "body": [ + "{% svg material star_david %}" + ] + }, + "star_face": { + "prefix": "svg.material.star_face", + "description": "SVG material - star_face", + "body": [ + "{% svg material star_face %}" + ] + }, + "star_four_points": { + "prefix": "svg.material.star_four_points", + "description": "SVG material - star_four_points", + "body": [ + "{% svg material star_four_points %}" + ] + }, + "star_four_points_box": { + "prefix": "svg.material.star_four_points_box", + "description": "SVG material - star_four_points_box", + "body": [ + "{% svg material star_four_points_box %}" + ] + }, + "star_four_points_box_outline": { + "prefix": "svg.material.star_four_points_box_outline", + "description": "SVG material - star_four_points_box_outline", + "body": [ + "{% svg material star_four_points_box_outline %}" + ] + }, + "star_four_points_circle": { + "prefix": "svg.material.star_four_points_circle", + "description": "SVG material - star_four_points_circle", + "body": [ + "{% svg material star_four_points_circle %}" + ] + }, + "star_four_points_circle_outline": { + "prefix": "svg.material.star_four_points_circle_outline", + "description": "SVG material - star_four_points_circle_outline", + "body": [ + "{% svg material star_four_points_circle_outline %}" + ] + }, + "star_four_points_outline": { + "prefix": "svg.material.star_four_points_outline", + "description": "SVG material - star_four_points_outline", + "body": [ + "{% svg material star_four_points_outline %}" + ] + }, + "star_four_points_small": { + "prefix": "svg.material.star_four_points_small", + "description": "SVG material - star_four_points_small", + "body": [ + "{% svg material star_four_points_small %}" + ] + }, + "star_half": { + "prefix": "svg.material.star_half", + "description": "SVG material - star_half", + "body": [ + "{% svg material star_half %}" + ] + }, + "star_half_full": { + "prefix": "svg.material.star_half_full", + "description": "SVG material - star_half_full", + "body": [ + "{% svg material star_half_full %}" + ] + }, + "star_minus": { + "prefix": "svg.material.star_minus", + "description": "SVG material - star_minus", + "body": [ + "{% svg material star_minus %}" + ] + }, + "star_minus_outline": { + "prefix": "svg.material.star_minus_outline", + "description": "SVG material - star_minus_outline", + "body": [ + "{% svg material star_minus_outline %}" + ] + }, + "star_off": { + "prefix": "svg.material.star_off", + "description": "SVG material - star_off", + "body": [ + "{% svg material star_off %}" + ] + }, + "star_off_outline": { + "prefix": "svg.material.star_off_outline", + "description": "SVG material - star_off_outline", + "body": [ + "{% svg material star_off_outline %}" + ] + }, + "star_outline": { + "prefix": "svg.material.star_outline", + "description": "SVG material - star_outline", + "body": [ + "{% svg material star_outline %}" + ] + }, + "star_plus": { + "prefix": "svg.material.star_plus", + "description": "SVG material - star_plus", + "body": [ + "{% svg material star_plus %}" + ] + }, + "star_plus_outline": { + "prefix": "svg.material.star_plus_outline", + "description": "SVG material - star_plus_outline", + "body": [ + "{% svg material star_plus_outline %}" + ] + }, + "star_remove": { + "prefix": "svg.material.star_remove", + "description": "SVG material - star_remove", + "body": [ + "{% svg material star_remove %}" + ] + }, + "star_remove_outline": { + "prefix": "svg.material.star_remove_outline", + "description": "SVG material - star_remove_outline", + "body": [ + "{% svg material star_remove_outline %}" + ] + }, + "star_settings": { + "prefix": "svg.material.star_settings", + "description": "SVG material - star_settings", + "body": [ + "{% svg material star_settings %}" + ] + }, + "star_settings_outline": { + "prefix": "svg.material.star_settings_outline", + "description": "SVG material - star_settings_outline", + "body": [ + "{% svg material star_settings_outline %}" + ] + }, + "star_shooting": { + "prefix": "svg.material.star_shooting", + "description": "SVG material - star_shooting", + "body": [ + "{% svg material star_shooting %}" + ] + }, + "star_shooting_outline": { + "prefix": "svg.material.star_shooting_outline", + "description": "SVG material - star_shooting_outline", + "body": [ + "{% svg material star_shooting_outline %}" + ] + }, + "star_three_points": { + "prefix": "svg.material.star_three_points", + "description": "SVG material - star_three_points", + "body": [ + "{% svg material star_three_points %}" + ] + }, + "star_three_points_outline": { + "prefix": "svg.material.star_three_points_outline", + "description": "SVG material - star_three_points_outline", + "body": [ + "{% svg material star_three_points_outline %}" + ] + }, + "state_machine": { + "prefix": "svg.material.state_machine", + "description": "SVG material - state_machine", + "body": [ + "{% svg material state_machine %}" + ] + }, + "steam": { + "prefix": "svg.material.steam", + "description": "SVG material - steam", + "body": [ + "{% svg material steam %}" + ] + }, + "steering": { + "prefix": "svg.material.steering", + "description": "SVG material - steering", + "body": [ + "{% svg material steering %}" + ] + }, + "steering_off": { + "prefix": "svg.material.steering_off", + "description": "SVG material - steering_off", + "body": [ + "{% svg material steering_off %}" + ] + }, + "step_backward": { + "prefix": "svg.material.step_backward", + "description": "SVG material - step_backward", + "body": [ + "{% svg material step_backward %}" + ] + }, + "step_backward_2": { + "prefix": "svg.material.step_backward_2", + "description": "SVG material - step_backward_2", + "body": [ + "{% svg material step_backward_2 %}" + ] + }, + "step_forward": { + "prefix": "svg.material.step_forward", + "description": "SVG material - step_forward", + "body": [ + "{% svg material step_forward %}" + ] + }, + "step_forward_2": { + "prefix": "svg.material.step_forward_2", + "description": "SVG material - step_forward_2", + "body": [ + "{% svg material step_forward_2 %}" + ] + }, + "stethoscope": { + "prefix": "svg.material.stethoscope", + "description": "SVG material - stethoscope", + "body": [ + "{% svg material stethoscope %}" + ] + }, + "sticker": { + "prefix": "svg.material.sticker", + "description": "SVG material - sticker", + "body": [ + "{% svg material sticker %}" + ] + }, + "sticker_alert": { + "prefix": "svg.material.sticker_alert", + "description": "SVG material - sticker_alert", + "body": [ + "{% svg material sticker_alert %}" + ] + }, + "sticker_alert_outline": { + "prefix": "svg.material.sticker_alert_outline", + "description": "SVG material - sticker_alert_outline", + "body": [ + "{% svg material sticker_alert_outline %}" + ] + }, + "sticker_check": { + "prefix": "svg.material.sticker_check", + "description": "SVG material - sticker_check", + "body": [ + "{% svg material sticker_check %}" + ] + }, + "sticker_check_outline": { + "prefix": "svg.material.sticker_check_outline", + "description": "SVG material - sticker_check_outline", + "body": [ + "{% svg material sticker_check_outline %}" + ] + }, + "sticker_circle_outline": { + "prefix": "svg.material.sticker_circle_outline", + "description": "SVG material - sticker_circle_outline", + "body": [ + "{% svg material sticker_circle_outline %}" + ] + }, + "sticker_emoji": { + "prefix": "svg.material.sticker_emoji", + "description": "SVG material - sticker_emoji", + "body": [ + "{% svg material sticker_emoji %}" + ] + }, + "sticker_minus": { + "prefix": "svg.material.sticker_minus", + "description": "SVG material - sticker_minus", + "body": [ + "{% svg material sticker_minus %}" + ] + }, + "sticker_minus_outline": { + "prefix": "svg.material.sticker_minus_outline", + "description": "SVG material - sticker_minus_outline", + "body": [ + "{% svg material sticker_minus_outline %}" + ] + }, + "sticker_outline": { + "prefix": "svg.material.sticker_outline", + "description": "SVG material - sticker_outline", + "body": [ + "{% svg material sticker_outline %}" + ] + }, + "sticker_plus": { + "prefix": "svg.material.sticker_plus", + "description": "SVG material - sticker_plus", + "body": [ + "{% svg material sticker_plus %}" + ] + }, + "sticker_plus_outline": { + "prefix": "svg.material.sticker_plus_outline", + "description": "SVG material - sticker_plus_outline", + "body": [ + "{% svg material sticker_plus_outline %}" + ] + }, + "sticker_remove": { + "prefix": "svg.material.sticker_remove", + "description": "SVG material - sticker_remove", + "body": [ + "{% svg material sticker_remove %}" + ] + }, + "sticker_remove_outline": { + "prefix": "svg.material.sticker_remove_outline", + "description": "SVG material - sticker_remove_outline", + "body": [ + "{% svg material sticker_remove_outline %}" + ] + }, + "sticker_text": { + "prefix": "svg.material.sticker_text", + "description": "SVG material - sticker_text", + "body": [ + "{% svg material sticker_text %}" + ] + }, + "sticker_text_outline": { + "prefix": "svg.material.sticker_text_outline", + "description": "SVG material - sticker_text_outline", + "body": [ + "{% svg material sticker_text_outline %}" + ] + }, + "stocking": { + "prefix": "svg.material.stocking", + "description": "SVG material - stocking", + "body": [ + "{% svg material stocking %}" + ] + }, + "stomach": { + "prefix": "svg.material.stomach", + "description": "SVG material - stomach", + "body": [ + "{% svg material stomach %}" + ] + }, + "stool": { + "prefix": "svg.material.stool", + "description": "SVG material - stool", + "body": [ + "{% svg material stool %}" + ] + }, + "stool_outline": { + "prefix": "svg.material.stool_outline", + "description": "SVG material - stool_outline", + "body": [ + "{% svg material stool_outline %}" + ] + }, + "stop": { + "prefix": "svg.material.stop", + "description": "SVG material - stop", + "body": [ + "{% svg material stop %}" + ] + }, + "stop_circle": { + "prefix": "svg.material.stop_circle", + "description": "SVG material - stop_circle", + "body": [ + "{% svg material stop_circle %}" + ] + }, + "stop_circle_outline": { + "prefix": "svg.material.stop_circle_outline", + "description": "SVG material - stop_circle_outline", + "body": [ + "{% svg material stop_circle_outline %}" + ] + }, + "storage_tank": { + "prefix": "svg.material.storage_tank", + "description": "SVG material - storage_tank", + "body": [ + "{% svg material storage_tank %}" + ] + }, + "storage_tank_outline": { + "prefix": "svg.material.storage_tank_outline", + "description": "SVG material - storage_tank_outline", + "body": [ + "{% svg material storage_tank_outline %}" + ] + }, + "store": { + "prefix": "svg.material.store", + "description": "SVG material - store", + "body": [ + "{% svg material store %}" + ] + }, + "store_24_hour": { + "prefix": "svg.material.store_24_hour", + "description": "SVG material - store_24_hour", + "body": [ + "{% svg material store_24_hour %}" + ] + }, + "store_alert": { + "prefix": "svg.material.store_alert", + "description": "SVG material - store_alert", + "body": [ + "{% svg material store_alert %}" + ] + }, + "store_alert_outline": { + "prefix": "svg.material.store_alert_outline", + "description": "SVG material - store_alert_outline", + "body": [ + "{% svg material store_alert_outline %}" + ] + }, + "store_check": { + "prefix": "svg.material.store_check", + "description": "SVG material - store_check", + "body": [ + "{% svg material store_check %}" + ] + }, + "store_check_outline": { + "prefix": "svg.material.store_check_outline", + "description": "SVG material - store_check_outline", + "body": [ + "{% svg material store_check_outline %}" + ] + }, + "store_clock": { + "prefix": "svg.material.store_clock", + "description": "SVG material - store_clock", + "body": [ + "{% svg material store_clock %}" + ] + }, + "store_clock_outline": { + "prefix": "svg.material.store_clock_outline", + "description": "SVG material - store_clock_outline", + "body": [ + "{% svg material store_clock_outline %}" + ] + }, + "store_cog": { + "prefix": "svg.material.store_cog", + "description": "SVG material - store_cog", + "body": [ + "{% svg material store_cog %}" + ] + }, + "store_cog_outline": { + "prefix": "svg.material.store_cog_outline", + "description": "SVG material - store_cog_outline", + "body": [ + "{% svg material store_cog_outline %}" + ] + }, + "store_edit": { + "prefix": "svg.material.store_edit", + "description": "SVG material - store_edit", + "body": [ + "{% svg material store_edit %}" + ] + }, + "store_edit_outline": { + "prefix": "svg.material.store_edit_outline", + "description": "SVG material - store_edit_outline", + "body": [ + "{% svg material store_edit_outline %}" + ] + }, + "store_marker": { + "prefix": "svg.material.store_marker", + "description": "SVG material - store_marker", + "body": [ + "{% svg material store_marker %}" + ] + }, + "store_marker_outline": { + "prefix": "svg.material.store_marker_outline", + "description": "SVG material - store_marker_outline", + "body": [ + "{% svg material store_marker_outline %}" + ] + }, + "store_minus": { + "prefix": "svg.material.store_minus", + "description": "SVG material - store_minus", + "body": [ + "{% svg material store_minus %}" + ] + }, + "store_minus_outline": { + "prefix": "svg.material.store_minus_outline", + "description": "SVG material - store_minus_outline", + "body": [ + "{% svg material store_minus_outline %}" + ] + }, + "store_off": { + "prefix": "svg.material.store_off", + "description": "SVG material - store_off", + "body": [ + "{% svg material store_off %}" + ] + }, + "store_off_outline": { + "prefix": "svg.material.store_off_outline", + "description": "SVG material - store_off_outline", + "body": [ + "{% svg material store_off_outline %}" + ] + }, + "store_outline": { + "prefix": "svg.material.store_outline", + "description": "SVG material - store_outline", + "body": [ + "{% svg material store_outline %}" + ] + }, + "store_plus": { + "prefix": "svg.material.store_plus", + "description": "SVG material - store_plus", + "body": [ + "{% svg material store_plus %}" + ] + }, + "store_plus_outline": { + "prefix": "svg.material.store_plus_outline", + "description": "SVG material - store_plus_outline", + "body": [ + "{% svg material store_plus_outline %}" + ] + }, + "store_remove": { + "prefix": "svg.material.store_remove", + "description": "SVG material - store_remove", + "body": [ + "{% svg material store_remove %}" + ] + }, + "store_remove_outline": { + "prefix": "svg.material.store_remove_outline", + "description": "SVG material - store_remove_outline", + "body": [ + "{% svg material store_remove_outline %}" + ] + }, + "store_search": { + "prefix": "svg.material.store_search", + "description": "SVG material - store_search", + "body": [ + "{% svg material store_search %}" + ] + }, + "store_search_outline": { + "prefix": "svg.material.store_search_outline", + "description": "SVG material - store_search_outline", + "body": [ + "{% svg material store_search_outline %}" + ] + }, + "store_settings": { + "prefix": "svg.material.store_settings", + "description": "SVG material - store_settings", + "body": [ + "{% svg material store_settings %}" + ] + }, + "store_settings_outline": { + "prefix": "svg.material.store_settings_outline", + "description": "SVG material - store_settings_outline", + "body": [ + "{% svg material store_settings_outline %}" + ] + }, + "storefront": { + "prefix": "svg.material.storefront", + "description": "SVG material - storefront", + "body": [ + "{% svg material storefront %}" + ] + }, + "storefront_check": { + "prefix": "svg.material.storefront_check", + "description": "SVG material - storefront_check", + "body": [ + "{% svg material storefront_check %}" + ] + }, + "storefront_check_outline": { + "prefix": "svg.material.storefront_check_outline", + "description": "SVG material - storefront_check_outline", + "body": [ + "{% svg material storefront_check_outline %}" + ] + }, + "storefront_edit": { + "prefix": "svg.material.storefront_edit", + "description": "SVG material - storefront_edit", + "body": [ + "{% svg material storefront_edit %}" + ] + }, + "storefront_edit_outline": { + "prefix": "svg.material.storefront_edit_outline", + "description": "SVG material - storefront_edit_outline", + "body": [ + "{% svg material storefront_edit_outline %}" + ] + }, + "storefront_minus": { + "prefix": "svg.material.storefront_minus", + "description": "SVG material - storefront_minus", + "body": [ + "{% svg material storefront_minus %}" + ] + }, + "storefront_minus_outline": { + "prefix": "svg.material.storefront_minus_outline", + "description": "SVG material - storefront_minus_outline", + "body": [ + "{% svg material storefront_minus_outline %}" + ] + }, + "storefront_outline": { + "prefix": "svg.material.storefront_outline", + "description": "SVG material - storefront_outline", + "body": [ + "{% svg material storefront_outline %}" + ] + }, + "storefront_plus": { + "prefix": "svg.material.storefront_plus", + "description": "SVG material - storefront_plus", + "body": [ + "{% svg material storefront_plus %}" + ] + }, + "storefront_plus_outline": { + "prefix": "svg.material.storefront_plus_outline", + "description": "SVG material - storefront_plus_outline", + "body": [ + "{% svg material storefront_plus_outline %}" + ] + }, + "storefront_remove": { + "prefix": "svg.material.storefront_remove", + "description": "SVG material - storefront_remove", + "body": [ + "{% svg material storefront_remove %}" + ] + }, + "storefront_remove_outline": { + "prefix": "svg.material.storefront_remove_outline", + "description": "SVG material - storefront_remove_outline", + "body": [ + "{% svg material storefront_remove_outline %}" + ] + }, + "stove": { + "prefix": "svg.material.stove", + "description": "SVG material - stove", + "body": [ + "{% svg material stove %}" + ] + }, + "strategy": { + "prefix": "svg.material.strategy", + "description": "SVG material - strategy", + "body": [ + "{% svg material strategy %}" + ] + }, + "stretch_to_page": { + "prefix": "svg.material.stretch_to_page", + "description": "SVG material - stretch_to_page", + "body": [ + "{% svg material stretch_to_page %}" + ] + }, + "stretch_to_page_outline": { + "prefix": "svg.material.stretch_to_page_outline", + "description": "SVG material - stretch_to_page_outline", + "body": [ + "{% svg material stretch_to_page_outline %}" + ] + }, + "string_lights": { + "prefix": "svg.material.string_lights", + "description": "SVG material - string_lights", + "body": [ + "{% svg material string_lights %}" + ] + }, + "string_lights_off": { + "prefix": "svg.material.string_lights_off", + "description": "SVG material - string_lights_off", + "body": [ + "{% svg material string_lights_off %}" + ] + }, + "subdirectory_arrow_left": { + "prefix": "svg.material.subdirectory_arrow_left", + "description": "SVG material - subdirectory_arrow_left", + "body": [ + "{% svg material subdirectory_arrow_left %}" + ] + }, + "subdirectory_arrow_right": { + "prefix": "svg.material.subdirectory_arrow_right", + "description": "SVG material - subdirectory_arrow_right", + "body": [ + "{% svg material subdirectory_arrow_right %}" + ] + }, + "submarine": { + "prefix": "svg.material.submarine", + "description": "SVG material - submarine", + "body": [ + "{% svg material submarine %}" + ] + }, + "subtitles": { + "prefix": "svg.material.subtitles", + "description": "SVG material - subtitles", + "body": [ + "{% svg material subtitles %}" + ] + }, + "subtitles_outline": { + "prefix": "svg.material.subtitles_outline", + "description": "SVG material - subtitles_outline", + "body": [ + "{% svg material subtitles_outline %}" + ] + }, + "subway": { + "prefix": "svg.material.subway", + "description": "SVG material - subway", + "body": [ + "{% svg material subway %}" + ] + }, + "subway_alert_variant": { + "prefix": "svg.material.subway_alert_variant", + "description": "SVG material - subway_alert_variant", + "body": [ + "{% svg material subway_alert_variant %}" + ] + }, + "subway_variant": { + "prefix": "svg.material.subway_variant", + "description": "SVG material - subway_variant", + "body": [ + "{% svg material subway_variant %}" + ] + }, + "summit": { + "prefix": "svg.material.summit", + "description": "SVG material - summit", + "body": [ + "{% svg material summit %}" + ] + }, + "sun_angle": { + "prefix": "svg.material.sun_angle", + "description": "SVG material - sun_angle", + "body": [ + "{% svg material sun_angle %}" + ] + }, + "sun_angle_outline": { + "prefix": "svg.material.sun_angle_outline", + "description": "SVG material - sun_angle_outline", + "body": [ + "{% svg material sun_angle_outline %}" + ] + }, + "sun_clock": { + "prefix": "svg.material.sun_clock", + "description": "SVG material - sun_clock", + "body": [ + "{% svg material sun_clock %}" + ] + }, + "sun_clock_outline": { + "prefix": "svg.material.sun_clock_outline", + "description": "SVG material - sun_clock_outline", + "body": [ + "{% svg material sun_clock_outline %}" + ] + }, + "sun_compass": { + "prefix": "svg.material.sun_compass", + "description": "SVG material - sun_compass", + "body": [ + "{% svg material sun_compass %}" + ] + }, + "sun_snowflake": { + "prefix": "svg.material.sun_snowflake", + "description": "SVG material - sun_snowflake", + "body": [ + "{% svg material sun_snowflake %}" + ] + }, + "sun_snowflake_variant": { + "prefix": "svg.material.sun_snowflake_variant", + "description": "SVG material - sun_snowflake_variant", + "body": [ + "{% svg material sun_snowflake_variant %}" + ] + }, + "sun_thermometer": { + "prefix": "svg.material.sun_thermometer", + "description": "SVG material - sun_thermometer", + "body": [ + "{% svg material sun_thermometer %}" + ] + }, + "sun_thermometer_outline": { + "prefix": "svg.material.sun_thermometer_outline", + "description": "SVG material - sun_thermometer_outline", + "body": [ + "{% svg material sun_thermometer_outline %}" + ] + }, + "sun_wireless": { + "prefix": "svg.material.sun_wireless", + "description": "SVG material - sun_wireless", + "body": [ + "{% svg material sun_wireless %}" + ] + }, + "sun_wireless_outline": { + "prefix": "svg.material.sun_wireless_outline", + "description": "SVG material - sun_wireless_outline", + "body": [ + "{% svg material sun_wireless_outline %}" + ] + }, + "sunglasses": { + "prefix": "svg.material.sunglasses", + "description": "SVG material - sunglasses", + "body": [ + "{% svg material sunglasses %}" + ] + }, + "surfing": { + "prefix": "svg.material.surfing", + "description": "SVG material - surfing", + "body": [ + "{% svg material surfing %}" + ] + }, + "surround_sound": { + "prefix": "svg.material.surround_sound", + "description": "SVG material - surround_sound", + "body": [ + "{% svg material surround_sound %}" + ] + }, + "surround_sound_2_0": { + "prefix": "svg.material.surround_sound_2_0", + "description": "SVG material - surround_sound_2_0", + "body": [ + "{% svg material surround_sound_2_0 %}" + ] + }, + "surround_sound_2_1": { + "prefix": "svg.material.surround_sound_2_1", + "description": "SVG material - surround_sound_2_1", + "body": [ + "{% svg material surround_sound_2_1 %}" + ] + }, + "surround_sound_3_1": { + "prefix": "svg.material.surround_sound_3_1", + "description": "SVG material - surround_sound_3_1", + "body": [ + "{% svg material surround_sound_3_1 %}" + ] + }, + "surround_sound_5_1": { + "prefix": "svg.material.surround_sound_5_1", + "description": "SVG material - surround_sound_5_1", + "body": [ + "{% svg material surround_sound_5_1 %}" + ] + }, + "surround_sound_5_1_2": { + "prefix": "svg.material.surround_sound_5_1_2", + "description": "SVG material - surround_sound_5_1_2", + "body": [ + "{% svg material surround_sound_5_1_2 %}" + ] + }, + "surround_sound_7_1": { + "prefix": "svg.material.surround_sound_7_1", + "description": "SVG material - surround_sound_7_1", + "body": [ + "{% svg material surround_sound_7_1 %}" + ] + }, + "svg": { + "prefix": "svg.material.svg", + "description": "SVG material - svg", + "body": [ + "{% svg material svg %}" + ] + }, + "swap_horizontal": { + "prefix": "svg.material.swap_horizontal", + "description": "SVG material - swap_horizontal", + "body": [ + "{% svg material swap_horizontal %}" + ] + }, + "swap_horizontal_bold": { + "prefix": "svg.material.swap_horizontal_bold", + "description": "SVG material - swap_horizontal_bold", + "body": [ + "{% svg material swap_horizontal_bold %}" + ] + }, + "swap_horizontal_circle": { + "prefix": "svg.material.swap_horizontal_circle", + "description": "SVG material - swap_horizontal_circle", + "body": [ + "{% svg material swap_horizontal_circle %}" + ] + }, + "swap_horizontal_circle_outline": { + "prefix": "svg.material.swap_horizontal_circle_outline", + "description": "SVG material - swap_horizontal_circle_outline", + "body": [ + "{% svg material swap_horizontal_circle_outline %}" + ] + }, + "swap_horizontal_hidden": { + "prefix": "svg.material.swap_horizontal_hidden", + "description": "SVG material - swap_horizontal_hidden", + "body": [ + "{% svg material swap_horizontal_hidden %}" + ] + }, + "swap_horizontal_variant": { + "prefix": "svg.material.swap_horizontal_variant", + "description": "SVG material - swap_horizontal_variant", + "body": [ + "{% svg material swap_horizontal_variant %}" + ] + }, + "swap_vertical": { + "prefix": "svg.material.swap_vertical", + "description": "SVG material - swap_vertical", + "body": [ + "{% svg material swap_vertical %}" + ] + }, + "swap_vertical_bold": { + "prefix": "svg.material.swap_vertical_bold", + "description": "SVG material - swap_vertical_bold", + "body": [ + "{% svg material swap_vertical_bold %}" + ] + }, + "swap_vertical_circle": { + "prefix": "svg.material.swap_vertical_circle", + "description": "SVG material - swap_vertical_circle", + "body": [ + "{% svg material swap_vertical_circle %}" + ] + }, + "swap_vertical_circle_outline": { + "prefix": "svg.material.swap_vertical_circle_outline", + "description": "SVG material - swap_vertical_circle_outline", + "body": [ + "{% svg material swap_vertical_circle_outline %}" + ] + }, + "swap_vertical_variant": { + "prefix": "svg.material.swap_vertical_variant", + "description": "SVG material - swap_vertical_variant", + "body": [ + "{% svg material swap_vertical_variant %}" + ] + }, + "swim": { + "prefix": "svg.material.swim", + "description": "SVG material - swim", + "body": [ + "{% svg material swim %}" + ] + }, + "switch": { + "prefix": "svg.material.switch", + "description": "SVG material - switch", + "body": [ + "{% svg material switch %}" + ] + }, + "sword": { + "prefix": "svg.material.sword", + "description": "SVG material - sword", + "body": [ + "{% svg material sword %}" + ] + }, + "sword_cross": { + "prefix": "svg.material.sword_cross", + "description": "SVG material - sword_cross", + "body": [ + "{% svg material sword_cross %}" + ] + }, + "syllabary_hangul": { + "prefix": "svg.material.syllabary_hangul", + "description": "SVG material - syllabary_hangul", + "body": [ + "{% svg material syllabary_hangul %}" + ] + }, + "syllabary_hiragana": { + "prefix": "svg.material.syllabary_hiragana", + "description": "SVG material - syllabary_hiragana", + "body": [ + "{% svg material syllabary_hiragana %}" + ] + }, + "syllabary_katakana": { + "prefix": "svg.material.syllabary_katakana", + "description": "SVG material - syllabary_katakana", + "body": [ + "{% svg material syllabary_katakana %}" + ] + }, + "syllabary_katakana_halfwidth": { + "prefix": "svg.material.syllabary_katakana_halfwidth", + "description": "SVG material - syllabary_katakana_halfwidth", + "body": [ + "{% svg material syllabary_katakana_halfwidth %}" + ] + }, + "symbol": { + "prefix": "svg.material.symbol", + "description": "SVG material - symbol", + "body": [ + "{% svg material symbol %}" + ] + }, + "symfony": { + "prefix": "svg.material.symfony", + "description": "SVG material - symfony", + "body": [ + "{% svg material symfony %}" + ] + }, + "synagogue": { + "prefix": "svg.material.synagogue", + "description": "SVG material - synagogue", + "body": [ + "{% svg material synagogue %}" + ] + }, + "synagogue_outline": { + "prefix": "svg.material.synagogue_outline", + "description": "SVG material - synagogue_outline", + "body": [ + "{% svg material synagogue_outline %}" + ] + }, + "sync": { + "prefix": "svg.material.sync", + "description": "SVG material - sync", + "body": [ + "{% svg material sync %}" + ] + }, + "sync_alert": { + "prefix": "svg.material.sync_alert", + "description": "SVG material - sync_alert", + "body": [ + "{% svg material sync_alert %}" + ] + }, + "sync_circle": { + "prefix": "svg.material.sync_circle", + "description": "SVG material - sync_circle", + "body": [ + "{% svg material sync_circle %}" + ] + }, + "sync_off": { + "prefix": "svg.material.sync_off", + "description": "SVG material - sync_off", + "body": [ + "{% svg material sync_off %}" + ] + }, + "tab": { + "prefix": "svg.material.tab", + "description": "SVG material - tab", + "body": [ + "{% svg material tab %}" + ] + }, + "tab_minus": { + "prefix": "svg.material.tab_minus", + "description": "SVG material - tab_minus", + "body": [ + "{% svg material tab_minus %}" + ] + }, + "tab_plus": { + "prefix": "svg.material.tab_plus", + "description": "SVG material - tab_plus", + "body": [ + "{% svg material tab_plus %}" + ] + }, + "tab_remove": { + "prefix": "svg.material.tab_remove", + "description": "SVG material - tab_remove", + "body": [ + "{% svg material tab_remove %}" + ] + }, + "tab_search": { + "prefix": "svg.material.tab_search", + "description": "SVG material - tab_search", + "body": [ + "{% svg material tab_search %}" + ] + }, + "tab_unselected": { + "prefix": "svg.material.tab_unselected", + "description": "SVG material - tab_unselected", + "body": [ + "{% svg material tab_unselected %}" + ] + }, + "table": { + "prefix": "svg.material.table", + "description": "SVG material - table", + "body": [ + "{% svg material table %}" + ] + }, + "table_account": { + "prefix": "svg.material.table_account", + "description": "SVG material - table_account", + "body": [ + "{% svg material table_account %}" + ] + }, + "table_alert": { + "prefix": "svg.material.table_alert", + "description": "SVG material - table_alert", + "body": [ + "{% svg material table_alert %}" + ] + }, + "table_arrow_down": { + "prefix": "svg.material.table_arrow_down", + "description": "SVG material - table_arrow_down", + "body": [ + "{% svg material table_arrow_down %}" + ] + }, + "table_arrow_left": { + "prefix": "svg.material.table_arrow_left", + "description": "SVG material - table_arrow_left", + "body": [ + "{% svg material table_arrow_left %}" + ] + }, + "table_arrow_right": { + "prefix": "svg.material.table_arrow_right", + "description": "SVG material - table_arrow_right", + "body": [ + "{% svg material table_arrow_right %}" + ] + }, + "table_arrow_up": { + "prefix": "svg.material.table_arrow_up", + "description": "SVG material - table_arrow_up", + "body": [ + "{% svg material table_arrow_up %}" + ] + }, + "table_border": { + "prefix": "svg.material.table_border", + "description": "SVG material - table_border", + "body": [ + "{% svg material table_border %}" + ] + }, + "table_cancel": { + "prefix": "svg.material.table_cancel", + "description": "SVG material - table_cancel", + "body": [ + "{% svg material table_cancel %}" + ] + }, + "table_chair": { + "prefix": "svg.material.table_chair", + "description": "SVG material - table_chair", + "body": [ + "{% svg material table_chair %}" + ] + }, + "table_check": { + "prefix": "svg.material.table_check", + "description": "SVG material - table_check", + "body": [ + "{% svg material table_check %}" + ] + }, + "table_clock": { + "prefix": "svg.material.table_clock", + "description": "SVG material - table_clock", + "body": [ + "{% svg material table_clock %}" + ] + }, + "table_cog": { + "prefix": "svg.material.table_cog", + "description": "SVG material - table_cog", + "body": [ + "{% svg material table_cog %}" + ] + }, + "table_column": { + "prefix": "svg.material.table_column", + "description": "SVG material - table_column", + "body": [ + "{% svg material table_column %}" + ] + }, + "table_column_plus_after": { + "prefix": "svg.material.table_column_plus_after", + "description": "SVG material - table_column_plus_after", + "body": [ + "{% svg material table_column_plus_after %}" + ] + }, + "table_column_plus_before": { + "prefix": "svg.material.table_column_plus_before", + "description": "SVG material - table_column_plus_before", + "body": [ + "{% svg material table_column_plus_before %}" + ] + }, + "table_column_remove": { + "prefix": "svg.material.table_column_remove", + "description": "SVG material - table_column_remove", + "body": [ + "{% svg material table_column_remove %}" + ] + }, + "table_column_width": { + "prefix": "svg.material.table_column_width", + "description": "SVG material - table_column_width", + "body": [ + "{% svg material table_column_width %}" + ] + }, + "table_edit": { + "prefix": "svg.material.table_edit", + "description": "SVG material - table_edit", + "body": [ + "{% svg material table_edit %}" + ] + }, + "table_eye": { + "prefix": "svg.material.table_eye", + "description": "SVG material - table_eye", + "body": [ + "{% svg material table_eye %}" + ] + }, + "table_eye_off": { + "prefix": "svg.material.table_eye_off", + "description": "SVG material - table_eye_off", + "body": [ + "{% svg material table_eye_off %}" + ] + }, + "table_filter": { + "prefix": "svg.material.table_filter", + "description": "SVG material - table_filter", + "body": [ + "{% svg material table_filter %}" + ] + }, + "table_furniture": { + "prefix": "svg.material.table_furniture", + "description": "SVG material - table_furniture", + "body": [ + "{% svg material table_furniture %}" + ] + }, + "table_headers_eye": { + "prefix": "svg.material.table_headers_eye", + "description": "SVG material - table_headers_eye", + "body": [ + "{% svg material table_headers_eye %}" + ] + }, + "table_headers_eye_off": { + "prefix": "svg.material.table_headers_eye_off", + "description": "SVG material - table_headers_eye_off", + "body": [ + "{% svg material table_headers_eye_off %}" + ] + }, + "table_heart": { + "prefix": "svg.material.table_heart", + "description": "SVG material - table_heart", + "body": [ + "{% svg material table_heart %}" + ] + }, + "table_key": { + "prefix": "svg.material.table_key", + "description": "SVG material - table_key", + "body": [ + "{% svg material table_key %}" + ] + }, + "table_large": { + "prefix": "svg.material.table_large", + "description": "SVG material - table_large", + "body": [ + "{% svg material table_large %}" + ] + }, + "table_large_plus": { + "prefix": "svg.material.table_large_plus", + "description": "SVG material - table_large_plus", + "body": [ + "{% svg material table_large_plus %}" + ] + }, + "table_large_remove": { + "prefix": "svg.material.table_large_remove", + "description": "SVG material - table_large_remove", + "body": [ + "{% svg material table_large_remove %}" + ] + }, + "table_lock": { + "prefix": "svg.material.table_lock", + "description": "SVG material - table_lock", + "body": [ + "{% svg material table_lock %}" + ] + }, + "table_merge_cells": { + "prefix": "svg.material.table_merge_cells", + "description": "SVG material - table_merge_cells", + "body": [ + "{% svg material table_merge_cells %}" + ] + }, + "table_minus": { + "prefix": "svg.material.table_minus", + "description": "SVG material - table_minus", + "body": [ + "{% svg material table_minus %}" + ] + }, + "table_multiple": { + "prefix": "svg.material.table_multiple", + "description": "SVG material - table_multiple", + "body": [ + "{% svg material table_multiple %}" + ] + }, + "table_network": { + "prefix": "svg.material.table_network", + "description": "SVG material - table_network", + "body": [ + "{% svg material table_network %}" + ] + }, + "table_of_contents": { + "prefix": "svg.material.table_of_contents", + "description": "SVG material - table_of_contents", + "body": [ + "{% svg material table_of_contents %}" + ] + }, + "table_off": { + "prefix": "svg.material.table_off", + "description": "SVG material - table_off", + "body": [ + "{% svg material table_off %}" + ] + }, + "table_picnic": { + "prefix": "svg.material.table_picnic", + "description": "SVG material - table_picnic", + "body": [ + "{% svg material table_picnic %}" + ] + }, + "table_pivot": { + "prefix": "svg.material.table_pivot", + "description": "SVG material - table_pivot", + "body": [ + "{% svg material table_pivot %}" + ] + }, + "table_plus": { + "prefix": "svg.material.table_plus", + "description": "SVG material - table_plus", + "body": [ + "{% svg material table_plus %}" + ] + }, + "table_question": { + "prefix": "svg.material.table_question", + "description": "SVG material - table_question", + "body": [ + "{% svg material table_question %}" + ] + }, + "table_refresh": { + "prefix": "svg.material.table_refresh", + "description": "SVG material - table_refresh", + "body": [ + "{% svg material table_refresh %}" + ] + }, + "table_remove": { + "prefix": "svg.material.table_remove", + "description": "SVG material - table_remove", + "body": [ + "{% svg material table_remove %}" + ] + }, + "table_row": { + "prefix": "svg.material.table_row", + "description": "SVG material - table_row", + "body": [ + "{% svg material table_row %}" + ] + }, + "table_row_height": { + "prefix": "svg.material.table_row_height", + "description": "SVG material - table_row_height", + "body": [ + "{% svg material table_row_height %}" + ] + }, + "table_row_plus_after": { + "prefix": "svg.material.table_row_plus_after", + "description": "SVG material - table_row_plus_after", + "body": [ + "{% svg material table_row_plus_after %}" + ] + }, + "table_row_plus_before": { + "prefix": "svg.material.table_row_plus_before", + "description": "SVG material - table_row_plus_before", + "body": [ + "{% svg material table_row_plus_before %}" + ] + }, + "table_row_remove": { + "prefix": "svg.material.table_row_remove", + "description": "SVG material - table_row_remove", + "body": [ + "{% svg material table_row_remove %}" + ] + }, + "table_search": { + "prefix": "svg.material.table_search", + "description": "SVG material - table_search", + "body": [ + "{% svg material table_search %}" + ] + }, + "table_settings": { + "prefix": "svg.material.table_settings", + "description": "SVG material - table_settings", + "body": [ + "{% svg material table_settings %}" + ] + }, + "table_split_cell": { + "prefix": "svg.material.table_split_cell", + "description": "SVG material - table_split_cell", + "body": [ + "{% svg material table_split_cell %}" + ] + }, + "table_star": { + "prefix": "svg.material.table_star", + "description": "SVG material - table_star", + "body": [ + "{% svg material table_star %}" + ] + }, + "table_sync": { + "prefix": "svg.material.table_sync", + "description": "SVG material - table_sync", + "body": [ + "{% svg material table_sync %}" + ] + }, + "table_tennis": { + "prefix": "svg.material.table_tennis", + "description": "SVG material - table_tennis", + "body": [ + "{% svg material table_tennis %}" + ] + }, + "tablet": { + "prefix": "svg.material.tablet", + "description": "SVG material - tablet", + "body": [ + "{% svg material tablet %}" + ] + }, + "tablet_cellphone": { + "prefix": "svg.material.tablet_cellphone", + "description": "SVG material - tablet_cellphone", + "body": [ + "{% svg material tablet_cellphone %}" + ] + }, + "tablet_dashboard": { + "prefix": "svg.material.tablet_dashboard", + "description": "SVG material - tablet_dashboard", + "body": [ + "{% svg material tablet_dashboard %}" + ] + }, + "taco": { + "prefix": "svg.material.taco", + "description": "SVG material - taco", + "body": [ + "{% svg material taco %}" + ] + }, + "tag": { + "prefix": "svg.material.tag", + "description": "SVG material - tag", + "body": [ + "{% svg material tag %}" + ] + }, + "tag_arrow_down": { + "prefix": "svg.material.tag_arrow_down", + "description": "SVG material - tag_arrow_down", + "body": [ + "{% svg material tag_arrow_down %}" + ] + }, + "tag_arrow_down_outline": { + "prefix": "svg.material.tag_arrow_down_outline", + "description": "SVG material - tag_arrow_down_outline", + "body": [ + "{% svg material tag_arrow_down_outline %}" + ] + }, + "tag_arrow_left": { + "prefix": "svg.material.tag_arrow_left", + "description": "SVG material - tag_arrow_left", + "body": [ + "{% svg material tag_arrow_left %}" + ] + }, + "tag_arrow_left_outline": { + "prefix": "svg.material.tag_arrow_left_outline", + "description": "SVG material - tag_arrow_left_outline", + "body": [ + "{% svg material tag_arrow_left_outline %}" + ] + }, + "tag_arrow_right": { + "prefix": "svg.material.tag_arrow_right", + "description": "SVG material - tag_arrow_right", + "body": [ + "{% svg material tag_arrow_right %}" + ] + }, + "tag_arrow_right_outline": { + "prefix": "svg.material.tag_arrow_right_outline", + "description": "SVG material - tag_arrow_right_outline", + "body": [ + "{% svg material tag_arrow_right_outline %}" + ] + }, + "tag_arrow_up": { + "prefix": "svg.material.tag_arrow_up", + "description": "SVG material - tag_arrow_up", + "body": [ + "{% svg material tag_arrow_up %}" + ] + }, + "tag_arrow_up_outline": { + "prefix": "svg.material.tag_arrow_up_outline", + "description": "SVG material - tag_arrow_up_outline", + "body": [ + "{% svg material tag_arrow_up_outline %}" + ] + }, + "tag_check": { + "prefix": "svg.material.tag_check", + "description": "SVG material - tag_check", + "body": [ + "{% svg material tag_check %}" + ] + }, + "tag_check_outline": { + "prefix": "svg.material.tag_check_outline", + "description": "SVG material - tag_check_outline", + "body": [ + "{% svg material tag_check_outline %}" + ] + }, + "tag_edit": { + "prefix": "svg.material.tag_edit", + "description": "SVG material - tag_edit", + "body": [ + "{% svg material tag_edit %}" + ] + }, + "tag_edit_outline": { + "prefix": "svg.material.tag_edit_outline", + "description": "SVG material - tag_edit_outline", + "body": [ + "{% svg material tag_edit_outline %}" + ] + }, + "tag_faces": { + "prefix": "svg.material.tag_faces", + "description": "SVG material - tag_faces", + "body": [ + "{% svg material tag_faces %}" + ] + }, + "tag_heart": { + "prefix": "svg.material.tag_heart", + "description": "SVG material - tag_heart", + "body": [ + "{% svg material tag_heart %}" + ] + }, + "tag_heart_outline": { + "prefix": "svg.material.tag_heart_outline", + "description": "SVG material - tag_heart_outline", + "body": [ + "{% svg material tag_heart_outline %}" + ] + }, + "tag_hidden": { + "prefix": "svg.material.tag_hidden", + "description": "SVG material - tag_hidden", + "body": [ + "{% svg material tag_hidden %}" + ] + }, + "tag_minus": { + "prefix": "svg.material.tag_minus", + "description": "SVG material - tag_minus", + "body": [ + "{% svg material tag_minus %}" + ] + }, + "tag_minus_outline": { + "prefix": "svg.material.tag_minus_outline", + "description": "SVG material - tag_minus_outline", + "body": [ + "{% svg material tag_minus_outline %}" + ] + }, + "tag_multiple": { + "prefix": "svg.material.tag_multiple", + "description": "SVG material - tag_multiple", + "body": [ + "{% svg material tag_multiple %}" + ] + }, + "tag_multiple_outline": { + "prefix": "svg.material.tag_multiple_outline", + "description": "SVG material - tag_multiple_outline", + "body": [ + "{% svg material tag_multiple_outline %}" + ] + }, + "tag_off": { + "prefix": "svg.material.tag_off", + "description": "SVG material - tag_off", + "body": [ + "{% svg material tag_off %}" + ] + }, + "tag_off_outline": { + "prefix": "svg.material.tag_off_outline", + "description": "SVG material - tag_off_outline", + "body": [ + "{% svg material tag_off_outline %}" + ] + }, + "tag_outline": { + "prefix": "svg.material.tag_outline", + "description": "SVG material - tag_outline", + "body": [ + "{% svg material tag_outline %}" + ] + }, + "tag_plus": { + "prefix": "svg.material.tag_plus", + "description": "SVG material - tag_plus", + "body": [ + "{% svg material tag_plus %}" + ] + }, + "tag_plus_outline": { + "prefix": "svg.material.tag_plus_outline", + "description": "SVG material - tag_plus_outline", + "body": [ + "{% svg material tag_plus_outline %}" + ] + }, + "tag_remove": { + "prefix": "svg.material.tag_remove", + "description": "SVG material - tag_remove", + "body": [ + "{% svg material tag_remove %}" + ] + }, + "tag_remove_outline": { + "prefix": "svg.material.tag_remove_outline", + "description": "SVG material - tag_remove_outline", + "body": [ + "{% svg material tag_remove_outline %}" + ] + }, + "tag_search": { + "prefix": "svg.material.tag_search", + "description": "SVG material - tag_search", + "body": [ + "{% svg material tag_search %}" + ] + }, + "tag_search_outline": { + "prefix": "svg.material.tag_search_outline", + "description": "SVG material - tag_search_outline", + "body": [ + "{% svg material tag_search_outline %}" + ] + }, + "tag_text": { + "prefix": "svg.material.tag_text", + "description": "SVG material - tag_text", + "body": [ + "{% svg material tag_text %}" + ] + }, + "tag_text_outline": { + "prefix": "svg.material.tag_text_outline", + "description": "SVG material - tag_text_outline", + "body": [ + "{% svg material tag_text_outline %}" + ] + }, + "tailwind": { + "prefix": "svg.material.tailwind", + "description": "SVG material - tailwind", + "body": [ + "{% svg material tailwind %}" + ] + }, + "tally_mark_1": { + "prefix": "svg.material.tally_mark_1", + "description": "SVG material - tally_mark_1", + "body": [ + "{% svg material tally_mark_1 %}" + ] + }, + "tally_mark_2": { + "prefix": "svg.material.tally_mark_2", + "description": "SVG material - tally_mark_2", + "body": [ + "{% svg material tally_mark_2 %}" + ] + }, + "tally_mark_3": { + "prefix": "svg.material.tally_mark_3", + "description": "SVG material - tally_mark_3", + "body": [ + "{% svg material tally_mark_3 %}" + ] + }, + "tally_mark_4": { + "prefix": "svg.material.tally_mark_4", + "description": "SVG material - tally_mark_4", + "body": [ + "{% svg material tally_mark_4 %}" + ] + }, + "tally_mark_5": { + "prefix": "svg.material.tally_mark_5", + "description": "SVG material - tally_mark_5", + "body": [ + "{% svg material tally_mark_5 %}" + ] + }, + "tangram": { + "prefix": "svg.material.tangram", + "description": "SVG material - tangram", + "body": [ + "{% svg material tangram %}" + ] + }, + "tank": { + "prefix": "svg.material.tank", + "description": "SVG material - tank", + "body": [ + "{% svg material tank %}" + ] + }, + "tanker_truck": { + "prefix": "svg.material.tanker_truck", + "description": "SVG material - tanker_truck", + "body": [ + "{% svg material tanker_truck %}" + ] + }, + "tape_drive": { + "prefix": "svg.material.tape_drive", + "description": "SVG material - tape_drive", + "body": [ + "{% svg material tape_drive %}" + ] + }, + "tape_measure": { + "prefix": "svg.material.tape_measure", + "description": "SVG material - tape_measure", + "body": [ + "{% svg material tape_measure %}" + ] + }, + "target": { + "prefix": "svg.material.target", + "description": "SVG material - target", + "body": [ + "{% svg material target %}" + ] + }, + "target_account": { + "prefix": "svg.material.target_account", + "description": "SVG material - target_account", + "body": [ + "{% svg material target_account %}" + ] + }, + "target_variant": { + "prefix": "svg.material.target_variant", + "description": "SVG material - target_variant", + "body": [ + "{% svg material target_variant %}" + ] + }, + "taxi": { + "prefix": "svg.material.taxi", + "description": "SVG material - taxi", + "body": [ + "{% svg material taxi %}" + ] + }, + "tea": { + "prefix": "svg.material.tea", + "description": "SVG material - tea", + "body": [ + "{% svg material tea %}" + ] + }, + "tea_outline": { + "prefix": "svg.material.tea_outline", + "description": "SVG material - tea_outline", + "body": [ + "{% svg material tea_outline %}" + ] + }, + "teamviewer": { + "prefix": "svg.material.teamviewer", + "description": "SVG material - teamviewer", + "body": [ + "{% svg material teamviewer %}" + ] + }, + "teddy_bear": { + "prefix": "svg.material.teddy_bear", + "description": "SVG material - teddy_bear", + "body": [ + "{% svg material teddy_bear %}" + ] + }, + "telescope": { + "prefix": "svg.material.telescope", + "description": "SVG material - telescope", + "body": [ + "{% svg material telescope %}" + ] + }, + "television": { + "prefix": "svg.material.television", + "description": "SVG material - television", + "body": [ + "{% svg material television %}" + ] + }, + "television_ambient_light": { + "prefix": "svg.material.television_ambient_light", + "description": "SVG material - television_ambient_light", + "body": [ + "{% svg material television_ambient_light %}" + ] + }, + "television_box": { + "prefix": "svg.material.television_box", + "description": "SVG material - television_box", + "body": [ + "{% svg material television_box %}" + ] + }, + "television_classic": { + "prefix": "svg.material.television_classic", + "description": "SVG material - television_classic", + "body": [ + "{% svg material television_classic %}" + ] + }, + "television_classic_off": { + "prefix": "svg.material.television_classic_off", + "description": "SVG material - television_classic_off", + "body": [ + "{% svg material television_classic_off %}" + ] + }, + "television_guide": { + "prefix": "svg.material.television_guide", + "description": "SVG material - television_guide", + "body": [ + "{% svg material television_guide %}" + ] + }, + "television_off": { + "prefix": "svg.material.television_off", + "description": "SVG material - television_off", + "body": [ + "{% svg material television_off %}" + ] + }, + "television_pause": { + "prefix": "svg.material.television_pause", + "description": "SVG material - television_pause", + "body": [ + "{% svg material television_pause %}" + ] + }, + "television_play": { + "prefix": "svg.material.television_play", + "description": "SVG material - television_play", + "body": [ + "{% svg material television_play %}" + ] + }, + "television_shimmer": { + "prefix": "svg.material.television_shimmer", + "description": "SVG material - television_shimmer", + "body": [ + "{% svg material television_shimmer %}" + ] + }, + "television_speaker": { + "prefix": "svg.material.television_speaker", + "description": "SVG material - television_speaker", + "body": [ + "{% svg material television_speaker %}" + ] + }, + "television_speaker_off": { + "prefix": "svg.material.television_speaker_off", + "description": "SVG material - television_speaker_off", + "body": [ + "{% svg material television_speaker_off %}" + ] + }, + "television_stop": { + "prefix": "svg.material.television_stop", + "description": "SVG material - television_stop", + "body": [ + "{% svg material television_stop %}" + ] + }, + "temperature_celsius": { + "prefix": "svg.material.temperature_celsius", + "description": "SVG material - temperature_celsius", + "body": [ + "{% svg material temperature_celsius %}" + ] + }, + "temperature_fahrenheit": { + "prefix": "svg.material.temperature_fahrenheit", + "description": "SVG material - temperature_fahrenheit", + "body": [ + "{% svg material temperature_fahrenheit %}" + ] + }, + "temperature_kelvin": { + "prefix": "svg.material.temperature_kelvin", + "description": "SVG material - temperature_kelvin", + "body": [ + "{% svg material temperature_kelvin %}" + ] + }, + "temple_buddhist": { + "prefix": "svg.material.temple_buddhist", + "description": "SVG material - temple_buddhist", + "body": [ + "{% svg material temple_buddhist %}" + ] + }, + "temple_buddhist_outline": { + "prefix": "svg.material.temple_buddhist_outline", + "description": "SVG material - temple_buddhist_outline", + "body": [ + "{% svg material temple_buddhist_outline %}" + ] + }, + "temple_hindu": { + "prefix": "svg.material.temple_hindu", + "description": "SVG material - temple_hindu", + "body": [ + "{% svg material temple_hindu %}" + ] + }, + "temple_hindu_outline": { + "prefix": "svg.material.temple_hindu_outline", + "description": "SVG material - temple_hindu_outline", + "body": [ + "{% svg material temple_hindu_outline %}" + ] + }, + "tennis": { + "prefix": "svg.material.tennis", + "description": "SVG material - tennis", + "body": [ + "{% svg material tennis %}" + ] + }, + "tennis_ball": { + "prefix": "svg.material.tennis_ball", + "description": "SVG material - tennis_ball", + "body": [ + "{% svg material tennis_ball %}" + ] + }, + "tennis_ball_outline": { + "prefix": "svg.material.tennis_ball_outline", + "description": "SVG material - tennis_ball_outline", + "body": [ + "{% svg material tennis_ball_outline %}" + ] + }, + "tent": { + "prefix": "svg.material.tent", + "description": "SVG material - tent", + "body": [ + "{% svg material tent %}" + ] + }, + "terraform": { + "prefix": "svg.material.terraform", + "description": "SVG material - terraform", + "body": [ + "{% svg material terraform %}" + ] + }, + "terrain": { + "prefix": "svg.material.terrain", + "description": "SVG material - terrain", + "body": [ + "{% svg material terrain %}" + ] + }, + "test_tube": { + "prefix": "svg.material.test_tube", + "description": "SVG material - test_tube", + "body": [ + "{% svg material test_tube %}" + ] + }, + "test_tube_empty": { + "prefix": "svg.material.test_tube_empty", + "description": "SVG material - test_tube_empty", + "body": [ + "{% svg material test_tube_empty %}" + ] + }, + "test_tube_off": { + "prefix": "svg.material.test_tube_off", + "description": "SVG material - test_tube_off", + "body": [ + "{% svg material test_tube_off %}" + ] + }, + "text": { + "prefix": "svg.material.text", + "description": "SVG material - text", + "body": [ + "{% svg material text %}" + ] + }, + "text_account": { + "prefix": "svg.material.text_account", + "description": "SVG material - text_account", + "body": [ + "{% svg material text_account %}" + ] + }, + "text_box": { + "prefix": "svg.material.text_box", + "description": "SVG material - text_box", + "body": [ + "{% svg material text_box %}" + ] + }, + "text_box_check": { + "prefix": "svg.material.text_box_check", + "description": "SVG material - text_box_check", + "body": [ + "{% svg material text_box_check %}" + ] + }, + "text_box_check_outline": { + "prefix": "svg.material.text_box_check_outline", + "description": "SVG material - text_box_check_outline", + "body": [ + "{% svg material text_box_check_outline %}" + ] + }, + "text_box_edit": { + "prefix": "svg.material.text_box_edit", + "description": "SVG material - text_box_edit", + "body": [ + "{% svg material text_box_edit %}" + ] + }, + "text_box_edit_outline": { + "prefix": "svg.material.text_box_edit_outline", + "description": "SVG material - text_box_edit_outline", + "body": [ + "{% svg material text_box_edit_outline %}" + ] + }, + "text_box_minus": { + "prefix": "svg.material.text_box_minus", + "description": "SVG material - text_box_minus", + "body": [ + "{% svg material text_box_minus %}" + ] + }, + "text_box_minus_outline": { + "prefix": "svg.material.text_box_minus_outline", + "description": "SVG material - text_box_minus_outline", + "body": [ + "{% svg material text_box_minus_outline %}" + ] + }, + "text_box_multiple": { + "prefix": "svg.material.text_box_multiple", + "description": "SVG material - text_box_multiple", + "body": [ + "{% svg material text_box_multiple %}" + ] + }, + "text_box_multiple_outline": { + "prefix": "svg.material.text_box_multiple_outline", + "description": "SVG material - text_box_multiple_outline", + "body": [ + "{% svg material text_box_multiple_outline %}" + ] + }, + "text_box_outline": { + "prefix": "svg.material.text_box_outline", + "description": "SVG material - text_box_outline", + "body": [ + "{% svg material text_box_outline %}" + ] + }, + "text_box_plus": { + "prefix": "svg.material.text_box_plus", + "description": "SVG material - text_box_plus", + "body": [ + "{% svg material text_box_plus %}" + ] + }, + "text_box_plus_outline": { + "prefix": "svg.material.text_box_plus_outline", + "description": "SVG material - text_box_plus_outline", + "body": [ + "{% svg material text_box_plus_outline %}" + ] + }, + "text_box_remove": { + "prefix": "svg.material.text_box_remove", + "description": "SVG material - text_box_remove", + "body": [ + "{% svg material text_box_remove %}" + ] + }, + "text_box_remove_outline": { + "prefix": "svg.material.text_box_remove_outline", + "description": "SVG material - text_box_remove_outline", + "body": [ + "{% svg material text_box_remove_outline %}" + ] + }, + "text_box_search": { + "prefix": "svg.material.text_box_search", + "description": "SVG material - text_box_search", + "body": [ + "{% svg material text_box_search %}" + ] + }, + "text_box_search_outline": { + "prefix": "svg.material.text_box_search_outline", + "description": "SVG material - text_box_search_outline", + "body": [ + "{% svg material text_box_search_outline %}" + ] + }, + "text_long": { + "prefix": "svg.material.text_long", + "description": "SVG material - text_long", + "body": [ + "{% svg material text_long %}" + ] + }, + "text_recognition": { + "prefix": "svg.material.text_recognition", + "description": "SVG material - text_recognition", + "body": [ + "{% svg material text_recognition %}" + ] + }, + "text_search": { + "prefix": "svg.material.text_search", + "description": "SVG material - text_search", + "body": [ + "{% svg material text_search %}" + ] + }, + "text_search_variant": { + "prefix": "svg.material.text_search_variant", + "description": "SVG material - text_search_variant", + "body": [ + "{% svg material text_search_variant %}" + ] + }, + "text_shadow": { + "prefix": "svg.material.text_shadow", + "description": "SVG material - text_shadow", + "body": [ + "{% svg material text_shadow %}" + ] + }, + "text_short": { + "prefix": "svg.material.text_short", + "description": "SVG material - text_short", + "body": [ + "{% svg material text_short %}" + ] + }, + "texture": { + "prefix": "svg.material.texture", + "description": "SVG material - texture", + "body": [ + "{% svg material texture %}" + ] + }, + "texture_box": { + "prefix": "svg.material.texture_box", + "description": "SVG material - texture_box", + "body": [ + "{% svg material texture_box %}" + ] + }, + "theater": { + "prefix": "svg.material.theater", + "description": "SVG material - theater", + "body": [ + "{% svg material theater %}" + ] + }, + "theme_light_dark": { + "prefix": "svg.material.theme_light_dark", + "description": "SVG material - theme_light_dark", + "body": [ + "{% svg material theme_light_dark %}" + ] + }, + "thermometer": { + "prefix": "svg.material.thermometer", + "description": "SVG material - thermometer", + "body": [ + "{% svg material thermometer %}" + ] + }, + "thermometer_alert": { + "prefix": "svg.material.thermometer_alert", + "description": "SVG material - thermometer_alert", + "body": [ + "{% svg material thermometer_alert %}" + ] + }, + "thermometer_auto": { + "prefix": "svg.material.thermometer_auto", + "description": "SVG material - thermometer_auto", + "body": [ + "{% svg material thermometer_auto %}" + ] + }, + "thermometer_bluetooth": { + "prefix": "svg.material.thermometer_bluetooth", + "description": "SVG material - thermometer_bluetooth", + "body": [ + "{% svg material thermometer_bluetooth %}" + ] + }, + "thermometer_check": { + "prefix": "svg.material.thermometer_check", + "description": "SVG material - thermometer_check", + "body": [ + "{% svg material thermometer_check %}" + ] + }, + "thermometer_chevron_down": { + "prefix": "svg.material.thermometer_chevron_down", + "description": "SVG material - thermometer_chevron_down", + "body": [ + "{% svg material thermometer_chevron_down %}" + ] + }, + "thermometer_chevron_up": { + "prefix": "svg.material.thermometer_chevron_up", + "description": "SVG material - thermometer_chevron_up", + "body": [ + "{% svg material thermometer_chevron_up %}" + ] + }, + "thermometer_high": { + "prefix": "svg.material.thermometer_high", + "description": "SVG material - thermometer_high", + "body": [ + "{% svg material thermometer_high %}" + ] + }, + "thermometer_lines": { + "prefix": "svg.material.thermometer_lines", + "description": "SVG material - thermometer_lines", + "body": [ + "{% svg material thermometer_lines %}" + ] + }, + "thermometer_low": { + "prefix": "svg.material.thermometer_low", + "description": "SVG material - thermometer_low", + "body": [ + "{% svg material thermometer_low %}" + ] + }, + "thermometer_minus": { + "prefix": "svg.material.thermometer_minus", + "description": "SVG material - thermometer_minus", + "body": [ + "{% svg material thermometer_minus %}" + ] + }, + "thermometer_off": { + "prefix": "svg.material.thermometer_off", + "description": "SVG material - thermometer_off", + "body": [ + "{% svg material thermometer_off %}" + ] + }, + "thermometer_plus": { + "prefix": "svg.material.thermometer_plus", + "description": "SVG material - thermometer_plus", + "body": [ + "{% svg material thermometer_plus %}" + ] + }, + "thermometer_probe": { + "prefix": "svg.material.thermometer_probe", + "description": "SVG material - thermometer_probe", + "body": [ + "{% svg material thermometer_probe %}" + ] + }, + "thermometer_probe_off": { + "prefix": "svg.material.thermometer_probe_off", + "description": "SVG material - thermometer_probe_off", + "body": [ + "{% svg material thermometer_probe_off %}" + ] + }, + "thermometer_water": { + "prefix": "svg.material.thermometer_water", + "description": "SVG material - thermometer_water", + "body": [ + "{% svg material thermometer_water %}" + ] + }, + "thermostat": { + "prefix": "svg.material.thermostat", + "description": "SVG material - thermostat", + "body": [ + "{% svg material thermostat %}" + ] + }, + "thermostat_auto": { + "prefix": "svg.material.thermostat_auto", + "description": "SVG material - thermostat_auto", + "body": [ + "{% svg material thermostat_auto %}" + ] + }, + "thermostat_box": { + "prefix": "svg.material.thermostat_box", + "description": "SVG material - thermostat_box", + "body": [ + "{% svg material thermostat_box %}" + ] + }, + "thermostat_box_auto": { + "prefix": "svg.material.thermostat_box_auto", + "description": "SVG material - thermostat_box_auto", + "body": [ + "{% svg material thermostat_box_auto %}" + ] + }, + "thermostat_cog": { + "prefix": "svg.material.thermostat_cog", + "description": "SVG material - thermostat_cog", + "body": [ + "{% svg material thermostat_cog %}" + ] + }, + "thought_bubble": { + "prefix": "svg.material.thought_bubble", + "description": "SVG material - thought_bubble", + "body": [ + "{% svg material thought_bubble %}" + ] + }, + "thought_bubble_outline": { + "prefix": "svg.material.thought_bubble_outline", + "description": "SVG material - thought_bubble_outline", + "body": [ + "{% svg material thought_bubble_outline %}" + ] + }, + "thumb_down": { + "prefix": "svg.material.thumb_down", + "description": "SVG material - thumb_down", + "body": [ + "{% svg material thumb_down %}" + ] + }, + "thumb_down_outline": { + "prefix": "svg.material.thumb_down_outline", + "description": "SVG material - thumb_down_outline", + "body": [ + "{% svg material thumb_down_outline %}" + ] + }, + "thumb_up": { + "prefix": "svg.material.thumb_up", + "description": "SVG material - thumb_up", + "body": [ + "{% svg material thumb_up %}" + ] + }, + "thumb_up_outline": { + "prefix": "svg.material.thumb_up_outline", + "description": "SVG material - thumb_up_outline", + "body": [ + "{% svg material thumb_up_outline %}" + ] + }, + "thumbs_up_down": { + "prefix": "svg.material.thumbs_up_down", + "description": "SVG material - thumbs_up_down", + "body": [ + "{% svg material thumbs_up_down %}" + ] + }, + "thumbs_up_down_outline": { + "prefix": "svg.material.thumbs_up_down_outline", + "description": "SVG material - thumbs_up_down_outline", + "body": [ + "{% svg material thumbs_up_down_outline %}" + ] + }, + "ticket": { + "prefix": "svg.material.ticket", + "description": "SVG material - ticket", + "body": [ + "{% svg material ticket %}" + ] + }, + "ticket_account": { + "prefix": "svg.material.ticket_account", + "description": "SVG material - ticket_account", + "body": [ + "{% svg material ticket_account %}" + ] + }, + "ticket_confirmation": { + "prefix": "svg.material.ticket_confirmation", + "description": "SVG material - ticket_confirmation", + "body": [ + "{% svg material ticket_confirmation %}" + ] + }, + "ticket_confirmation_outline": { + "prefix": "svg.material.ticket_confirmation_outline", + "description": "SVG material - ticket_confirmation_outline", + "body": [ + "{% svg material ticket_confirmation_outline %}" + ] + }, + "ticket_outline": { + "prefix": "svg.material.ticket_outline", + "description": "SVG material - ticket_outline", + "body": [ + "{% svg material ticket_outline %}" + ] + }, + "ticket_percent": { + "prefix": "svg.material.ticket_percent", + "description": "SVG material - ticket_percent", + "body": [ + "{% svg material ticket_percent %}" + ] + }, + "ticket_percent_outline": { + "prefix": "svg.material.ticket_percent_outline", + "description": "SVG material - ticket_percent_outline", + "body": [ + "{% svg material ticket_percent_outline %}" + ] + }, + "tie": { + "prefix": "svg.material.tie", + "description": "SVG material - tie", + "body": [ + "{% svg material tie %}" + ] + }, + "tilde": { + "prefix": "svg.material.tilde", + "description": "SVG material - tilde", + "body": [ + "{% svg material tilde %}" + ] + }, + "tilde_off": { + "prefix": "svg.material.tilde_off", + "description": "SVG material - tilde_off", + "body": [ + "{% svg material tilde_off %}" + ] + }, + "timelapse": { + "prefix": "svg.material.timelapse", + "description": "SVG material - timelapse", + "body": [ + "{% svg material timelapse %}" + ] + }, + "timeline": { + "prefix": "svg.material.timeline", + "description": "SVG material - timeline", + "body": [ + "{% svg material timeline %}" + ] + }, + "timeline_alert": { + "prefix": "svg.material.timeline_alert", + "description": "SVG material - timeline_alert", + "body": [ + "{% svg material timeline_alert %}" + ] + }, + "timeline_alert_outline": { + "prefix": "svg.material.timeline_alert_outline", + "description": "SVG material - timeline_alert_outline", + "body": [ + "{% svg material timeline_alert_outline %}" + ] + }, + "timeline_check": { + "prefix": "svg.material.timeline_check", + "description": "SVG material - timeline_check", + "body": [ + "{% svg material timeline_check %}" + ] + }, + "timeline_check_outline": { + "prefix": "svg.material.timeline_check_outline", + "description": "SVG material - timeline_check_outline", + "body": [ + "{% svg material timeline_check_outline %}" + ] + }, + "timeline_clock": { + "prefix": "svg.material.timeline_clock", + "description": "SVG material - timeline_clock", + "body": [ + "{% svg material timeline_clock %}" + ] + }, + "timeline_clock_outline": { + "prefix": "svg.material.timeline_clock_outline", + "description": "SVG material - timeline_clock_outline", + "body": [ + "{% svg material timeline_clock_outline %}" + ] + }, + "timeline_minus": { + "prefix": "svg.material.timeline_minus", + "description": "SVG material - timeline_minus", + "body": [ + "{% svg material timeline_minus %}" + ] + }, + "timeline_minus_outline": { + "prefix": "svg.material.timeline_minus_outline", + "description": "SVG material - timeline_minus_outline", + "body": [ + "{% svg material timeline_minus_outline %}" + ] + }, + "timeline_outline": { + "prefix": "svg.material.timeline_outline", + "description": "SVG material - timeline_outline", + "body": [ + "{% svg material timeline_outline %}" + ] + }, + "timeline_plus": { + "prefix": "svg.material.timeline_plus", + "description": "SVG material - timeline_plus", + "body": [ + "{% svg material timeline_plus %}" + ] + }, + "timeline_plus_outline": { + "prefix": "svg.material.timeline_plus_outline", + "description": "SVG material - timeline_plus_outline", + "body": [ + "{% svg material timeline_plus_outline %}" + ] + }, + "timeline_question": { + "prefix": "svg.material.timeline_question", + "description": "SVG material - timeline_question", + "body": [ + "{% svg material timeline_question %}" + ] + }, + "timeline_question_outline": { + "prefix": "svg.material.timeline_question_outline", + "description": "SVG material - timeline_question_outline", + "body": [ + "{% svg material timeline_question_outline %}" + ] + }, + "timeline_remove": { + "prefix": "svg.material.timeline_remove", + "description": "SVG material - timeline_remove", + "body": [ + "{% svg material timeline_remove %}" + ] + }, + "timeline_remove_outline": { + "prefix": "svg.material.timeline_remove_outline", + "description": "SVG material - timeline_remove_outline", + "body": [ + "{% svg material timeline_remove_outline %}" + ] + }, + "timeline_text": { + "prefix": "svg.material.timeline_text", + "description": "SVG material - timeline_text", + "body": [ + "{% svg material timeline_text %}" + ] + }, + "timeline_text_outline": { + "prefix": "svg.material.timeline_text_outline", + "description": "SVG material - timeline_text_outline", + "body": [ + "{% svg material timeline_text_outline %}" + ] + }, + "timer": { + "prefix": "svg.material.timer", + "description": "SVG material - timer", + "body": [ + "{% svg material timer %}" + ] + }, + "timer_10": { + "prefix": "svg.material.timer_10", + "description": "SVG material - timer_10", + "body": [ + "{% svg material timer_10 %}" + ] + }, + "timer_3": { + "prefix": "svg.material.timer_3", + "description": "SVG material - timer_3", + "body": [ + "{% svg material timer_3 %}" + ] + }, + "timer_alert": { + "prefix": "svg.material.timer_alert", + "description": "SVG material - timer_alert", + "body": [ + "{% svg material timer_alert %}" + ] + }, + "timer_alert_outline": { + "prefix": "svg.material.timer_alert_outline", + "description": "SVG material - timer_alert_outline", + "body": [ + "{% svg material timer_alert_outline %}" + ] + }, + "timer_cancel": { + "prefix": "svg.material.timer_cancel", + "description": "SVG material - timer_cancel", + "body": [ + "{% svg material timer_cancel %}" + ] + }, + "timer_cancel_outline": { + "prefix": "svg.material.timer_cancel_outline", + "description": "SVG material - timer_cancel_outline", + "body": [ + "{% svg material timer_cancel_outline %}" + ] + }, + "timer_check": { + "prefix": "svg.material.timer_check", + "description": "SVG material - timer_check", + "body": [ + "{% svg material timer_check %}" + ] + }, + "timer_check_outline": { + "prefix": "svg.material.timer_check_outline", + "description": "SVG material - timer_check_outline", + "body": [ + "{% svg material timer_check_outline %}" + ] + }, + "timer_cog": { + "prefix": "svg.material.timer_cog", + "description": "SVG material - timer_cog", + "body": [ + "{% svg material timer_cog %}" + ] + }, + "timer_cog_outline": { + "prefix": "svg.material.timer_cog_outline", + "description": "SVG material - timer_cog_outline", + "body": [ + "{% svg material timer_cog_outline %}" + ] + }, + "timer_edit": { + "prefix": "svg.material.timer_edit", + "description": "SVG material - timer_edit", + "body": [ + "{% svg material timer_edit %}" + ] + }, + "timer_edit_outline": { + "prefix": "svg.material.timer_edit_outline", + "description": "SVG material - timer_edit_outline", + "body": [ + "{% svg material timer_edit_outline %}" + ] + }, + "timer_lock": { + "prefix": "svg.material.timer_lock", + "description": "SVG material - timer_lock", + "body": [ + "{% svg material timer_lock %}" + ] + }, + "timer_lock_open": { + "prefix": "svg.material.timer_lock_open", + "description": "SVG material - timer_lock_open", + "body": [ + "{% svg material timer_lock_open %}" + ] + }, + "timer_lock_open_outline": { + "prefix": "svg.material.timer_lock_open_outline", + "description": "SVG material - timer_lock_open_outline", + "body": [ + "{% svg material timer_lock_open_outline %}" + ] + }, + "timer_lock_outline": { + "prefix": "svg.material.timer_lock_outline", + "description": "SVG material - timer_lock_outline", + "body": [ + "{% svg material timer_lock_outline %}" + ] + }, + "timer_marker": { + "prefix": "svg.material.timer_marker", + "description": "SVG material - timer_marker", + "body": [ + "{% svg material timer_marker %}" + ] + }, + "timer_marker_outline": { + "prefix": "svg.material.timer_marker_outline", + "description": "SVG material - timer_marker_outline", + "body": [ + "{% svg material timer_marker_outline %}" + ] + }, + "timer_minus": { + "prefix": "svg.material.timer_minus", + "description": "SVG material - timer_minus", + "body": [ + "{% svg material timer_minus %}" + ] + }, + "timer_minus_outline": { + "prefix": "svg.material.timer_minus_outline", + "description": "SVG material - timer_minus_outline", + "body": [ + "{% svg material timer_minus_outline %}" + ] + }, + "timer_music": { + "prefix": "svg.material.timer_music", + "description": "SVG material - timer_music", + "body": [ + "{% svg material timer_music %}" + ] + }, + "timer_music_outline": { + "prefix": "svg.material.timer_music_outline", + "description": "SVG material - timer_music_outline", + "body": [ + "{% svg material timer_music_outline %}" + ] + }, + "timer_off": { + "prefix": "svg.material.timer_off", + "description": "SVG material - timer_off", + "body": [ + "{% svg material timer_off %}" + ] + }, + "timer_off_outline": { + "prefix": "svg.material.timer_off_outline", + "description": "SVG material - timer_off_outline", + "body": [ + "{% svg material timer_off_outline %}" + ] + }, + "timer_outline": { + "prefix": "svg.material.timer_outline", + "description": "SVG material - timer_outline", + "body": [ + "{% svg material timer_outline %}" + ] + }, + "timer_pause": { + "prefix": "svg.material.timer_pause", + "description": "SVG material - timer_pause", + "body": [ + "{% svg material timer_pause %}" + ] + }, + "timer_pause_outline": { + "prefix": "svg.material.timer_pause_outline", + "description": "SVG material - timer_pause_outline", + "body": [ + "{% svg material timer_pause_outline %}" + ] + }, + "timer_play": { + "prefix": "svg.material.timer_play", + "description": "SVG material - timer_play", + "body": [ + "{% svg material timer_play %}" + ] + }, + "timer_play_outline": { + "prefix": "svg.material.timer_play_outline", + "description": "SVG material - timer_play_outline", + "body": [ + "{% svg material timer_play_outline %}" + ] + }, + "timer_plus": { + "prefix": "svg.material.timer_plus", + "description": "SVG material - timer_plus", + "body": [ + "{% svg material timer_plus %}" + ] + }, + "timer_plus_outline": { + "prefix": "svg.material.timer_plus_outline", + "description": "SVG material - timer_plus_outline", + "body": [ + "{% svg material timer_plus_outline %}" + ] + }, + "timer_refresh": { + "prefix": "svg.material.timer_refresh", + "description": "SVG material - timer_refresh", + "body": [ + "{% svg material timer_refresh %}" + ] + }, + "timer_refresh_outline": { + "prefix": "svg.material.timer_refresh_outline", + "description": "SVG material - timer_refresh_outline", + "body": [ + "{% svg material timer_refresh_outline %}" + ] + }, + "timer_remove": { + "prefix": "svg.material.timer_remove", + "description": "SVG material - timer_remove", + "body": [ + "{% svg material timer_remove %}" + ] + }, + "timer_remove_outline": { + "prefix": "svg.material.timer_remove_outline", + "description": "SVG material - timer_remove_outline", + "body": [ + "{% svg material timer_remove_outline %}" + ] + }, + "timer_sand": { + "prefix": "svg.material.timer_sand", + "description": "SVG material - timer_sand", + "body": [ + "{% svg material timer_sand %}" + ] + }, + "timer_sand_complete": { + "prefix": "svg.material.timer_sand_complete", + "description": "SVG material - timer_sand_complete", + "body": [ + "{% svg material timer_sand_complete %}" + ] + }, + "timer_sand_empty": { + "prefix": "svg.material.timer_sand_empty", + "description": "SVG material - timer_sand_empty", + "body": [ + "{% svg material timer_sand_empty %}" + ] + }, + "timer_sand_full": { + "prefix": "svg.material.timer_sand_full", + "description": "SVG material - timer_sand_full", + "body": [ + "{% svg material timer_sand_full %}" + ] + }, + "timer_sand_paused": { + "prefix": "svg.material.timer_sand_paused", + "description": "SVG material - timer_sand_paused", + "body": [ + "{% svg material timer_sand_paused %}" + ] + }, + "timer_settings": { + "prefix": "svg.material.timer_settings", + "description": "SVG material - timer_settings", + "body": [ + "{% svg material timer_settings %}" + ] + }, + "timer_settings_outline": { + "prefix": "svg.material.timer_settings_outline", + "description": "SVG material - timer_settings_outline", + "body": [ + "{% svg material timer_settings_outline %}" + ] + }, + "timer_star": { + "prefix": "svg.material.timer_star", + "description": "SVG material - timer_star", + "body": [ + "{% svg material timer_star %}" + ] + }, + "timer_star_outline": { + "prefix": "svg.material.timer_star_outline", + "description": "SVG material - timer_star_outline", + "body": [ + "{% svg material timer_star_outline %}" + ] + }, + "timer_stop": { + "prefix": "svg.material.timer_stop", + "description": "SVG material - timer_stop", + "body": [ + "{% svg material timer_stop %}" + ] + }, + "timer_stop_outline": { + "prefix": "svg.material.timer_stop_outline", + "description": "SVG material - timer_stop_outline", + "body": [ + "{% svg material timer_stop_outline %}" + ] + }, + "timer_sync": { + "prefix": "svg.material.timer_sync", + "description": "SVG material - timer_sync", + "body": [ + "{% svg material timer_sync %}" + ] + }, + "timer_sync_outline": { + "prefix": "svg.material.timer_sync_outline", + "description": "SVG material - timer_sync_outline", + "body": [ + "{% svg material timer_sync_outline %}" + ] + }, + "timetable": { + "prefix": "svg.material.timetable", + "description": "SVG material - timetable", + "body": [ + "{% svg material timetable %}" + ] + }, + "tire": { + "prefix": "svg.material.tire", + "description": "SVG material - tire", + "body": [ + "{% svg material tire %}" + ] + }, + "toaster": { + "prefix": "svg.material.toaster", + "description": "SVG material - toaster", + "body": [ + "{% svg material toaster %}" + ] + }, + "toaster_off": { + "prefix": "svg.material.toaster_off", + "description": "SVG material - toaster_off", + "body": [ + "{% svg material toaster_off %}" + ] + }, + "toaster_oven": { + "prefix": "svg.material.toaster_oven", + "description": "SVG material - toaster_oven", + "body": [ + "{% svg material toaster_oven %}" + ] + }, + "toggle_switch": { + "prefix": "svg.material.toggle_switch", + "description": "SVG material - toggle_switch", + "body": [ + "{% svg material toggle_switch %}" + ] + }, + "toggle_switch_off": { + "prefix": "svg.material.toggle_switch_off", + "description": "SVG material - toggle_switch_off", + "body": [ + "{% svg material toggle_switch_off %}" + ] + }, + "toggle_switch_off_outline": { + "prefix": "svg.material.toggle_switch_off_outline", + "description": "SVG material - toggle_switch_off_outline", + "body": [ + "{% svg material toggle_switch_off_outline %}" + ] + }, + "toggle_switch_outline": { + "prefix": "svg.material.toggle_switch_outline", + "description": "SVG material - toggle_switch_outline", + "body": [ + "{% svg material toggle_switch_outline %}" + ] + }, + "toggle_switch_variant": { + "prefix": "svg.material.toggle_switch_variant", + "description": "SVG material - toggle_switch_variant", + "body": [ + "{% svg material toggle_switch_variant %}" + ] + }, + "toggle_switch_variant_off": { + "prefix": "svg.material.toggle_switch_variant_off", + "description": "SVG material - toggle_switch_variant_off", + "body": [ + "{% svg material toggle_switch_variant_off %}" + ] + }, + "toilet": { + "prefix": "svg.material.toilet", + "description": "SVG material - toilet", + "body": [ + "{% svg material toilet %}" + ] + }, + "toolbox": { + "prefix": "svg.material.toolbox", + "description": "SVG material - toolbox", + "body": [ + "{% svg material toolbox %}" + ] + }, + "toolbox_outline": { + "prefix": "svg.material.toolbox_outline", + "description": "SVG material - toolbox_outline", + "body": [ + "{% svg material toolbox_outline %}" + ] + }, + "tools": { + "prefix": "svg.material.tools", + "description": "SVG material - tools", + "body": [ + "{% svg material tools %}" + ] + }, + "tooltip": { + "prefix": "svg.material.tooltip", + "description": "SVG material - tooltip", + "body": [ + "{% svg material tooltip %}" + ] + }, + "tooltip_account": { + "prefix": "svg.material.tooltip_account", + "description": "SVG material - tooltip_account", + "body": [ + "{% svg material tooltip_account %}" + ] + }, + "tooltip_cellphone": { + "prefix": "svg.material.tooltip_cellphone", + "description": "SVG material - tooltip_cellphone", + "body": [ + "{% svg material tooltip_cellphone %}" + ] + }, + "tooltip_check": { + "prefix": "svg.material.tooltip_check", + "description": "SVG material - tooltip_check", + "body": [ + "{% svg material tooltip_check %}" + ] + }, + "tooltip_check_outline": { + "prefix": "svg.material.tooltip_check_outline", + "description": "SVG material - tooltip_check_outline", + "body": [ + "{% svg material tooltip_check_outline %}" + ] + }, + "tooltip_edit": { + "prefix": "svg.material.tooltip_edit", + "description": "SVG material - tooltip_edit", + "body": [ + "{% svg material tooltip_edit %}" + ] + }, + "tooltip_edit_outline": { + "prefix": "svg.material.tooltip_edit_outline", + "description": "SVG material - tooltip_edit_outline", + "body": [ + "{% svg material tooltip_edit_outline %}" + ] + }, + "tooltip_image": { + "prefix": "svg.material.tooltip_image", + "description": "SVG material - tooltip_image", + "body": [ + "{% svg material tooltip_image %}" + ] + }, + "tooltip_image_outline": { + "prefix": "svg.material.tooltip_image_outline", + "description": "SVG material - tooltip_image_outline", + "body": [ + "{% svg material tooltip_image_outline %}" + ] + }, + "tooltip_minus": { + "prefix": "svg.material.tooltip_minus", + "description": "SVG material - tooltip_minus", + "body": [ + "{% svg material tooltip_minus %}" + ] + }, + "tooltip_minus_outline": { + "prefix": "svg.material.tooltip_minus_outline", + "description": "SVG material - tooltip_minus_outline", + "body": [ + "{% svg material tooltip_minus_outline %}" + ] + }, + "tooltip_outline": { + "prefix": "svg.material.tooltip_outline", + "description": "SVG material - tooltip_outline", + "body": [ + "{% svg material tooltip_outline %}" + ] + }, + "tooltip_plus": { + "prefix": "svg.material.tooltip_plus", + "description": "SVG material - tooltip_plus", + "body": [ + "{% svg material tooltip_plus %}" + ] + }, + "tooltip_plus_outline": { + "prefix": "svg.material.tooltip_plus_outline", + "description": "SVG material - tooltip_plus_outline", + "body": [ + "{% svg material tooltip_plus_outline %}" + ] + }, + "tooltip_question": { + "prefix": "svg.material.tooltip_question", + "description": "SVG material - tooltip_question", + "body": [ + "{% svg material tooltip_question %}" + ] + }, + "tooltip_question_outline": { + "prefix": "svg.material.tooltip_question_outline", + "description": "SVG material - tooltip_question_outline", + "body": [ + "{% svg material tooltip_question_outline %}" + ] + }, + "tooltip_remove": { + "prefix": "svg.material.tooltip_remove", + "description": "SVG material - tooltip_remove", + "body": [ + "{% svg material tooltip_remove %}" + ] + }, + "tooltip_remove_outline": { + "prefix": "svg.material.tooltip_remove_outline", + "description": "SVG material - tooltip_remove_outline", + "body": [ + "{% svg material tooltip_remove_outline %}" + ] + }, + "tooltip_text": { + "prefix": "svg.material.tooltip_text", + "description": "SVG material - tooltip_text", + "body": [ + "{% svg material tooltip_text %}" + ] + }, + "tooltip_text_outline": { + "prefix": "svg.material.tooltip_text_outline", + "description": "SVG material - tooltip_text_outline", + "body": [ + "{% svg material tooltip_text_outline %}" + ] + }, + "tooth": { + "prefix": "svg.material.tooth", + "description": "SVG material - tooth", + "body": [ + "{% svg material tooth %}" + ] + }, + "tooth_outline": { + "prefix": "svg.material.tooth_outline", + "description": "SVG material - tooth_outline", + "body": [ + "{% svg material tooth_outline %}" + ] + }, + "toothbrush": { + "prefix": "svg.material.toothbrush", + "description": "SVG material - toothbrush", + "body": [ + "{% svg material toothbrush %}" + ] + }, + "toothbrush_electric": { + "prefix": "svg.material.toothbrush_electric", + "description": "SVG material - toothbrush_electric", + "body": [ + "{% svg material toothbrush_electric %}" + ] + }, + "toothbrush_paste": { + "prefix": "svg.material.toothbrush_paste", + "description": "SVG material - toothbrush_paste", + "body": [ + "{% svg material toothbrush_paste %}" + ] + }, + "torch": { + "prefix": "svg.material.torch", + "description": "SVG material - torch", + "body": [ + "{% svg material torch %}" + ] + }, + "tortoise": { + "prefix": "svg.material.tortoise", + "description": "SVG material - tortoise", + "body": [ + "{% svg material tortoise %}" + ] + }, + "toslink": { + "prefix": "svg.material.toslink", + "description": "SVG material - toslink", + "body": [ + "{% svg material toslink %}" + ] + }, + "touch_text_outline": { + "prefix": "svg.material.touch_text_outline", + "description": "SVG material - touch_text_outline", + "body": [ + "{% svg material touch_text_outline %}" + ] + }, + "tournament": { + "prefix": "svg.material.tournament", + "description": "SVG material - tournament", + "body": [ + "{% svg material tournament %}" + ] + }, + "tow_truck": { + "prefix": "svg.material.tow_truck", + "description": "SVG material - tow_truck", + "body": [ + "{% svg material tow_truck %}" + ] + }, + "tower_beach": { + "prefix": "svg.material.tower_beach", + "description": "SVG material - tower_beach", + "body": [ + "{% svg material tower_beach %}" + ] + }, + "tower_fire": { + "prefix": "svg.material.tower_fire", + "description": "SVG material - tower_fire", + "body": [ + "{% svg material tower_fire %}" + ] + }, + "town_hall": { + "prefix": "svg.material.town_hall", + "description": "SVG material - town_hall", + "body": [ + "{% svg material town_hall %}" + ] + }, + "toy_brick": { + "prefix": "svg.material.toy_brick", + "description": "SVG material - toy_brick", + "body": [ + "{% svg material toy_brick %}" + ] + }, + "toy_brick_marker": { + "prefix": "svg.material.toy_brick_marker", + "description": "SVG material - toy_brick_marker", + "body": [ + "{% svg material toy_brick_marker %}" + ] + }, + "toy_brick_marker_outline": { + "prefix": "svg.material.toy_brick_marker_outline", + "description": "SVG material - toy_brick_marker_outline", + "body": [ + "{% svg material toy_brick_marker_outline %}" + ] + }, + "toy_brick_minus": { + "prefix": "svg.material.toy_brick_minus", + "description": "SVG material - toy_brick_minus", + "body": [ + "{% svg material toy_brick_minus %}" + ] + }, + "toy_brick_minus_outline": { + "prefix": "svg.material.toy_brick_minus_outline", + "description": "SVG material - toy_brick_minus_outline", + "body": [ + "{% svg material toy_brick_minus_outline %}" + ] + }, + "toy_brick_outline": { + "prefix": "svg.material.toy_brick_outline", + "description": "SVG material - toy_brick_outline", + "body": [ + "{% svg material toy_brick_outline %}" + ] + }, + "toy_brick_plus": { + "prefix": "svg.material.toy_brick_plus", + "description": "SVG material - toy_brick_plus", + "body": [ + "{% svg material toy_brick_plus %}" + ] + }, + "toy_brick_plus_outline": { + "prefix": "svg.material.toy_brick_plus_outline", + "description": "SVG material - toy_brick_plus_outline", + "body": [ + "{% svg material toy_brick_plus_outline %}" + ] + }, + "toy_brick_remove": { + "prefix": "svg.material.toy_brick_remove", + "description": "SVG material - toy_brick_remove", + "body": [ + "{% svg material toy_brick_remove %}" + ] + }, + "toy_brick_remove_outline": { + "prefix": "svg.material.toy_brick_remove_outline", + "description": "SVG material - toy_brick_remove_outline", + "body": [ + "{% svg material toy_brick_remove_outline %}" + ] + }, + "toy_brick_search": { + "prefix": "svg.material.toy_brick_search", + "description": "SVG material - toy_brick_search", + "body": [ + "{% svg material toy_brick_search %}" + ] + }, + "toy_brick_search_outline": { + "prefix": "svg.material.toy_brick_search_outline", + "description": "SVG material - toy_brick_search_outline", + "body": [ + "{% svg material toy_brick_search_outline %}" + ] + }, + "track_light": { + "prefix": "svg.material.track_light", + "description": "SVG material - track_light", + "body": [ + "{% svg material track_light %}" + ] + }, + "track_light_off": { + "prefix": "svg.material.track_light_off", + "description": "SVG material - track_light_off", + "body": [ + "{% svg material track_light_off %}" + ] + }, + "trackpad": { + "prefix": "svg.material.trackpad", + "description": "SVG material - trackpad", + "body": [ + "{% svg material trackpad %}" + ] + }, + "trackpad_lock": { + "prefix": "svg.material.trackpad_lock", + "description": "SVG material - trackpad_lock", + "body": [ + "{% svg material trackpad_lock %}" + ] + }, + "tractor": { + "prefix": "svg.material.tractor", + "description": "SVG material - tractor", + "body": [ + "{% svg material tractor %}" + ] + }, + "tractor_variant": { + "prefix": "svg.material.tractor_variant", + "description": "SVG material - tractor_variant", + "body": [ + "{% svg material tractor_variant %}" + ] + }, + "trademark": { + "prefix": "svg.material.trademark", + "description": "SVG material - trademark", + "body": [ + "{% svg material trademark %}" + ] + }, + "traffic_cone": { + "prefix": "svg.material.traffic_cone", + "description": "SVG material - traffic_cone", + "body": [ + "{% svg material traffic_cone %}" + ] + }, + "traffic_light": { + "prefix": "svg.material.traffic_light", + "description": "SVG material - traffic_light", + "body": [ + "{% svg material traffic_light %}" + ] + }, + "traffic_light_outline": { + "prefix": "svg.material.traffic_light_outline", + "description": "SVG material - traffic_light_outline", + "body": [ + "{% svg material traffic_light_outline %}" + ] + }, + "train": { + "prefix": "svg.material.train", + "description": "SVG material - train", + "body": [ + "{% svg material train %}" + ] + }, + "train_bus": { + "prefix": "svg.material.train_bus", + "description": "SVG material - train_bus", + "body": [ + "{% svg material train_bus %}" + ] + }, + "train_car": { + "prefix": "svg.material.train_car", + "description": "SVG material - train_car", + "body": [ + "{% svg material train_car %}" + ] + }, + "train_car_autorack": { + "prefix": "svg.material.train_car_autorack", + "description": "SVG material - train_car_autorack", + "body": [ + "{% svg material train_car_autorack %}" + ] + }, + "train_car_box": { + "prefix": "svg.material.train_car_box", + "description": "SVG material - train_car_box", + "body": [ + "{% svg material train_car_box %}" + ] + }, + "train_car_box_full": { + "prefix": "svg.material.train_car_box_full", + "description": "SVG material - train_car_box_full", + "body": [ + "{% svg material train_car_box_full %}" + ] + }, + "train_car_box_open": { + "prefix": "svg.material.train_car_box_open", + "description": "SVG material - train_car_box_open", + "body": [ + "{% svg material train_car_box_open %}" + ] + }, + "train_car_caboose": { + "prefix": "svg.material.train_car_caboose", + "description": "SVG material - train_car_caboose", + "body": [ + "{% svg material train_car_caboose %}" + ] + }, + "train_car_centerbeam": { + "prefix": "svg.material.train_car_centerbeam", + "description": "SVG material - train_car_centerbeam", + "body": [ + "{% svg material train_car_centerbeam %}" + ] + }, + "train_car_centerbeam_full": { + "prefix": "svg.material.train_car_centerbeam_full", + "description": "SVG material - train_car_centerbeam_full", + "body": [ + "{% svg material train_car_centerbeam_full %}" + ] + }, + "train_car_container": { + "prefix": "svg.material.train_car_container", + "description": "SVG material - train_car_container", + "body": [ + "{% svg material train_car_container %}" + ] + }, + "train_car_flatbed": { + "prefix": "svg.material.train_car_flatbed", + "description": "SVG material - train_car_flatbed", + "body": [ + "{% svg material train_car_flatbed %}" + ] + }, + "train_car_flatbed_car": { + "prefix": "svg.material.train_car_flatbed_car", + "description": "SVG material - train_car_flatbed_car", + "body": [ + "{% svg material train_car_flatbed_car %}" + ] + }, + "train_car_flatbed_tank": { + "prefix": "svg.material.train_car_flatbed_tank", + "description": "SVG material - train_car_flatbed_tank", + "body": [ + "{% svg material train_car_flatbed_tank %}" + ] + }, + "train_car_gondola": { + "prefix": "svg.material.train_car_gondola", + "description": "SVG material - train_car_gondola", + "body": [ + "{% svg material train_car_gondola %}" + ] + }, + "train_car_gondola_full": { + "prefix": "svg.material.train_car_gondola_full", + "description": "SVG material - train_car_gondola_full", + "body": [ + "{% svg material train_car_gondola_full %}" + ] + }, + "train_car_hopper": { + "prefix": "svg.material.train_car_hopper", + "description": "SVG material - train_car_hopper", + "body": [ + "{% svg material train_car_hopper %}" + ] + }, + "train_car_hopper_covered": { + "prefix": "svg.material.train_car_hopper_covered", + "description": "SVG material - train_car_hopper_covered", + "body": [ + "{% svg material train_car_hopper_covered %}" + ] + }, + "train_car_hopper_full": { + "prefix": "svg.material.train_car_hopper_full", + "description": "SVG material - train_car_hopper_full", + "body": [ + "{% svg material train_car_hopper_full %}" + ] + }, + "train_car_intermodal": { + "prefix": "svg.material.train_car_intermodal", + "description": "SVG material - train_car_intermodal", + "body": [ + "{% svg material train_car_intermodal %}" + ] + }, + "train_car_passenger": { + "prefix": "svg.material.train_car_passenger", + "description": "SVG material - train_car_passenger", + "body": [ + "{% svg material train_car_passenger %}" + ] + }, + "train_car_passenger_door": { + "prefix": "svg.material.train_car_passenger_door", + "description": "SVG material - train_car_passenger_door", + "body": [ + "{% svg material train_car_passenger_door %}" + ] + }, + "train_car_passenger_door_open": { + "prefix": "svg.material.train_car_passenger_door_open", + "description": "SVG material - train_car_passenger_door_open", + "body": [ + "{% svg material train_car_passenger_door_open %}" + ] + }, + "train_car_passenger_variant": { + "prefix": "svg.material.train_car_passenger_variant", + "description": "SVG material - train_car_passenger_variant", + "body": [ + "{% svg material train_car_passenger_variant %}" + ] + }, + "train_car_tank": { + "prefix": "svg.material.train_car_tank", + "description": "SVG material - train_car_tank", + "body": [ + "{% svg material train_car_tank %}" + ] + }, + "train_variant": { + "prefix": "svg.material.train_variant", + "description": "SVG material - train_variant", + "body": [ + "{% svg material train_variant %}" + ] + }, + "tram": { + "prefix": "svg.material.tram", + "description": "SVG material - tram", + "body": [ + "{% svg material tram %}" + ] + }, + "tram_side": { + "prefix": "svg.material.tram_side", + "description": "SVG material - tram_side", + "body": [ + "{% svg material tram_side %}" + ] + }, + "transcribe": { + "prefix": "svg.material.transcribe", + "description": "SVG material - transcribe", + "body": [ + "{% svg material transcribe %}" + ] + }, + "transcribe_close": { + "prefix": "svg.material.transcribe_close", + "description": "SVG material - transcribe_close", + "body": [ + "{% svg material transcribe_close %}" + ] + }, + "transfer": { + "prefix": "svg.material.transfer", + "description": "SVG material - transfer", + "body": [ + "{% svg material transfer %}" + ] + }, + "transfer_down": { + "prefix": "svg.material.transfer_down", + "description": "SVG material - transfer_down", + "body": [ + "{% svg material transfer_down %}" + ] + }, + "transfer_left": { + "prefix": "svg.material.transfer_left", + "description": "SVG material - transfer_left", + "body": [ + "{% svg material transfer_left %}" + ] + }, + "transfer_right": { + "prefix": "svg.material.transfer_right", + "description": "SVG material - transfer_right", + "body": [ + "{% svg material transfer_right %}" + ] + }, + "transfer_up": { + "prefix": "svg.material.transfer_up", + "description": "SVG material - transfer_up", + "body": [ + "{% svg material transfer_up %}" + ] + }, + "transit_connection": { + "prefix": "svg.material.transit_connection", + "description": "SVG material - transit_connection", + "body": [ + "{% svg material transit_connection %}" + ] + }, + "transit_connection_horizontal": { + "prefix": "svg.material.transit_connection_horizontal", + "description": "SVG material - transit_connection_horizontal", + "body": [ + "{% svg material transit_connection_horizontal %}" + ] + }, + "transit_connection_variant": { + "prefix": "svg.material.transit_connection_variant", + "description": "SVG material - transit_connection_variant", + "body": [ + "{% svg material transit_connection_variant %}" + ] + }, + "transit_detour": { + "prefix": "svg.material.transit_detour", + "description": "SVG material - transit_detour", + "body": [ + "{% svg material transit_detour %}" + ] + }, + "transit_skip": { + "prefix": "svg.material.transit_skip", + "description": "SVG material - transit_skip", + "body": [ + "{% svg material transit_skip %}" + ] + }, + "transit_transfer": { + "prefix": "svg.material.transit_transfer", + "description": "SVG material - transit_transfer", + "body": [ + "{% svg material transit_transfer %}" + ] + }, + "transition": { + "prefix": "svg.material.transition", + "description": "SVG material - transition", + "body": [ + "{% svg material transition %}" + ] + }, + "transition_masked": { + "prefix": "svg.material.transition_masked", + "description": "SVG material - transition_masked", + "body": [ + "{% svg material transition_masked %}" + ] + }, + "translate": { + "prefix": "svg.material.translate", + "description": "SVG material - translate", + "body": [ + "{% svg material translate %}" + ] + }, + "translate_off": { + "prefix": "svg.material.translate_off", + "description": "SVG material - translate_off", + "body": [ + "{% svg material translate_off %}" + ] + }, + "translate_variant": { + "prefix": "svg.material.translate_variant", + "description": "SVG material - translate_variant", + "body": [ + "{% svg material translate_variant %}" + ] + }, + "transmission_tower": { + "prefix": "svg.material.transmission_tower", + "description": "SVG material - transmission_tower", + "body": [ + "{% svg material transmission_tower %}" + ] + }, + "transmission_tower_export": { + "prefix": "svg.material.transmission_tower_export", + "description": "SVG material - transmission_tower_export", + "body": [ + "{% svg material transmission_tower_export %}" + ] + }, + "transmission_tower_import": { + "prefix": "svg.material.transmission_tower_import", + "description": "SVG material - transmission_tower_import", + "body": [ + "{% svg material transmission_tower_import %}" + ] + }, + "transmission_tower_off": { + "prefix": "svg.material.transmission_tower_off", + "description": "SVG material - transmission_tower_off", + "body": [ + "{% svg material transmission_tower_off %}" + ] + }, + "trash_can": { + "prefix": "svg.material.trash_can", + "description": "SVG material - trash_can", + "body": [ + "{% svg material trash_can %}" + ] + }, + "trash_can_outline": { + "prefix": "svg.material.trash_can_outline", + "description": "SVG material - trash_can_outline", + "body": [ + "{% svg material trash_can_outline %}" + ] + }, + "tray": { + "prefix": "svg.material.tray", + "description": "SVG material - tray", + "body": [ + "{% svg material tray %}" + ] + }, + "tray_alert": { + "prefix": "svg.material.tray_alert", + "description": "SVG material - tray_alert", + "body": [ + "{% svg material tray_alert %}" + ] + }, + "tray_arrow_down": { + "prefix": "svg.material.tray_arrow_down", + "description": "SVG material - tray_arrow_down", + "body": [ + "{% svg material tray_arrow_down %}" + ] + }, + "tray_arrow_up": { + "prefix": "svg.material.tray_arrow_up", + "description": "SVG material - tray_arrow_up", + "body": [ + "{% svg material tray_arrow_up %}" + ] + }, + "tray_full": { + "prefix": "svg.material.tray_full", + "description": "SVG material - tray_full", + "body": [ + "{% svg material tray_full %}" + ] + }, + "tray_minus": { + "prefix": "svg.material.tray_minus", + "description": "SVG material - tray_minus", + "body": [ + "{% svg material tray_minus %}" + ] + }, + "tray_plus": { + "prefix": "svg.material.tray_plus", + "description": "SVG material - tray_plus", + "body": [ + "{% svg material tray_plus %}" + ] + }, + "tray_remove": { + "prefix": "svg.material.tray_remove", + "description": "SVG material - tray_remove", + "body": [ + "{% svg material tray_remove %}" + ] + }, + "treasure_chest": { + "prefix": "svg.material.treasure_chest", + "description": "SVG material - treasure_chest", + "body": [ + "{% svg material treasure_chest %}" + ] + }, + "treasure_chest_outline": { + "prefix": "svg.material.treasure_chest_outline", + "description": "SVG material - treasure_chest_outline", + "body": [ + "{% svg material treasure_chest_outline %}" + ] + }, + "tree": { + "prefix": "svg.material.tree", + "description": "SVG material - tree", + "body": [ + "{% svg material tree %}" + ] + }, + "tree_outline": { + "prefix": "svg.material.tree_outline", + "description": "SVG material - tree_outline", + "body": [ + "{% svg material tree_outline %}" + ] + }, + "trello": { + "prefix": "svg.material.trello", + "description": "SVG material - trello", + "body": [ + "{% svg material trello %}" + ] + }, + "trending_down": { + "prefix": "svg.material.trending_down", + "description": "SVG material - trending_down", + "body": [ + "{% svg material trending_down %}" + ] + }, + "trending_neutral": { + "prefix": "svg.material.trending_neutral", + "description": "SVG material - trending_neutral", + "body": [ + "{% svg material trending_neutral %}" + ] + }, + "trending_up": { + "prefix": "svg.material.trending_up", + "description": "SVG material - trending_up", + "body": [ + "{% svg material trending_up %}" + ] + }, + "triangle": { + "prefix": "svg.material.triangle", + "description": "SVG material - triangle", + "body": [ + "{% svg material triangle %}" + ] + }, + "triangle_down": { + "prefix": "svg.material.triangle_down", + "description": "SVG material - triangle_down", + "body": [ + "{% svg material triangle_down %}" + ] + }, + "triangle_down_outline": { + "prefix": "svg.material.triangle_down_outline", + "description": "SVG material - triangle_down_outline", + "body": [ + "{% svg material triangle_down_outline %}" + ] + }, + "triangle_outline": { + "prefix": "svg.material.triangle_outline", + "description": "SVG material - triangle_outline", + "body": [ + "{% svg material triangle_outline %}" + ] + }, + "triangle_small_down": { + "prefix": "svg.material.triangle_small_down", + "description": "SVG material - triangle_small_down", + "body": [ + "{% svg material triangle_small_down %}" + ] + }, + "triangle_small_up": { + "prefix": "svg.material.triangle_small_up", + "description": "SVG material - triangle_small_up", + "body": [ + "{% svg material triangle_small_up %}" + ] + }, + "triangle_wave": { + "prefix": "svg.material.triangle_wave", + "description": "SVG material - triangle_wave", + "body": [ + "{% svg material triangle_wave %}" + ] + }, + "triforce": { + "prefix": "svg.material.triforce", + "description": "SVG material - triforce", + "body": [ + "{% svg material triforce %}" + ] + }, + "trophy": { + "prefix": "svg.material.trophy", + "description": "SVG material - trophy", + "body": [ + "{% svg material trophy %}" + ] + }, + "trophy_award": { + "prefix": "svg.material.trophy_award", + "description": "SVG material - trophy_award", + "body": [ + "{% svg material trophy_award %}" + ] + }, + "trophy_broken": { + "prefix": "svg.material.trophy_broken", + "description": "SVG material - trophy_broken", + "body": [ + "{% svg material trophy_broken %}" + ] + }, + "trophy_outline": { + "prefix": "svg.material.trophy_outline", + "description": "SVG material - trophy_outline", + "body": [ + "{% svg material trophy_outline %}" + ] + }, + "trophy_variant": { + "prefix": "svg.material.trophy_variant", + "description": "SVG material - trophy_variant", + "body": [ + "{% svg material trophy_variant %}" + ] + }, + "trophy_variant_outline": { + "prefix": "svg.material.trophy_variant_outline", + "description": "SVG material - trophy_variant_outline", + "body": [ + "{% svg material trophy_variant_outline %}" + ] + }, + "truck": { + "prefix": "svg.material.truck", + "description": "SVG material - truck", + "body": [ + "{% svg material truck %}" + ] + }, + "truck_alert": { + "prefix": "svg.material.truck_alert", + "description": "SVG material - truck_alert", + "body": [ + "{% svg material truck_alert %}" + ] + }, + "truck_alert_outline": { + "prefix": "svg.material.truck_alert_outline", + "description": "SVG material - truck_alert_outline", + "body": [ + "{% svg material truck_alert_outline %}" + ] + }, + "truck_cargo_container": { + "prefix": "svg.material.truck_cargo_container", + "description": "SVG material - truck_cargo_container", + "body": [ + "{% svg material truck_cargo_container %}" + ] + }, + "truck_check": { + "prefix": "svg.material.truck_check", + "description": "SVG material - truck_check", + "body": [ + "{% svg material truck_check %}" + ] + }, + "truck_check_outline": { + "prefix": "svg.material.truck_check_outline", + "description": "SVG material - truck_check_outline", + "body": [ + "{% svg material truck_check_outline %}" + ] + }, + "truck_delivery": { + "prefix": "svg.material.truck_delivery", + "description": "SVG material - truck_delivery", + "body": [ + "{% svg material truck_delivery %}" + ] + }, + "truck_delivery_outline": { + "prefix": "svg.material.truck_delivery_outline", + "description": "SVG material - truck_delivery_outline", + "body": [ + "{% svg material truck_delivery_outline %}" + ] + }, + "truck_fast": { + "prefix": "svg.material.truck_fast", + "description": "SVG material - truck_fast", + "body": [ + "{% svg material truck_fast %}" + ] + }, + "truck_fast_outline": { + "prefix": "svg.material.truck_fast_outline", + "description": "SVG material - truck_fast_outline", + "body": [ + "{% svg material truck_fast_outline %}" + ] + }, + "truck_flatbed": { + "prefix": "svg.material.truck_flatbed", + "description": "SVG material - truck_flatbed", + "body": [ + "{% svg material truck_flatbed %}" + ] + }, + "truck_minus": { + "prefix": "svg.material.truck_minus", + "description": "SVG material - truck_minus", + "body": [ + "{% svg material truck_minus %}" + ] + }, + "truck_minus_outline": { + "prefix": "svg.material.truck_minus_outline", + "description": "SVG material - truck_minus_outline", + "body": [ + "{% svg material truck_minus_outline %}" + ] + }, + "truck_off_road": { + "prefix": "svg.material.truck_off_road", + "description": "SVG material - truck_off_road", + "body": [ + "{% svg material truck_off_road %}" + ] + }, + "truck_off_road_off": { + "prefix": "svg.material.truck_off_road_off", + "description": "SVG material - truck_off_road_off", + "body": [ + "{% svg material truck_off_road_off %}" + ] + }, + "truck_outline": { + "prefix": "svg.material.truck_outline", + "description": "SVG material - truck_outline", + "body": [ + "{% svg material truck_outline %}" + ] + }, + "truck_plus": { + "prefix": "svg.material.truck_plus", + "description": "SVG material - truck_plus", + "body": [ + "{% svg material truck_plus %}" + ] + }, + "truck_plus_outline": { + "prefix": "svg.material.truck_plus_outline", + "description": "SVG material - truck_plus_outline", + "body": [ + "{% svg material truck_plus_outline %}" + ] + }, + "truck_remove": { + "prefix": "svg.material.truck_remove", + "description": "SVG material - truck_remove", + "body": [ + "{% svg material truck_remove %}" + ] + }, + "truck_remove_outline": { + "prefix": "svg.material.truck_remove_outline", + "description": "SVG material - truck_remove_outline", + "body": [ + "{% svg material truck_remove_outline %}" + ] + }, + "truck_snowflake": { + "prefix": "svg.material.truck_snowflake", + "description": "SVG material - truck_snowflake", + "body": [ + "{% svg material truck_snowflake %}" + ] + }, + "truck_trailer": { + "prefix": "svg.material.truck_trailer", + "description": "SVG material - truck_trailer", + "body": [ + "{% svg material truck_trailer %}" + ] + }, + "trumpet": { + "prefix": "svg.material.trumpet", + "description": "SVG material - trumpet", + "body": [ + "{% svg material trumpet %}" + ] + }, + "tshirt_crew": { + "prefix": "svg.material.tshirt_crew", + "description": "SVG material - tshirt_crew", + "body": [ + "{% svg material tshirt_crew %}" + ] + }, + "tshirt_crew_outline": { + "prefix": "svg.material.tshirt_crew_outline", + "description": "SVG material - tshirt_crew_outline", + "body": [ + "{% svg material tshirt_crew_outline %}" + ] + }, + "tshirt_v": { + "prefix": "svg.material.tshirt_v", + "description": "SVG material - tshirt_v", + "body": [ + "{% svg material tshirt_v %}" + ] + }, + "tshirt_v_outline": { + "prefix": "svg.material.tshirt_v_outline", + "description": "SVG material - tshirt_v_outline", + "body": [ + "{% svg material tshirt_v_outline %}" + ] + }, + "tsunami": { + "prefix": "svg.material.tsunami", + "description": "SVG material - tsunami", + "body": [ + "{% svg material tsunami %}" + ] + }, + "tumble_dryer": { + "prefix": "svg.material.tumble_dryer", + "description": "SVG material - tumble_dryer", + "body": [ + "{% svg material tumble_dryer %}" + ] + }, + "tumble_dryer_alert": { + "prefix": "svg.material.tumble_dryer_alert", + "description": "SVG material - tumble_dryer_alert", + "body": [ + "{% svg material tumble_dryer_alert %}" + ] + }, + "tumble_dryer_off": { + "prefix": "svg.material.tumble_dryer_off", + "description": "SVG material - tumble_dryer_off", + "body": [ + "{% svg material tumble_dryer_off %}" + ] + }, + "tune": { + "prefix": "svg.material.tune", + "description": "SVG material - tune", + "body": [ + "{% svg material tune %}" + ] + }, + "tune_variant": { + "prefix": "svg.material.tune_variant", + "description": "SVG material - tune_variant", + "body": [ + "{% svg material tune_variant %}" + ] + }, + "tune_vertical": { + "prefix": "svg.material.tune_vertical", + "description": "SVG material - tune_vertical", + "body": [ + "{% svg material tune_vertical %}" + ] + }, + "tune_vertical_variant": { + "prefix": "svg.material.tune_vertical_variant", + "description": "SVG material - tune_vertical_variant", + "body": [ + "{% svg material tune_vertical_variant %}" + ] + }, + "tunnel": { + "prefix": "svg.material.tunnel", + "description": "SVG material - tunnel", + "body": [ + "{% svg material tunnel %}" + ] + }, + "tunnel_outline": { + "prefix": "svg.material.tunnel_outline", + "description": "SVG material - tunnel_outline", + "body": [ + "{% svg material tunnel_outline %}" + ] + }, + "turbine": { + "prefix": "svg.material.turbine", + "description": "SVG material - turbine", + "body": [ + "{% svg material turbine %}" + ] + }, + "turkey": { + "prefix": "svg.material.turkey", + "description": "SVG material - turkey", + "body": [ + "{% svg material turkey %}" + ] + }, + "turnstile": { + "prefix": "svg.material.turnstile", + "description": "SVG material - turnstile", + "body": [ + "{% svg material turnstile %}" + ] + }, + "turnstile_outline": { + "prefix": "svg.material.turnstile_outline", + "description": "SVG material - turnstile_outline", + "body": [ + "{% svg material turnstile_outline %}" + ] + }, + "turtle": { + "prefix": "svg.material.turtle", + "description": "SVG material - turtle", + "body": [ + "{% svg material turtle %}" + ] + }, + "twitch": { + "prefix": "svg.material.twitch", + "description": "SVG material - twitch", + "body": [ + "{% svg material twitch %}" + ] + }, + "twitter": { + "prefix": "svg.material.twitter", + "description": "SVG material - twitter", + "body": [ + "{% svg material twitter %}" + ] + }, + "two_factor_authentication": { + "prefix": "svg.material.two_factor_authentication", + "description": "SVG material - two_factor_authentication", + "body": [ + "{% svg material two_factor_authentication %}" + ] + }, + "typewriter": { + "prefix": "svg.material.typewriter", + "description": "SVG material - typewriter", + "body": [ + "{% svg material typewriter %}" + ] + }, + "ubisoft": { + "prefix": "svg.material.ubisoft", + "description": "SVG material - ubisoft", + "body": [ + "{% svg material ubisoft %}" + ] + }, + "ubuntu": { + "prefix": "svg.material.ubuntu", + "description": "SVG material - ubuntu", + "body": [ + "{% svg material ubuntu %}" + ] + }, + "ufo": { + "prefix": "svg.material.ufo", + "description": "SVG material - ufo", + "body": [ + "{% svg material ufo %}" + ] + }, + "ufo_outline": { + "prefix": "svg.material.ufo_outline", + "description": "SVG material - ufo_outline", + "body": [ + "{% svg material ufo_outline %}" + ] + }, + "ultra_high_definition": { + "prefix": "svg.material.ultra_high_definition", + "description": "SVG material - ultra_high_definition", + "body": [ + "{% svg material ultra_high_definition %}" + ] + }, + "umbraco": { + "prefix": "svg.material.umbraco", + "description": "SVG material - umbraco", + "body": [ + "{% svg material umbraco %}" + ] + }, + "umbrella": { + "prefix": "svg.material.umbrella", + "description": "SVG material - umbrella", + "body": [ + "{% svg material umbrella %}" + ] + }, + "umbrella_beach": { + "prefix": "svg.material.umbrella_beach", + "description": "SVG material - umbrella_beach", + "body": [ + "{% svg material umbrella_beach %}" + ] + }, + "umbrella_beach_outline": { + "prefix": "svg.material.umbrella_beach_outline", + "description": "SVG material - umbrella_beach_outline", + "body": [ + "{% svg material umbrella_beach_outline %}" + ] + }, + "umbrella_closed": { + "prefix": "svg.material.umbrella_closed", + "description": "SVG material - umbrella_closed", + "body": [ + "{% svg material umbrella_closed %}" + ] + }, + "umbrella_closed_outline": { + "prefix": "svg.material.umbrella_closed_outline", + "description": "SVG material - umbrella_closed_outline", + "body": [ + "{% svg material umbrella_closed_outline %}" + ] + }, + "umbrella_closed_variant": { + "prefix": "svg.material.umbrella_closed_variant", + "description": "SVG material - umbrella_closed_variant", + "body": [ + "{% svg material umbrella_closed_variant %}" + ] + }, + "umbrella_outline": { + "prefix": "svg.material.umbrella_outline", + "description": "SVG material - umbrella_outline", + "body": [ + "{% svg material umbrella_outline %}" + ] + }, + "underwear_outline": { + "prefix": "svg.material.underwear_outline", + "description": "SVG material - underwear_outline", + "body": [ + "{% svg material underwear_outline %}" + ] + }, + "undo": { + "prefix": "svg.material.undo", + "description": "SVG material - undo", + "body": [ + "{% svg material undo %}" + ] + }, + "undo_variant": { + "prefix": "svg.material.undo_variant", + "description": "SVG material - undo_variant", + "body": [ + "{% svg material undo_variant %}" + ] + }, + "unfold_less_horizontal": { + "prefix": "svg.material.unfold_less_horizontal", + "description": "SVG material - unfold_less_horizontal", + "body": [ + "{% svg material unfold_less_horizontal %}" + ] + }, + "unfold_less_vertical": { + "prefix": "svg.material.unfold_less_vertical", + "description": "SVG material - unfold_less_vertical", + "body": [ + "{% svg material unfold_less_vertical %}" + ] + }, + "unfold_more_horizontal": { + "prefix": "svg.material.unfold_more_horizontal", + "description": "SVG material - unfold_more_horizontal", + "body": [ + "{% svg material unfold_more_horizontal %}" + ] + }, + "unfold_more_vertical": { + "prefix": "svg.material.unfold_more_vertical", + "description": "SVG material - unfold_more_vertical", + "body": [ + "{% svg material unfold_more_vertical %}" + ] + }, + "ungroup": { + "prefix": "svg.material.ungroup", + "description": "SVG material - ungroup", + "body": [ + "{% svg material ungroup %}" + ] + }, + "unicode": { + "prefix": "svg.material.unicode", + "description": "SVG material - unicode", + "body": [ + "{% svg material unicode %}" + ] + }, + "unicorn": { + "prefix": "svg.material.unicorn", + "description": "SVG material - unicorn", + "body": [ + "{% svg material unicorn %}" + ] + }, + "unicorn_variant": { + "prefix": "svg.material.unicorn_variant", + "description": "SVG material - unicorn_variant", + "body": [ + "{% svg material unicorn_variant %}" + ] + }, + "unicycle": { + "prefix": "svg.material.unicycle", + "description": "SVG material - unicycle", + "body": [ + "{% svg material unicycle %}" + ] + }, + "unity": { + "prefix": "svg.material.unity", + "description": "SVG material - unity", + "body": [ + "{% svg material unity %}" + ] + }, + "unreal": { + "prefix": "svg.material.unreal", + "description": "SVG material - unreal", + "body": [ + "{% svg material unreal %}" + ] + }, + "update": { + "prefix": "svg.material.update", + "description": "SVG material - update", + "body": [ + "{% svg material update %}" + ] + }, + "upload": { + "prefix": "svg.material.upload", + "description": "SVG material - upload", + "body": [ + "{% svg material upload %}" + ] + }, + "upload_box": { + "prefix": "svg.material.upload_box", + "description": "SVG material - upload_box", + "body": [ + "{% svg material upload_box %}" + ] + }, + "upload_box_outline": { + "prefix": "svg.material.upload_box_outline", + "description": "SVG material - upload_box_outline", + "body": [ + "{% svg material upload_box_outline %}" + ] + }, + "upload_circle": { + "prefix": "svg.material.upload_circle", + "description": "SVG material - upload_circle", + "body": [ + "{% svg material upload_circle %}" + ] + }, + "upload_circle_outline": { + "prefix": "svg.material.upload_circle_outline", + "description": "SVG material - upload_circle_outline", + "body": [ + "{% svg material upload_circle_outline %}" + ] + }, + "upload_lock": { + "prefix": "svg.material.upload_lock", + "description": "SVG material - upload_lock", + "body": [ + "{% svg material upload_lock %}" + ] + }, + "upload_lock_outline": { + "prefix": "svg.material.upload_lock_outline", + "description": "SVG material - upload_lock_outline", + "body": [ + "{% svg material upload_lock_outline %}" + ] + }, + "upload_multiple": { + "prefix": "svg.material.upload_multiple", + "description": "SVG material - upload_multiple", + "body": [ + "{% svg material upload_multiple %}" + ] + }, + "upload_multiple_outline": { + "prefix": "svg.material.upload_multiple_outline", + "description": "SVG material - upload_multiple_outline", + "body": [ + "{% svg material upload_multiple_outline %}" + ] + }, + "upload_network": { + "prefix": "svg.material.upload_network", + "description": "SVG material - upload_network", + "body": [ + "{% svg material upload_network %}" + ] + }, + "upload_network_outline": { + "prefix": "svg.material.upload_network_outline", + "description": "SVG material - upload_network_outline", + "body": [ + "{% svg material upload_network_outline %}" + ] + }, + "upload_off": { + "prefix": "svg.material.upload_off", + "description": "SVG material - upload_off", + "body": [ + "{% svg material upload_off %}" + ] + }, + "upload_off_outline": { + "prefix": "svg.material.upload_off_outline", + "description": "SVG material - upload_off_outline", + "body": [ + "{% svg material upload_off_outline %}" + ] + }, + "upload_outline": { + "prefix": "svg.material.upload_outline", + "description": "SVG material - upload_outline", + "body": [ + "{% svg material upload_outline %}" + ] + }, + "usb": { + "prefix": "svg.material.usb", + "description": "SVG material - usb", + "body": [ + "{% svg material usb %}" + ] + }, + "usb_c_port": { + "prefix": "svg.material.usb_c_port", + "description": "SVG material - usb_c_port", + "body": [ + "{% svg material usb_c_port %}" + ] + }, + "usb_flash_drive": { + "prefix": "svg.material.usb_flash_drive", + "description": "SVG material - usb_flash_drive", + "body": [ + "{% svg material usb_flash_drive %}" + ] + }, + "usb_flash_drive_outline": { + "prefix": "svg.material.usb_flash_drive_outline", + "description": "SVG material - usb_flash_drive_outline", + "body": [ + "{% svg material usb_flash_drive_outline %}" + ] + }, + "usb_port": { + "prefix": "svg.material.usb_port", + "description": "SVG material - usb_port", + "body": [ + "{% svg material usb_port %}" + ] + }, + "vacuum": { + "prefix": "svg.material.vacuum", + "description": "SVG material - vacuum", + "body": [ + "{% svg material vacuum %}" + ] + }, + "vacuum_outline": { + "prefix": "svg.material.vacuum_outline", + "description": "SVG material - vacuum_outline", + "body": [ + "{% svg material vacuum_outline %}" + ] + }, + "valve": { + "prefix": "svg.material.valve", + "description": "SVG material - valve", + "body": [ + "{% svg material valve %}" + ] + }, + "valve_closed": { + "prefix": "svg.material.valve_closed", + "description": "SVG material - valve_closed", + "body": [ + "{% svg material valve_closed %}" + ] + }, + "valve_open": { + "prefix": "svg.material.valve_open", + "description": "SVG material - valve_open", + "body": [ + "{% svg material valve_open %}" + ] + }, + "van_passenger": { + "prefix": "svg.material.van_passenger", + "description": "SVG material - van_passenger", + "body": [ + "{% svg material van_passenger %}" + ] + }, + "van_utility": { + "prefix": "svg.material.van_utility", + "description": "SVG material - van_utility", + "body": [ + "{% svg material van_utility %}" + ] + }, + "vanish": { + "prefix": "svg.material.vanish", + "description": "SVG material - vanish", + "body": [ + "{% svg material vanish %}" + ] + }, + "vanish_quarter": { + "prefix": "svg.material.vanish_quarter", + "description": "SVG material - vanish_quarter", + "body": [ + "{% svg material vanish_quarter %}" + ] + }, + "vanity_light": { + "prefix": "svg.material.vanity_light", + "description": "SVG material - vanity_light", + "body": [ + "{% svg material vanity_light %}" + ] + }, + "variable": { + "prefix": "svg.material.variable", + "description": "SVG material - variable", + "body": [ + "{% svg material variable %}" + ] + }, + "variable_box": { + "prefix": "svg.material.variable_box", + "description": "SVG material - variable_box", + "body": [ + "{% svg material variable_box %}" + ] + }, + "vector_arrange_above": { + "prefix": "svg.material.vector_arrange_above", + "description": "SVG material - vector_arrange_above", + "body": [ + "{% svg material vector_arrange_above %}" + ] + }, + "vector_arrange_below": { + "prefix": "svg.material.vector_arrange_below", + "description": "SVG material - vector_arrange_below", + "body": [ + "{% svg material vector_arrange_below %}" + ] + }, + "vector_bezier": { + "prefix": "svg.material.vector_bezier", + "description": "SVG material - vector_bezier", + "body": [ + "{% svg material vector_bezier %}" + ] + }, + "vector_circle": { + "prefix": "svg.material.vector_circle", + "description": "SVG material - vector_circle", + "body": [ + "{% svg material vector_circle %}" + ] + }, + "vector_circle_variant": { + "prefix": "svg.material.vector_circle_variant", + "description": "SVG material - vector_circle_variant", + "body": [ + "{% svg material vector_circle_variant %}" + ] + }, + "vector_combine": { + "prefix": "svg.material.vector_combine", + "description": "SVG material - vector_combine", + "body": [ + "{% svg material vector_combine %}" + ] + }, + "vector_curve": { + "prefix": "svg.material.vector_curve", + "description": "SVG material - vector_curve", + "body": [ + "{% svg material vector_curve %}" + ] + }, + "vector_difference": { + "prefix": "svg.material.vector_difference", + "description": "SVG material - vector_difference", + "body": [ + "{% svg material vector_difference %}" + ] + }, + "vector_difference_ab": { + "prefix": "svg.material.vector_difference_ab", + "description": "SVG material - vector_difference_ab", + "body": [ + "{% svg material vector_difference_ab %}" + ] + }, + "vector_difference_ba": { + "prefix": "svg.material.vector_difference_ba", + "description": "SVG material - vector_difference_ba", + "body": [ + "{% svg material vector_difference_ba %}" + ] + }, + "vector_ellipse": { + "prefix": "svg.material.vector_ellipse", + "description": "SVG material - vector_ellipse", + "body": [ + "{% svg material vector_ellipse %}" + ] + }, + "vector_intersection": { + "prefix": "svg.material.vector_intersection", + "description": "SVG material - vector_intersection", + "body": [ + "{% svg material vector_intersection %}" + ] + }, + "vector_line": { + "prefix": "svg.material.vector_line", + "description": "SVG material - vector_line", + "body": [ + "{% svg material vector_line %}" + ] + }, + "vector_link": { + "prefix": "svg.material.vector_link", + "description": "SVG material - vector_link", + "body": [ + "{% svg material vector_link %}" + ] + }, + "vector_point": { + "prefix": "svg.material.vector_point", + "description": "SVG material - vector_point", + "body": [ + "{% svg material vector_point %}" + ] + }, + "vector_point_edit": { + "prefix": "svg.material.vector_point_edit", + "description": "SVG material - vector_point_edit", + "body": [ + "{% svg material vector_point_edit %}" + ] + }, + "vector_point_minus": { + "prefix": "svg.material.vector_point_minus", + "description": "SVG material - vector_point_minus", + "body": [ + "{% svg material vector_point_minus %}" + ] + }, + "vector_point_plus": { + "prefix": "svg.material.vector_point_plus", + "description": "SVG material - vector_point_plus", + "body": [ + "{% svg material vector_point_plus %}" + ] + }, + "vector_point_select": { + "prefix": "svg.material.vector_point_select", + "description": "SVG material - vector_point_select", + "body": [ + "{% svg material vector_point_select %}" + ] + }, + "vector_polygon": { + "prefix": "svg.material.vector_polygon", + "description": "SVG material - vector_polygon", + "body": [ + "{% svg material vector_polygon %}" + ] + }, + "vector_polygon_variant": { + "prefix": "svg.material.vector_polygon_variant", + "description": "SVG material - vector_polygon_variant", + "body": [ + "{% svg material vector_polygon_variant %}" + ] + }, + "vector_polyline": { + "prefix": "svg.material.vector_polyline", + "description": "SVG material - vector_polyline", + "body": [ + "{% svg material vector_polyline %}" + ] + }, + "vector_polyline_edit": { + "prefix": "svg.material.vector_polyline_edit", + "description": "SVG material - vector_polyline_edit", + "body": [ + "{% svg material vector_polyline_edit %}" + ] + }, + "vector_polyline_minus": { + "prefix": "svg.material.vector_polyline_minus", + "description": "SVG material - vector_polyline_minus", + "body": [ + "{% svg material vector_polyline_minus %}" + ] + }, + "vector_polyline_plus": { + "prefix": "svg.material.vector_polyline_plus", + "description": "SVG material - vector_polyline_plus", + "body": [ + "{% svg material vector_polyline_plus %}" + ] + }, + "vector_polyline_remove": { + "prefix": "svg.material.vector_polyline_remove", + "description": "SVG material - vector_polyline_remove", + "body": [ + "{% svg material vector_polyline_remove %}" + ] + }, + "vector_radius": { + "prefix": "svg.material.vector_radius", + "description": "SVG material - vector_radius", + "body": [ + "{% svg material vector_radius %}" + ] + }, + "vector_rectangle": { + "prefix": "svg.material.vector_rectangle", + "description": "SVG material - vector_rectangle", + "body": [ + "{% svg material vector_rectangle %}" + ] + }, + "vector_selection": { + "prefix": "svg.material.vector_selection", + "description": "SVG material - vector_selection", + "body": [ + "{% svg material vector_selection %}" + ] + }, + "vector_square": { + "prefix": "svg.material.vector_square", + "description": "SVG material - vector_square", + "body": [ + "{% svg material vector_square %}" + ] + }, + "vector_square_close": { + "prefix": "svg.material.vector_square_close", + "description": "SVG material - vector_square_close", + "body": [ + "{% svg material vector_square_close %}" + ] + }, + "vector_square_edit": { + "prefix": "svg.material.vector_square_edit", + "description": "SVG material - vector_square_edit", + "body": [ + "{% svg material vector_square_edit %}" + ] + }, + "vector_square_minus": { + "prefix": "svg.material.vector_square_minus", + "description": "SVG material - vector_square_minus", + "body": [ + "{% svg material vector_square_minus %}" + ] + }, + "vector_square_open": { + "prefix": "svg.material.vector_square_open", + "description": "SVG material - vector_square_open", + "body": [ + "{% svg material vector_square_open %}" + ] + }, + "vector_square_plus": { + "prefix": "svg.material.vector_square_plus", + "description": "SVG material - vector_square_plus", + "body": [ + "{% svg material vector_square_plus %}" + ] + }, + "vector_square_remove": { + "prefix": "svg.material.vector_square_remove", + "description": "SVG material - vector_square_remove", + "body": [ + "{% svg material vector_square_remove %}" + ] + }, + "vector_triangle": { + "prefix": "svg.material.vector_triangle", + "description": "SVG material - vector_triangle", + "body": [ + "{% svg material vector_triangle %}" + ] + }, + "vector_union": { + "prefix": "svg.material.vector_union", + "description": "SVG material - vector_union", + "body": [ + "{% svg material vector_union %}" + ] + }, + "vhs": { + "prefix": "svg.material.vhs", + "description": "SVG material - vhs", + "body": [ + "{% svg material vhs %}" + ] + }, + "vibrate": { + "prefix": "svg.material.vibrate", + "description": "SVG material - vibrate", + "body": [ + "{% svg material vibrate %}" + ] + }, + "vibrate_off": { + "prefix": "svg.material.vibrate_off", + "description": "SVG material - vibrate_off", + "body": [ + "{% svg material vibrate_off %}" + ] + }, + "video": { + "prefix": "svg.material.video", + "description": "SVG material - video", + "body": [ + "{% svg material video %}" + ] + }, + "video_2d": { + "prefix": "svg.material.video_2d", + "description": "SVG material - video_2d", + "body": [ + "{% svg material video_2d %}" + ] + }, + "video_3d": { + "prefix": "svg.material.video_3d", + "description": "SVG material - video_3d", + "body": [ + "{% svg material video_3d %}" + ] + }, + "video_3d_off": { + "prefix": "svg.material.video_3d_off", + "description": "SVG material - video_3d_off", + "body": [ + "{% svg material video_3d_off %}" + ] + }, + "video_3d_variant": { + "prefix": "svg.material.video_3d_variant", + "description": "SVG material - video_3d_variant", + "body": [ + "{% svg material video_3d_variant %}" + ] + }, + "video_4k_box": { + "prefix": "svg.material.video_4k_box", + "description": "SVG material - video_4k_box", + "body": [ + "{% svg material video_4k_box %}" + ] + }, + "video_account": { + "prefix": "svg.material.video_account", + "description": "SVG material - video_account", + "body": [ + "{% svg material video_account %}" + ] + }, + "video_box": { + "prefix": "svg.material.video_box", + "description": "SVG material - video_box", + "body": [ + "{% svg material video_box %}" + ] + }, + "video_box_off": { + "prefix": "svg.material.video_box_off", + "description": "SVG material - video_box_off", + "body": [ + "{% svg material video_box_off %}" + ] + }, + "video_check": { + "prefix": "svg.material.video_check", + "description": "SVG material - video_check", + "body": [ + "{% svg material video_check %}" + ] + }, + "video_check_outline": { + "prefix": "svg.material.video_check_outline", + "description": "SVG material - video_check_outline", + "body": [ + "{% svg material video_check_outline %}" + ] + }, + "video_high_definition": { + "prefix": "svg.material.video_high_definition", + "description": "SVG material - video_high_definition", + "body": [ + "{% svg material video_high_definition %}" + ] + }, + "video_image": { + "prefix": "svg.material.video_image", + "description": "SVG material - video_image", + "body": [ + "{% svg material video_image %}" + ] + }, + "video_input_antenna": { + "prefix": "svg.material.video_input_antenna", + "description": "SVG material - video_input_antenna", + "body": [ + "{% svg material video_input_antenna %}" + ] + }, + "video_input_component": { + "prefix": "svg.material.video_input_component", + "description": "SVG material - video_input_component", + "body": [ + "{% svg material video_input_component %}" + ] + }, + "video_input_hdmi": { + "prefix": "svg.material.video_input_hdmi", + "description": "SVG material - video_input_hdmi", + "body": [ + "{% svg material video_input_hdmi %}" + ] + }, + "video_input_scart": { + "prefix": "svg.material.video_input_scart", + "description": "SVG material - video_input_scart", + "body": [ + "{% svg material video_input_scart %}" + ] + }, + "video_input_svideo": { + "prefix": "svg.material.video_input_svideo", + "description": "SVG material - video_input_svideo", + "body": [ + "{% svg material video_input_svideo %}" + ] + }, + "video_marker": { + "prefix": "svg.material.video_marker", + "description": "SVG material - video_marker", + "body": [ + "{% svg material video_marker %}" + ] + }, + "video_marker_outline": { + "prefix": "svg.material.video_marker_outline", + "description": "SVG material - video_marker_outline", + "body": [ + "{% svg material video_marker_outline %}" + ] + }, + "video_minus": { + "prefix": "svg.material.video_minus", + "description": "SVG material - video_minus", + "body": [ + "{% svg material video_minus %}" + ] + }, + "video_minus_outline": { + "prefix": "svg.material.video_minus_outline", + "description": "SVG material - video_minus_outline", + "body": [ + "{% svg material video_minus_outline %}" + ] + }, + "video_off": { + "prefix": "svg.material.video_off", + "description": "SVG material - video_off", + "body": [ + "{% svg material video_off %}" + ] + }, + "video_off_outline": { + "prefix": "svg.material.video_off_outline", + "description": "SVG material - video_off_outline", + "body": [ + "{% svg material video_off_outline %}" + ] + }, + "video_outline": { + "prefix": "svg.material.video_outline", + "description": "SVG material - video_outline", + "body": [ + "{% svg material video_outline %}" + ] + }, + "video_plus": { + "prefix": "svg.material.video_plus", + "description": "SVG material - video_plus", + "body": [ + "{% svg material video_plus %}" + ] + }, + "video_plus_outline": { + "prefix": "svg.material.video_plus_outline", + "description": "SVG material - video_plus_outline", + "body": [ + "{% svg material video_plus_outline %}" + ] + }, + "video_stabilization": { + "prefix": "svg.material.video_stabilization", + "description": "SVG material - video_stabilization", + "body": [ + "{% svg material video_stabilization %}" + ] + }, + "video_standard_definition": { + "prefix": "svg.material.video_standard_definition", + "description": "SVG material - video_standard_definition", + "body": [ + "{% svg material video_standard_definition %}" + ] + }, + "video_switch": { + "prefix": "svg.material.video_switch", + "description": "SVG material - video_switch", + "body": [ + "{% svg material video_switch %}" + ] + }, + "video_switch_outline": { + "prefix": "svg.material.video_switch_outline", + "description": "SVG material - video_switch_outline", + "body": [ + "{% svg material video_switch_outline %}" + ] + }, + "video_vintage": { + "prefix": "svg.material.video_vintage", + "description": "SVG material - video_vintage", + "body": [ + "{% svg material video_vintage %}" + ] + }, + "video_wireless": { + "prefix": "svg.material.video_wireless", + "description": "SVG material - video_wireless", + "body": [ + "{% svg material video_wireless %}" + ] + }, + "video_wireless_outline": { + "prefix": "svg.material.video_wireless_outline", + "description": "SVG material - video_wireless_outline", + "body": [ + "{% svg material video_wireless_outline %}" + ] + }, + "view_agenda": { + "prefix": "svg.material.view_agenda", + "description": "SVG material - view_agenda", + "body": [ + "{% svg material view_agenda %}" + ] + }, + "view_agenda_outline": { + "prefix": "svg.material.view_agenda_outline", + "description": "SVG material - view_agenda_outline", + "body": [ + "{% svg material view_agenda_outline %}" + ] + }, + "view_array": { + "prefix": "svg.material.view_array", + "description": "SVG material - view_array", + "body": [ + "{% svg material view_array %}" + ] + }, + "view_array_outline": { + "prefix": "svg.material.view_array_outline", + "description": "SVG material - view_array_outline", + "body": [ + "{% svg material view_array_outline %}" + ] + }, + "view_carousel": { + "prefix": "svg.material.view_carousel", + "description": "SVG material - view_carousel", + "body": [ + "{% svg material view_carousel %}" + ] + }, + "view_carousel_outline": { + "prefix": "svg.material.view_carousel_outline", + "description": "SVG material - view_carousel_outline", + "body": [ + "{% svg material view_carousel_outline %}" + ] + }, + "view_column": { + "prefix": "svg.material.view_column", + "description": "SVG material - view_column", + "body": [ + "{% svg material view_column %}" + ] + }, + "view_column_outline": { + "prefix": "svg.material.view_column_outline", + "description": "SVG material - view_column_outline", + "body": [ + "{% svg material view_column_outline %}" + ] + }, + "view_comfy": { + "prefix": "svg.material.view_comfy", + "description": "SVG material - view_comfy", + "body": [ + "{% svg material view_comfy %}" + ] + }, + "view_comfy_outline": { + "prefix": "svg.material.view_comfy_outline", + "description": "SVG material - view_comfy_outline", + "body": [ + "{% svg material view_comfy_outline %}" + ] + }, + "view_compact": { + "prefix": "svg.material.view_compact", + "description": "SVG material - view_compact", + "body": [ + "{% svg material view_compact %}" + ] + }, + "view_compact_outline": { + "prefix": "svg.material.view_compact_outline", + "description": "SVG material - view_compact_outline", + "body": [ + "{% svg material view_compact_outline %}" + ] + }, + "view_dashboard": { + "prefix": "svg.material.view_dashboard", + "description": "SVG material - view_dashboard", + "body": [ + "{% svg material view_dashboard %}" + ] + }, + "view_dashboard_edit": { + "prefix": "svg.material.view_dashboard_edit", + "description": "SVG material - view_dashboard_edit", + "body": [ + "{% svg material view_dashboard_edit %}" + ] + }, + "view_dashboard_edit_outline": { + "prefix": "svg.material.view_dashboard_edit_outline", + "description": "SVG material - view_dashboard_edit_outline", + "body": [ + "{% svg material view_dashboard_edit_outline %}" + ] + }, + "view_dashboard_outline": { + "prefix": "svg.material.view_dashboard_outline", + "description": "SVG material - view_dashboard_outline", + "body": [ + "{% svg material view_dashboard_outline %}" + ] + }, + "view_dashboard_variant": { + "prefix": "svg.material.view_dashboard_variant", + "description": "SVG material - view_dashboard_variant", + "body": [ + "{% svg material view_dashboard_variant %}" + ] + }, + "view_dashboard_variant_outline": { + "prefix": "svg.material.view_dashboard_variant_outline", + "description": "SVG material - view_dashboard_variant_outline", + "body": [ + "{% svg material view_dashboard_variant_outline %}" + ] + }, + "view_day": { + "prefix": "svg.material.view_day", + "description": "SVG material - view_day", + "body": [ + "{% svg material view_day %}" + ] + }, + "view_day_outline": { + "prefix": "svg.material.view_day_outline", + "description": "SVG material - view_day_outline", + "body": [ + "{% svg material view_day_outline %}" + ] + }, + "view_gallery": { + "prefix": "svg.material.view_gallery", + "description": "SVG material - view_gallery", + "body": [ + "{% svg material view_gallery %}" + ] + }, + "view_gallery_outline": { + "prefix": "svg.material.view_gallery_outline", + "description": "SVG material - view_gallery_outline", + "body": [ + "{% svg material view_gallery_outline %}" + ] + }, + "view_grid": { + "prefix": "svg.material.view_grid", + "description": "SVG material - view_grid", + "body": [ + "{% svg material view_grid %}" + ] + }, + "view_grid_compact": { + "prefix": "svg.material.view_grid_compact", + "description": "SVG material - view_grid_compact", + "body": [ + "{% svg material view_grid_compact %}" + ] + }, + "view_grid_outline": { + "prefix": "svg.material.view_grid_outline", + "description": "SVG material - view_grid_outline", + "body": [ + "{% svg material view_grid_outline %}" + ] + }, + "view_grid_plus": { + "prefix": "svg.material.view_grid_plus", + "description": "SVG material - view_grid_plus", + "body": [ + "{% svg material view_grid_plus %}" + ] + }, + "view_grid_plus_outline": { + "prefix": "svg.material.view_grid_plus_outline", + "description": "SVG material - view_grid_plus_outline", + "body": [ + "{% svg material view_grid_plus_outline %}" + ] + }, + "view_headline": { + "prefix": "svg.material.view_headline", + "description": "SVG material - view_headline", + "body": [ + "{% svg material view_headline %}" + ] + }, + "view_list": { + "prefix": "svg.material.view_list", + "description": "SVG material - view_list", + "body": [ + "{% svg material view_list %}" + ] + }, + "view_list_outline": { + "prefix": "svg.material.view_list_outline", + "description": "SVG material - view_list_outline", + "body": [ + "{% svg material view_list_outline %}" + ] + }, + "view_module": { + "prefix": "svg.material.view_module", + "description": "SVG material - view_module", + "body": [ + "{% svg material view_module %}" + ] + }, + "view_module_outline": { + "prefix": "svg.material.view_module_outline", + "description": "SVG material - view_module_outline", + "body": [ + "{% svg material view_module_outline %}" + ] + }, + "view_parallel": { + "prefix": "svg.material.view_parallel", + "description": "SVG material - view_parallel", + "body": [ + "{% svg material view_parallel %}" + ] + }, + "view_parallel_outline": { + "prefix": "svg.material.view_parallel_outline", + "description": "SVG material - view_parallel_outline", + "body": [ + "{% svg material view_parallel_outline %}" + ] + }, + "view_quilt": { + "prefix": "svg.material.view_quilt", + "description": "SVG material - view_quilt", + "body": [ + "{% svg material view_quilt %}" + ] + }, + "view_quilt_outline": { + "prefix": "svg.material.view_quilt_outline", + "description": "SVG material - view_quilt_outline", + "body": [ + "{% svg material view_quilt_outline %}" + ] + }, + "view_sequential": { + "prefix": "svg.material.view_sequential", + "description": "SVG material - view_sequential", + "body": [ + "{% svg material view_sequential %}" + ] + }, + "view_sequential_outline": { + "prefix": "svg.material.view_sequential_outline", + "description": "SVG material - view_sequential_outline", + "body": [ + "{% svg material view_sequential_outline %}" + ] + }, + "view_split_horizontal": { + "prefix": "svg.material.view_split_horizontal", + "description": "SVG material - view_split_horizontal", + "body": [ + "{% svg material view_split_horizontal %}" + ] + }, + "view_split_vertical": { + "prefix": "svg.material.view_split_vertical", + "description": "SVG material - view_split_vertical", + "body": [ + "{% svg material view_split_vertical %}" + ] + }, + "view_stream": { + "prefix": "svg.material.view_stream", + "description": "SVG material - view_stream", + "body": [ + "{% svg material view_stream %}" + ] + }, + "view_stream_outline": { + "prefix": "svg.material.view_stream_outline", + "description": "SVG material - view_stream_outline", + "body": [ + "{% svg material view_stream_outline %}" + ] + }, + "view_week": { + "prefix": "svg.material.view_week", + "description": "SVG material - view_week", + "body": [ + "{% svg material view_week %}" + ] + }, + "view_week_outline": { + "prefix": "svg.material.view_week_outline", + "description": "SVG material - view_week_outline", + "body": [ + "{% svg material view_week_outline %}" + ] + }, + "vimeo": { + "prefix": "svg.material.vimeo", + "description": "SVG material - vimeo", + "body": [ + "{% svg material vimeo %}" + ] + }, + "violin": { + "prefix": "svg.material.violin", + "description": "SVG material - violin", + "body": [ + "{% svg material violin %}" + ] + }, + "virtual_reality": { + "prefix": "svg.material.virtual_reality", + "description": "SVG material - virtual_reality", + "body": [ + "{% svg material virtual_reality %}" + ] + }, + "virus": { + "prefix": "svg.material.virus", + "description": "SVG material - virus", + "body": [ + "{% svg material virus %}" + ] + }, + "virus_off": { + "prefix": "svg.material.virus_off", + "description": "SVG material - virus_off", + "body": [ + "{% svg material virus_off %}" + ] + }, + "virus_off_outline": { + "prefix": "svg.material.virus_off_outline", + "description": "SVG material - virus_off_outline", + "body": [ + "{% svg material virus_off_outline %}" + ] + }, + "virus_outline": { + "prefix": "svg.material.virus_outline", + "description": "SVG material - virus_outline", + "body": [ + "{% svg material virus_outline %}" + ] + }, + "vlc": { + "prefix": "svg.material.vlc", + "description": "SVG material - vlc", + "body": [ + "{% svg material vlc %}" + ] + }, + "voicemail": { + "prefix": "svg.material.voicemail", + "description": "SVG material - voicemail", + "body": [ + "{% svg material voicemail %}" + ] + }, + "volcano": { + "prefix": "svg.material.volcano", + "description": "SVG material - volcano", + "body": [ + "{% svg material volcano %}" + ] + }, + "volcano_outline": { + "prefix": "svg.material.volcano_outline", + "description": "SVG material - volcano_outline", + "body": [ + "{% svg material volcano_outline %}" + ] + }, + "volleyball": { + "prefix": "svg.material.volleyball", + "description": "SVG material - volleyball", + "body": [ + "{% svg material volleyball %}" + ] + }, + "volume_equal": { + "prefix": "svg.material.volume_equal", + "description": "SVG material - volume_equal", + "body": [ + "{% svg material volume_equal %}" + ] + }, + "volume_high": { + "prefix": "svg.material.volume_high", + "description": "SVG material - volume_high", + "body": [ + "{% svg material volume_high %}" + ] + }, + "volume_low": { + "prefix": "svg.material.volume_low", + "description": "SVG material - volume_low", + "body": [ + "{% svg material volume_low %}" + ] + }, + "volume_medium": { + "prefix": "svg.material.volume_medium", + "description": "SVG material - volume_medium", + "body": [ + "{% svg material volume_medium %}" + ] + }, + "volume_minus": { + "prefix": "svg.material.volume_minus", + "description": "SVG material - volume_minus", + "body": [ + "{% svg material volume_minus %}" + ] + }, + "volume_mute": { + "prefix": "svg.material.volume_mute", + "description": "SVG material - volume_mute", + "body": [ + "{% svg material volume_mute %}" + ] + }, + "volume_off": { + "prefix": "svg.material.volume_off", + "description": "SVG material - volume_off", + "body": [ + "{% svg material volume_off %}" + ] + }, + "volume_plus": { + "prefix": "svg.material.volume_plus", + "description": "SVG material - volume_plus", + "body": [ + "{% svg material volume_plus %}" + ] + }, + "volume_source": { + "prefix": "svg.material.volume_source", + "description": "SVG material - volume_source", + "body": [ + "{% svg material volume_source %}" + ] + }, + "volume_variant_off": { + "prefix": "svg.material.volume_variant_off", + "description": "SVG material - volume_variant_off", + "body": [ + "{% svg material volume_variant_off %}" + ] + }, + "volume_vibrate": { + "prefix": "svg.material.volume_vibrate", + "description": "SVG material - volume_vibrate", + "body": [ + "{% svg material volume_vibrate %}" + ] + }, + "vote": { + "prefix": "svg.material.vote", + "description": "SVG material - vote", + "body": [ + "{% svg material vote %}" + ] + }, + "vote_outline": { + "prefix": "svg.material.vote_outline", + "description": "SVG material - vote_outline", + "body": [ + "{% svg material vote_outline %}" + ] + }, + "vpn": { + "prefix": "svg.material.vpn", + "description": "SVG material - vpn", + "body": [ + "{% svg material vpn %}" + ] + }, + "vuejs": { + "prefix": "svg.material.vuejs", + "description": "SVG material - vuejs", + "body": [ + "{% svg material vuejs %}" + ] + }, + "vuetify": { + "prefix": "svg.material.vuetify", + "description": "SVG material - vuetify", + "body": [ + "{% svg material vuetify %}" + ] + }, + "walk": { + "prefix": "svg.material.walk", + "description": "SVG material - walk", + "body": [ + "{% svg material walk %}" + ] + }, + "wall": { + "prefix": "svg.material.wall", + "description": "SVG material - wall", + "body": [ + "{% svg material wall %}" + ] + }, + "wall_fire": { + "prefix": "svg.material.wall_fire", + "description": "SVG material - wall_fire", + "body": [ + "{% svg material wall_fire %}" + ] + }, + "wall_sconce": { + "prefix": "svg.material.wall_sconce", + "description": "SVG material - wall_sconce", + "body": [ + "{% svg material wall_sconce %}" + ] + }, + "wall_sconce_flat": { + "prefix": "svg.material.wall_sconce_flat", + "description": "SVG material - wall_sconce_flat", + "body": [ + "{% svg material wall_sconce_flat %}" + ] + }, + "wall_sconce_flat_outline": { + "prefix": "svg.material.wall_sconce_flat_outline", + "description": "SVG material - wall_sconce_flat_outline", + "body": [ + "{% svg material wall_sconce_flat_outline %}" + ] + }, + "wall_sconce_flat_variant": { + "prefix": "svg.material.wall_sconce_flat_variant", + "description": "SVG material - wall_sconce_flat_variant", + "body": [ + "{% svg material wall_sconce_flat_variant %}" + ] + }, + "wall_sconce_flat_variant_outline": { + "prefix": "svg.material.wall_sconce_flat_variant_outline", + "description": "SVG material - wall_sconce_flat_variant_outline", + "body": [ + "{% svg material wall_sconce_flat_variant_outline %}" + ] + }, + "wall_sconce_outline": { + "prefix": "svg.material.wall_sconce_outline", + "description": "SVG material - wall_sconce_outline", + "body": [ + "{% svg material wall_sconce_outline %}" + ] + }, + "wall_sconce_round": { + "prefix": "svg.material.wall_sconce_round", + "description": "SVG material - wall_sconce_round", + "body": [ + "{% svg material wall_sconce_round %}" + ] + }, + "wall_sconce_round_outline": { + "prefix": "svg.material.wall_sconce_round_outline", + "description": "SVG material - wall_sconce_round_outline", + "body": [ + "{% svg material wall_sconce_round_outline %}" + ] + }, + "wall_sconce_round_variant": { + "prefix": "svg.material.wall_sconce_round_variant", + "description": "SVG material - wall_sconce_round_variant", + "body": [ + "{% svg material wall_sconce_round_variant %}" + ] + }, + "wall_sconce_round_variant_outline": { + "prefix": "svg.material.wall_sconce_round_variant_outline", + "description": "SVG material - wall_sconce_round_variant_outline", + "body": [ + "{% svg material wall_sconce_round_variant_outline %}" + ] + }, + "wallet": { + "prefix": "svg.material.wallet", + "description": "SVG material - wallet", + "body": [ + "{% svg material wallet %}" + ] + }, + "wallet_bifold": { + "prefix": "svg.material.wallet_bifold", + "description": "SVG material - wallet_bifold", + "body": [ + "{% svg material wallet_bifold %}" + ] + }, + "wallet_bifold_outline": { + "prefix": "svg.material.wallet_bifold_outline", + "description": "SVG material - wallet_bifold_outline", + "body": [ + "{% svg material wallet_bifold_outline %}" + ] + }, + "wallet_giftcard": { + "prefix": "svg.material.wallet_giftcard", + "description": "SVG material - wallet_giftcard", + "body": [ + "{% svg material wallet_giftcard %}" + ] + }, + "wallet_membership": { + "prefix": "svg.material.wallet_membership", + "description": "SVG material - wallet_membership", + "body": [ + "{% svg material wallet_membership %}" + ] + }, + "wallet_outline": { + "prefix": "svg.material.wallet_outline", + "description": "SVG material - wallet_outline", + "body": [ + "{% svg material wallet_outline %}" + ] + }, + "wallet_plus": { + "prefix": "svg.material.wallet_plus", + "description": "SVG material - wallet_plus", + "body": [ + "{% svg material wallet_plus %}" + ] + }, + "wallet_plus_outline": { + "prefix": "svg.material.wallet_plus_outline", + "description": "SVG material - wallet_plus_outline", + "body": [ + "{% svg material wallet_plus_outline %}" + ] + }, + "wallet_travel": { + "prefix": "svg.material.wallet_travel", + "description": "SVG material - wallet_travel", + "body": [ + "{% svg material wallet_travel %}" + ] + }, + "wallpaper": { + "prefix": "svg.material.wallpaper", + "description": "SVG material - wallpaper", + "body": [ + "{% svg material wallpaper %}" + ] + }, + "wan": { + "prefix": "svg.material.wan", + "description": "SVG material - wan", + "body": [ + "{% svg material wan %}" + ] + }, + "wardrobe": { + "prefix": "svg.material.wardrobe", + "description": "SVG material - wardrobe", + "body": [ + "{% svg material wardrobe %}" + ] + }, + "wardrobe_outline": { + "prefix": "svg.material.wardrobe_outline", + "description": "SVG material - wardrobe_outline", + "body": [ + "{% svg material wardrobe_outline %}" + ] + }, + "warehouse": { + "prefix": "svg.material.warehouse", + "description": "SVG material - warehouse", + "body": [ + "{% svg material warehouse %}" + ] + }, + "washing_machine": { + "prefix": "svg.material.washing_machine", + "description": "SVG material - washing_machine", + "body": [ + "{% svg material washing_machine %}" + ] + }, + "washing_machine_alert": { + "prefix": "svg.material.washing_machine_alert", + "description": "SVG material - washing_machine_alert", + "body": [ + "{% svg material washing_machine_alert %}" + ] + }, + "washing_machine_off": { + "prefix": "svg.material.washing_machine_off", + "description": "SVG material - washing_machine_off", + "body": [ + "{% svg material washing_machine_off %}" + ] + }, + "watch": { + "prefix": "svg.material.watch", + "description": "SVG material - watch", + "body": [ + "{% svg material watch %}" + ] + }, + "watch_export": { + "prefix": "svg.material.watch_export", + "description": "SVG material - watch_export", + "body": [ + "{% svg material watch_export %}" + ] + }, + "watch_export_variant": { + "prefix": "svg.material.watch_export_variant", + "description": "SVG material - watch_export_variant", + "body": [ + "{% svg material watch_export_variant %}" + ] + }, + "watch_import": { + "prefix": "svg.material.watch_import", + "description": "SVG material - watch_import", + "body": [ + "{% svg material watch_import %}" + ] + }, + "watch_import_variant": { + "prefix": "svg.material.watch_import_variant", + "description": "SVG material - watch_import_variant", + "body": [ + "{% svg material watch_import_variant %}" + ] + }, + "watch_variant": { + "prefix": "svg.material.watch_variant", + "description": "SVG material - watch_variant", + "body": [ + "{% svg material watch_variant %}" + ] + }, + "watch_vibrate": { + "prefix": "svg.material.watch_vibrate", + "description": "SVG material - watch_vibrate", + "body": [ + "{% svg material watch_vibrate %}" + ] + }, + "watch_vibrate_off": { + "prefix": "svg.material.watch_vibrate_off", + "description": "SVG material - watch_vibrate_off", + "body": [ + "{% svg material watch_vibrate_off %}" + ] + }, + "water": { + "prefix": "svg.material.water", + "description": "SVG material - water", + "body": [ + "{% svg material water %}" + ] + }, + "water_alert": { + "prefix": "svg.material.water_alert", + "description": "SVG material - water_alert", + "body": [ + "{% svg material water_alert %}" + ] + }, + "water_alert_outline": { + "prefix": "svg.material.water_alert_outline", + "description": "SVG material - water_alert_outline", + "body": [ + "{% svg material water_alert_outline %}" + ] + }, + "water_boiler": { + "prefix": "svg.material.water_boiler", + "description": "SVG material - water_boiler", + "body": [ + "{% svg material water_boiler %}" + ] + }, + "water_boiler_alert": { + "prefix": "svg.material.water_boiler_alert", + "description": "SVG material - water_boiler_alert", + "body": [ + "{% svg material water_boiler_alert %}" + ] + }, + "water_boiler_auto": { + "prefix": "svg.material.water_boiler_auto", + "description": "SVG material - water_boiler_auto", + "body": [ + "{% svg material water_boiler_auto %}" + ] + }, + "water_boiler_off": { + "prefix": "svg.material.water_boiler_off", + "description": "SVG material - water_boiler_off", + "body": [ + "{% svg material water_boiler_off %}" + ] + }, + "water_check": { + "prefix": "svg.material.water_check", + "description": "SVG material - water_check", + "body": [ + "{% svg material water_check %}" + ] + }, + "water_check_outline": { + "prefix": "svg.material.water_check_outline", + "description": "SVG material - water_check_outline", + "body": [ + "{% svg material water_check_outline %}" + ] + }, + "water_circle": { + "prefix": "svg.material.water_circle", + "description": "SVG material - water_circle", + "body": [ + "{% svg material water_circle %}" + ] + }, + "water_minus": { + "prefix": "svg.material.water_minus", + "description": "SVG material - water_minus", + "body": [ + "{% svg material water_minus %}" + ] + }, + "water_minus_outline": { + "prefix": "svg.material.water_minus_outline", + "description": "SVG material - water_minus_outline", + "body": [ + "{% svg material water_minus_outline %}" + ] + }, + "water_off": { + "prefix": "svg.material.water_off", + "description": "SVG material - water_off", + "body": [ + "{% svg material water_off %}" + ] + }, + "water_off_outline": { + "prefix": "svg.material.water_off_outline", + "description": "SVG material - water_off_outline", + "body": [ + "{% svg material water_off_outline %}" + ] + }, + "water_opacity": { + "prefix": "svg.material.water_opacity", + "description": "SVG material - water_opacity", + "body": [ + "{% svg material water_opacity %}" + ] + }, + "water_outline": { + "prefix": "svg.material.water_outline", + "description": "SVG material - water_outline", + "body": [ + "{% svg material water_outline %}" + ] + }, + "water_percent": { + "prefix": "svg.material.water_percent", + "description": "SVG material - water_percent", + "body": [ + "{% svg material water_percent %}" + ] + }, + "water_percent_alert": { + "prefix": "svg.material.water_percent_alert", + "description": "SVG material - water_percent_alert", + "body": [ + "{% svg material water_percent_alert %}" + ] + }, + "water_plus": { + "prefix": "svg.material.water_plus", + "description": "SVG material - water_plus", + "body": [ + "{% svg material water_plus %}" + ] + }, + "water_plus_outline": { + "prefix": "svg.material.water_plus_outline", + "description": "SVG material - water_plus_outline", + "body": [ + "{% svg material water_plus_outline %}" + ] + }, + "water_polo": { + "prefix": "svg.material.water_polo", + "description": "SVG material - water_polo", + "body": [ + "{% svg material water_polo %}" + ] + }, + "water_pump": { + "prefix": "svg.material.water_pump", + "description": "SVG material - water_pump", + "body": [ + "{% svg material water_pump %}" + ] + }, + "water_pump_off": { + "prefix": "svg.material.water_pump_off", + "description": "SVG material - water_pump_off", + "body": [ + "{% svg material water_pump_off %}" + ] + }, + "water_remove": { + "prefix": "svg.material.water_remove", + "description": "SVG material - water_remove", + "body": [ + "{% svg material water_remove %}" + ] + }, + "water_remove_outline": { + "prefix": "svg.material.water_remove_outline", + "description": "SVG material - water_remove_outline", + "body": [ + "{% svg material water_remove_outline %}" + ] + }, + "water_sync": { + "prefix": "svg.material.water_sync", + "description": "SVG material - water_sync", + "body": [ + "{% svg material water_sync %}" + ] + }, + "water_thermometer": { + "prefix": "svg.material.water_thermometer", + "description": "SVG material - water_thermometer", + "body": [ + "{% svg material water_thermometer %}" + ] + }, + "water_thermometer_outline": { + "prefix": "svg.material.water_thermometer_outline", + "description": "SVG material - water_thermometer_outline", + "body": [ + "{% svg material water_thermometer_outline %}" + ] + }, + "water_well": { + "prefix": "svg.material.water_well", + "description": "SVG material - water_well", + "body": [ + "{% svg material water_well %}" + ] + }, + "water_well_outline": { + "prefix": "svg.material.water_well_outline", + "description": "SVG material - water_well_outline", + "body": [ + "{% svg material water_well_outline %}" + ] + }, + "waterfall": { + "prefix": "svg.material.waterfall", + "description": "SVG material - waterfall", + "body": [ + "{% svg material waterfall %}" + ] + }, + "watering_can": { + "prefix": "svg.material.watering_can", + "description": "SVG material - watering_can", + "body": [ + "{% svg material watering_can %}" + ] + }, + "watering_can_outline": { + "prefix": "svg.material.watering_can_outline", + "description": "SVG material - watering_can_outline", + "body": [ + "{% svg material watering_can_outline %}" + ] + }, + "watermark": { + "prefix": "svg.material.watermark", + "description": "SVG material - watermark", + "body": [ + "{% svg material watermark %}" + ] + }, + "wave": { + "prefix": "svg.material.wave", + "description": "SVG material - wave", + "body": [ + "{% svg material wave %}" + ] + }, + "wave_arrow_down": { + "prefix": "svg.material.wave_arrow_down", + "description": "SVG material - wave_arrow_down", + "body": [ + "{% svg material wave_arrow_down %}" + ] + }, + "wave_arrow_up": { + "prefix": "svg.material.wave_arrow_up", + "description": "SVG material - wave_arrow_up", + "body": [ + "{% svg material wave_arrow_up %}" + ] + }, + "wave_undercurrent": { + "prefix": "svg.material.wave_undercurrent", + "description": "SVG material - wave_undercurrent", + "body": [ + "{% svg material wave_undercurrent %}" + ] + }, + "waveform": { + "prefix": "svg.material.waveform", + "description": "SVG material - waveform", + "body": [ + "{% svg material waveform %}" + ] + }, + "waves": { + "prefix": "svg.material.waves", + "description": "SVG material - waves", + "body": [ + "{% svg material waves %}" + ] + }, + "waves_arrow_left": { + "prefix": "svg.material.waves_arrow_left", + "description": "SVG material - waves_arrow_left", + "body": [ + "{% svg material waves_arrow_left %}" + ] + }, + "waves_arrow_right": { + "prefix": "svg.material.waves_arrow_right", + "description": "SVG material - waves_arrow_right", + "body": [ + "{% svg material waves_arrow_right %}" + ] + }, + "waves_arrow_up": { + "prefix": "svg.material.waves_arrow_up", + "description": "SVG material - waves_arrow_up", + "body": [ + "{% svg material waves_arrow_up %}" + ] + }, + "waze": { + "prefix": "svg.material.waze", + "description": "SVG material - waze", + "body": [ + "{% svg material waze %}" + ] + }, + "weather_cloudy": { + "prefix": "svg.material.weather_cloudy", + "description": "SVG material - weather_cloudy", + "body": [ + "{% svg material weather_cloudy %}" + ] + }, + "weather_cloudy_alert": { + "prefix": "svg.material.weather_cloudy_alert", + "description": "SVG material - weather_cloudy_alert", + "body": [ + "{% svg material weather_cloudy_alert %}" + ] + }, + "weather_cloudy_arrow_right": { + "prefix": "svg.material.weather_cloudy_arrow_right", + "description": "SVG material - weather_cloudy_arrow_right", + "body": [ + "{% svg material weather_cloudy_arrow_right %}" + ] + }, + "weather_cloudy_clock": { + "prefix": "svg.material.weather_cloudy_clock", + "description": "SVG material - weather_cloudy_clock", + "body": [ + "{% svg material weather_cloudy_clock %}" + ] + }, + "weather_dust": { + "prefix": "svg.material.weather_dust", + "description": "SVG material - weather_dust", + "body": [ + "{% svg material weather_dust %}" + ] + }, + "weather_fog": { + "prefix": "svg.material.weather_fog", + "description": "SVG material - weather_fog", + "body": [ + "{% svg material weather_fog %}" + ] + }, + "weather_hail": { + "prefix": "svg.material.weather_hail", + "description": "SVG material - weather_hail", + "body": [ + "{% svg material weather_hail %}" + ] + }, + "weather_hazy": { + "prefix": "svg.material.weather_hazy", + "description": "SVG material - weather_hazy", + "body": [ + "{% svg material weather_hazy %}" + ] + }, + "weather_hurricane": { + "prefix": "svg.material.weather_hurricane", + "description": "SVG material - weather_hurricane", + "body": [ + "{% svg material weather_hurricane %}" + ] + }, + "weather_hurricane_outline": { + "prefix": "svg.material.weather_hurricane_outline", + "description": "SVG material - weather_hurricane_outline", + "body": [ + "{% svg material weather_hurricane_outline %}" + ] + }, + "weather_lightning": { + "prefix": "svg.material.weather_lightning", + "description": "SVG material - weather_lightning", + "body": [ + "{% svg material weather_lightning %}" + ] + }, + "weather_lightning_rainy": { + "prefix": "svg.material.weather_lightning_rainy", + "description": "SVG material - weather_lightning_rainy", + "body": [ + "{% svg material weather_lightning_rainy %}" + ] + }, + "weather_moonset": { + "prefix": "svg.material.weather_moonset", + "description": "SVG material - weather_moonset", + "body": [ + "{% svg material weather_moonset %}" + ] + }, + "weather_moonset_down": { + "prefix": "svg.material.weather_moonset_down", + "description": "SVG material - weather_moonset_down", + "body": [ + "{% svg material weather_moonset_down %}" + ] + }, + "weather_moonset_up": { + "prefix": "svg.material.weather_moonset_up", + "description": "SVG material - weather_moonset_up", + "body": [ + "{% svg material weather_moonset_up %}" + ] + }, + "weather_night": { + "prefix": "svg.material.weather_night", + "description": "SVG material - weather_night", + "body": [ + "{% svg material weather_night %}" + ] + }, + "weather_night_partly_cloudy": { + "prefix": "svg.material.weather_night_partly_cloudy", + "description": "SVG material - weather_night_partly_cloudy", + "body": [ + "{% svg material weather_night_partly_cloudy %}" + ] + }, + "weather_partly_cloudy": { + "prefix": "svg.material.weather_partly_cloudy", + "description": "SVG material - weather_partly_cloudy", + "body": [ + "{% svg material weather_partly_cloudy %}" + ] + }, + "weather_partly_lightning": { + "prefix": "svg.material.weather_partly_lightning", + "description": "SVG material - weather_partly_lightning", + "body": [ + "{% svg material weather_partly_lightning %}" + ] + }, + "weather_partly_rainy": { + "prefix": "svg.material.weather_partly_rainy", + "description": "SVG material - weather_partly_rainy", + "body": [ + "{% svg material weather_partly_rainy %}" + ] + }, + "weather_partly_snowy": { + "prefix": "svg.material.weather_partly_snowy", + "description": "SVG material - weather_partly_snowy", + "body": [ + "{% svg material weather_partly_snowy %}" + ] + }, + "weather_partly_snowy_rainy": { + "prefix": "svg.material.weather_partly_snowy_rainy", + "description": "SVG material - weather_partly_snowy_rainy", + "body": [ + "{% svg material weather_partly_snowy_rainy %}" + ] + }, + "weather_pouring": { + "prefix": "svg.material.weather_pouring", + "description": "SVG material - weather_pouring", + "body": [ + "{% svg material weather_pouring %}" + ] + }, + "weather_rainy": { + "prefix": "svg.material.weather_rainy", + "description": "SVG material - weather_rainy", + "body": [ + "{% svg material weather_rainy %}" + ] + }, + "weather_snowy": { + "prefix": "svg.material.weather_snowy", + "description": "SVG material - weather_snowy", + "body": [ + "{% svg material weather_snowy %}" + ] + }, + "weather_snowy_heavy": { + "prefix": "svg.material.weather_snowy_heavy", + "description": "SVG material - weather_snowy_heavy", + "body": [ + "{% svg material weather_snowy_heavy %}" + ] + }, + "weather_snowy_rainy": { + "prefix": "svg.material.weather_snowy_rainy", + "description": "SVG material - weather_snowy_rainy", + "body": [ + "{% svg material weather_snowy_rainy %}" + ] + }, + "weather_sunny": { + "prefix": "svg.material.weather_sunny", + "description": "SVG material - weather_sunny", + "body": [ + "{% svg material weather_sunny %}" + ] + }, + "weather_sunny_alert": { + "prefix": "svg.material.weather_sunny_alert", + "description": "SVG material - weather_sunny_alert", + "body": [ + "{% svg material weather_sunny_alert %}" + ] + }, + "weather_sunny_off": { + "prefix": "svg.material.weather_sunny_off", + "description": "SVG material - weather_sunny_off", + "body": [ + "{% svg material weather_sunny_off %}" + ] + }, + "weather_sunset": { + "prefix": "svg.material.weather_sunset", + "description": "SVG material - weather_sunset", + "body": [ + "{% svg material weather_sunset %}" + ] + }, + "weather_sunset_down": { + "prefix": "svg.material.weather_sunset_down", + "description": "SVG material - weather_sunset_down", + "body": [ + "{% svg material weather_sunset_down %}" + ] + }, + "weather_sunset_up": { + "prefix": "svg.material.weather_sunset_up", + "description": "SVG material - weather_sunset_up", + "body": [ + "{% svg material weather_sunset_up %}" + ] + }, + "weather_tornado": { + "prefix": "svg.material.weather_tornado", + "description": "SVG material - weather_tornado", + "body": [ + "{% svg material weather_tornado %}" + ] + }, + "weather_windy": { + "prefix": "svg.material.weather_windy", + "description": "SVG material - weather_windy", + "body": [ + "{% svg material weather_windy %}" + ] + }, + "weather_windy_variant": { + "prefix": "svg.material.weather_windy_variant", + "description": "SVG material - weather_windy_variant", + "body": [ + "{% svg material weather_windy_variant %}" + ] + }, + "web": { + "prefix": "svg.material.web", + "description": "SVG material - web", + "body": [ + "{% svg material web %}" + ] + }, + "web_box": { + "prefix": "svg.material.web_box", + "description": "SVG material - web_box", + "body": [ + "{% svg material web_box %}" + ] + }, + "web_cancel": { + "prefix": "svg.material.web_cancel", + "description": "SVG material - web_cancel", + "body": [ + "{% svg material web_cancel %}" + ] + }, + "web_check": { + "prefix": "svg.material.web_check", + "description": "SVG material - web_check", + "body": [ + "{% svg material web_check %}" + ] + }, + "web_clock": { + "prefix": "svg.material.web_clock", + "description": "SVG material - web_clock", + "body": [ + "{% svg material web_clock %}" + ] + }, + "web_minus": { + "prefix": "svg.material.web_minus", + "description": "SVG material - web_minus", + "body": [ + "{% svg material web_minus %}" + ] + }, + "web_off": { + "prefix": "svg.material.web_off", + "description": "SVG material - web_off", + "body": [ + "{% svg material web_off %}" + ] + }, + "web_plus": { + "prefix": "svg.material.web_plus", + "description": "SVG material - web_plus", + "body": [ + "{% svg material web_plus %}" + ] + }, + "web_refresh": { + "prefix": "svg.material.web_refresh", + "description": "SVG material - web_refresh", + "body": [ + "{% svg material web_refresh %}" + ] + }, + "web_remove": { + "prefix": "svg.material.web_remove", + "description": "SVG material - web_remove", + "body": [ + "{% svg material web_remove %}" + ] + }, + "web_sync": { + "prefix": "svg.material.web_sync", + "description": "SVG material - web_sync", + "body": [ + "{% svg material web_sync %}" + ] + }, + "webcam": { + "prefix": "svg.material.webcam", + "description": "SVG material - webcam", + "body": [ + "{% svg material webcam %}" + ] + }, + "webcam_off": { + "prefix": "svg.material.webcam_off", + "description": "SVG material - webcam_off", + "body": [ + "{% svg material webcam_off %}" + ] + }, + "webhook": { + "prefix": "svg.material.webhook", + "description": "SVG material - webhook", + "body": [ + "{% svg material webhook %}" + ] + }, + "webpack": { + "prefix": "svg.material.webpack", + "description": "SVG material - webpack", + "body": [ + "{% svg material webpack %}" + ] + }, + "webrtc": { + "prefix": "svg.material.webrtc", + "description": "SVG material - webrtc", + "body": [ + "{% svg material webrtc %}" + ] + }, + "wechat": { + "prefix": "svg.material.wechat", + "description": "SVG material - wechat", + "body": [ + "{% svg material wechat %}" + ] + }, + "weight": { + "prefix": "svg.material.weight", + "description": "SVG material - weight", + "body": [ + "{% svg material weight %}" + ] + }, + "weight_gram": { + "prefix": "svg.material.weight_gram", + "description": "SVG material - weight_gram", + "body": [ + "{% svg material weight_gram %}" + ] + }, + "weight_kilogram": { + "prefix": "svg.material.weight_kilogram", + "description": "SVG material - weight_kilogram", + "body": [ + "{% svg material weight_kilogram %}" + ] + }, + "weight_lifter": { + "prefix": "svg.material.weight_lifter", + "description": "SVG material - weight_lifter", + "body": [ + "{% svg material weight_lifter %}" + ] + }, + "weight_pound": { + "prefix": "svg.material.weight_pound", + "description": "SVG material - weight_pound", + "body": [ + "{% svg material weight_pound %}" + ] + }, + "whatsapp": { + "prefix": "svg.material.whatsapp", + "description": "SVG material - whatsapp", + "body": [ + "{% svg material whatsapp %}" + ] + }, + "wheel_barrow": { + "prefix": "svg.material.wheel_barrow", + "description": "SVG material - wheel_barrow", + "body": [ + "{% svg material wheel_barrow %}" + ] + }, + "wheelchair": { + "prefix": "svg.material.wheelchair", + "description": "SVG material - wheelchair", + "body": [ + "{% svg material wheelchair %}" + ] + }, + "wheelchair_accessibility": { + "prefix": "svg.material.wheelchair_accessibility", + "description": "SVG material - wheelchair_accessibility", + "body": [ + "{% svg material wheelchair_accessibility %}" + ] + }, + "whistle": { + "prefix": "svg.material.whistle", + "description": "SVG material - whistle", + "body": [ + "{% svg material whistle %}" + ] + }, + "whistle_outline": { + "prefix": "svg.material.whistle_outline", + "description": "SVG material - whistle_outline", + "body": [ + "{% svg material whistle_outline %}" + ] + }, + "white_balance_auto": { + "prefix": "svg.material.white_balance_auto", + "description": "SVG material - white_balance_auto", + "body": [ + "{% svg material white_balance_auto %}" + ] + }, + "white_balance_incandescent": { + "prefix": "svg.material.white_balance_incandescent", + "description": "SVG material - white_balance_incandescent", + "body": [ + "{% svg material white_balance_incandescent %}" + ] + }, + "white_balance_iridescent": { + "prefix": "svg.material.white_balance_iridescent", + "description": "SVG material - white_balance_iridescent", + "body": [ + "{% svg material white_balance_iridescent %}" + ] + }, + "white_balance_sunny": { + "prefix": "svg.material.white_balance_sunny", + "description": "SVG material - white_balance_sunny", + "body": [ + "{% svg material white_balance_sunny %}" + ] + }, + "widgets": { + "prefix": "svg.material.widgets", + "description": "SVG material - widgets", + "body": [ + "{% svg material widgets %}" + ] + }, + "widgets_outline": { + "prefix": "svg.material.widgets_outline", + "description": "SVG material - widgets_outline", + "body": [ + "{% svg material widgets_outline %}" + ] + }, + "wifi": { + "prefix": "svg.material.wifi", + "description": "SVG material - wifi", + "body": [ + "{% svg material wifi %}" + ] + }, + "wifi_alert": { + "prefix": "svg.material.wifi_alert", + "description": "SVG material - wifi_alert", + "body": [ + "{% svg material wifi_alert %}" + ] + }, + "wifi_arrow_down": { + "prefix": "svg.material.wifi_arrow_down", + "description": "SVG material - wifi_arrow_down", + "body": [ + "{% svg material wifi_arrow_down %}" + ] + }, + "wifi_arrow_left": { + "prefix": "svg.material.wifi_arrow_left", + "description": "SVG material - wifi_arrow_left", + "body": [ + "{% svg material wifi_arrow_left %}" + ] + }, + "wifi_arrow_left_right": { + "prefix": "svg.material.wifi_arrow_left_right", + "description": "SVG material - wifi_arrow_left_right", + "body": [ + "{% svg material wifi_arrow_left_right %}" + ] + }, + "wifi_arrow_right": { + "prefix": "svg.material.wifi_arrow_right", + "description": "SVG material - wifi_arrow_right", + "body": [ + "{% svg material wifi_arrow_right %}" + ] + }, + "wifi_arrow_up": { + "prefix": "svg.material.wifi_arrow_up", + "description": "SVG material - wifi_arrow_up", + "body": [ + "{% svg material wifi_arrow_up %}" + ] + }, + "wifi_arrow_up_down": { + "prefix": "svg.material.wifi_arrow_up_down", + "description": "SVG material - wifi_arrow_up_down", + "body": [ + "{% svg material wifi_arrow_up_down %}" + ] + }, + "wifi_cancel": { + "prefix": "svg.material.wifi_cancel", + "description": "SVG material - wifi_cancel", + "body": [ + "{% svg material wifi_cancel %}" + ] + }, + "wifi_check": { + "prefix": "svg.material.wifi_check", + "description": "SVG material - wifi_check", + "body": [ + "{% svg material wifi_check %}" + ] + }, + "wifi_cog": { + "prefix": "svg.material.wifi_cog", + "description": "SVG material - wifi_cog", + "body": [ + "{% svg material wifi_cog %}" + ] + }, + "wifi_lock": { + "prefix": "svg.material.wifi_lock", + "description": "SVG material - wifi_lock", + "body": [ + "{% svg material wifi_lock %}" + ] + }, + "wifi_lock_open": { + "prefix": "svg.material.wifi_lock_open", + "description": "SVG material - wifi_lock_open", + "body": [ + "{% svg material wifi_lock_open %}" + ] + }, + "wifi_marker": { + "prefix": "svg.material.wifi_marker", + "description": "SVG material - wifi_marker", + "body": [ + "{% svg material wifi_marker %}" + ] + }, + "wifi_minus": { + "prefix": "svg.material.wifi_minus", + "description": "SVG material - wifi_minus", + "body": [ + "{% svg material wifi_minus %}" + ] + }, + "wifi_off": { + "prefix": "svg.material.wifi_off", + "description": "SVG material - wifi_off", + "body": [ + "{% svg material wifi_off %}" + ] + }, + "wifi_plus": { + "prefix": "svg.material.wifi_plus", + "description": "SVG material - wifi_plus", + "body": [ + "{% svg material wifi_plus %}" + ] + }, + "wifi_refresh": { + "prefix": "svg.material.wifi_refresh", + "description": "SVG material - wifi_refresh", + "body": [ + "{% svg material wifi_refresh %}" + ] + }, + "wifi_remove": { + "prefix": "svg.material.wifi_remove", + "description": "SVG material - wifi_remove", + "body": [ + "{% svg material wifi_remove %}" + ] + }, + "wifi_settings": { + "prefix": "svg.material.wifi_settings", + "description": "SVG material - wifi_settings", + "body": [ + "{% svg material wifi_settings %}" + ] + }, + "wifi_star": { + "prefix": "svg.material.wifi_star", + "description": "SVG material - wifi_star", + "body": [ + "{% svg material wifi_star %}" + ] + }, + "wifi_strength_1": { + "prefix": "svg.material.wifi_strength_1", + "description": "SVG material - wifi_strength_1", + "body": [ + "{% svg material wifi_strength_1 %}" + ] + }, + "wifi_strength_1_alert": { + "prefix": "svg.material.wifi_strength_1_alert", + "description": "SVG material - wifi_strength_1_alert", + "body": [ + "{% svg material wifi_strength_1_alert %}" + ] + }, + "wifi_strength_1_lock": { + "prefix": "svg.material.wifi_strength_1_lock", + "description": "SVG material - wifi_strength_1_lock", + "body": [ + "{% svg material wifi_strength_1_lock %}" + ] + }, + "wifi_strength_1_lock_open": { + "prefix": "svg.material.wifi_strength_1_lock_open", + "description": "SVG material - wifi_strength_1_lock_open", + "body": [ + "{% svg material wifi_strength_1_lock_open %}" + ] + }, + "wifi_strength_2": { + "prefix": "svg.material.wifi_strength_2", + "description": "SVG material - wifi_strength_2", + "body": [ + "{% svg material wifi_strength_2 %}" + ] + }, + "wifi_strength_2_alert": { + "prefix": "svg.material.wifi_strength_2_alert", + "description": "SVG material - wifi_strength_2_alert", + "body": [ + "{% svg material wifi_strength_2_alert %}" + ] + }, + "wifi_strength_2_lock": { + "prefix": "svg.material.wifi_strength_2_lock", + "description": "SVG material - wifi_strength_2_lock", + "body": [ + "{% svg material wifi_strength_2_lock %}" + ] + }, + "wifi_strength_2_lock_open": { + "prefix": "svg.material.wifi_strength_2_lock_open", + "description": "SVG material - wifi_strength_2_lock_open", + "body": [ + "{% svg material wifi_strength_2_lock_open %}" + ] + }, + "wifi_strength_3": { + "prefix": "svg.material.wifi_strength_3", + "description": "SVG material - wifi_strength_3", + "body": [ + "{% svg material wifi_strength_3 %}" + ] + }, + "wifi_strength_3_alert": { + "prefix": "svg.material.wifi_strength_3_alert", + "description": "SVG material - wifi_strength_3_alert", + "body": [ + "{% svg material wifi_strength_3_alert %}" + ] + }, + "wifi_strength_3_lock": { + "prefix": "svg.material.wifi_strength_3_lock", + "description": "SVG material - wifi_strength_3_lock", + "body": [ + "{% svg material wifi_strength_3_lock %}" + ] + }, + "wifi_strength_3_lock_open": { + "prefix": "svg.material.wifi_strength_3_lock_open", + "description": "SVG material - wifi_strength_3_lock_open", + "body": [ + "{% svg material wifi_strength_3_lock_open %}" + ] + }, + "wifi_strength_4": { + "prefix": "svg.material.wifi_strength_4", + "description": "SVG material - wifi_strength_4", + "body": [ + "{% svg material wifi_strength_4 %}" + ] + }, + "wifi_strength_4_alert": { + "prefix": "svg.material.wifi_strength_4_alert", + "description": "SVG material - wifi_strength_4_alert", + "body": [ + "{% svg material wifi_strength_4_alert %}" + ] + }, + "wifi_strength_4_lock": { + "prefix": "svg.material.wifi_strength_4_lock", + "description": "SVG material - wifi_strength_4_lock", + "body": [ + "{% svg material wifi_strength_4_lock %}" + ] + }, + "wifi_strength_4_lock_open": { + "prefix": "svg.material.wifi_strength_4_lock_open", + "description": "SVG material - wifi_strength_4_lock_open", + "body": [ + "{% svg material wifi_strength_4_lock_open %}" + ] + }, + "wifi_strength_alert_outline": { + "prefix": "svg.material.wifi_strength_alert_outline", + "description": "SVG material - wifi_strength_alert_outline", + "body": [ + "{% svg material wifi_strength_alert_outline %}" + ] + }, + "wifi_strength_lock_open_outline": { + "prefix": "svg.material.wifi_strength_lock_open_outline", + "description": "SVG material - wifi_strength_lock_open_outline", + "body": [ + "{% svg material wifi_strength_lock_open_outline %}" + ] + }, + "wifi_strength_lock_outline": { + "prefix": "svg.material.wifi_strength_lock_outline", + "description": "SVG material - wifi_strength_lock_outline", + "body": [ + "{% svg material wifi_strength_lock_outline %}" + ] + }, + "wifi_strength_off": { + "prefix": "svg.material.wifi_strength_off", + "description": "SVG material - wifi_strength_off", + "body": [ + "{% svg material wifi_strength_off %}" + ] + }, + "wifi_strength_off_outline": { + "prefix": "svg.material.wifi_strength_off_outline", + "description": "SVG material - wifi_strength_off_outline", + "body": [ + "{% svg material wifi_strength_off_outline %}" + ] + }, + "wifi_strength_outline": { + "prefix": "svg.material.wifi_strength_outline", + "description": "SVG material - wifi_strength_outline", + "body": [ + "{% svg material wifi_strength_outline %}" + ] + }, + "wifi_sync": { + "prefix": "svg.material.wifi_sync", + "description": "SVG material - wifi_sync", + "body": [ + "{% svg material wifi_sync %}" + ] + }, + "wikipedia": { + "prefix": "svg.material.wikipedia", + "description": "SVG material - wikipedia", + "body": [ + "{% svg material wikipedia %}" + ] + }, + "wind_power": { + "prefix": "svg.material.wind_power", + "description": "SVG material - wind_power", + "body": [ + "{% svg material wind_power %}" + ] + }, + "wind_power_outline": { + "prefix": "svg.material.wind_power_outline", + "description": "SVG material - wind_power_outline", + "body": [ + "{% svg material wind_power_outline %}" + ] + }, + "wind_turbine": { + "prefix": "svg.material.wind_turbine", + "description": "SVG material - wind_turbine", + "body": [ + "{% svg material wind_turbine %}" + ] + }, + "wind_turbine_alert": { + "prefix": "svg.material.wind_turbine_alert", + "description": "SVG material - wind_turbine_alert", + "body": [ + "{% svg material wind_turbine_alert %}" + ] + }, + "wind_turbine_check": { + "prefix": "svg.material.wind_turbine_check", + "description": "SVG material - wind_turbine_check", + "body": [ + "{% svg material wind_turbine_check %}" + ] + }, + "window_close": { + "prefix": "svg.material.window_close", + "description": "SVG material - window_close", + "body": [ + "{% svg material window_close %}" + ] + }, + "window_closed": { + "prefix": "svg.material.window_closed", + "description": "SVG material - window_closed", + "body": [ + "{% svg material window_closed %}" + ] + }, + "window_closed_variant": { + "prefix": "svg.material.window_closed_variant", + "description": "SVG material - window_closed_variant", + "body": [ + "{% svg material window_closed_variant %}" + ] + }, + "window_maximize": { + "prefix": "svg.material.window_maximize", + "description": "SVG material - window_maximize", + "body": [ + "{% svg material window_maximize %}" + ] + }, + "window_minimize": { + "prefix": "svg.material.window_minimize", + "description": "SVG material - window_minimize", + "body": [ + "{% svg material window_minimize %}" + ] + }, + "window_open": { + "prefix": "svg.material.window_open", + "description": "SVG material - window_open", + "body": [ + "{% svg material window_open %}" + ] + }, + "window_open_variant": { + "prefix": "svg.material.window_open_variant", + "description": "SVG material - window_open_variant", + "body": [ + "{% svg material window_open_variant %}" + ] + }, + "window_restore": { + "prefix": "svg.material.window_restore", + "description": "SVG material - window_restore", + "body": [ + "{% svg material window_restore %}" + ] + }, + "window_shutter": { + "prefix": "svg.material.window_shutter", + "description": "SVG material - window_shutter", + "body": [ + "{% svg material window_shutter %}" + ] + }, + "window_shutter_alert": { + "prefix": "svg.material.window_shutter_alert", + "description": "SVG material - window_shutter_alert", + "body": [ + "{% svg material window_shutter_alert %}" + ] + }, + "window_shutter_auto": { + "prefix": "svg.material.window_shutter_auto", + "description": "SVG material - window_shutter_auto", + "body": [ + "{% svg material window_shutter_auto %}" + ] + }, + "window_shutter_cog": { + "prefix": "svg.material.window_shutter_cog", + "description": "SVG material - window_shutter_cog", + "body": [ + "{% svg material window_shutter_cog %}" + ] + }, + "window_shutter_open": { + "prefix": "svg.material.window_shutter_open", + "description": "SVG material - window_shutter_open", + "body": [ + "{% svg material window_shutter_open %}" + ] + }, + "window_shutter_settings": { + "prefix": "svg.material.window_shutter_settings", + "description": "SVG material - window_shutter_settings", + "body": [ + "{% svg material window_shutter_settings %}" + ] + }, + "windsock": { + "prefix": "svg.material.windsock", + "description": "SVG material - windsock", + "body": [ + "{% svg material windsock %}" + ] + }, + "wiper": { + "prefix": "svg.material.wiper", + "description": "SVG material - wiper", + "body": [ + "{% svg material wiper %}" + ] + }, + "wiper_wash": { + "prefix": "svg.material.wiper_wash", + "description": "SVG material - wiper_wash", + "body": [ + "{% svg material wiper_wash %}" + ] + }, + "wiper_wash_alert": { + "prefix": "svg.material.wiper_wash_alert", + "description": "SVG material - wiper_wash_alert", + "body": [ + "{% svg material wiper_wash_alert %}" + ] + }, + "wizard_hat": { + "prefix": "svg.material.wizard_hat", + "description": "SVG material - wizard_hat", + "body": [ + "{% svg material wizard_hat %}" + ] + }, + "wordpress": { + "prefix": "svg.material.wordpress", + "description": "SVG material - wordpress", + "body": [ + "{% svg material wordpress %}" + ] + }, + "wrap": { + "prefix": "svg.material.wrap", + "description": "SVG material - wrap", + "body": [ + "{% svg material wrap %}" + ] + }, + "wrap_disabled": { + "prefix": "svg.material.wrap_disabled", + "description": "SVG material - wrap_disabled", + "body": [ + "{% svg material wrap_disabled %}" + ] + }, + "wrench": { + "prefix": "svg.material.wrench", + "description": "SVG material - wrench", + "body": [ + "{% svg material wrench %}" + ] + }, + "wrench_check": { + "prefix": "svg.material.wrench_check", + "description": "SVG material - wrench_check", + "body": [ + "{% svg material wrench_check %}" + ] + }, + "wrench_check_outline": { + "prefix": "svg.material.wrench_check_outline", + "description": "SVG material - wrench_check_outline", + "body": [ + "{% svg material wrench_check_outline %}" + ] + }, + "wrench_clock": { + "prefix": "svg.material.wrench_clock", + "description": "SVG material - wrench_clock", + "body": [ + "{% svg material wrench_clock %}" + ] + }, + "wrench_clock_outline": { + "prefix": "svg.material.wrench_clock_outline", + "description": "SVG material - wrench_clock_outline", + "body": [ + "{% svg material wrench_clock_outline %}" + ] + }, + "wrench_cog": { + "prefix": "svg.material.wrench_cog", + "description": "SVG material - wrench_cog", + "body": [ + "{% svg material wrench_cog %}" + ] + }, + "wrench_cog_outline": { + "prefix": "svg.material.wrench_cog_outline", + "description": "SVG material - wrench_cog_outline", + "body": [ + "{% svg material wrench_cog_outline %}" + ] + }, + "wrench_outline": { + "prefix": "svg.material.wrench_outline", + "description": "SVG material - wrench_outline", + "body": [ + "{% svg material wrench_outline %}" + ] + }, + "xamarin": { + "prefix": "svg.material.xamarin", + "description": "SVG material - xamarin", + "body": [ + "{% svg material xamarin %}" + ] + }, + "xml": { + "prefix": "svg.material.xml", + "description": "SVG material - xml", + "body": [ + "{% svg material xml %}" + ] + }, + "xmpp": { + "prefix": "svg.material.xmpp", + "description": "SVG material - xmpp", + "body": [ + "{% svg material xmpp %}" + ] + }, + "yahoo": { + "prefix": "svg.material.yahoo", + "description": "SVG material - yahoo", + "body": [ + "{% svg material yahoo %}" + ] + }, + "yeast": { + "prefix": "svg.material.yeast", + "description": "SVG material - yeast", + "body": [ + "{% svg material yeast %}" + ] + }, + "yin_yang": { + "prefix": "svg.material.yin_yang", + "description": "SVG material - yin_yang", + "body": [ + "{% svg material yin_yang %}" + ] + }, + "yoga": { + "prefix": "svg.material.yoga", + "description": "SVG material - yoga", + "body": [ + "{% svg material yoga %}" + ] + }, + "youtube": { + "prefix": "svg.material.youtube", + "description": "SVG material - youtube", + "body": [ + "{% svg material youtube %}" + ] + }, + "youtube_gaming": { + "prefix": "svg.material.youtube_gaming", + "description": "SVG material - youtube_gaming", + "body": [ + "{% svg material youtube_gaming %}" + ] + }, + "youtube_studio": { + "prefix": "svg.material.youtube_studio", + "description": "SVG material - youtube_studio", + "body": [ + "{% svg material youtube_studio %}" + ] + }, + "youtube_subscription": { + "prefix": "svg.material.youtube_subscription", + "description": "SVG material - youtube_subscription", + "body": [ + "{% svg material youtube_subscription %}" + ] + }, + "youtube_tv": { + "prefix": "svg.material.youtube_tv", + "description": "SVG material - youtube_tv", + "body": [ + "{% svg material youtube_tv %}" + ] + }, + "yurt": { + "prefix": "svg.material.yurt", + "description": "SVG material - yurt", + "body": [ + "{% svg material yurt %}" + ] + }, + "z_wave": { + "prefix": "svg.material.z_wave", + "description": "SVG material - z_wave", + "body": [ + "{% svg material z_wave %}" + ] + }, + "zend": { + "prefix": "svg.material.zend", + "description": "SVG material - zend", + "body": [ + "{% svg material zend %}" + ] + }, + "zigbee": { + "prefix": "svg.material.zigbee", + "description": "SVG material - zigbee", + "body": [ + "{% svg material zigbee %}" + ] + }, + "zip_box": { + "prefix": "svg.material.zip_box", + "description": "SVG material - zip_box", + "body": [ + "{% svg material zip_box %}" + ] + }, + "zip_box_outline": { + "prefix": "svg.material.zip_box_outline", + "description": "SVG material - zip_box_outline", + "body": [ + "{% svg material zip_box_outline %}" + ] + }, + "zip_disk": { + "prefix": "svg.material.zip_disk", + "description": "SVG material - zip_disk", + "body": [ + "{% svg material zip_disk %}" + ] + }, + "zodiac_aquarius": { + "prefix": "svg.material.zodiac_aquarius", + "description": "SVG material - zodiac_aquarius", + "body": [ + "{% svg material zodiac_aquarius %}" + ] + }, + "zodiac_aries": { + "prefix": "svg.material.zodiac_aries", + "description": "SVG material - zodiac_aries", + "body": [ + "{% svg material zodiac_aries %}" + ] + }, + "zodiac_cancer": { + "prefix": "svg.material.zodiac_cancer", + "description": "SVG material - zodiac_cancer", + "body": [ + "{% svg material zodiac_cancer %}" + ] + }, + "zodiac_capricorn": { + "prefix": "svg.material.zodiac_capricorn", + "description": "SVG material - zodiac_capricorn", + "body": [ + "{% svg material zodiac_capricorn %}" + ] + }, + "zodiac_gemini": { + "prefix": "svg.material.zodiac_gemini", + "description": "SVG material - zodiac_gemini", + "body": [ + "{% svg material zodiac_gemini %}" + ] + }, + "zodiac_leo": { + "prefix": "svg.material.zodiac_leo", + "description": "SVG material - zodiac_leo", + "body": [ + "{% svg material zodiac_leo %}" + ] + }, + "zodiac_libra": { + "prefix": "svg.material.zodiac_libra", + "description": "SVG material - zodiac_libra", + "body": [ + "{% svg material zodiac_libra %}" + ] + }, + "zodiac_pisces": { + "prefix": "svg.material.zodiac_pisces", + "description": "SVG material - zodiac_pisces", + "body": [ + "{% svg material zodiac_pisces %}" + ] + }, + "zodiac_sagittarius": { + "prefix": "svg.material.zodiac_sagittarius", + "description": "SVG material - zodiac_sagittarius", + "body": [ + "{% svg material zodiac_sagittarius %}" + ] + }, + "zodiac_scorpio": { + "prefix": "svg.material.zodiac_scorpio", + "description": "SVG material - zodiac_scorpio", + "body": [ + "{% svg material zodiac_scorpio %}" + ] + }, + "zodiac_taurus": { + "prefix": "svg.material.zodiac_taurus", + "description": "SVG material - zodiac_taurus", + "body": [ + "{% svg material zodiac_taurus %}" + ] + }, + "zodiac_virgo": { + "prefix": "svg.material.zodiac_virgo", + "description": "SVG material - zodiac_virgo", + "body": [ + "{% svg material zodiac_virgo %}" + ] + } +} \ No newline at end of file diff --git a/lua/snippets/md.json b/lua/snippets/md.json new file mode 100644 index 0000000..1a122ab --- /dev/null +++ b/lua/snippets/md.json @@ -0,0 +1,20 @@ +{ + "command": { + "prefix": "cmd", + "description": "create command tag", + "body": [ + "```$1", + "$2", + "```" + ] + }, + "bashcommand": { + "prefix": "bash", + "description": "create bash command tag", + "body": [ + "```bash", + "$1", + "```" + ] + } +} diff --git a/lua/snippets/package.json b/lua/snippets/package.json new file mode 100755 index 0000000..1b4ec71 --- /dev/null +++ b/lua/snippets/package.json @@ -0,0 +1,55 @@ +{ + "name": "nvim-snippets", + "author": "LucasF", + "engines": { + "vscode": "^1.11.0" + }, + "contributes": { + "snippets": [ + { + "language": "python", + "path": "./python.json" + }, + { + "language": "python", + "path": "./django-python.json" + }, + { + "language": "htmldjango", + "path": "./django.json" + }, + { + "language": "htmldjango", + "path": "./bootstrap.json" + }, + { + "language": "htmldjango", + "path": "./dripicons.json" + }, + { + "language": "htmldjango", + "path": "./hero_outline.json" + }, + { + "language": "htmldjango", + "path": "./material.json" + }, + { + "language": "htmldjango", + "path": "./hero_solid.json" + }, + { + "language": "go", + "path": "./golang.json" + }, + { + "language": "sql", + "path": "./sql.json" + }, + { + "language": "markdown", + "path": "./md.json" + } + ] + } +} diff --git a/lua/snippets/python.json b/lua/snippets/python.json new file mode 100644 index 0000000..b867045 --- /dev/null +++ b/lua/snippets/python.json @@ -0,0 +1,13 @@ +{ + "ifmain": { + "prefix": "ifmain", + "description": "create basic function with if __name__ == \"__main__\"", + "body": [ + "def execute():", + "\t${1}", + "\n\n", + "if __name__ == \"__main__\":", + "\texecute()" + ] + } +} diff --git a/lua/snippets/sql.json b/lua/snippets/sql.json new file mode 100644 index 0000000..ccd0396 --- /dev/null +++ b/lua/snippets/sql.json @@ -0,0 +1,25 @@ +{ + "goosesql": { + "prefix": "goosesql", + "description": "create up and down comments", + "body": [ + "-- +goose Up\n", + "-- +goose Down\n" + ] + }, + "goosetable": { + "prefix": "goosetable", + "description": "create sql table", + "body": [ + "-- +goose Up\n", + "CREATE TABLE $1 (", + "\tid UUID PRIMARY KEY,", + "\tcreated_at TIMESTAMP NOT NULL,", + "\tupdated_at TIMESTAMP NOT NULL,", + "\tname TEXT NOT NULL", + ");\n", + "-- +goose Down\n", + "DROP TABLE $1;" + ] + } +} diff --git a/neovim.yml b/neovim.yml new file mode 100644 index 0000000..b9235ab --- /dev/null +++ b/neovim.yml @@ -0,0 +1,6 @@ +--- +base: lua51 + +globals: + vim: + any: true diff --git a/selene.toml b/selene.toml new file mode 100644 index 0000000..e7005c3 --- /dev/null +++ b/selene.toml @@ -0,0 +1,8 @@ +std = "neovim" + +[rules] +global_usage = "allow" +if_same_then_else = "allow" +incorrect_standard_library_use = "allow" +mixed_table = "allow" +multiple_statements = "allow"