A configuration-driven PowerShell utility to dynamically download, color-inject, and optimize raw SVG icons from the Google Material Symbols repository directly into your local project workspace.
📂 Directory Structure
For the global wrapper to resolve correctly, preserve this exact local hierarchy:
Plaintext
utility/
├── get-svg.ps1 # Master execution script engine
└── get-svg/
└── config.json # Dynamic vector mapping registry
🚀 Global Terminal Setup
To run this utility from any active project folder on your machine, ensure the following helper function is appended to your user profile:
Open your profile in a terminal editor:
PowerShell
notepad $PROFILE
Paste the script execution router (updating the path to your master file):
PowerShell
function get-svgs { param ( [Parameter(Position = 0, Mandatory = $false)] [string]$Icons, [Parameter(Position = 1, Mandatory = $false)] [string]$Color ) $ScriptPath = "C:\Users\dunba\Desktop\scripts\utility\get-svg.ps1" & $ScriptPath -IconSelection $Icons -HexColor $Color }
Reload the profile instance:
PowerShell
. $PROFILE
💻 CLI Usage Examples
The tool features smart directory context:
- Running it from a general parent folder (like
/assets/) automatically builds a target/svg/folder. - Running it from inside an existing
/svg/folder updates files right in place without creating nested duplicates.
1. Batch Download Everything
To initialize a project and pull down every single icon registered inside config.json in raw, unstyled black vectors:
PowerShell
get-svgs
2. Selective Syncing
Pass a space-separated string within quotes to selectively parse precise UI elements:
PowerShell
get-svgs "view-grid filter search search-clear"
3. Uniform Color Injection
Pass a hex code (with or without the # symbol) or a native CSS theme variable as the second parameter to overwrite/inject a universal inline color layer:
PowerShell
# Short or full hex formatting
get-svgs "calendar user desc-align" "e3e3e3"
get-svgs "trash" "dc3545"
# CSS custom variable integration (perfect for theme engines)
get-svgs "priority-flag" "var(--kanban-tag-high)"
⚡ Automated Optimization Features
When streaming assets from the raw asset delivery CDN, the engine automatically passes vectors through three regex post-processing pipelines before writing to your disk:
- xmlns Injection: Guarantees
xmlns="http://www.w3.org/2000/svg"is hard-coded into the opening tag, ensuring full rendering capability when used as a CSSbackground-imageor inside WordPress<img>structures. - Responsive viewBox Conversion: Strips hard-coded structural constraints (
width="24" height="24") and applies an elasticviewBox="0 0 24 24", allowing smooth responsive CSS scaling (width: 100%; max-width: 42px;). - Comment Sanitation: Safely skips over structural layout layout strings (
/* Section 1 */) within your JSON map so you can organize your registry neatly as it scales.
get-svg.ps1
PowerShell
#?[PSScriptRoot/get-svg.ps1]
# Requires PowerShell 7.6 or higher
param (
[Parameter(Position = 0, Mandatory = $false)]
[object]$IconSelection,
[Parameter(Position = 1, Mandatory = $false)]
[string]$HexColor
)
# 1. Establish Configuration and Smart Target Paths
$ConfigPath = Join-Path $PSScriptRoot "get-svg" "config.json"
# Resolve the current file system location safely as a clean string path
$CurrentDirString = (Get-Item $ExecutionContext.SessionState.Path.CurrentFileSystemLocation).FullName
$CurrentDirName = (Get-Item $CurrentDirString).Name
# If the active directory folder name is already exactly "svg", don't nest it
if ($CurrentDirName -eq "svg") {
$TargetDir = $CurrentDirString
} else {
$TargetDir = Join-Path $CurrentDirString "svg"
}
if (-not (Test-Path $ConfigPath)) {
Write-Error "Configuration file not found at: $ConfigPath"
Exit 1
}
# 2. Parse the Config File
try {
$Config = Get-Content -Raw -Path $ConfigPath | ConvertFrom-Json
} catch {
Write-Error "Failed to parse config.json."
Exit 1
}
# 3. Normalize Input Arguments
$RequestedIcons = @()
if ($IconSelection) {
if ($IconSelection -is [string]) {
$RequestedIcons = $IconSelection.Split(' ', [System.StringSplitOptions]::RemoveEmptyEntries)
} elseif ($IconSelection -is [array]) {
$RequestedIcons = $IconSelection
}
} else {
# Skip formatting comment nodes in config.json and grab true targets
$RequestedIcons = $Config.psobject.properties.Name | Where-Object { $_ -notmatch '^\/\*' }
}
# 4. Clean & Normalize Hex Color Input
if ($HexColor) {
if ($HexColor -match '^[a-fA-F0-9]{3,6}$') {
$HexColor = "#$HexColor"
}
}
# 5. Ensure Target Directory Exists
if (-not (Test-Path $TargetDir)) {
New-Item -ItemType Directory -Path $TargetDir -Force | Out-Null
}
Write-Host "Processing requests target -> $TargetDir" -ForegroundColor Yellow
# 6. Iterative Download & Web Optimization Post-Processing
foreach ($Key in $RequestedIcons) {
# Ignore the layout dividers inside our config.json
if ($Key -match '^\/\*') { continue }
if (-not $Config.psobject.properties[$Key]) {
Write-Host "⚠️ Warning: Icon key '$Key' is not defined in config.json. Skipping." -ForegroundColor Yellow
continue
}
$IconData = $Config.$Key
$IconName = $IconData.name
$Style = $IconData.style
$Url = "https://fonts.gstatic.com/s/i/short-term/release/$Style/$IconName/default/24px.svg"
$SavePath = Join-Path $TargetDir "$Key.svg"
try {
# Force download to stream as raw text
$Response = Invoke-WebRequest -Uri $Url -ErrorAction Stop
$SvgContent = $Response.Content
# Optimization A: Ensure XMLNS definition exists for clean CSS integration
if ($SvgContent -notmatch 'xmlns=') {
$SvgContent = $SvgContent -replace '<svg\s', '<svg xmlns="http://www.w3.org/2000/svg" '
}
# Optimization B: Convert static sizing boundaries into a scaling responsive viewBox
if ($SvgContent -match 'height="24"\s+width="24"') {
$SvgContent = $SvgContent -replace 'height="24"\s+width="24"', 'viewBox="0 0 24 24"'
} elseif ($SvgContent -match 'width="24"\s+height="24"') {
$SvgContent = $SvgContent -replace 'width="24"\s+height="24"', 'viewBox="0 0 24 24"'
}
# Optimization C: Handle Post-Processing Inline Color Injection
if ($HexColor) {
if ($SvgContent -match '<svg\s') {
$SvgContent = $SvgContent -replace '<svg\s', "<svg fill=`"$HexColor`" "
Write-Host "✔ [Color Injected: $HexColor] -> " -NoNewline -ForegroundColor Magenta
}
}
# Save clean scalable file payload
Set-Content -Path $SavePath -Value $SvgContent -Encoding utf8
Write-Host "Saved: $Key.svg" -ForegroundColor Green
} catch {
Write-Host "❌ Failed processing '$Key' from: $Url" -ForegroundColor Red
}
}
Write-Host "Done!" -ForegroundColor Cyan
get-svg\config.json
json
{
"view-grid": { "name": "grid_view", "style": "materialsymbolsoutlined" },
"view-list": { "name": "view_list", "style": "materialsymbolsoutlined" },
"view-board": { "name": "dashboard", "style": "materialsymbolsoutlined" },
"view-timeline": { "name": "timeline", "style": "materialsymbolsoutlined" },
"view-calendar": { "name": "calendar_view_month", "style": "materialsymbolsoutlined" },
"filter": { "name": "filter_alt", "style": "materialsymbolsoutlined" },
"filter-active": { "name": "filter_alt_off", "style": "materialsymbolsoutlined" },
"search": { "name": "search", "style": "materialsymbolsoutlined" },
"sort-arrows": { "name": "swap_vert", "style": "materialsymbolsoutlined" },
"refresh": { "name": "refresh", "style": "materialsymbolsoutlined" },
"search-clear": { "name": "close", "style": "materialsymbolsoutlined" },
"selector-arrows": { "name": "unfold_more", "style": "materialsymbolsoutlined" },
"chevron-down": { "name": "expand_more", "style": "materialsymbolsoutlined" },
"chevron-up": { "name": "expand_less", "style": "materialsymbolsoutlined" },
"chevron-left": { "name": "chevron_left", "style": "materialsymbolsoutlined" },
"chevron-right": { "name": "chevron_right", "style": "materialsymbolsoutlined" },
"plus": { "name": "add", "style": "materialsymbolsoutlined" },
"plus-circle": { "name": "add_circle", "style": "materialsymbolsoutlined" },
"check": { "name": "check", "style": "materialsymbolsoutlined" },
"check-circle": { "name": "check_circle", "style": "materialsymbolsoutlined" },
"options-vertical": { "name": "more_vert", "style": "materialsymbolsoutlined" },
"options-horizontal": { "name": "more_horiz", "style": "materialsymbolsoutlined" },
"edit": { "name": "edit", "style": "materialsymbolsoutlined" },
"external-link": { "name": "open_in_new", "style": "materialsymbolsoutlined" },
"priority-flag": { "name": "flag", "style": "materialsymbolsrounded" },
"priority-flag-filled": { "name": "flag", "style": "materialsymbolssharp" },
"calendar": { "name": "calendar_today", "style": "materialsymbolsoutlined" },
"user": { "name": "person", "style": "materialsymbolsoutlined" },
"users-group": { "name": "group", "style": "materialsymbolsoutlined" },
"desc-align": { "name": "notes", "style": "materialsymbolsoutlined" },
"comment": { "name": "chat_bubble", "style": "materialsymbolsoutlined" },
"attachment": { "name": "attachment", "style": "materialsymbolsoutlined" },
"link": { "name": "link", "style": "materialsymbolsoutlined" },
"subtask-list": { "name": "checklist", "style": "materialsymbolsoutlined" },
"bookmark": { "name": "bookmark", "style": "materialsymbolsoutlined" },
"tag": { "name": "sell", "style": "materialsymbolsoutlined" },
"time-clock": { "name": "schedule", "style": "materialsymbolsoutlined" },
"history": { "name": "history", "style": "materialsymbolsoutlined" },
"trash": { "name": "delete", "style": "materialsymbolsoutlined" },
"lock": { "name": "lock", "style": "materialsymbolsoutlined" },
"unlock": { "name": "lock_open", "style": "materialsymbolsoutlined" },
"drag-handle": { "name": "drag_indicator", "style": "materialsymbolsoutlined" },
"settings": { "name": "settings", "style": "materialsymbolsoutlined" },
"tune-sliders": { "name": "tune", "style": "materialsymbolsoutlined" },
"visibility-show": { "name": "visibility", "style": "materialsymbolsoutlined" },
"visibility-hide": { "name": "visibility_off", "style": "materialsymbolsoutlined" },
"security-shield": { "name": "shield", "style": "materialsymbolsoutlined" },
"database": { "name": "database", "style": "materialsymbolsoutlined" },
"terminal": { "name": "terminal", "style": "materialsymbolsoutlined" },
"info": { "name": "info", "style": "materialsymbolsoutlined" },
"help": { "name": "help", "style": "materialsymbolsoutlined" },
"status-backlog": { "name": "inventory_2", "style": "materialsymbolsoutlined" },
"status-todo": { "name": "assignment", "style": "materialsymbolsoutlined" },
"status-inprogress": { "name": "sync", "style": "materialsymbolsoutlined" },
"status-review": { "name": "rate_review", "style": "materialsymbolsoutlined" },
"status-done": { "name": "task_alt", "style": "materialsymbolsoutlined" },
"status-blocked": { "name": "block", "style": "materialsymbolsoutlined" },
"status-archive": { "name": "archive", "style": "materialsymbolsoutlined" },
"status-star": { "name": "star", "style": "materialsymbolsoutlined" },
"bug": { "name": "bug_report", "style": "materialsymbolsoutlined" },
"lightning-epic": { "name": "bolt", "style": "materialsymbolsoutlined" },
"theme-auto": { "name": "desktop_windows", "style": "materialsymbolsoutlined" },
"sun": { "name": "light_mode", "style": "materialsymbolsoutlined" },
"moon": { "name": "dark_mode", "style": "materialsymbolsoutlined" },
"share": { "name": "share", "style": "materialsymbolsoutlined" },
"upload": { "name": "upload", "style": "materialsymbolsoutlined" },
"download": { "name": "download", "style": "materialsymbolsoutlined" },
"print": { "name": "print", "style": "materialsymbolsoutlined" },
"email": { "name": "mail", "style": "materialsymbolsoutlined" },
"notification": { "name": "notifications", "style": "materialsymbolsoutlined" },
"notification-off": { "name": "notifications_off", "style": "materialsymbolsoutlined" },
"folder": { "name": "folder", "style": "materialsymbolsoutlined" },
"file-doc": { "name": "description", "style": "materialsymbolsoutlined" },
"file-image": { "name": "image", "style": "materialsymbolsoutlined" },
"zoom-in": { "name": "zoom_in", "style": "materialsymbolsoutlined" },
"zoom-out": { "name": "zoom_out", "style": "materialsymbolsoutlined" },
"fullscreen": { "name": "fullscreen", "style": "materialsymbolsoutlined" },
"filter-list": { "name": "view_headline", "style": "materialsymbolsoutlined" },
"sort-alpha": { "name": "sort_by_alpha", "style": "materialsymbolsoutlined" },
"warning": { "name": "warning", "style": "materialsymbolsoutlined" },
"error": { "name": "error", "style": "materialsymbolsoutlined" },
"favorite": { "name": "favorite", "style": "materialsymbolsoutlined" },
"thumb-up": { "name": "thumb_up", "style": "materialsymbolsoutlined" },
"location": { "name": "location_on", "style": "materialsymbolsoutlined" },
"account": { "name": "manage_accounts", "style": "materialsymbolsoutlined" },
"video": { "name": "videocam", "style": "materialsymbolsoutlined" },
"audio": { "name": "mic", "style": "materialsymbolsoutlined" },
"volume": { "name": "volume_up", "style": "materialsymbolsoutlined" },
"volume-off": { "name": "volume_off", "style": "materialsymbolsoutlined" },
"wifi": { "name": "wifi", "style": "materialsymbolsoutlined" },
"battery": { "name": "battery_full", "style": "materialsymbolsoutlined" },
"cloud": { "name": "cloud", "style": "materialsymbolsoutlined" },
"cloud-upload": { "name": "cloud_upload", "style": "materialsymbolsoutlined" },
"cloud-download": { "name": "cloud_download", "style": "materialsymbolsoutlined" },
"map": { "name": "map", "style": "materialsymbolsoutlined" },
"phone": { "name": "phone", "style": "materialsymbolsoutlined" },
"send": { "name": "send", "style": "materialsymbolsoutlined" },
"save": { "name": "save", "style": "materialsymbolsoutlined" },
"key": { "name": "key", "style": "materialsymbolsoutlined" },
"qr-code": { "name": "qr_code", "style": "materialsymbolsoutlined" },
"fingerprint": { "name": "fingerprint", "style": "materialsymbolsoutlined" },
"translate": { "name": "translate", "style": "materialsymbolsoutlined" },
"language": { "name": "language", "style": "materialsymbolsoutlined" },
"grid-view-compact": { "name": "view_compact", "style": "materialsymbolsoutlined" },
"table-rows": { "name": "table_rows", "style": "materialsymbolsoutlined" },
"pie-chart": { "name": "pie_chart", "style": "materialsymbolsoutlined" },
"bar-chart": { "name": "bar_chart", "style": "materialsymbolsoutlined" },
"code": { "name": "code", "style": "materialsymbolsoutlined" },
"draft": { "name": "draft", "style": "materialsymbolsoutlined" },
"rocket": { "name": "rocket_launch", "style": "materialsymbolsoutlined" },
"lightbulb": { "name": "lightbulb", "style": "materialsymbolsoutlined" },
"contrast": { "name": "contrast", "style": "materialsymbolsoutlined" },
"palette": { "name": "palette", "style": "materialsymbolsoutlined" },
"menu": { "name": "menu", "style": "materialsymbolsoutlined" },
"home": { "name": "home", "style": "materialsymbolsoutlined" },
"search-filter": { "name": "manage_search", "style": "materialsymbolsoutlined" },
"close-circle": { "name": "cancel", "style": "materialsymbolsoutlined" },
"arrow-back": { "name": "arrow_back", "style": "materialsymbolsoutlined" },
"arrow-forward": { "name": "arrow_forward", "style": "materialsymbolsoutlined" },
"arrow-up": { "name": "arrow_upward", "style": "materialsymbolsoutlined" },
"arrow-down": { "name": "arrow_downward", "style": "materialsymbolsoutlined" },
"sync": { "name": "sync_alt", "style": "materialsymbolsoutlined" },
"filter-list-alt": { "name": "format_list_bulleted", "style": "materialsymbolsoutlined" },
"check-box": { "name": "check_box", "style": "materialsymbolsoutlined" },
"check-box-outline": { "name": "check_box_outline_blank", "style": "materialsymbolsoutlined" },
"radio-button": { "name": "radio_button_checked", "style": "materialsymbolsoutlined" },
"toggle-on": { "name": "toggle_on", "style": "materialsymbolsoutlined" },
"toggle-off": { "name": "toggle_off", "style": "materialsymbolsoutlined" },
"input": { "name": "input", "style": "materialsymbolsoutlined" },
"text-format": { "name": "text_fields", "style": "materialsymbolsoutlined" },
"bold": { "name": "format_bold", "style": "materialsymbolsoutlined" },
"italic": { "name": "format_italic", "style": "materialsymbolsoutlined" },
"underline": { "name": "format_underlined", "style": "materialsymbolsoutlined" },
"align-left": { "name": "format_align_left", "style": "materialsymbolsoutlined" },
"align-center": { "name": "format_align_center", "style": "materialsymbolsoutlined" },
"align-right": { "name": "format_align_right", "style": "materialsymbolsoutlined" },
"list-numbered": { "name": "format_list_numbered", "style": "materialsymbolsoutlined" },
"indent-increase": { "name": "format_indent_increase", "style": "materialsymbolsoutlined" },
"indent-decrease": { "name": "format_indent_decrease", "style": "materialsymbolsoutlined" },
"face": { "name": "face", "style": "materialsymbolsoutlined" },
"emoji": { "name": "mood", "style": "materialsymbolsoutlined" },
"timer": { "name": "timer", "style": "materialsymbolsoutlined" },
"alarm": { "name": "alarm", "style": "materialsymbolsoutlined" },
"work": { "name": "work", "style": "materialsymbolsoutlined" },
"business": { "name": "business", "style": "materialsymbolsoutlined" },
"group-add": { "name": "group_add", "style": "materialsymbolsoutlined" },
"person-add": { "name": "person_add", "style": "materialsymbolsoutlined" },
"feedback": { "name": "feedback", "style": "materialsymbolsoutlined" },
"support": { "name": "support_agent", "style": "materialsymbolsoutlined" },
"verified": { "name": "verified", "style": "materialsymbolsoutlined" },
"highlight": { "name": "highlight", "style": "materialsymbolsoutlined" },
"power": { "name": "power_settings_new", "style": "materialsymbolsoutlined" },
"restart": { "name": "restart_alt", "style": "materialsymbolsoutlined" },
"fullscreen-exit": { "name": "fullscreen_exit", "style": "materialsymbolsoutlined" },
"crop": { "name": "crop", "style": "materialsymbolsoutlined" },
"camera": { "name": "camera_alt", "style": "materialsymbolsoutlined" },
"mic-off": { "name": "mic_off", "style": "materialsymbolsoutlined" },
"headset": { "name": "headset", "style": "materialsymbolsoutlined" },
"bluetooth": { "name": "bluetooth", "style": "materialsymbolsoutlined" },
"usb": { "name": "usb", "style": "materialsymbolsoutlined" },
"data-usage": { "name": "data_usage", "style": "materialsymbolsoutlined" },
"storage": { "name": "storage", "style": "materialsymbolsoutlined" },
"developer-mode": { "name": "developer_mode", "style": "materialsymbolsoutlined" },
"bug-report": { "name": "bug_report", "style": "materialsymbolsoutlined" },
"build": { "name": "build", "style": "materialsymbolsoutlined" },
"anchor": { "name": "anchor", "style": "materialsymbolsoutlined" },
"category": { "name": "category", "style": "materialsymbolsoutlined" },
"view-quilt": { "name": "view_quilt", "style": "materialsymbolsoutlined" },
"layers": { "name": "layers", "style": "materialsymbolsoutlined" },
"filter-none": { "name": "filter_none", "style": "materialsymbolsoutlined" },
"compare": { "name": "compare", "style": "materialsymbolsoutlined" },
"swap-horizontal": { "name": "swap_horiz", "style": "materialsymbolsoutlined" },
"call": { "name": "call", "style": "materialsymbolsoutlined" },
"chat": { "name": "chat", "style": "materialsymbolsoutlined" },
"forum": { "name": "forum", "style": "materialsymbolsoutlined" },
"contact-page": { "name": "contact_page", "style": "materialsymbolsoutlined" },
"person-search": { "name": "person_search", "style": "materialsymbolsoutlined" },
"schedule-send": { "name": "schedule_send", "style": "materialsymbolsoutlined" },
"rocket-launch": { "name": "rocket_launch", "style": "materialsymbolsoutlined" },
"pets": { "name": "pets", "style": "materialsymbolsoutlined" },
"restaurant": { "name": "restaurant", "style": "materialsymbolsoutlined" },
"local-shipping": { "name": "local_shipping", "style": "materialsymbolsoutlined" },
"shopping-cart": { "name": "shopping_cart", "style": "materialsymbolsoutlined" },
"credit-card": { "name": "credit_card", "style": "materialsymbolsoutlined" },
"receipt": { "name": "receipt_long", "style": "materialsymbolsoutlined" },
"attach-money": { "name": "attach_money", "style": "materialsymbolsoutlined" },
"trending-up": { "name": "trending_up", "style": "materialsymbolsoutlined" },
"trending-down": { "name": "trending_down", "style": "materialsymbolsoutlined" },
"videocam-off": { "name": "videocam_off", "style": "materialsymbolsoutlined" },
"volume-mute": { "name": "volume_mute", "style": "materialsymbolsoutlined" },
"play": { "name": "play_arrow", "style": "materialsymbolsoutlined" },
"pause": { "name": "pause", "style": "materialsymbolsoutlined" },
"stop": { "name": "stop", "style": "materialsymbolsoutlined" },
"skip-next": { "name": "skip_next", "style": "materialsymbolsoutlined" },
"skip-previous": { "name": "skip_previous", "style": "materialsymbolsoutlined" },
"loop": { "name": "loop", "style": "materialsymbolsoutlined" },
"shuffle": { "name": "shuffle", "style": "materialsymbolsoutlined" },
"cast": { "name": "cast", "style": "materialsymbolsoutlined" },
"speed": { "name": "speed", "style": "materialsymbolsoutlined" },
"tune": { "name": "tune", "style": "materialsymbolsoutlined" },
"notifications-active": { "name": "notifications_active", "style": "materialsymbolsoutlined" },
"mail-outline": { "name": "mail_outline", "style": "materialsymbolsoutlined" },
"send-time": { "name": "send_time_extension", "style": "materialsymbolsoutlined" },
"contact-mail": { "name": "contact_mail", "style": "materialsymbolsoutlined" },
"perm-identity": { "name": "perm_identity", "style": "materialsymbolsoutlined" },
"badge": { "name": "badge", "style": "materialsymbolsoutlined" },
"security": { "name": "security", "style": "materialsymbolsoutlined" },
"vpn-key": { "name": "vpn_key", "style": "materialsymbolsoutlined" },
"password": { "name": "password", "style": "materialsymbolsoutlined" },
"visibility-lock": { "name": "visibility_lock", "style": "materialsymbolsoutlined" },
"sync-problem": { "name": "sync_problem", "style": "materialsymbolsoutlined" },
"cloud-queue": { "name": "cloud_queue", "style": "materialsymbolsoutlined" },
"offline-pin": { "name": "offline_pin", "style": "materialsymbolsoutlined" },
"donut-large": { "name": "donut_large", "style": "materialsymbolsoutlined" },
"leaderboard": { "name": "leaderboard", "style": "materialsymbolsoutlined" },
"analytics": { "name": "analytics", "style": "materialsymbolsoutlined" },
"assignment-ind": { "name": "assignment_ind", "style": "materialsymbolsoutlined" },
"history-edu": { "name": "history_edu", "style": "materialsymbolsoutlined" },
"science": { "name": "science", "style": "materialsymbolsoutlined" },
"psychology": { "name": "psychology", "style": "materialsymbolsoutlined" },
"local-offer": { "name": "local_offer", "style": "materialsymbolsoutlined" },
"inventory": { "name": "inventory", "style": "materialsymbolsoutlined" },
"receipt-long": { "name": "receipt_long", "style": "materialsymbolsoutlined" },
"payments": { "name": "payments", "style": "materialsymbolsoutlined" },
"savings": { "name": "savings", "style": "materialsymbolsoutlined" },
"folder-open": { "name": "folder_open", "style": "materialsymbolsoutlined" },
"folder-shared": { "name": "folder_shared", "style": "materialsymbolsoutlined" },
"folder-zip": { "name": "folder_zip", "style": "materialsymbolsoutlined" },
"drive-file-move": { "name": "drive_file_move", "style": "materialsymbolsoutlined" },
"file-copy": { "name": "content_copy", "style": "materialsymbolsoutlined" },
"file-cut": { "name": "content_cut", "style": "materialsymbolsoutlined" },
"file-paste": { "name": "content_paste", "style": "materialsymbolsoutlined" },
"select-all": { "name": "select_all", "style": "materialsymbolsoutlined" },
"keyboard": { "name": "keyboard", "style": "materialsymbolsoutlined" },
"mouse": { "name": "mouse", "style": "materialsymbolsoutlined" },
"monitor": { "name": "monitor", "style": "materialsymbolsoutlined" },
"laptop": { "name": "laptop", "style": "materialsymbolsoutlined" },
"tablet": { "name": "tablet_mac", "style": "materialsymbolsoutlined" },
"smartphone": { "name": "smartphone", "style": "materialsymbolsoutlined" },
"router": { "name": "router", "style": "materialsymbolsoutlined" },
"memory": { "name": "memory", "style": "materialsymbolsoutlined" },
"cpu": { "name": "developer_board", "style": "materialsymbolsoutlined" },
"power-input": { "name": "power", "style": "materialsymbolsoutlined" },
"sensors": { "name": "sensors", "style": "materialsymbolsoutlined" },
"graphic-eq": { "name": "graphic_eq", "style": "materialsymbolsoutlined" },
"brightness-high": { "name": "brightness_high", "style": "materialsymbolsoutlined" },
"brightness-low": { "name": "brightness_low", "style": "materialsymbolsoutlined" },
"auto-fix": { "name": "auto_fix_high", "style": "materialsymbolsoutlined" },
"gesture": { "name": "gesture", "style": "materialsymbolsoutlined" },
"pan-tool": { "name": "pan_tool", "style": "materialsymbolsoutlined" },
"ads-click": { "name": "ads_click", "style": "materialsymbolsoutlined" },
"back-hand": { "name": "back_hand", "style": "materialsymbolsoutlined" },
"rule": { "name": "rule", "style": "materialsymbolsoutlined" },
"fact-check": { "name": "fact_check", "style": "materialsymbolsoutlined" },
"task": { "name": "task", "style": "materialsymbolsoutlined" },
"published": { "name": "published_with_changes", "style": "materialsymbolsoutlined" },
"error-outline": { "name": "error_outline", "style": "materialsymbolsoutlined" },
"warning-amber": { "name": "warning_amber", "style": "materialsymbolsoutlined" },
"report": { "name": "report_problem", "style": "materialsymbolsoutlined" },
"check-circle-outline": { "name": "check_circle_outline", "style": "materialsymbolsoutlined" },
"analytics-check": { "name": "insights", "style": "materialsymbolsoutlined" },
"stacked-bar": { "name": "stacked_bar_chart", "style": "materialsymbolsoutlined" },
"scatter-plot": { "name": "scatter_plot", "style": "materialsymbolsoutlined" },
"bubble-chart": { "name": "bubble_chart", "style": "materialsymbolsoutlined" },
"show-chart": { "name": "show_chart", "style": "materialsymbolsoutlined" },
"multiline-chart": { "name": "multiline_chart", "style": "materialsymbolsoutlined" },
"data-table": { "name": "grid_on", "style": "materialsymbolsoutlined" },
"dashboard-customize": { "name": "dashboard_customize", "style": "materialsymbolsoutlined" },
"navigation": { "name": "navigation", "style": "materialsymbolsoutlined" },
"explore": { "name": "explore", "style": "materialsymbolsoutlined" },
"apps": { "name": "apps", "style": "materialsymbolsoutlined" },
"layers-clear": { "name": "layers_clear", "style": "materialsymbolsoutlined" },
"style": { "name": "style", "style": "materialsymbolsoutlined" },
"brush": { "name": "brush", "style": "materialsymbolsoutlined" },
"colorize": { "name": "colorize", "style": "materialsymbolsoutlined" },
"filter-vintage": { "name": "filter_vintage", "style": "materialsymbolsoutlined" },
"transform": { "name": "transform", "style": "materialsymbolsoutlined" },
"rotate-left": { "name": "rotate_left", "style": "materialsymbolsoutlined" },
"rotate-right": { "name": "rotate_right", "style": "materialsymbolsoutlined" },
"flip": { "name": "flip", "style": "materialsymbolsoutlined" },
"aspect-ratio": { "name": "aspect_ratio", "style": "materialsymbolsoutlined" },
"view-stream": { "name": "view_stream", "style": "materialsymbolsoutlined" },
"view-module": { "name": "view_module", "style": "materialsymbolsoutlined" },
"window-open": { "name": "open_in_browser", "style": "materialsymbolsoutlined" },
"tab": { "name": "tab", "style": "materialsymbolsoutlined" },
"tab-unselected": { "name": "tab_unselected", "style": "materialsymbolsoutlined" },
"radio-button-unchecked": { "name": "radio_button_unchecked", "style": "materialsymbolsoutlined" },
"account-circle": { "name": "account_circle", "style": "materialsymbolsoutlined" },
"account-box": { "name": "account_box", "style": "materialsymbolsoutlined" },
"admin-panel": { "name": "admin_panel_settings", "style": "materialsymbolsoutlined" },
"group-work": { "name": "group_work", "style": "materialsymbolsoutlined" },
"emoji-events": { "name": "emoji_events", "style": "materialsymbolsoutlined" },
"emoji-objects": { "name": "emoji_objects", "style": "materialsymbolsoutlined" },
"speaker": { "name": "speaker", "style": "materialsymbolsoutlined" },
"headset-mic": { "name": "headset_mic", "style": "materialsymbolsoutlined" },
"queue-music": { "name": "queue_music", "style": "materialsymbolsoutlined" },
"playlist-add": { "name": "playlist_add", "style": "materialsymbolsoutlined" },
"library-books": { "name": "library_books", "style": "materialsymbolsoutlined" },
"shop": { "name": "shop", "style": "materialsymbolsoutlined" },
"storefront": { "name": "storefront", "style": "materialsymbolsoutlined" },
"redeem": { "name": "redeem", "style": "materialsymbolsoutlined" },
"monetization-on": { "name": "monetization_on", "style": "materialsymbolsoutlined" },
"price-check": { "name": "price_check", "style": "materialsymbolsoutlined" },
"currency-exchange": { "name": "currency_exchange", "style": "materialsymbolsoutlined" },
"qr-code-scanner": { "name": "qr_code_scanner", "style": "materialsymbolsoutlined" },
"document-scanner": { "name": "document_scanner", "style": "materialsymbolsoutlined" },
"dynamic-feed": { "name": "dynamic_feed", "style": "materialsymbolsoutlined" },
"hub": { "name": "hub", "style": "materialsymbolsoutlined" },
"lan": { "name": "lan", "style": "materialsymbolsoutlined" },
"api": { "name": "api", "style": "materialsymbolsoutlined" },
"integration-instructions": { "name": "integration_instructions", "style": "materialsymbolsoutlined" },
"tips-and-updates": { "name": "tips_and_updates", "style": "materialsymbolsoutlined" },
"wb-sunny": { "name": "wb_sunny", "style": "materialsymbolsoutlined" },
"nightlight-round": { "name": "nightlight_round", "style": "materialsymbolsoutlined" },
"location-searching": { "name": "location_searching", "style": "materialsymbolsoutlined" },
"near-me": { "name": "near_me", "style": "materialsymbolsoutlined" },
"share-location": { "name": "share_location", "style": "materialsymbolsoutlined" },
"speedometer": { "name": "speed", "style": "materialsymbolsoutlined" },
"timer-off": { "name": "timer_off", "style": "materialsymbolsoutlined" },
"speaker-notes": { "name": "speaker_notes", "style": "materialsymbolsoutlined" },
"reply-all": { "name": "reply_all", "style": "materialsymbolsoutlined" },
"mark-email-read": { "name": "mark_email_read", "style": "materialsymbolsoutlined" }
}
Available SVG Icon Keys
This document provides a reference for all keys available in the icon system.
1. Easy Copy List (All Keys)
PlainText
account, account-box, account-circle, admin-panel, ads-click, alarm, align-center, align-left, align-right, analytics, analytics-check, anchor, api, apps, arrow-back, arrow-down, arrow-forward, arrow-up, aspect-ratio, assignment-ind, attach-money, attachment, audio, auto-fix, back-hand, badge, bar-chart, battery, bluetooth, bold, bookmark, brightness-high, brightness-low, brush, bubble-chart, bug, bug-report, build, business, calendar, call, camera, cast, category, chat, check, check-box, check-box-outline, check-circle, check-circle-outline, chevron-down, chevron-left, chevron-right, chevron-up, close-circle, cloud, cloud-download, cloud-queue, cloud-upload, code, colorize, comment, compare, contact-mail, contact-page, contrast, cpu, credit-card, crop, currency-exchange, dashboard-customize, data-table, data-usage, database, desc-align, developer-mode, document-scanner, donut-large, download, draft, drag-handle, drive-file-move, dynamic-feed, edit, email, emoji, emoji-events, emoji-objects, error, error-outline, explore, external-link, face, fact-check, favorite, feedback, file-copy, file-cut, file-doc, file-image, file-paste, filter, filter-active, filter-list, filter-list-alt, filter-none, filter-vintage, fingerprint, flip, folder, folder-open, folder-shared, folder-zip, forum, fullscreen, fullscreen-exit, gesture, graphic-eq, grid-view-compact, group-add, group-work, headset, headset-mic, help, highlight, history, history-edu, home, hub, indent-decrease, indent-increase, info, input, integration-instructions, inventory, italic, key, keyboard, lan, language, laptop, layers, layers-clear, leaderboard, library-books, lightbulb, lightning-epic, link, list-numbered, local-offer, local-shipping, location, location-searching, lock, loop, mail-outline, map, mark-email-read, memory, menu, mic-off, monetization-on, monitor, moon, mouse, multiline-chart, navigation, near-me, nightlight-round, notification, notification-off, notifications-active, offline-pin, options-horizontal, options-vertical, palette, pan-tool, password, pause, payments, perm-identity, person-add, person-search, pets, phone, pie-chart, play, playlist-add, plus, plus-circle, power, power-input, price-check, print, priority-flag, priority-flag-filled, psychology, published, qr-code, qr-code-scanner, queue-music, quick-reply, radio-button, radio-button-unchecked, receipt, receipt-long, redeem, refresh, report, restart, restaurant, rocket, rocket-launch, rotate-left, rotate-right, router, rule, save, savings, scatter-plot, schedule-send, science, search, search-clear, search-filter, security, security-shield, select-all, selector-arrows, send, send-time, sensors, settings, share, share-location, shop, shopping-cart, show-chart, shuffle, skip-next, skip-previous, smartphone, sort-alpha, sort-arrows, speaker, speaker-notes, speed, speedometer, stacked-bar, status-archive, status-backlog, status-blocked, status-done, status-inprogress, status-review, status-star, status-todo, stop, storage, storefront, style, subtask-list, sun, support, swap-horizontal, sync, sync-problem, tab, tab-unselected, table-rows, tablet, tag, task, terminal, text-format, theme-auto, thumb-up, time-clock, timer, timer-off, tips-and-updates, toggle-off, toggle-on, transform, translate, trash, trending-down, trending-up, tune, tune-sliders, underline, unlock, upload, usb, user, users-group, verified, video, videocam-off, view-board, view-calendar, view-grid, view-list, view-module, view-quilt, view-stream, view-timeline, visibility-hide, visibility-lock, visibility-show, volume, volume-mute, volume-off, vpn-key, warning, warning-amber, wb-sunny, wifi, window-open, work, zoom-in, zoom-out
2. Full Prompt Example
PowerShell
get-svgs "account account-box account-circle admin-panel ads-click alarm align-center align-left align-right analytics analytics-check anchor api apps arrow-back arrow-down arrow-forward arrow-up aspect-ratio assignment-ind attach-money attachment audio auto-fix back-hand badge bar-chart battery bluetooth bold bookmark brightness-high brightness-low brush bubble-chart bug bug-report build business calendar call camera cast category chat check check-box check-box-outline check-circle check-circle-outline chevron-down chevron-left chevron-right chevron-up close-circle cloud cloud-download cloud-queue cloud-upload code colorize comment compare contact-mail contact-page contrast cpu credit-card crop currency-exchange dashboard-customize data-table data-usage database desc-align developer-mode document-scanner donut-large download draft drag-handle drive-file-move dynamic-feed edit email emoji emoji-events emoji-objects error error-outline explore external-link face fact-check favorite feedback file-copy file-cut file-doc file-image file-paste filter filter-active filter-list filter-list-alt filter-none filter-vintage fingerprint flip folder folder-open folder-shared folder-zip forum fullscreen fullscreen-exit gesture graphic-eq grid-view-compact group-add group-work headset headset-mic help highlight history history-edu home hub indent-decrease indent-increase info input integration-instructions inventory italic key keyboard lan language laptop layers layers-clear leaderboard library-books lightbulb lightning-epic link list-numbered local-offer local-shipping location location-searching lock loop mail-outline map mark-email-read memory menu mic-off monetization-on monitor moon mouse multiline-chart navigation near-me nightlight-round notification notification-off notifications-active offline-pin options-horizontal options-vertical palette pan-tool password pause payments perm-identity person-add person-search pets phone pie-chart play playlist-add plus plus-circle power power-input price-check print priority-flag priority-flag-filled psychology published qr-code qr-code-scanner queue-music quick-reply radio-button radio-button-unchecked receipt receipt-long redeem refresh report restart restaurant rocket rocket-launch rotate-left rotate-right router rule save savings scatter-plot schedule-send science search search-clear search-filter security security-shield select-all selector-arrows send send-time sensors settings share share-location shop shopping-cart show-chart shuffle skip-next skip-previous smartphone sort-alpha sort-arrows speaker speaker-notes speed speedometer stacked-bar status-archive status-backlog status-blocked status-done status-inprogress status-review status-star status-todo stop storage storefront style subtask-list sun support swap-horizontal sync sync-problem tab tab-unselected table-rows tablet tag task terminal text-format theme-auto thumb-up time-clock timer timer-off tips-and-updates toggle-off toggle-on transform translate trash trending-down trending-up tune tune-sliders underline unlock upload usb user users-group verified video videocam-off view-board view-calendar view-grid view-list view-module view-quilt view-stream view-timeline visibility-hide visibility-lock visibility-show volume volume-mute volume-off vpn-key warning warning-amber wb-sunny wifi window-open work zoom-in zoom-out" "currentColor"
3. Detailed Reference
| Key | Material Icon Name | Style |
|---|---|---|
| account | $(@{name=manage_accounts; style=materialsymbolsoutlined}.name) | $(@{name=manage_accounts; style=materialsymbolsoutlined}.style) |
| account-box | $(@{name=account_box; style=materialsymbolsoutlined}.name) | $(@{name=account_box; style=materialsymbolsoutlined}.style) |
| account-circle | $(@{name=account_circle; style=materialsymbolsoutlined}.name) | $(@{name=account_circle; style=materialsymbolsoutlined}.style) |
| admin-panel | $(@{name=admin_panel_settings; style=materialsymbolsoutlined}.name) | $(@{name=admin_panel_settings; style=materialsymbolsoutlined}.style) |
| ads-click | $(@{name=ads_click; style=materialsymbolsoutlined}.name) | $(@{name=ads_click; style=materialsymbolsoutlined}.style) |
| alarm | $(@{name=alarm; style=materialsymbolsoutlined}.name) | $(@{name=alarm; style=materialsymbolsoutlined}.style) |
| align-center | $(@{name=format_align_center; style=materialsymbolsoutlined}.name) | $(@{name=format_align_center; style=materialsymbolsoutlined}.style) |
| align-left | $(@{name=format_align_left; style=materialsymbolsoutlined}.name) | $(@{name=format_align_left; style=materialsymbolsoutlined}.style) |
| align-right | $(@{name=format_align_right; style=materialsymbolsoutlined}.name) | $(@{name=format_align_right; style=materialsymbolsoutlined}.style) |
| analytics | $(@{name=analytics; style=materialsymbolsoutlined}.name) | $(@{name=analytics; style=materialsymbolsoutlined}.style) |
| analytics-check | $(@{name=insights; style=materialsymbolsoutlined}.name) | $(@{name=insights; style=materialsymbolsoutlined}.style) |
| anchor | $(@{name=anchor; style=materialsymbolsoutlined}.name) | $(@{name=anchor; style=materialsymbolsoutlined}.style) |
| api | $(@{name=api; style=materialsymbolsoutlined}.name) | $(@{name=api; style=materialsymbolsoutlined}.style) |
| apps | $(@{name=apps; style=materialsymbolsoutlined}.name) | $(@{name=apps; style=materialsymbolsoutlined}.style) |
| arrow-back | $(@{name=arrow_back; style=materialsymbolsoutlined}.name) | $(@{name=arrow_back; style=materialsymbolsoutlined}.style) |
| arrow-down | $(@{name=arrow_downward; style=materialsymbolsoutlined}.name) | $(@{name=arrow_downward; style=materialsymbolsoutlined}.style) |
| arrow-forward | $(@{name=arrow_forward; style=materialsymbolsoutlined}.name) | $(@{name=arrow_forward; style=materialsymbolsoutlined}.style) |
| arrow-up | $(@{name=arrow_upward; style=materialsymbolsoutlined}.name) | $(@{name=arrow_upward; style=materialsymbolsoutlined}.style) |
| aspect-ratio | $(@{name=aspect_ratio; style=materialsymbolsoutlined}.name) | $(@{name=aspect_ratio; style=materialsymbolsoutlined}.style) |
| assignment-ind | $(@{name=assignment_ind; style=materialsymbolsoutlined}.name) | $(@{name=assignment_ind; style=materialsymbolsoutlined}.style) |
| attach-money | $(@{name=attach_money; style=materialsymbolsoutlined}.name) | $(@{name=attach_money; style=materialsymbolsoutlined}.style) |
| attachment | $(@{name=attachment; style=materialsymbolsoutlined}.name) | $(@{name=attachment; style=materialsymbolsoutlined}.style) |
| audio | $(@{name=mic; style=materialsymbolsoutlined}.name) | $(@{name=mic; style=materialsymbolsoutlined}.style) |
| auto-fix | $(@{name=auto_fix_high; style=materialsymbolsoutlined}.name) | $(@{name=auto_fix_high; style=materialsymbolsoutlined}.style) |
| back-hand | $(@{name=back_hand; style=materialsymbolsoutlined}.name) | $(@{name=back_hand; style=materialsymbolsoutlined}.style) |
| badge | $(@{name=badge; style=materialsymbolsoutlined}.name) | $(@{name=badge; style=materialsymbolsoutlined}.style) |
| bar-chart | $(@{name=bar_chart; style=materialsymbolsoutlined}.name) | $(@{name=bar_chart; style=materialsymbolsoutlined}.style) |
| battery | $(@{name=battery_full; style=materialsymbolsoutlined}.name) | $(@{name=battery_full; style=materialsymbolsoutlined}.style) |
| bluetooth | $(@{name=bluetooth; style=materialsymbolsoutlined}.name) | $(@{name=bluetooth; style=materialsymbolsoutlined}.style) |
| bold | $(@{name=format_bold; style=materialsymbolsoutlined}.name) | $(@{name=format_bold; style=materialsymbolsoutlined}.style) |
| bookmark | $(@{name=bookmark; style=materialsymbolsoutlined}.name) | $(@{name=bookmark; style=materialsymbolsoutlined}.style) |
| brightness-high | $(@{name=brightness_high; style=materialsymbolsoutlined}.name) | $(@{name=brightness_high; style=materialsymbolsoutlined}.style) |
| brightness-low | $(@{name=brightness_low; style=materialsymbolsoutlined}.name) | $(@{name=brightness_low; style=materialsymbolsoutlined}.style) |
| brush | $(@{name=brush; style=materialsymbolsoutlined}.name) | $(@{name=brush; style=materialsymbolsoutlined}.style) |
| bubble-chart | $(@{name=bubble_chart; style=materialsymbolsoutlined}.name) | $(@{name=bubble_chart; style=materialsymbolsoutlined}.style) |
| bug | $(@{name=bug_report; style=materialsymbolsoutlined}.name) | $(@{name=bug_report; style=materialsymbolsoutlined}.style) |
| bug-report | $(@{name=bug_report; style=materialsymbolsoutlined}.name) | $(@{name=bug_report; style=materialsymbolsoutlined}.style) |
| build | $(@{name=build; style=materialsymbolsoutlined}.name) | $(@{name=build; style=materialsymbolsoutlined}.style) |
| business | $(@{name=business; style=materialsymbolsoutlined}.name) | $(@{name=business; style=materialsymbolsoutlined}.style) |
| calendar | $(@{name=calendar_today; style=materialsymbolsoutlined}.name) | $(@{name=calendar_today; style=materialsymbolsoutlined}.style) |
| call | $(@{name=call; style=materialsymbolsoutlined}.name) | $(@{name=call; style=materialsymbolsoutlined}.style) |
| camera | $(@{name=camera_alt; style=materialsymbolsoutlined}.name) | $(@{name=camera_alt; style=materialsymbolsoutlined}.style) |
| cast | $(@{name=cast; style=materialsymbolsoutlined}.name) | $(@{name=cast; style=materialsymbolsoutlined}.style) |
| category | $(@{name=category; style=materialsymbolsoutlined}.name) | $(@{name=category; style=materialsymbolsoutlined}.style) |
| chat | $(@{name=chat; style=materialsymbolsoutlined}.name) | $(@{name=chat; style=materialsymbolsoutlined}.style) |
| check | $(@{name=check; style=materialsymbolsoutlined}.name) | $(@{name=check; style=materialsymbolsoutlined}.style) |
| check-box | $(@{name=check_box; style=materialsymbolsoutlined}.name) | $(@{name=check_box; style=materialsymbolsoutlined}.style) |
| check-box-outline | $(@{name=check_box_outline_blank; style=materialsymbolsoutlined}.name) | $(@{name=check_box_outline_blank; style=materialsymbolsoutlined}.style) |
| check-circle | $(@{name=check_circle; style=materialsymbolsoutlined}.name) | $(@{name=check_circle; style=materialsymbolsoutlined}.style) |
| check-circle-outline | $(@{name=check_circle_outline; style=materialsymbolsoutlined}.name) | $(@{name=check_circle_outline; style=materialsymbolsoutlined}.style) |
| chevron-down | $(@{name=expand_more; style=materialsymbolsoutlined}.name) | $(@{name=expand_more; style=materialsymbolsoutlined}.style) |
| chevron-left | $(@{name=chevron_left; style=materialsymbolsoutlined}.name) | $(@{name=chevron_left; style=materialsymbolsoutlined}.style) |
| chevron-right | $(@{name=chevron_right; style=materialsymbolsoutlined}.name) | $(@{name=chevron_right; style=materialsymbolsoutlined}.style) |
| chevron-up | $(@{name=expand_less; style=materialsymbolsoutlined}.name) | $(@{name=expand_less; style=materialsymbolsoutlined}.style) |
| close-circle | $(@{name=cancel; style=materialsymbolsoutlined}.name) | $(@{name=cancel; style=materialsymbolsoutlined}.style) |
| cloud | $(@{name=cloud; style=materialsymbolsoutlined}.name) | $(@{name=cloud; style=materialsymbolsoutlined}.style) |
| cloud-download | $(@{name=cloud_download; style=materialsymbolsoutlined}.name) | $(@{name=cloud_download; style=materialsymbolsoutlined}.style) |
| cloud-queue | $(@{name=cloud_queue; style=materialsymbolsoutlined}.name) | $(@{name=cloud_queue; style=materialsymbolsoutlined}.style) |
| cloud-upload | $(@{name=cloud_upload; style=materialsymbolsoutlined}.name) | $(@{name=cloud_upload; style=materialsymbolsoutlined}.style) |
| code | $(@{name=code; style=materialsymbolsoutlined}.name) | $(@{name=code; style=materialsymbolsoutlined}.style) |
| colorize | $(@{name=colorize; style=materialsymbolsoutlined}.name) | $(@{name=colorize; style=materialsymbolsoutlined}.style) |
| comment | $(@{name=chat_bubble; style=materialsymbolsoutlined}.name) | $(@{name=chat_bubble; style=materialsymbolsoutlined}.style) |
| compare | $(@{name=compare; style=materialsymbolsoutlined}.name) | $(@{name=compare; style=materialsymbolsoutlined}.style) |
| contact-mail | $(@{name=contact_mail; style=materialsymbolsoutlined}.name) | $(@{name=contact_mail; style=materialsymbolsoutlined}.style) |
| contact-page | $(@{name=contact_page; style=materialsymbolsoutlined}.name) | $(@{name=contact_page; style=materialsymbolsoutlined}.style) |
| contrast | $(@{name=contrast; style=materialsymbolsoutlined}.name) | $(@{name=contrast; style=materialsymbolsoutlined}.style) |
| cpu | $(@{name=developer_board; style=materialsymbolsoutlined}.name) | $(@{name=developer_board; style=materialsymbolsoutlined}.style) |
| credit-card | $(@{name=credit_card; style=materialsymbolsoutlined}.name) | $(@{name=credit_card; style=materialsymbolsoutlined}.style) |
| crop | $(@{name=crop; style=materialsymbolsoutlined}.name) | $(@{name=crop; style=materialsymbolsoutlined}.style) |
| currency-exchange | $(@{name=currency_exchange; style=materialsymbolsoutlined}.name) | $(@{name=currency_exchange; style=materialsymbolsoutlined}.style) |
| dashboard-customize | $(@{name=dashboard_customize; style=materialsymbolsoutlined}.name) | $(@{name=dashboard_customize; style=materialsymbolsoutlined}.style) |
| data-table | $(@{name=grid_on; style=materialsymbolsoutlined}.name) | $(@{name=grid_on; style=materialsymbolsoutlined}.style) |
| data-usage | $(@{name=data_usage; style=materialsymbolsoutlined}.name) | $(@{name=data_usage; style=materialsymbolsoutlined}.style) |
| database | $(@{name=database; style=materialsymbolsoutlined}.name) | $(@{name=database; style=materialsymbolsoutlined}.style) |
| desc-align | $(@{name=notes; style=materialsymbolsoutlined}.name) | $(@{name=notes; style=materialsymbolsoutlined}.style) |
| developer-mode | $(@{name=developer_mode; style=materialsymbolsoutlined}.name) | $(@{name=developer_mode; style=materialsymbolsoutlined}.style) |
| document-scanner | $(@{name=document_scanner; style=materialsymbolsoutlined}.name) | $(@{name=document_scanner; style=materialsymbolsoutlined}.style) |
| donut-large | $(@{name=donut_large; style=materialsymbolsoutlined}.name) | $(@{name=donut_large; style=materialsymbolsoutlined}.style) |
| download | $(@{name=download; style=materialsymbolsoutlined}.name) | $(@{name=download; style=materialsymbolsoutlined}.style) |
| draft | $(@{name=draft; style=materialsymbolsoutlined}.name) | $(@{name=draft; style=materialsymbolsoutlined}.style) |
| drag-handle | $(@{name=drag_indicator; style=materialsymbolsoutlined}.name) | $(@{name=drag_indicator; style=materialsymbolsoutlined}.style) |
| drive-file-move | $(@{name=drive_file_move; style=materialsymbolsoutlined}.name) | $(@{name=drive_file_move; style=materialsymbolsoutlined}.style) |
| dynamic-feed | $(@{name=dynamic_feed; style=materialsymbolsoutlined}.name) | $(@{name=dynamic_feed; style=materialsymbolsoutlined}.style) |
| edit | $(@{name=edit; style=materialsymbolsoutlined}.name) | $(@{name=edit; style=materialsymbolsoutlined}.style) |
| $(@{name=mail; style=materialsymbolsoutlined}.name) | $(@{name=mail; style=materialsymbolsoutlined}.style) | |
| emoji | $(@{name=mood; style=materialsymbolsoutlined}.name) | $(@{name=mood; style=materialsymbolsoutlined}.style) |
| emoji-events | $(@{name=emoji_events; style=materialsymbolsoutlined}.name) | $(@{name=emoji_events; style=materialsymbolsoutlined}.style) |
| emoji-objects | $(@{name=emoji_objects; style=materialsymbolsoutlined}.name) | $(@{name=emoji_objects; style=materialsymbolsoutlined}.style) |
| error | $(@{name=error; style=materialsymbolsoutlined}.name) | $(@{name=error; style=materialsymbolsoutlined}.style) |
| error-outline | $(@{name=error_outline; style=materialsymbolsoutlined}.name) | $(@{name=error_outline; style=materialsymbolsoutlined}.style) |
| explore | $(@{name=explore; style=materialsymbolsoutlined}.name) | $(@{name=explore; style=materialsymbolsoutlined}.style) |
| external-link | $(@{name=open_in_new; style=materialsymbolsoutlined}.name) | $(@{name=open_in_new; style=materialsymbolsoutlined}.style) |
| face | $(@{name=face; style=materialsymbolsoutlined}.name) | $(@{name=face; style=materialsymbolsoutlined}.style) |
| fact-check | $(@{name=fact_check; style=materialsymbolsoutlined}.name) | $(@{name=fact_check; style=materialsymbolsoutlined}.style) |
| favorite | $(@{name=favorite; style=materialsymbolsoutlined}.name) | $(@{name=favorite; style=materialsymbolsoutlined}.style) |
| feedback | $(@{name=feedback; style=materialsymbolsoutlined}.name) | $(@{name=feedback; style=materialsymbolsoutlined}.style) |
| file-copy | $(@{name=content_copy; style=materialsymbolsoutlined}.name) | $(@{name=content_copy; style=materialsymbolsoutlined}.style) |
| file-cut | $(@{name=content_cut; style=materialsymbolsoutlined}.name) | $(@{name=content_cut; style=materialsymbolsoutlined}.style) |
| file-doc | $(@{name=description; style=materialsymbolsoutlined}.name) | $(@{name=description; style=materialsymbolsoutlined}.style) |
| file-image | $(@{name=image; style=materialsymbolsoutlined}.name) | $(@{name=image; style=materialsymbolsoutlined}.style) |
| file-paste | $(@{name=content_paste; style=materialsymbolsoutlined}.name) | $(@{name=content_paste; style=materialsymbolsoutlined}.style) |
| filter | $(@{name=filter_alt; style=materialsymbolsoutlined}.name) | $(@{name=filter_alt; style=materialsymbolsoutlined}.style) |
| filter-active | $(@{name=filter_alt_off; style=materialsymbolsoutlined}.name) | $(@{name=filter_alt_off; style=materialsymbolsoutlined}.style) |
| filter-list | $(@{name=view_headline; style=materialsymbolsoutlined}.name) | $(@{name=view_headline; style=materialsymbolsoutlined}.style) |
| filter-list-alt | $(@{name=format_list_bulleted; style=materialsymbolsoutlined}.name) | $(@{name=format_list_bulleted; style=materialsymbolsoutlined}.style) |
| filter-none | $(@{name=filter_none; style=materialsymbolsoutlined}.name) | $(@{name=filter_none; style=materialsymbolsoutlined}.style) |
| filter-vintage | $(@{name=filter_vintage; style=materialsymbolsoutlined}.name) | $(@{name=filter_vintage; style=materialsymbolsoutlined}.style) |
| fingerprint | $(@{name=fingerprint; style=materialsymbolsoutlined}.name) | $(@{name=fingerprint; style=materialsymbolsoutlined}.style) |
| flip | $(@{name=flip; style=materialsymbolsoutlined}.name) | $(@{name=flip; style=materialsymbolsoutlined}.style) |
| folder | $(@{name=folder; style=materialsymbolsoutlined}.name) | $(@{name=folder; style=materialsymbolsoutlined}.style) |
| folder-open | $(@{name=folder_open; style=materialsymbolsoutlined}.name) | $(@{name=folder_open; style=materialsymbolsoutlined}.style) |
| folder-shared | $(@{name=folder_shared; style=materialsymbolsoutlined}.name) | $(@{name=folder_shared; style=materialsymbolsoutlined}.style) |
| folder-zip | $(@{name=folder_zip; style=materialsymbolsoutlined}.name) | $(@{name=folder_zip; style=materialsymbolsoutlined}.style) |
| forum | $(@{name=forum; style=materialsymbolsoutlined}.name) | $(@{name=forum; style=materialsymbolsoutlined}.style) |
| fullscreen | $(@{name=fullscreen; style=materialsymbolsoutlined}.name) | $(@{name=fullscreen; style=materialsymbolsoutlined}.style) |
| fullscreen-exit | $(@{name=fullscreen_exit; style=materialsymbolsoutlined}.name) | $(@{name=fullscreen_exit; style=materialsymbolsoutlined}.style) |
| gesture | $(@{name=gesture; style=materialsymbolsoutlined}.name) | $(@{name=gesture; style=materialsymbolsoutlined}.style) |
| graphic-eq | $(@{name=graphic_eq; style=materialsymbolsoutlined}.name) | $(@{name=graphic_eq; style=materialsymbolsoutlined}.style) |
| grid-view-compact | $(@{name=view_compact; style=materialsymbolsoutlined}.name) | $(@{name=view_compact; style=materialsymbolsoutlined}.style) |
| group-add | $(@{name=group_add; style=materialsymbolsoutlined}.name) | $(@{name=group_add; style=materialsymbolsoutlined}.style) |
| group-work | $(@{name=group_work; style=materialsymbolsoutlined}.name) | $(@{name=group_work; style=materialsymbolsoutlined}.style) |
| headset | $(@{name=headset; style=materialsymbolsoutlined}.name) | $(@{name=headset; style=materialsymbolsoutlined}.style) |
| headset-mic | $(@{name=headset_mic; style=materialsymbolsoutlined}.name) | $(@{name=headset_mic; style=materialsymbolsoutlined}.style) |
| help | $(@{name=help; style=materialsymbolsoutlined}.name) | $(@{name=help; style=materialsymbolsoutlined}.style) |
| highlight | $(@{name=highlight; style=materialsymbolsoutlined}.name) | $(@{name=highlight; style=materialsymbolsoutlined}.style) |
| history | $(@{name=history; style=materialsymbolsoutlined}.name) | $(@{name=history; style=materialsymbolsoutlined}.style) |
| history-edu | $(@{name=history_edu; style=materialsymbolsoutlined}.name) | $(@{name=history_edu; style=materialsymbolsoutlined}.style) |
| home | $(@{name=home; style=materialsymbolsoutlined}.name) | $(@{name=home; style=materialsymbolsoutlined}.style) |
| hub | $(@{name=hub; style=materialsymbolsoutlined}.name) | $(@{name=hub; style=materialsymbolsoutlined}.style) |
| indent-decrease | $(@{name=format_indent_decrease; style=materialsymbolsoutlined}.name) | $(@{name=format_indent_decrease; style=materialsymbolsoutlined}.style) |
| indent-increase | $(@{name=format_indent_increase; style=materialsymbolsoutlined}.name) | $(@{name=format_indent_increase; style=materialsymbolsoutlined}.style) |
| info | $(@{name=info; style=materialsymbolsoutlined}.name) | $(@{name=info; style=materialsymbolsoutlined}.style) |
| input | $(@{name=input; style=materialsymbolsoutlined}.name) | $(@{name=input; style=materialsymbolsoutlined}.style) |
| integration-instructions | $(@{name=integration_instructions; style=materialsymbolsoutlined}.name) | $(@{name=integration_instructions; style=materialsymbolsoutlined}.style) |
| inventory | $(@{name=inventory; style=materialsymbolsoutlined}.name) | $(@{name=inventory; style=materialsymbolsoutlined}.style) |
| italic | $(@{name=format_italic; style=materialsymbolsoutlined}.name) | $(@{name=format_italic; style=materialsymbolsoutlined}.style) |
| key | $(@{name=key; style=materialsymbolsoutlined}.name) | $(@{name=key; style=materialsymbolsoutlined}.style) |
| keyboard | $(@{name=keyboard; style=materialsymbolsoutlined}.name) | $(@{name=keyboard; style=materialsymbolsoutlined}.style) |
| lan | $(@{name=lan; style=materialsymbolsoutlined}.name) | $(@{name=lan; style=materialsymbolsoutlined}.style) |
| language | $(@{name=language; style=materialsymbolsoutlined}.name) | $(@{name=language; style=materialsymbolsoutlined}.style) |
| laptop | $(@{name=laptop; style=materialsymbolsoutlined}.name) | $(@{name=laptop; style=materialsymbolsoutlined}.style) |
| layers | $(@{name=layers; style=materialsymbolsoutlined}.name) | $(@{name=layers; style=materialsymbolsoutlined}.style) |
| layers-clear | $(@{name=layers_clear; style=materialsymbolsoutlined}.name) | $(@{name=layers_clear; style=materialsymbolsoutlined}.style) |
| leaderboard | $(@{name=leaderboard; style=materialsymbolsoutlined}.name) | $(@{name=leaderboard; style=materialsymbolsoutlined}.style) |
| library-books | $(@{name=library_books; style=materialsymbolsoutlined}.name) | $(@{name=library_books; style=materialsymbolsoutlined}.style) |
| lightbulb | $(@{name=lightbulb; style=materialsymbolsoutlined}.name) | $(@{name=lightbulb; style=materialsymbolsoutlined}.style) |
| lightning-epic | $(@{name=bolt; style=materialsymbolsoutlined}.name) | $(@{name=bolt; style=materialsymbolsoutlined}.style) |
| link | $(@{name=link; style=materialsymbolsoutlined}.name) | $(@{name=link; style=materialsymbolsoutlined}.style) |
| list-numbered | $(@{name=format_list_numbered; style=materialsymbolsoutlined}.name) | $(@{name=format_list_numbered; style=materialsymbolsoutlined}.style) |
| local-offer | $(@{name=local_offer; style=materialsymbolsoutlined}.name) | $(@{name=local_offer; style=materialsymbolsoutlined}.style) |
| local-shipping | $(@{name=local_shipping; style=materialsymbolsoutlined}.name) | $(@{name=local_shipping; style=materialsymbolsoutlined}.style) |
| location | $(@{name=location_on; style=materialsymbolsoutlined}.name) | $(@{name=location_on; style=materialsymbolsoutlined}.style) |
| location-searching | $(@{name=location_searching; style=materialsymbolsoutlined}.name) | $(@{name=location_searching; style=materialsymbolsoutlined}.style) |
| lock | $(@{name=lock; style=materialsymbolsoutlined}.name) | $(@{name=lock; style=materialsymbolsoutlined}.style) |
| loop | $(@{name=loop; style=materialsymbolsoutlined}.name) | $(@{name=loop; style=materialsymbolsoutlined}.style) |
| mail-outline | $(@{name=mail_outline; style=materialsymbolsoutlined}.name) | $(@{name=mail_outline; style=materialsymbolsoutlined}.style) |
| map | $(@{name=map; style=materialsymbolsoutlined}.name) | $(@{name=map; style=materialsymbolsoutlined}.style) |
| mark-email-read | $(@{name=mark_email_read; style=materialsymbolsoutlined}.name) | $(@{name=mark_email_read; style=materialsymbolsoutlined}.style) |
| memory | $(@{name=memory; style=materialsymbolsoutlined}.name) | $(@{name=memory; style=materialsymbolsoutlined}.style) |
| menu | $(@{name=menu; style=materialsymbolsoutlined}.name) | $(@{name=menu; style=materialsymbolsoutlined}.style) |
| mic-off | $(@{name=mic_off; style=materialsymbolsoutlined}.name) | $(@{name=mic_off; style=materialsymbolsoutlined}.style) |
| monetization-on | $(@{name=monetization_on; style=materialsymbolsoutlined}.name) | $(@{name=monetization_on; style=materialsymbolsoutlined}.style) |
| monitor | $(@{name=monitor; style=materialsymbolsoutlined}.name) | $(@{name=monitor; style=materialsymbolsoutlined}.style) |
| moon | $(@{name=dark_mode; style=materialsymbolsoutlined}.name) | $(@{name=dark_mode; style=materialsymbolsoutlined}.style) |
| mouse | $(@{name=mouse; style=materialsymbolsoutlined}.name) | $(@{name=mouse; style=materialsymbolsoutlined}.style) |
| multiline-chart | $(@{name=multiline_chart; style=materialsymbolsoutlined}.name) | $(@{name=multiline_chart; style=materialsymbolsoutlined}.style) |
| navigation | $(@{name=navigation; style=materialsymbolsoutlined}.name) | $(@{name=navigation; style=materialsymbolsoutlined}.style) |
| near-me | $(@{name=near_me; style=materialsymbolsoutlined}.name) | $(@{name=near_me; style=materialsymbolsoutlined}.style) |
| nightlight-round | $(@{name=nightlight_round; style=materialsymbolsoutlined}.name) | $(@{name=nightlight_round; style=materialsymbolsoutlined}.style) |
| notification | $(@{name=notifications; style=materialsymbolsoutlined}.name) | $(@{name=notifications; style=materialsymbolsoutlined}.style) |
| notification-off | $(@{name=notifications_off; style=materialsymbolsoutlined}.name) | $(@{name=notifications_off; style=materialsymbolsoutlined}.style) |
| notifications-active | $(@{name=notifications_active; style=materialsymbolsoutlined}.name) | $(@{name=notifications_active; style=materialsymbolsoutlined}.style) |
| offline-pin | $(@{name=offline_pin; style=materialsymbolsoutlined}.name) | $(@{name=offline_pin; style=materialsymbolsoutlined}.style) |
| options-horizontal | $(@{name=more_horiz; style=materialsymbolsoutlined}.name) | $(@{name=more_horiz; style=materialsymbolsoutlined}.style) |
| options-vertical | $(@{name=more_vert; style=materialsymbolsoutlined}.name) | $(@{name=more_vert; style=materialsymbolsoutlined}.style) |
| palette | $(@{name=palette; style=materialsymbolsoutlined}.name) | $(@{name=palette; style=materialsymbolsoutlined}.style) |
| pan-tool | $(@{name=pan_tool; style=materialsymbolsoutlined}.name) | $(@{name=pan_tool; style=materialsymbolsoutlined}.style) |
| password | $(@{name=password; style=materialsymbolsoutlined}.name) | $(@{name=password; style=materialsymbolsoutlined}.style) |
| pause | $(@{name=pause; style=materialsymbolsoutlined}.name) | $(@{name=pause; style=materialsymbolsoutlined}.style) |
| payments | $(@{name=payments; style=materialsymbolsoutlined}.name) | $(@{name=payments; style=materialsymbolsoutlined}.style) |
| perm-identity | $(@{name=perm_identity; style=materialsymbolsoutlined}.name) | $(@{name=perm_identity; style=materialsymbolsoutlined}.style) |
| person-add | $(@{name=person_add; style=materialsymbolsoutlined}.name) | $(@{name=person_add; style=materialsymbolsoutlined}.style) |
| person-search | $(@{name=person_search; style=materialsymbolsoutlined}.name) | $(@{name=person_search; style=materialsymbolsoutlined}.style) |
| pets | $(@{name=pets; style=materialsymbolsoutlined}.name) | $(@{name=pets; style=materialsymbolsoutlined}.style) |
| phone | $(@{name=phone; style=materialsymbolsoutlined}.name) | $(@{name=phone; style=materialsymbolsoutlined}.style) |
| pie-chart | $(@{name=pie_chart; style=materialsymbolsoutlined}.name) | $(@{name=pie_chart; style=materialsymbolsoutlined}.style) |
| play | $(@{name=play_arrow; style=materialsymbolsoutlined}.name) | $(@{name=play_arrow; style=materialsymbolsoutlined}.style) |
| playlist-add | $(@{name=playlist_add; style=materialsymbolsoutlined}.name) | $(@{name=playlist_add; style=materialsymbolsoutlined}.style) |
| plus | $(@{name=add; style=materialsymbolsoutlined}.name) | $(@{name=add; style=materialsymbolsoutlined}.style) |
| plus-circle | $(@{name=add_circle; style=materialsymbolsoutlined}.name) | $(@{name=add_circle; style=materialsymbolsoutlined}.style) |
| power | $(@{name=power_settings_new; style=materialsymbolsoutlined}.name) | $(@{name=power_settings_new; style=materialsymbolsoutlined}.style) |
| power-input | $(@{name=power; style=materialsymbolsoutlined}.name) | $(@{name=power; style=materialsymbolsoutlined}.style) |
| price-check | $(@{name=price_check; style=materialsymbolsoutlined}.name) | $(@{name=price_check; style=materialsymbolsoutlined}.style) |
| $(@{name=print; style=materialsymbolsoutlined}.name) | $(@{name=print; style=materialsymbolsoutlined}.style) | |
| priority-flag | $(@{name=flag; style=materialsymbolsrounded}.name) | $(@{name=flag; style=materialsymbolsrounded}.style) |
| priority-flag-filled | $(@{name=flag; style=materialsymbolssharp}.name) | $(@{name=flag; style=materialsymbolssharp}.style) |
| psychology | $(@{name=psychology; style=materialsymbolsoutlined}.name) | $(@{name=psychology; style=materialsymbolsoutlined}.style) |
| published | $(@{name=published_with_changes; style=materialsymbolsoutlined}.name) | $(@{name=published_with_changes; style=materialsymbolsoutlined}.style) |
| qr-code | $(@{name=qr_code; style=materialsymbolsoutlined}.name) | $(@{name=qr_code; style=materialsymbolsoutlined}.style) |
| qr-code-scanner | $(@{name=qr_code_scanner; style=materialsymbolsoutlined}.name) | $(@{name=qr_code_scanner; style=materialsymbolsoutlined}.style) |
| queue-music | $(@{name=queue_music; style=materialsymbolsoutlined}.name) | $(@{name=queue_music; style=materialsymbolsoutlined}.style) |
| quick-reply | $(@{name=quick_reply; style=materialsymbolsoutlined}.name) | $(@{name=quick_reply; style=materialsymbolsoutlined}.style) |
| radio-button | $(@{name=radio_button_checked; style=materialsymbolsoutlined}.name) | $(@{name=radio_button_checked; style=materialsymbolsoutlined}.style) |
| radio-button-unchecked | $(@{name=radio_button_unchecked; style=materialsymbolsoutlined}.name) | $(@{name=radio_button_unchecked; style=materialsymbolsoutlined}.style) |
| receipt | $(@{name=receipt_long; style=materialsymbolsoutlined}.name) | $(@{name=receipt_long; style=materialsymbolsoutlined}.style) |
| receipt-long | $(@{name=receipt_long; style=materialsymbolsoutlined}.name) | $(@{name=receipt_long; style=materialsymbolsoutlined}.style) |
| redeem | $(@{name=redeem; style=materialsymbolsoutlined}.name) | $(@{name=redeem; style=materialsymbolsoutlined}.style) |
| refresh | $(@{name=refresh; style=materialsymbolsoutlined}.name) | $(@{name=refresh; style=materialsymbolsoutlined}.style) |
| report | $(@{name=report_problem; style=materialsymbolsoutlined}.name) | $(@{name=report_problem; style=materialsymbolsoutlined}.style) |
| restart | $(@{name=restart_alt; style=materialsymbolsoutlined}.name) | $(@{name=restart_alt; style=materialsymbolsoutlined}.style) |
| restaurant | $(@{name=restaurant; style=materialsymbolsoutlined}.name) | $(@{name=restaurant; style=materialsymbolsoutlined}.style) |
| rocket | $(@{name=rocket_launch; style=materialsymbolsoutlined}.name) | $(@{name=rocket_launch; style=materialsymbolsoutlined}.style) |
| rocket-launch | $(@{name=rocket_launch; style=materialsymbolsoutlined}.name) | $(@{name=rocket_launch; style=materialsymbolsoutlined}.style) |
| rotate-left | $(@{name=rotate_left; style=materialsymbolsoutlined}.name) | $(@{name=rotate_left; style=materialsymbolsoutlined}.style) |
| rotate-right | $(@{name=rotate_right; style=materialsymbolsoutlined}.name) | $(@{name=rotate_right; style=materialsymbolsoutlined}.style) |
| router | $(@{name=router; style=materialsymbolsoutlined}.name) | $(@{name=router; style=materialsymbolsoutlined}.style) |
| rule | $(@{name=rule; style=materialsymbolsoutlined}.name) | $(@{name=rule; style=materialsymbolsoutlined}.style) |
| save | $(@{name=save; style=materialsymbolsoutlined}.name) | $(@{name=save; style=materialsymbolsoutlined}.style) |
| savings | $(@{name=savings; style=materialsymbolsoutlined}.name) | $(@{name=savings; style=materialsymbolsoutlined}.style) |
| scatter-plot | $(@{name=scatter_plot; style=materialsymbolsoutlined}.name) | $(@{name=scatter_plot; style=materialsymbolsoutlined}.style) |
| schedule-send | $(@{name=schedule_send; style=materialsymbolsoutlined}.name) | $(@{name=schedule_send; style=materialsymbolsoutlined}.style) |
| science | $(@{name=science; style=materialsymbolsoutlined}.name) | $(@{name=science; style=materialsymbolsoutlined}.style) |
| search | $(@{name=search; style=materialsymbolsoutlined}.name) | $(@{name=search; style=materialsymbolsoutlined}.style) |
| search-clear | $(@{name=close; style=materialsymbolsoutlined}.name) | $(@{name=close; style=materialsymbolsoutlined}.style) |
| search-filter | $(@{name=manage_search; style=materialsymbolsoutlined}.name) | $(@{name=manage_search; style=materialsymbolsoutlined}.style) |
| security | $(@{name=security; style=materialsymbolsoutlined}.name) | $(@{name=security; style=materialsymbolsoutlined}.style) |
| security-shield | $(@{name=shield; style=materialsymbolsoutlined}.name) | $(@{name=shield; style=materialsymbolsoutlined}.style) |
| select-all | $(@{name=select_all; style=materialsymbolsoutlined}.name) | $(@{name=select_all; style=materialsymbolsoutlined}.style) |
| selector-arrows | $(@{name=unfold_more; style=materialsymbolsoutlined}.name) | $(@{name=unfold_more; style=materialsymbolsoutlined}.style) |
| send | $(@{name=send; style=materialsymbolsoutlined}.name) | $(@{name=send; style=materialsymbolsoutlined}.style) |
| send-time | $(@{name=send_time_extension; style=materialsymbolsoutlined}.name) | $(@{name=send_time_extension; style=materialsymbolsoutlined}.style) |
| sensors | $(@{name=sensors; style=materialsymbolsoutlined}.name) | $(@{name=sensors; style=materialsymbolsoutlined}.style) |
| settings | $(@{name=settings; style=materialsymbolsoutlined}.name) | $(@{name=settings; style=materialsymbolsoutlined}.style) |
| share | $(@{name=share; style=materialsymbolsoutlined}.name) | $(@{name=share; style=materialsymbolsoutlined}.style) |
| share-location | $(@{name=share_location; style=materialsymbolsoutlined}.name) | $(@{name=share_location; style=materialsymbolsoutlined}.style) |
| shop | $(@{name=shop; style=materialsymbolsoutlined}.name) | $(@{name=shop; style=materialsymbolsoutlined}.style) |
| shopping-cart | $(@{name=shopping_cart; style=materialsymbolsoutlined}.name) | $(@{name=shopping_cart; style=materialsymbolsoutlined}.style) |
| show-chart | $(@{name=show_chart; style=materialsymbolsoutlined}.name) | $(@{name=show_chart; style=materialsymbolsoutlined}.style) |
| shuffle | $(@{name=shuffle; style=materialsymbolsoutlined}.name) | $(@{name=shuffle; style=materialsymbolsoutlined}.style) |
| skip-next | $(@{name=skip_next; style=materialsymbolsoutlined}.name) | $(@{name=skip_next; style=materialsymbolsoutlined}.style) |
| skip-previous | $(@{name=skip_previous; style=materialsymbolsoutlined}.name) | $(@{name=skip_previous; style=materialsymbolsoutlined}.style) |
| smartphone | $(@{name=smartphone; style=materialsymbolsoutlined}.name) | $(@{name=smartphone; style=materialsymbolsoutlined}.style) |
| sort-alpha | $(@{name=sort_by_alpha; style=materialsymbolsoutlined}.name) | $(@{name=sort_by_alpha; style=materialsymbolsoutlined}.style) |
| sort-arrows | $(@{name=swap_vert; style=materialsymbolsoutlined}.name) | $(@{name=swap_vert; style=materialsymbolsoutlined}.style) |
| speaker | $(@{name=speaker; style=materialsymbolsoutlined}.name) | $(@{name=speaker; style=materialsymbolsoutlined}.style) |
| speaker-notes | $(@{name=speaker_notes; style=materialsymbolsoutlined}.name) | $(@{name=speaker_notes; style=materialsymbolsoutlined}.style) |
| speed | $(@{name=speed; style=materialsymbolsoutlined}.name) | $(@{name=speed; style=materialsymbolsoutlined}.style) |
| speedometer | $(@{name=speed; style=materialsymbolsoutlined}.name) | $(@{name=speed; style=materialsymbolsoutlined}.style) |
| stacked-bar | $(@{name=stacked_bar_chart; style=materialsymbolsoutlined}.name) | $(@{name=stacked_bar_chart; style=materialsymbolsoutlined}.style) |
| status-archive | $(@{name=archive; style=materialsymbolsoutlined}.name) | $(@{name=archive; style=materialsymbolsoutlined}.style) |
| status-backlog | $(@{name=inventory_2; style=materialsymbolsoutlined}.name) | $(@{name=inventory_2; style=materialsymbolsoutlined}.style) |
| status-blocked | $(@{name=block; style=materialsymbolsoutlined}.name) | $(@{name=block; style=materialsymbolsoutlined}.style) |
| status-done | $(@{name=task_alt; style=materialsymbolsoutlined}.name) | $(@{name=task_alt; style=materialsymbolsoutlined}.style) |
| status-inprogress | $(@{name=sync; style=materialsymbolsoutlined}.name) | $(@{name=sync; style=materialsymbolsoutlined}.style) |
| status-review | $(@{name=rate_review; style=materialsymbolsoutlined}.name) | $(@{name=rate_review; style=materialsymbolsoutlined}.style) |
| status-star | $(@{name=star; style=materialsymbolsoutlined}.name) | $(@{name=star; style=materialsymbolsoutlined}.style) |
| status-todo | $(@{name=assignment; style=materialsymbolsoutlined}.name) | $(@{name=assignment; style=materialsymbolsoutlined}.style) |
| stop | $(@{name=stop; style=materialsymbolsoutlined}.name) | $(@{name=stop; style=materialsymbolsoutlined}.style) |
| storage | $(@{name=storage; style=materialsymbolsoutlined}.name) | $(@{name=storage; style=materialsymbolsoutlined}.style) |
| storefront | $(@{name=storefront; style=materialsymbolsoutlined}.name) | $(@{name=storefront; style=materialsymbolsoutlined}.style) |
| style | $(@{name=style; style=materialsymbolsoutlined}.name) | $(@{name=style; style=materialsymbolsoutlined}.style) |
| subtask-list | $(@{name=checklist; style=materialsymbolsoutlined}.name) | $(@{name=checklist; style=materialsymbolsoutlined}.style) |
| sun | $(@{name=light_mode; style=materialsymbolsoutlined}.name) | $(@{name=light_mode; style=materialsymbolsoutlined}.style) |
| support | $(@{name=support_agent; style=materialsymbolsoutlined}.name) | $(@{name=support_agent; style=materialsymbolsoutlined}.style) |
| swap-horizontal | $(@{name=swap_horiz; style=materialsymbolsoutlined}.name) | $(@{name=swap_horiz; style=materialsymbolsoutlined}.style) |
| sync | $(@{name=sync_alt; style=materialsymbolsoutlined}.name) | $(@{name=sync_alt; style=materialsymbolsoutlined}.style) |
| sync-problem | $(@{name=sync_problem; style=materialsymbolsoutlined}.name) | $(@{name=sync_problem; style=materialsymbolsoutlined}.style) |
| tab | $(@{name=tab; style=materialsymbolsoutlined}.name) | $(@{name=tab; style=materialsymbolsoutlined}.style) |
| tab-unselected | $(@{name=tab_unselected; style=materialsymbolsoutlined}.name) | $(@{name=tab_unselected; style=materialsymbolsoutlined}.style) |
| table-rows | $(@{name=table_rows; style=materialsymbolsoutlined}.name) | $(@{name=table_rows; style=materialsymbolsoutlined}.style) |
| tablet | $(@{name=tablet_mac; style=materialsymbolsoutlined}.name) | $(@{name=tablet_mac; style=materialsymbolsoutlined}.style) |
| tag | $(@{name=sell; style=materialsymbolsoutlined}.name) | $(@{name=sell; style=materialsymbolsoutlined}.style) |
| task | $(@{name=task; style=materialsymbolsoutlined}.name) | $(@{name=task; style=materialsymbolsoutlined}.style) |
| terminal | $(@{name=terminal; style=materialsymbolsoutlined}.name) | $(@{name=terminal; style=materialsymbolsoutlined}.style) |
| text-format | $(@{name=text_fields; style=materialsymbolsoutlined}.name) | $(@{name=text_fields; style=materialsymbolsoutlined}.style) |
| theme-auto | $(@{name=desktop_windows; style=materialsymbolsoutlined}.name) | $(@{name=desktop_windows; style=materialsymbolsoutlined}.style) |
| thumb-up | $(@{name=thumb_up; style=materialsymbolsoutlined}.name) | $(@{name=thumb_up; style=materialsymbolsoutlined}.style) |
| time-clock | $(@{name=schedule; style=materialsymbolsoutlined}.name) | $(@{name=schedule; style=materialsymbolsoutlined}.style) |
| timer | $(@{name=timer; style=materialsymbolsoutlined}.name) | $(@{name=timer; style=materialsymbolsoutlined}.style) |
| timer-off | $(@{name=timer_off; style=materialsymbolsoutlined}.name) | $(@{name=timer_off; style=materialsymbolsoutlined}.style) |
| tips-and-updates | $(@{name=tips_and_updates; style=materialsymbolsoutlined}.name) | $(@{name=tips_and_updates; style=materialsymbolsoutlined}.style) |
| toggle-off | $(@{name=toggle_off; style=materialsymbolsoutlined}.name) | $(@{name=toggle_off; style=materialsymbolsoutlined}.style) |
| toggle-on | $(@{name=toggle_on; style=materialsymbolsoutlined}.name) | $(@{name=toggle_on; style=materialsymbolsoutlined}.style) |
| transform | $(@{name=transform; style=materialsymbolsoutlined}.name) | $(@{name=transform; style=materialsymbolsoutlined}.style) |
| translate | $(@{name=translate; style=materialsymbolsoutlined}.name) | $(@{name=translate; style=materialsymbolsoutlined}.style) |
| trash | $(@{name=delete; style=materialsymbolsoutlined}.name) | $(@{name=delete; style=materialsymbolsoutlined}.style) |
| trending-down | $(@{name=trending_down; style=materialsymbolsoutlined}.name) | $(@{name=trending_down; style=materialsymbolsoutlined}.style) |
| trending-up | $(@{name=trending_up; style=materialsymbolsoutlined}.name) | $(@{name=trending_up; style=materialsymbolsoutlined}.style) |
| tune | $(@{name=tune; style=materialsymbolsoutlined}.name) | $(@{name=tune; style=materialsymbolsoutlined}.style) |
| tune-sliders | $(@{name=tune; style=materialsymbolsoutlined}.name) | $(@{name=tune; style=materialsymbolsoutlined}.style) |
| underline | $(@{name=format_underlined; style=materialsymbolsoutlined}.name) | $(@{name=format_underlined; style=materialsymbolsoutlined}.style) |
| unlock | $(@{name=lock_open; style=materialsymbolsoutlined}.name) | $(@{name=lock_open; style=materialsymbolsoutlined}.style) |
| upload | $(@{name=upload; style=materialsymbolsoutlined}.name) | $(@{name=upload; style=materialsymbolsoutlined}.style) |
| usb | $(@{name=usb; style=materialsymbolsoutlined}.name) | $(@{name=usb; style=materialsymbolsoutlined}.style) |
| user | $(@{name=person; style=materialsymbolsoutlined}.name) | $(@{name=person; style=materialsymbolsoutlined}.style) |
| users-group | $(@{name=group; style=materialsymbolsoutlined}.name) | $(@{name=group; style=materialsymbolsoutlined}.style) |
| verified | $(@{name=verified; style=materialsymbolsoutlined}.name) | $(@{name=verified; style=materialsymbolsoutlined}.style) |
| video | $(@{name=videocam; style=materialsymbolsoutlined}.name) | $(@{name=videocam; style=materialsymbolsoutlined}.style) |
| videocam-off | $(@{name=videocam_off; style=materialsymbolsoutlined}.name) | $(@{name=videocam_off; style=materialsymbolsoutlined}.style) |
| view-board | $(@{name=dashboard; style=materialsymbolsoutlined}.name) | $(@{name=dashboard; style=materialsymbolsoutlined}.style) |
| view-calendar | $(@{name=calendar_view_month; style=materialsymbolsoutlined}.name) | $(@{name=calendar_view_month; style=materialsymbolsoutlined}.style) |
| view-grid | $(@{name=grid_view; style=materialsymbolsoutlined}.name) | $(@{name=grid_view; style=materialsymbolsoutlined}.style) |
| view-list | $(@{name=view_list; style=materialsymbolsoutlined}.name) | $(@{name=view_list; style=materialsymbolsoutlined}.style) |
| view-module | $(@{name=view_module; style=materialsymbolsoutlined}.name) | $(@{name=view_module; style=materialsymbolsoutlined}.style) |
| view-quilt | $(@{name=view_quilt; style=materialsymbolsoutlined}.name) | $(@{name=view_quilt; style=materialsymbolsoutlined}.style) |
| view-stream | $(@{name=view_stream; style=materialsymbolsoutlined}.name) | $(@{name=view_stream; style=materialsymbolsoutlined}.style) |
| view-timeline | $(@{name=timeline; style=materialsymbolsoutlined}.name) | $(@{name=timeline; style=materialsymbolsoutlined}.style) |
| visibility-hide | $(@{name=visibility_off; style=materialsymbolsoutlined}.name) | $(@{name=visibility_off; style=materialsymbolsoutlined}.style) |
| visibility-lock | $(@{name=visibility_lock; style=materialsymbolsoutlined}.name) | $(@{name=visibility_lock; style=materialsymbolsoutlined}.style) |
| visibility-show | $(@{name=visibility; style=materialsymbolsoutlined}.name) | $(@{name=visibility; style=materialsymbolsoutlined}.style) |
| volume | $(@{name=volume_up; style=materialsymbolsoutlined}.name) | $(@{name=volume_up; style=materialsymbolsoutlined}.style) |
| volume-mute | $(@{name=volume_mute; style=materialsymbolsoutlined}.name) | $(@{name=volume_mute; style=materialsymbolsoutlined}.style) |
| volume-off | $(@{name=volume_off; style=materialsymbolsoutlined}.name) | $(@{name=volume_off; style=materialsymbolsoutlined}.style) |
| vpn-key | $(@{name=vpn_key; style=materialsymbolsoutlined}.name) | $(@{name=vpn_key; style=materialsymbolsoutlined}.style) |
| warning | $(@{name=warning; style=materialsymbolsoutlined}.name) | $(@{name=warning; style=materialsymbolsoutlined}.style) |
| warning-amber | $(@{name=warning_amber; style=materialsymbolsoutlined}.name) | $(@{name=warning_amber; style=materialsymbolsoutlined}.style) |
| wb-sunny | $(@{name=wb_sunny; style=materialsymbolsoutlined}.name) | $(@{name=wb_sunny; style=materialsymbolsoutlined}.style) |
| wifi | $(@{name=wifi; style=materialsymbolsoutlined}.name) | $(@{name=wifi; style=materialsymbolsoutlined}.style) |
| window-open | $(@{name=open_in_browser; style=materialsymbolsoutlined}.name) | $(@{name=open_in_browser; style=materialsymbolsoutlined}.style) |
| work | $(@{name=work; style=materialsymbolsoutlined}.name) | $(@{name=work; style=materialsymbolsoutlined}.style) |
| zoom-in | $(@{name=zoom_in; style=materialsymbolsoutlined}.name) | $(@{name=zoom_in; style=materialsymbolsoutlined}.style) |
| zoom-out | $(@{name=zoom_out; style=materialsymbolsoutlined}.name) | $(@{name=zoom_out; style=materialsymbolsoutlined}.style) |