Memoized fetch SVG icons from many popular icon sets with editor autocomplete and a Web Component ready to use
# app
Try it live
# view source
example/app.tsx
/** @jsxImportSource html-vdom */
import { render } from 'html-vdom'
import { IconSvg } from 'icon-svg'
document.body.className = 'dark'
const cssStyle = /*css*/ `
body {
background: #eee;
color: #222;
}
body.dark {
background: #272727;
color: #eee;
}
@media (prefers-color-scheme: dark) {
body:not(.light) {
background: #272727;
color: #eee;
}
}
${IconSvg} {
width: 32px;
height: 32px;
margin: 2px;
stroke-width: 2.5px;
}
.medium ${IconSvg} {
width: 24px;
height: 24px;
stroke-width: 1.9px;
}
.small ${IconSvg} {
width: 16px;
height: 16px;
stroke-width: 1.1px;
}
`
const style = document.createElement('style')
style.textContent = cssStyle
document.head.appendChild(style)
const AllSets = () => (
<>
<IconSvg set="bytesize" icon="camera" />
<IconSvg set="bootstrap" icon="calendar3" />
<IconSvg set="bootstrap" icon="rss" />
<IconSvg set="bootstrap" icon="peace" />
<IconSvg set="boxicons" type="logos" icon="javascript" />
<IconSvg set="boxicons" type="logos" icon="internet-explorer" />
<IconSvg set="boxicons" type="regular" icon="alarm" />
<IconSvg set="boxicons" type="regular" icon="pencil" />
<IconSvg set="boxicons" type="solid" icon="alarm" />
<IconSvg set="boxicons" type="solid" icon="pencil" />
<IconSvg set="bytesize" icon="book" />
<IconSvg set="bytesize" icon="video" />
<IconSvg set="bytesize" icon="moon" />
<IconSvg set="cssgg" icon="calendar-dates" />
<IconSvg set="cssgg" icon="log-out" />
<IconSvg set="cssgg" icon="magnet" />
<IconSvg set="emojicc" icon="oncomingTaxi" />
<IconSvg set="emojicc" icon="paperclip" />
<IconSvg set="emojicc" icon="handSplayedTone5" />
<IconSvg set="eos" type="solid" icon="car_rental" />
<IconSvg set="eos" type="solid" icon="chat_bubble" />
<IconSvg set="eos" type="solid" icon="biotech" />
<IconSvg set="eos" type="outlined" icon="car_rental" />
<IconSvg set="eos" type="outlined" icon="chat_bubble" />
<IconSvg set="eos" type="outlined" icon="biotech" />
{/* <IconSvg set="eos" type="animated" icon="compass" /> */}
<IconSvg set="feather" icon="compass" />
<IconSvg set="feather" icon="mail" />
<IconSvg set="feather" icon="gift" />
<IconSvg set="flags" icon="ua" kind="4x3" />
<IconSvg set="flags" icon="ru" kind="4x3" />
<IconSvg set="fontawesome" type="brands" icon="java" />
<IconSvg set="fontawesome" type="regular" icon="compass" />
<IconSvg set="fontawesome" type="solid" icon="compass" />
<IconSvg set="iconoir" icon="cart" />
<IconSvg set="iconoir" icon="github" />
<IconSvg set="iconoir" icon="fingerprint" />
<IconSvg set="iconpark" type="Abstract" icon="cube" />
<IconSvg set="iconpark" type="Arrows" icon="download" />
<IconSvg set="iconpark" type="Base" icon="dislike" />
<IconSvg set="iconpark" type="Books" icon="book" />
<IconSvg set="iconpark" type="Brand" icon="mitsubishi" />
<IconSvg set="iconpark" type="Build" icon="arc-de-triomphe" />
<IconSvg set="iconpark" type="Character" icon="bitcoin" />
<IconSvg set="iconpark" type="Charts" icon="chart-graph" />
<IconSvg set="iconpark" type="Child" icon="heart-ballon" />
<IconSvg set="iconpark" type="Clothes" icon="bow" />
<IconSvg set="iconpark" type="Communicate" icon="message-unread" />
<IconSvg set="iconpark" type="Connect" icon="branch-one" />
<IconSvg set="iconpark" type="Datas" icon="database-code" />
<IconSvg set="iconpark" type="Edit" icon="calendar" />
<IconSvg set="iconpark" type="Emoji" icon="dizzy-face" />
<IconSvg set="iconpark" type="Foods" icon="banana" />
<IconSvg set="iconpark" type="Graphics" icon="hexagon-one" />
<IconSvg set="iconpark" type="Hands" icon="spider-man" />
<IconSvg set="iconpark" type="Hardware" icon="chip" />
<IconSvg set="iconpark" type="Health" icon="mask" />
<IconSvg set="iconpark" type="Industry" icon="oscillator" />
<IconSvg set="iconpark" type="Life" icon="beach-umbrella" />
<IconSvg set="iconpark" type="Makeups" icon="scissors" />
<IconSvg set="iconpark" type="Money" icon="blockchain" />
<IconSvg set="iconpark" type="Music" icon="fm" />
<IconSvg set="iconpark" type="Office" icon="file-code" />
<IconSvg set="iconpark" type="Operate" icon="radio-two" />
<IconSvg set="iconpark" type="Others" icon="checklist" />
<IconSvg set="iconpark" type="Peoples" icon="user" />
<IconSvg set="iconpark" type="Sports" icon="black-eight" />
<IconSvg set="iconpark" type="Time" icon="alarm-clock" />
<IconSvg set="iconpark" type="Travel" icon="aviation" />
<IconSvg set="iconpark" type="Weather" icon="snow" />
<IconSvg set="phosphor" type="regular" icon="bezier-curve" />
<IconSvg set="phosphor" type="regular" icon="alarm" />
<IconSvg set="phosphor" type="regular" icon="airplane-takeoff" />
</>
)
render(
<>
<button onclick={() => (document.body.className = 'light')}>light</button>
<button onclick={() => (document.body.className = 'dark')}>dark</button>
<div id="demo" style="width:435px">
<div class="large">
<AllSets />
</div>
<div class="medium">
<AllSets />
</div>
<div class="small">
<AllSets />
</div>
</div>
</>,
document.body
)
# IconSvgElement
# $
Context<IconSvgElement & JsxContext<IconSvgElement> & {
<T extends Class<T>>(ctor)  =>
- CleanClass<T>
<T>(ctx) Â =>
- ElementWrapper<T>
<T extends Reactive<any>>(ctx)  =>
- ReactiveWrapper<T>
}>
# context
ContextClass<IconSvgElement & JsxContext<IconSvgElement> & {
<T extends Class<T>>(ctor)  =>
- CleanClass<T>
<T>(ctx) Â =>
- ElementWrapper<T>
<T extends Reactive<any>>(ctx)  =>
- ReactiveWrapper<T>
}>
# onmounted
EventHandler<IconSvgElement, CustomEvent<any>>
# onunmounted
EventHandler<IconSvgElement, CustomEvent<any>>
# created
(ctx)
# ctx
Context<IconSvgElement & JsxContext<IconSvgElement> & {
<T extends Class<T>>(ctor)  =>
- CleanClass<T>
<T>(ctx) Â =>
- ElementWrapper<T>
<T extends Reactive<any>>(ctx)  =>
- ReactiveWrapper<T>
}>
created(ctx) Â =>
- void
# mounted
(ctx)
# ctx
Context<IconSvgElement & JsxContext<IconSvgElement> & {
<T extends Class<T>>(ctor)  =>
- CleanClass<T>
<T>(ctx) Â =>
- ElementWrapper<T>
<T extends Reactive<any>>(ctx)  =>
- ReactiveWrapper<T>
}>
mounted(ctx) Â =>
- void
# on
(name)
on<K>(name) Â =>
- On<Fn<[ EventHandler<IconSvgElement, LifecycleEvents & object [K]> ], Off>>
# IconTypes
# iconpark
"Datas"
| "Connect"
| "Communicate"
| "Clothes"
| "Child"
| "Charts"
| "Character"
| "Build"
| "Brand"
| "Books"
| "Base"
| "Arrows"
| "Abstract"
| "Edit"
| "Emoji"
| "Foods"
| "Graphics"
| "Hands"
| "Hardware"
| "Health"
| "Industry"
| "Life"
| "Makeups"
| "Money"
| "Music"
| "Office"
| "Operate"
| "Others"
| "Peoples"
| "Sports"
| "Time"
| "Travel"
| "Weather"
# Icons
# bootstrap
"123"
| "activity"
| "alarm"
| "alarm-fill"
| "align-bottom"
| "align-center"
| "align-end"
| "align-middle"
| "align-start"
| "align-top"
| "alt"
| "app"
| "app-indicator"
| "apple"
| "archive"
| "archive-fill"
| "arrow-90deg-down"
| "arrow-90deg-left"
| "arrow-90deg-right"
| "arrow-90deg-up"
| "arrow-bar-down"
| "arrow-bar-left"
| "arrow-bar-right"
| "arrow-bar-up"
| "arrow-clockwise"
| "arrow-counterclockwise"
| "arrow-down"
| "arrow-down-circle"
| "arrow-down-circle-fill"
| "arrow-down-left"
| "arrow-down-left-circle"
| "arrow-down-left-circle-fill"
| "arrow-down-left-square"
| "arrow-down-left-square-fill"
| "arrow-down-right"
| "arrow-down-right-circle"
| "arrow-down-right-circle-fill"
| "arrow-down-right-square"
| "arrow-down-right-square-fill"
| "arrow-down-short"
| "arrow-down-square"
| "arrow-down-square-fill"
| "arrow-down-up"
| "arrow-left"
| "arrow-left-circle"
| "arrow-left-circle-fill"
| "arrow-left-right"
| "arrow-left-short"
| "arrow-left-square"
| "arrow-left-square-fill"
| "arrow-repeat"
| "arrow-return-left"
| "arrow-return-right"
| "arrow-right"
| "arrow-right-circle"
| "arrow-right-circle-fill"
| "arrow-right-short"
| "arrow-right-square"
| "arrow-right-square-fill"
| "arrow-through-heart"
| "arrow-through-heart-fill"
| "arrow-up"
| "arrow-up-circle"
| "arrow-up-circle-fill"
| "arrow-up-left"
| "arrow-up-left-circle"
| "arrow-up-left-circle-fill"
| "arrow-up-left-square"
| "arrow-up-left-square-fill"
| "arrow-up-right"
| "arrow-up-right-circle"
| "arrow-up-right-circle-fill"
| "arrow-up-right-square"
| "arrow-up-right-square-fill"
| "arrow-up-short"
| "arrow-up-square"
| "arrow-up-square-fill"
| "arrows-angle-contract"
| "arrows-angle-expand"
| "arrows-collapse"
| "arrows-expand"
| "arrows-fullscreen"
| "arrows-move"
| "aspect-ratio"
| "aspect-ratio-fill"
| "asterisk"
| "at"
| "award"
| "award-fill"
| "back"
| "backspace"
| "backspace-fill"
| "backspace-reverse"
| "backspace-reverse-fill"
| "badge-3d"
| "badge-3d-fill"
| "badge-4k"
| "badge-4k-fill"
| "badge-8k"
| "badge-8k-fill"
| "badge-ad"
| "badge-ad-fill"
| "badge-ar"
| "badge-ar-fill"
| "badge-cc"
| "badge-cc-fill"
| "badge-hd"
| "badge-hd-fill"
| "badge-sd"
| "badge-sd-fill"
| "badge-tm"
| "badge-tm-fill"
| "badge-vo"
| "badge-vo-fill"
| "badge-vr"
| "badge-vr-fill"
| "badge-wc"
| "badge-wc-fill"
| "bag"
| "bag-check"
| "bag-check-fill"
| "bag-dash"
| "bag-dash-fill"
| "bag-fill"
| "bag-heart"
| "bag-heart-fill"
| "bag-plus"
| "bag-plus-fill"
| "bag-x"
| "bag-x-fill"
| "balloon"
| "balloon-fill"
| "balloon-heart"
| "balloon-heart-fill"
| "bandaid"
| "bandaid-fill"
| "bank"
| "bank2"
| "bar-chart"
| "bar-chart-fill"
| "bar-chart-line"
| "bar-chart-line-fill"
| "bar-chart-steps"
| "basket"
| "basket-fill"
| "basket2"
| "basket2-fill"
| "basket3"
| "basket3-fill"
| "battery"
| "battery-charging"
| "battery-full"
| "battery-half"
| "behance"
| "bell"
| "bell-fill"
| "bell-slash"
| "bell-slash-fill"
| "bezier"
| "bezier2"
| "bicycle"
| "binoculars"
| "binoculars-fill"
| "blockquote-left"
| "blockquote-right"
| "bluetooth"
| "body-text"
| "book"
| "book-fill"
| "book-half"
| "bookmark"
| "bookmark-check"
| "bookmark-check-fill"
| "bookmark-dash"
| "bookmark-dash-fill"
| "bookmark-fill"
| "bookmark-heart"
| "bookmark-heart-fill"
| "bookmark-plus"
| "bookmark-plus-fill"
| "bookmark-star"
| "bookmark-star-fill"
| "bookmark-x"
| "bookmark-x-fill"
| "bookmarks"
| "bookmarks-fill"
| "bookshelf"
| "boombox"
| "boombox-fill"
| "bootstrap"
| "bootstrap-fill"
| "bootstrap-reboot"
| "border"
| "border-all"
| "border-bottom"
| "border-center"
| "border-inner"
| "border-left"
| "border-middle"
| "border-outer"
| "border-right"
| "border-style"
| "border-top"
| "border-width"
| "bounding-box"
| "bounding-box-circles"
| "box"
| "box-arrow-down"
| "box-arrow-down-left"
| "box-arrow-down-right"
| "box-arrow-in-down"
| "box-arrow-in-down-left"
| "box-arrow-in-down-right"
| "box-arrow-in-left"
| "box-arrow-in-right"
| "box-arrow-in-up"
| "box-arrow-in-up-left"
| "box-arrow-in-up-right"
| "box-arrow-left"
| "box-arrow-right"
| "box-arrow-up"
| "box-arrow-up-left"
| "box-arrow-up-right"
| "box-seam"
| "box2"
| "box2-fill"
| "box2-heart"
| "box2-heart-fill"
| "boxes"
| "braces"
| "braces-asterisk"
| "bricks"
| "briefcase"
| "briefcase-fill"
| "brightness-alt-high"
| "brightness-alt-high-fill"
| "brightness-alt-low"
| "brightness-alt-low-fill"
| "brightness-high"
| "brightness-high-fill"
| "brightness-low"
| "brightness-low-fill"
| "broadcast"
| "broadcast-pin"
| "brush"
| "brush-fill"
| "bucket"
| "bucket-fill"
| "bug"
| "bug-fill"
| "building"
| "bullseye"
| "calculator"
| "calculator-fill"
| "calendar"
| "calendar-check"
| "calendar-check-fill"
| "calendar-date"
| "calendar-date-fill"
| "calendar-day"
| "calendar-day-fill"
| "calendar-event"
| "calendar-event-fill"
| "calendar-fill"
| "calendar-heart"
| "calendar-heart-fill"
| "calendar-minus"
| "calendar-minus-fill"
| "calendar-month"
| "calendar-month-fill"
| "calendar-plus"
| "calendar-plus-fill"
| "calendar-range"
| "calendar-range-fill"
| "calendar-week"
| "calendar-week-fill"
| "calendar-x"
| "calendar-x-fill"
| "calendar2"
| "calendar2-check"
| "calendar2-check-fill"
| "calendar2-date"
| "calendar2-date-fill"
| "calendar2-day"
| "calendar2-day-fill"
| "calendar2-event"
| "calendar2-event-fill"
| "calendar2-fill"
| "calendar2-heart"
| "calendar2-heart-fill"
| "calendar2-minus"
| "calendar2-minus-fill"
| "calendar2-month"
| "calendar2-month-fill"
| "calendar2-plus"
| "calendar2-plus-fill"
| "calendar2-range"
| "calendar2-range-fill"
| "calendar2-week"
| "calendar2-week-fill"
| "calendar2-x"
| "calendar2-x-fill"
| "calendar3"
| "calendar3-event"
| "calendar3-event-fill"
| "calendar3-fill"
| "calendar3-range"
| "calendar3-range-fill"
| "calendar3-week"
| "calendar3-week-fill"
| "calendar4"
| "calendar4-event"
| "calendar4-range"
| "calendar4-week"
| "camera"
| "camera-fill"
| "camera-reels"
| "camera-reels-fill"
| "camera-video"
| "camera-video-fill"
| "camera-video-off"
| "camera-video-off-fill"
| "camera2"
| "capslock"
| "capslock-fill"
| "card-checklist"
| "card-heading"
| "card-image"
| "card-list"
| "card-text"
| "caret-down"
| "caret-down-fill"
| "caret-down-square"
| "caret-down-square-fill"
| "caret-left"
| "caret-left-fill"
| "caret-left-square"
| "caret-left-square-fill"
| "caret-right"
| "caret-right-fill"
| "caret-right-square"
| "caret-right-square-fill"
| "caret-up"
| "caret-up-fill"
| "caret-up-square"
| "caret-up-square-fill"
| "cart"
| "cart-check"
| "cart-check-fill"
| "cart-dash"
| "cart-dash-fill"
| "cart-fill"
| "cart-plus"
| "cart-plus-fill"
| "cart-x"
| "cart-x-fill"
| "cart2"
| "cart3"
| "cart4"
| "cash"
| "cash-coin"
| "cash-stack"
| "cast"
| "chat"
| "chat-dots"
| "chat-dots-fill"
| "chat-fill"
| "chat-heart"
| "chat-heart-fill"
| "chat-left"
| "chat-left-dots"
| "chat-left-dots-fill"
| "chat-left-fill"
| "chat-left-heart"
| "chat-left-heart-fill"
| "chat-left-quote"
| "chat-left-quote-fill"
| "chat-left-text"
| "chat-left-text-fill"
| "chat-quote"
| "chat-quote-fill"
| "chat-right"
| "chat-right-dots"
| "chat-right-dots-fill"
| "chat-right-fill"
| "chat-right-heart"
| "chat-right-heart-fill"
| "chat-right-quote"
| "chat-right-quote-fill"
| "chat-right-text"
| "chat-right-text-fill"
| "chat-square"
| "chat-square-dots"
| "chat-square-dots-fill"
| "chat-square-fill"
| "chat-square-heart"
| "chat-square-heart-fill"
| "chat-square-quote"
| "chat-square-quote-fill"
| "chat-square-text"
| "chat-square-text-fill"
| "chat-text"
| "chat-text-fill"
| "check"
| "check-all"
| "check-circle"
| "check-circle-fill"
| "check-lg"
| "check-square"
| "check-square-fill"
| "check2"
| "check2-all"
| "check2-circle"
| "check2-square"
| "chevron-bar-contract"
| "chevron-bar-down"
| "chevron-bar-expand"
| "chevron-bar-left"
| "chevron-bar-right"
| "chevron-bar-up"
| "chevron-compact-down"
| "chevron-compact-left"
| "chevron-compact-right"
| "chevron-compact-up"
| "chevron-contract"
| "chevron-double-down"
| "chevron-double-left"
| "chevron-double-right"
| "chevron-double-up"
| "chevron-down"
| "chevron-expand"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "circle"
| "circle-fill"
| "circle-half"
| "circle-square"
| "clipboard"
| "clipboard-check"
| "clipboard-check-fill"
| "clipboard-data"
| "clipboard-data-fill"
| "clipboard-fill"
| "clipboard-heart"
| "clipboard-heart-fill"
| "clipboard-minus"
| "clipboard-minus-fill"
| "clipboard-plus"
| "clipboard-plus-fill"
| "clipboard-pulse"
| "clipboard-x"
| "clipboard-x-fill"
| "clipboard2"
| "clipboard2-check"
| "clipboard2-check-fill"
| "clipboard2-data"
| "clipboard2-data-fill"
| "clipboard2-fill"
| "clipboard2-heart"
| "clipboard2-heart-fill"
| "clipboard2-minus"
| "clipboard2-minus-fill"
| "clipboard2-plus"
| "clipboard2-plus-fill"
| "clipboard2-pulse"
| "clipboard2-pulse-fill"
| "clipboard2-x"
| "clipboard2-x-fill"
| "clock"
| "clock-fill"
| "clock-history"
| "cloud"
| "cloud-arrow-down"
| "cloud-arrow-down-fill"
| "cloud-arrow-up"
| "cloud-arrow-up-fill"
| "cloud-check"
| "cloud-check-fill"
| "cloud-download"
| "cloud-download-fill"
| "cloud-drizzle"
| "cloud-drizzle-fill"
| "cloud-fill"
| "cloud-fog"
| "cloud-fog-fill"
| "cloud-fog2"
| "cloud-fog2-fill"
| "cloud-hail"
| "cloud-hail-fill"
| "cloud-haze"
| "cloud-haze-fill"
| "cloud-haze2"
| "cloud-haze2-fill"
| "cloud-lightning"
| "cloud-lightning-fill"
| "cloud-lightning-rain"
| "cloud-lightning-rain-fill"
| "cloud-minus"
| "cloud-minus-fill"
| "cloud-moon"
| "cloud-moon-fill"
| "cloud-plus"
| "cloud-plus-fill"
| "cloud-rain"
| "cloud-rain-fill"
| "cloud-rain-heavy"
| "cloud-rain-heavy-fill"
| "cloud-slash"
| "cloud-slash-fill"
| "cloud-sleet"
| "cloud-sleet-fill"
| "cloud-snow"
| "cloud-snow-fill"
| "cloud-sun"
| "cloud-sun-fill"
| "cloud-upload"
| "cloud-upload-fill"
| "clouds"
| "clouds-fill"
| "cloudy"
| "cloudy-fill"
| "code"
| "code-slash"
| "code-square"
| "coin"
| "collection"
| "collection-fill"
| "collection-play"
| "collection-play-fill"
| "columns"
| "columns-gap"
| "command"
| "compass"
| "compass-fill"
| "cone"
| "cone-striped"
| "controller"
| "cpu"
| "cpu-fill"
| "credit-card"
| "credit-card-2-back"
| "credit-card-2-back-fill"
| "credit-card-2-front"
| "credit-card-2-front-fill"
| "credit-card-fill"
| "crop"
| "cup"
| "cup-fill"
| "cup-straw"
| "currency-bitcoin"
| "currency-dollar"
| "currency-euro"
| "currency-exchange"
| "currency-pound"
| "currency-yen"
| "cursor"
| "cursor-fill"
| "cursor-text"
| "dash"
| "dash-circle"
| "dash-circle-dotted"
| "dash-circle-fill"
| "dash-lg"
| "dash-square"
| "dash-square-dotted"
| "dash-square-fill"
| "device-hdd"
| "device-hdd-fill"
| "device-ssd"
| "device-ssd-fill"
| "diagram-2"
| "diagram-2-fill"
| "diagram-3"
| "diagram-3-fill"
| "diamond"
| "diamond-fill"
| "diamond-half"
| "dice-1"
| "dice-1-fill"
| "dice-2"
| "dice-2-fill"
| "dice-3"
| "dice-3-fill"
| "dice-4"
| "dice-4-fill"
| "dice-5"
| "dice-5-fill"
| "dice-6"
| "dice-6-fill"
| "disc"
| "disc-fill"
| "discord"
| "display"
| "display-fill"
| "displayport"
| "displayport-fill"
| "distribute-horizontal"
| "distribute-vertical"
| "door-closed"
| "door-closed-fill"
| "door-open"
| "door-open-fill"
| "dot"
| "download"
| "dpad"
| "dpad-fill"
| "dribbble"
| "droplet"
| "droplet-fill"
| "droplet-half"
| "ear"
| "ear-fill"
| "earbuds"
| "easel"
| "easel-fill"
| "easel2"
| "easel2-fill"
| "easel3"
| "easel3-fill"
| "egg"
| "egg-fill"
| "egg-fried"
| "eject"
| "eject-fill"
| "emoji-angry"
| "emoji-angry-fill"
| "emoji-dizzy"
| "emoji-dizzy-fill"
| "emoji-expressionless"
| "emoji-expressionless-fill"
| "emoji-frown"
| "emoji-frown-fill"
| "emoji-heart-eyes"
| "emoji-heart-eyes-fill"
| "emoji-kiss"
| "emoji-kiss-fill"
| "emoji-laughing"
| "emoji-laughing-fill"
| "emoji-neutral"
| "emoji-neutral-fill"
| "emoji-smile"
| "emoji-smile-fill"
| "emoji-smile-upside-down"
| "emoji-smile-upside-down-fill"
| "emoji-sunglasses"
| "emoji-sunglasses-fill"
| "emoji-wink"
| "emoji-wink-fill"
| "envelope"
| "envelope-check"
| "envelope-check-fill"
| "envelope-dash"
| "envelope-dash-fill"
| "envelope-exclamation"
| "envelope-exclamation-fill"
| "envelope-fill"
| "envelope-heart"
| "envelope-heart-fill"
| "envelope-open"
| "envelope-open-fill"
| "envelope-open-heart"
| "envelope-open-heart-fill"
| "envelope-paper"
| "envelope-paper-fill"
| "envelope-paper-heart"
| "envelope-paper-heart-fill"
| "envelope-plus"
| "envelope-plus-fill"
| "envelope-slash"
| "envelope-slash-fill"
| "envelope-x"
| "envelope-x-fill"
| "eraser"
| "eraser-fill"
| "ethernet"
| "exclamation"
| "exclamation-circle"
| "exclamation-circle-fill"
| "exclamation-diamond"
| "exclamation-diamond-fill"
| "exclamation-lg"
| "exclamation-octagon"
| "exclamation-octagon-fill"
| "exclamation-square"
| "exclamation-square-fill"
| "exclamation-triangle"
| "exclamation-triangle-fill"
| "exclude"
| "explicit"
| "explicit-fill"
| "eye"
| "eye-fill"
| "eye-slash"
| "eye-slash-fill"
| "eyedropper"
| "eyeglasses"
| "facebook"
| "fan"
| "file"
| "file-arrow-down"
| "file-arrow-down-fill"
| "file-arrow-up"
| "file-arrow-up-fill"
| "file-bar-graph"
| "file-bar-graph-fill"
| "file-binary"
| "file-binary-fill"
| "file-break"
| "file-break-fill"
| "file-check"
| "file-check-fill"
| "file-code"
| "file-code-fill"
| "file-diff"
| "file-diff-fill"
| "file-earmark"
| "file-earmark-arrow-down"
| "file-earmark-arrow-down-fill"
| "file-earmark-arrow-up"
| "file-earmark-arrow-up-fill"
| "file-earmark-bar-graph"
| "file-earmark-bar-graph-fill"
| "file-earmark-binary"
| "file-earmark-binary-fill"
| "file-earmark-break"
| "file-earmark-break-fill"
| "file-earmark-check"
| "file-earmark-check-fill"
| "file-earmark-code"
| "file-earmark-code-fill"
| "file-earmark-diff"
| "file-earmark-diff-fill"
| "file-earmark-easel"
| "file-earmark-easel-fill"
| "file-earmark-excel"
| "file-earmark-excel-fill"
| "file-earmark-fill"
| "file-earmark-font"
| "file-earmark-font-fill"
| "file-earmark-image"
| "file-earmark-image-fill"
| "file-earmark-lock"
| "file-earmark-lock-fill"
| "file-earmark-lock2"
| "file-earmark-lock2-fill"
| "file-earmark-medical"
| "file-earmark-medical-fill"
| "file-earmark-minus"
| "file-earmark-minus-fill"
| "file-earmark-music"
| "file-earmark-music-fill"
| "file-earmark-pdf"
| "file-earmark-pdf-fill"
| "file-earmark-person"
| "file-earmark-person-fill"
| "file-earmark-play"
| "file-earmark-play-fill"
| "file-earmark-plus"
| "file-earmark-plus-fill"
| "file-earmark-post"
| "file-earmark-post-fill"
| "file-earmark-ppt"
| "file-earmark-ppt-fill"
| "file-earmark-richtext"
| "file-earmark-richtext-fill"
| "file-earmark-ruled"
| "file-earmark-ruled-fill"
| "file-earmark-slides"
| "file-earmark-slides-fill"
| "file-earmark-spreadsheet"
| "file-earmark-spreadsheet-fill"
| "file-earmark-text"
| "file-earmark-text-fill"
| "file-earmark-word"
| "file-earmark-word-fill"
| "file-earmark-x"
| "file-earmark-x-fill"
| "file-earmark-zip"
| "file-earmark-zip-fill"
| "file-easel"
| "file-easel-fill"
| "file-excel"
| "file-excel-fill"
| "file-fill"
| "file-font"
| "file-font-fill"
| "file-image"
| "file-image-fill"
| "file-lock"
| "file-lock-fill"
| "file-lock2"
| "file-lock2-fill"
| "file-medical"
| "file-medical-fill"
| "file-minus"
| "file-minus-fill"
| "file-music"
| "file-music-fill"
| "file-pdf"
| "file-pdf-fill"
| "file-person"
| "file-person-fill"
| "file-play"
| "file-play-fill"
| "file-plus"
| "file-plus-fill"
| "file-post"
| "file-post-fill"
| "file-ppt"
| "file-ppt-fill"
| "file-richtext"
| "file-richtext-fill"
| "file-ruled"
| "file-ruled-fill"
| "file-slides"
| "file-slides-fill"
| "file-spreadsheet"
| "file-spreadsheet-fill"
| "file-text"
| "file-text-fill"
| "file-word"
| "file-word-fill"
| "file-x"
| "file-x-fill"
| "file-zip"
| "file-zip-fill"
| "files"
| "files-alt"
| "filetype-aac"
| "filetype-ai"
| "filetype-bmp"
| "filetype-cs"
| "filetype-css"
| "filetype-csv"
| "filetype-doc"
| "filetype-docx"
| "filetype-exe"
| "filetype-gif"
| "filetype-heic"
| "filetype-html"
| "filetype-java"
| "filetype-jpg"
| "filetype-js"
| "filetype-json"
| "filetype-jsx"
| "filetype-key"
| "filetype-m4p"
| "filetype-md"
| "filetype-mdx"
| "filetype-mov"
| "filetype-mp3"
| "filetype-mp4"
| "filetype-otf"
| "filetype-pdf"
| "filetype-php"
| "filetype-png"
| "filetype-ppt"
| "filetype-pptx"
| "filetype-psd"
| "filetype-py"
| "filetype-raw"
| "filetype-rb"
| "filetype-sass"
| "filetype-scss"
| "filetype-sh"
| "filetype-svg"
| "filetype-tiff"
| "filetype-tsx"
| "filetype-ttf"
| "filetype-txt"
| "filetype-wav"
| "filetype-woff"
| "filetype-xls"
| "filetype-xlsx"
| "filetype-xml"
| "filetype-yml"
| "film"
| "filter"
| "filter-circle"
| "filter-circle-fill"
| "filter-left"
| "filter-right"
| "filter-square"
| "filter-square-fill"
| "fingerprint"
| "flag"
| "flag-fill"
| "flower1"
| "flower2"
| "flower3"
| "folder"
| "folder-check"
| "folder-fill"
| "folder-minus"
| "folder-plus"
| "folder-symlink"
| "folder-symlink-fill"
| "folder-x"
| "folder2"
| "folder2-open"
| "fonts"
| "forward"
| "forward-fill"
| "front"
| "fullscreen"
| "fullscreen-exit"
| "funnel"
| "funnel-fill"
| "gear"
| "gear-fill"
| "gear-wide"
| "gear-wide-connected"
| "gem"
| "gender-ambiguous"
| "gender-female"
| "gender-male"
| "gender-trans"
| "geo"
| "geo-alt"
| "geo-alt-fill"
| "geo-fill"
| "gift"
| "gift-fill"
| "git"
| "github"
| "globe"
| "globe2"
| "google"
| "gpu-card"
| "graph-down"
| "graph-down-arrow"
| "graph-up"
| "graph-up-arrow"
| "grid"
| "grid-1x2"
| "grid-1x2-fill"
| "grid-3x2"
| "grid-3x2-gap"
| "grid-3x2-gap-fill"
| "grid-3x3"
| "grid-3x3-gap"
| "grid-3x3-gap-fill"
| "grid-fill"
| "grip-horizontal"
| "grip-vertical"
| "hammer"
| "hand-index"
| "hand-index-fill"
| "hand-index-thumb"
| "hand-index-thumb-fill"
| "hand-thumbs-down"
| "hand-thumbs-down-fill"
| "hand-thumbs-up"
| "hand-thumbs-up-fill"
| "handbag"
| "handbag-fill"
| "hash"
| "hdd"
| "hdd-fill"
| "hdd-network"
| "hdd-network-fill"
| "hdd-rack"
| "hdd-rack-fill"
| "hdd-stack"
| "hdd-stack-fill"
| "hdmi"
| "hdmi-fill"
| "headphones"
| "headset"
| "headset-vr"
| "heart"
| "heart-arrow"
| "heart-fill"
| "heart-half"
| "heart-pulse"
| "heart-pulse-fill"
| "heartbreak"
| "heartbreak-fill"
| "hearts"
| "heptagon"
| "heptagon-fill"
| "heptagon-half"
| "hexagon"
| "hexagon-fill"
| "hexagon-half"
| "hospital"
| "hospital-fill"
| "hourglass"
| "hourglass-bottom"
| "hourglass-split"
| "hourglass-top"
| "house"
| "house-door"
| "house-door-fill"
| "house-fill"
| "house-heart"
| "house-heart-fill"
| "hr"
| "hurricane"
| "hypnotize"
| "image"
| "image-alt"
| "image-fill"
| "images"
| "inbox"
| "inbox-fill"
| "inboxes"
| "inboxes-fill"
| "incognito"
| "infinity"
| "info"
| "info-circle"
| "info-circle-fill"
| "info-lg"
| "info-square"
| "info-square-fill"
| "input-cursor"
| "input-cursor-text"
| "instagram"
| "intersect"
| "journal"
| "journal-album"
| "journal-arrow-down"
| "journal-arrow-up"
| "journal-bookmark"
| "journal-bookmark-fill"
| "journal-check"
| "journal-code"
| "journal-medical"
| "journal-minus"
| "journal-plus"
| "journal-richtext"
| "journal-text"
| "journal-x"
| "journals"
| "joystick"
| "justify"
| "justify-left"
| "justify-right"
| "kanban"
| "kanban-fill"
| "key"
| "key-fill"
| "keyboard"
| "keyboard-fill"
| "ladder"
| "lamp"
| "lamp-fill"
| "laptop"
| "laptop-fill"
| "layer-backward"
| "layer-forward"
| "layers"
| "layers-fill"
| "layers-half"
| "layout-sidebar"
| "layout-sidebar-inset"
| "layout-sidebar-inset-reverse"
| "layout-sidebar-reverse"
| "layout-split"
| "layout-text-sidebar"
| "layout-text-sidebar-reverse"
| "layout-text-window"
| "layout-text-window-reverse"
| "layout-three-columns"
| "layout-wtf"
| "life-preserver"
| "lightbulb"
| "lightbulb-fill"
| "lightbulb-off"
| "lightbulb-off-fill"
| "lightning"
| "lightning-charge"
| "lightning-charge-fill"
| "lightning-fill"
| "line"
| "link"
| "link-45deg"
| "linkedin"
| "list"
| "list-check"
| "list-columns"
| "list-columns-reverse"
| "list-nested"
| "list-ol"
| "list-stars"
| "list-task"
| "list-ul"
| "lock"
| "lock-fill"
| "magic"
| "magnet"
| "magnet-fill"
| "mailbox"
| "mailbox2"
| "map"
| "map-fill"
| "markdown"
| "markdown-fill"
| "mask"
| "mastodon"
| "medium"
| "megaphone"
| "megaphone-fill"
| "memory"
| "menu-app"
| "menu-app-fill"
| "menu-button"
| "menu-button-fill"
| "menu-button-wide"
| "menu-button-wide-fill"
| "menu-down"
| "menu-up"
| "messenger"
| "meta"
| "mic"
| "mic-fill"
| "mic-mute"
| "mic-mute-fill"
| "microsoft"
| "minecart"
| "minecart-loaded"
| "modem"
| "modem-fill"
| "moisture"
| "moon"
| "moon-fill"
| "moon-stars"
| "moon-stars-fill"
| "mortarboard"
| "mortarboard-fill"
| "motherboard"
| "motherboard-fill"
| "mouse"
| "mouse-fill"
| "mouse2"
| "mouse2-fill"
| "mouse3"
| "mouse3-fill"
| "music-note"
| "music-note-beamed"
| "music-note-list"
| "music-player"
| "music-player-fill"
| "newspaper"
| "nintendo-switch"
| "node-minus"
| "node-minus-fill"
| "node-plus"
| "node-plus-fill"
| "nut"
| "nut-fill"
| "octagon"
| "octagon-fill"
| "octagon-half"
| "optical-audio"
| "optical-audio-fill"
| "option"
| "outlet"
| "paint-bucket"
| "palette"
| "palette-fill"
| "palette2"
| "paperclip"
| "paragraph"
| "patch-check"
| "patch-check-fill"
| "patch-exclamation"
| "patch-exclamation-fill"
| "patch-minus"
| "patch-minus-fill"
| "patch-plus"
| "patch-plus-fill"
| "patch-question"
| "patch-question-fill"
| "pause"
| "pause-btn"
| "pause-btn-fill"
| "pause-circle"
| "pause-circle-fill"
| "pause-fill"
| "paypal"
| "pc"
| "pc-display"
| "pc-display-horizontal"
| "pc-horizontal"
| "pci-card"
| "peace"
| "peace-fill"
| "pen"
| "pen-fill"
| "pencil"
| "pencil-fill"
| "pencil-square"
| "pentagon"
| "pentagon-fill"
| "pentagon-half"
| "people"
| "people-fill"
| "percent"
| "person"
| "person-badge"
| "person-badge-fill"
| "person-bounding-box"
| "person-check"
| "person-check-fill"
| "person-circle"
| "person-dash"
| "person-dash-fill"
| "person-fill"
| "person-heart"
| "person-hearts"
| "person-lines-fill"
| "person-plus"
| "person-plus-fill"
| "person-rolodex"
| "person-square"
| "person-video"
| "person-video2"
| "person-video3"
| "person-workspace"
| "person-x"
| "person-x-fill"
| "phone"
| "phone-fill"
| "phone-flip"
| "phone-landscape"
| "phone-landscape-fill"
| "phone-vibrate"
| "phone-vibrate-fill"
| "pie-chart"
| "pie-chart-fill"
| "piggy-bank"
| "piggy-bank-fill"
| "pin"
| "pin-angle"
| "pin-angle-fill"
| "pin-fill"
| "pin-map"
| "pin-map-fill"
| "pinterest"
| "pip"
| "pip-fill"
| "play"
| "play-btn"
| "play-btn-fill"
| "play-circle"
| "play-circle-fill"
| "play-fill"
| "playstation"
| "plug"
| "plug-fill"
| "plugin"
| "plus"
| "plus-circle"
| "plus-circle-dotted"
| "plus-circle-fill"
| "plus-lg"
| "plus-slash-minus"
| "plus-square"
| "plus-square-dotted"
| "plus-square-fill"
| "postage"
| "postage-fill"
| "postage-heart"
| "postage-heart-fill"
| "postcard"
| "postcard-fill"
| "postcard-heart"
| "postcard-heart-fill"
| "power"
| "printer"
| "printer-fill"
| "projector"
| "projector-fill"
| "puzzle"
| "puzzle-fill"
| "qr-code"
| "qr-code-scan"
| "question"
| "question-circle"
| "question-circle-fill"
| "question-diamond"
| "question-diamond-fill"
| "question-lg"
| "question-octagon"
| "question-octagon-fill"
| "question-square"
| "question-square-fill"
| "quora"
| "quote"
| "radioactive"
| "rainbow"
| "receipt"
| "receipt-cutoff"
| "reception-0"
| "reception-1"
| "reception-2"
| "reception-3"
| "reception-4"
| "record"
| "record-btn"
| "record-btn-fill"
| "record-circle"
| "record-circle-fill"
| "record-fill"
| "record2"
| "record2-fill"
| "recycle"
| "reddit"
| "reply"
| "reply-all"
| "reply-all-fill"
| "reply-fill"
| "robot"
| "router"
| "router-fill"
| "rss"
| "rss-fill"
| "rulers"
| "safe"
| "safe-fill"
| "safe2"
| "safe2-fill"
| "save"
| "save-fill"
| "save2"
| "save2-fill"
| "scissors"
| "screwdriver"
| "sd-card"
| "sd-card-fill"
| "search"
| "search-heart"
| "search-heart-fill"
| "segmented-nav"
| "send"
| "send-check"
| "send-check-fill"
| "send-dash"
| "send-dash-fill"
| "send-exclamation"
| "send-exclamation-fill"
| "send-fill"
| "send-plus"
| "send-plus-fill"
| "send-slash"
| "send-slash-fill"
| "send-x"
| "send-x-fill"
| "server"
| "share"
| "share-fill"
| "shield"
| "shield-check"
| "shield-exclamation"
| "shield-fill"
| "shield-fill-check"
| "shield-fill-exclamation"
| "shield-fill-minus"
| "shield-fill-plus"
| "shield-fill-x"
| "shield-lock"
| "shield-lock-fill"
| "shield-minus"
| "shield-plus"
| "shield-shaded"
| "shield-slash"
| "shield-slash-fill"
| "shield-x"
| "shift"
| "shift-fill"
| "shop"
| "shop-window"
| "shuffle"
| "signal"
| "signpost"
| "signpost-2"
| "signpost-2-fill"
| "signpost-fill"
| "signpost-split"
| "signpost-split-fill"
| "sim"
| "sim-fill"
| "skip-backward"
| "skip-backward-btn"
| "skip-backward-btn-fill"
| "skip-backward-circle"
| "skip-backward-circle-fill"
| "skip-backward-fill"
| "skip-end"
| "skip-end-btn"
| "skip-end-btn-fill"
| "skip-end-circle"
| "skip-end-circle-fill"
| "skip-end-fill"
| "skip-forward"
| "skip-forward-btn"
| "skip-forward-btn-fill"
| "skip-forward-circle"
| "skip-forward-circle-fill"
| "skip-forward-fill"
| "skip-start"
| "skip-start-btn"
| "skip-start-btn-fill"
| "skip-start-circle"
| "skip-start-circle-fill"
| "skip-start-fill"
| "skype"
| "slack"
| "slash"
| "slash-circle"
| "slash-circle-fill"
| "slash-lg"
| "slash-square"
| "slash-square-fill"
| "sliders"
| "sliders2"
| "sliders2-vertical"
| "smartwatch"
| "snapchat"
| "snow"
| "snow2"
| "snow3"
| "sort-alpha-down"
| "sort-alpha-down-alt"
| "sort-alpha-up"
| "sort-alpha-up-alt"
| "sort-down"
| "sort-down-alt"
| "sort-numeric-down"
| "sort-numeric-down-alt"
| "sort-numeric-up"
| "sort-numeric-up-alt"
| "sort-up"
| "sort-up-alt"
| "soundwave"
| "speaker"
| "speaker-fill"
| "speedometer"
| "speedometer2"
| "spellcheck"
| "spotify"
| "square"
| "square-fill"
| "square-half"
| "stack"
| "stack-overflow"
| "star"
| "star-fill"
| "star-half"
| "stars"
| "steam"
| "stickies"
| "stickies-fill"
| "sticky"
| "sticky-fill"
| "stop"
| "stop-btn"
| "stop-btn-fill"
| "stop-circle"
| "stop-circle-fill"
| "stop-fill"
| "stoplights"
| "stoplights-fill"
| "stopwatch"
| "stopwatch-fill"
| "strava"
| "subtract"
| "suit-club"
| "suit-club-fill"
| "suit-diamond"
| "suit-diamond-fill"
| "suit-heart"
| "suit-heart-fill"
| "suit-spade"
| "suit-spade-fill"
| "sun"
| "sun-fill"
| "sunglasses"
| "sunrise"
| "sunrise-fill"
| "sunset"
| "sunset-fill"
| "symmetry-horizontal"
| "symmetry-vertical"
| "table"
| "tablet"
| "tablet-fill"
| "tablet-landscape"
| "tablet-landscape-fill"
| "tag"
| "tag-fill"
| "tags"
| "tags-fill"
| "telegram"
| "telephone"
| "telephone-fill"
| "telephone-forward"
| "telephone-forward-fill"
| "telephone-inbound"
| "telephone-inbound-fill"
| "telephone-minus"
| "telephone-minus-fill"
| "telephone-outbound"
| "telephone-outbound-fill"
| "telephone-plus"
| "telephone-plus-fill"
| "telephone-x"
| "telephone-x-fill"
| "terminal"
| "terminal-dash"
| "terminal-fill"
| "terminal-plus"
| "terminal-split"
| "terminal-x"
| "text-center"
| "text-indent-left"
| "text-indent-right"
| "text-left"
| "text-paragraph"
| "text-right"
| "textarea"
| "textarea-resize"
| "textarea-t"
| "thermometer"
| "thermometer-half"
| "thermometer-high"
| "thermometer-low"
| "thermometer-snow"
| "thermometer-sun"
| "three-dots"
| "three-dots-vertical"
| "thunderbolt"
| "thunderbolt-fill"
| "ticket"
| "ticket-detailed"
| "ticket-detailed-fill"
| "ticket-fill"
| "ticket-perforated"
| "ticket-perforated-fill"
| "tiktok"
| "toggle-off"
| "toggle-on"
| "toggle2-off"
| "toggle2-on"
| "toggles"
| "toggles2"
| "tools"
| "tornado"
| "translate"
| "trash"
| "trash-fill"
| "trash2"
| "trash2-fill"
| "trash3"
| "trash3-fill"
| "tree"
| "tree-fill"
| "triangle"
| "triangle-fill"
| "triangle-half"
| "trophy"
| "trophy-fill"
| "tropical-storm"
| "truck"
| "truck-flatbed"
| "tsunami"
| "tv"
| "tv-fill"
| "twitch"
| "twitter"
| "type"
| "type-bold"
| "type-h1"
| "type-h2"
| "type-h3"
| "type-italic"
| "type-strikethrough"
| "type-underline"
| "ui-checks"
| "ui-checks-grid"
| "ui-radios"
| "ui-radios-grid"
| "umbrella"
| "umbrella-fill"
| "union"
| "unlock"
| "unlock-fill"
| "upc"
| "upc-scan"
| "upload"
| "usb"
| "usb-c"
| "usb-c-fill"
| "usb-drive"
| "usb-drive-fill"
| "usb-fill"
| "usb-micro"
| "usb-micro-fill"
| "usb-mini"
| "usb-mini-fill"
| "usb-plug"
| "usb-plug-fill"
| "usb-symbol"
| "valentine"
| "valentine2"
| "vector-pen"
| "view-list"
| "view-stacked"
| "vimeo"
| "vinyl"
| "vinyl-fill"
| "voicemail"
| "volume-down"
| "volume-down-fill"
| "volume-mute"
| "volume-mute-fill"
| "volume-off"
| "volume-off-fill"
| "volume-up"
| "volume-up-fill"
| "vr"
| "wallet"
| "wallet-fill"
| "wallet2"
| "watch"
| "water"
| "webcam"
| "webcam-fill"
| "whatsapp"
| "wifi"
| "wifi-1"
| "wifi-2"
| "wifi-off"
| "wind"
| "window"
| "window-dash"
| "window-desktop"
| "window-dock"
| "window-fullscreen"
| "window-plus"
| "window-sidebar"
| "window-split"
| "window-stack"
| "window-x"
| "windows"
| "wordpress"
| "wrench"
| "wrench-adjustable"
| "wrench-adjustable-circle"
| "wrench-adjustable-circle-fill"
| "x"
| "x-circle"
| "x-circle-fill"
| "x-diamond"
| "x-diamond-fill"
| "x-lg"
| "x-octagon"
| "x-octagon-fill"
| "x-square"
| "x-square-fill"
| "xbox"
| "yin-yang"
| "youtube"
| "zoom-in"
| "zoom-out"
# boxicons
{
# logos
"apple"
| "behance"
| "bootstrap"
| "discord"
| "dribbble"
| "facebook"
| "git"
| "github"
| "google"
| "instagram"
| "linkedin"
| "markdown"
| "mastodon"
| "medium"
| "messenger"
| "meta"
| "microsoft"
| "paypal"
| "pinterest"
| "quora"
| "reddit"
| "skype"
| "slack"
| "snapchat"
| "spotify"
| "stack-overflow"
| "steam"
| "telegram"
| "tiktok"
| "twitch"
| "twitter"
| "vimeo"
| "whatsapp"
| "windows"
| "wordpress"
| "youtube"
| "flask"
| "bitcoin"
| "99designs"
| "500px"
| "adobe"
| "airbnb"
| "algolia"
| "amazon"
| "android"
| "angular"
| "audible"
| "aws"
| "baidu"
| "bing"
| "blender"
| "blogger"
| "c-plus-plus"
| "chrome"
| "codepen"
| "creative-commons"
| "css3"
| "dailymotion"
| "deezer"
| "dev-to"
| "deviantart"
| "digg"
| "digitalocean"
| "discord-alt"
| "discourse"
| "django"
| "docker"
| "dropbox"
| "drupal"
| "ebay"
| "edge"
| "etsy"
| "facebook-circle"
| "facebook-square"
| "figma"
| "firebase"
| "firefox"
| "flickr"
| "flickr-square"
| "flutter"
| "foursquare"
| "gitlab"
| "gmail"
| "go-lang"
| "google-cloud"
| "google-plus"
| "google-plus-circle"
| "heroku"
| "html5"
| "imdb"
| "instagram-alt"
| "internet-explorer"
| "invision"
| "java"
| "javascript"
| "joomla"
| "jquery"
| "jsfiddle"
| "kickstarter"
| "kubernetes"
| "less"
| "linkedin-square"
| "magento"
| "mailchimp"
| "mastercard"
| "medium-old"
| "medium-square"
| "microsoft-teams"
| "mongodb"
| "netlify"
| "nodejs"
| "ok-ru"
| "opera"
| "patreon"
| "periscope"
| "php"
| "pinterest-alt"
| "play-store"
| "pocket"
| "postgresql"
| "product-hunt"
| "python"
| "react"
| "redbubble"
| "redux"
| "sass"
| "shopify"
| "sketch"
| "slack-old"
| "soundcloud"
| "spring-boot"
| "squarespace"
| "stripe"
| "tailwind-css"
| "trello"
| "trip-advisor"
| "tumblr"
| "tux"
| "unity"
| "unsplash"
| "upwork"
| "venmo"
| "visa"
| "visual-studio"
| "vk"
| "vuejs"
| "whatsapp-square"
| "wikipedia"
| "wix"
| "xing"
| "yahoo"
| "yelp"
| "zoom"
# regular
"alarm"
| "align-middle"
| "archive"
| "at"
| "award"
| "bar-chart"
| "basket"
| "battery"
| "bell"
| "bluetooth"
| "book"
| "bookmark"
| "bookmark-heart"
| "bookmark-plus"
| "bookmarks"
| "border-all"
| "border-bottom"
| "border-inner"
| "border-left"
| "border-outer"
| "border-right"
| "border-top"
| "box"
| "briefcase"
| "broadcast"
| "brush"
| "bug"
| "building"
| "bullseye"
| "calculator"
| "calendar"
| "calendar-check"
| "calendar-event"
| "calendar-heart"
| "calendar-minus"
| "calendar-plus"
| "calendar-week"
| "calendar-x"
| "camera"
| "caret-down"
| "caret-down-square"
| "caret-left"
| "caret-left-square"
| "caret-right"
| "caret-right-square"
| "caret-up"
| "caret-up-square"
| "cart"
| "cast"
| "chat"
| "check"
| "check-circle"
| "check-square"
| "chevron-down"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "circle"
| "circle-half"
| "clipboard"
| "cloud"
| "cloud-download"
| "cloud-drizzle"
| "cloud-lightning"
| "cloud-rain"
| "cloud-snow"
| "cloud-upload"
| "code"
| "coin"
| "collection"
| "columns"
| "command"
| "compass"
| "credit-card"
| "crop"
| "diamond"
| "dice-1"
| "dice-2"
| "dice-3"
| "dice-4"
| "dice-5"
| "dice-6"
| "disc"
| "door-open"
| "download"
| "droplet"
| "envelope"
| "envelope-open"
| "eraser"
| "exclude"
| "file"
| "film"
| "filter"
| "fingerprint"
| "flag"
| "folder"
| "folder-minus"
| "folder-plus"
| "fullscreen"
| "gift"
| "globe"
| "grid"
| "hash"
| "hdd"
| "heart"
| "hourglass"
| "image"
| "image-alt"
| "images"
| "info-circle"
| "info-square"
| "intersect"
| "joystick"
| "key"
| "laptop"
| "link"
| "list-check"
| "list-ol"
| "list-ul"
| "lock"
| "magnet"
| "map"
| "mask"
| "moon"
| "mouse"
| "palette"
| "paperclip"
| "paragraph"
| "pause"
| "pause-circle"
| "pen"
| "pencil"
| "phone"
| "pie-chart"
| "pin"
| "play"
| "play-circle"
| "plug"
| "plus"
| "plus-circle"
| "printer"
| "receipt"
| "recycle"
| "reply"
| "reply-all"
| "rss"
| "save"
| "search"
| "send"
| "server"
| "share"
| "shield"
| "shield-x"
| "shuffle"
| "sort-down"
| "sort-up"
| "speaker"
| "square"
| "star"
| "stop"
| "stop-circle"
| "stopwatch"
| "sun"
| "table"
| "tag"
| "terminal"
| "trash"
| "trophy"
| "tv"
| "upload"
| "usb"
| "voicemail"
| "volume-mute"
| "wallet"
| "water"
| "webcam"
| "wifi"
| "wifi-1"
| "wifi-2"
| "wifi-off"
| "wind"
| "window"
| "windows"
| "wrench"
| "x"
| "x-circle"
| "zoom-in"
| "zoom-out"
| "add-to-queue"
| "adjust"
| "alarm-add"
| "alarm-exclamation"
| "alarm-off"
| "alarm-snooze"
| "album"
| "analyse"
| "angry"
| "arch"
| "archive-in"
| "archive-out"
| "area"
| "arrow-from-bottom"
| "arrow-from-left"
| "arrow-from-right"
| "arrow-from-top"
| "arrow-to-bottom"
| "arrow-to-left"
| "arrow-to-right"
| "arrow-to-top"
| "badge"
| "badge-check"
| "baguette"
| "ball"
| "band-aid"
| "bar-chart-alt-2"
| "bar-chart-square"
| "barcode"
| "baseball"
| "basketball"
| "bath"
| "bed"
| "been-here"
| "beer"
| "bell-minus"
| "bell-off"
| "bell-plus"
| "bible"
| "blanket"
| "bolt-circle"
| "bomb"
| "bone"
| "bong"
| "book-add"
| "book-alt"
| "book-bookmark"
| "book-content"
| "book-heart"
| "book-open"
| "book-reader"
| "bookmark-alt"
| "bookmark-alt-minus"
| "bookmark-alt-plus"
| "bookmark-minus"
| "bot"
| "bowl-hot"
| "bowl-rice"
| "bowling-ball"
| "brain"
| "briefcase-alt"
| "briefcase-alt-2"
| "brightness"
| "brightness-half"
| "brush-alt"
| "bug-alt"
| "building-house"
| "buildings"
| "bulb"
| "buoy"
| "bus"
| "bus-school"
| "cabinet"
| "cable-car"
| "cake"
| "calendar-alt"
| "calendar-edit"
| "calendar-exclamation"
| "calendar-star"
| "camera-home"
| "camera-movie"
| "camera-off"
| "capsule"
| "captions"
| "car"
| "card"
| "caret-down-circle"
| "caret-left-circle"
| "caret-right-circle"
| "caret-up-circle"
| "carousel"
| "cart-add"
| "cart-alt"
| "cart-download"
| "category"
| "category-alt"
| "cctv"
| "certification"
| "chalkboard"
| "chart"
| "check-shield"
| "checkbox"
| "checkbox-checked"
| "checkbox-minus"
| "cheese"
| "chevron-down-circle"
| "chevron-down-square"
| "chevron-left-circle"
| "chevron-left-square"
| "chevron-right-circle"
| "chevron-right-square"
| "chevron-up-circle"
| "chevron-up-square"
| "chevrons-down"
| "chevrons-left"
| "chevrons-right"
| "chevrons-up"
| "chip"
| "church"
| "circle-quarter"
| "circle-three-quarter"
| "clinic"
| "coffee"
| "coffee-togo"
| "cog"
| "coin-stack"
| "color"
| "color-fill"
| "comment"
| "comment-add"
| "comment-check"
| "comment-detail"
| "comment-dots"
| "comment-edit"
| "comment-error"
| "comment-minus"
| "comment-x"
| "confused"
| "conversation"
| "cookie"
| "cool"
| "copy"
| "copy-alt"
| "copyright"
| "credit-card-alt"
| "credit-card-front"
| "cricket-ball"
| "crown"
| "cube"
| "cube-alt"
| "cuboid"
| "customize"
| "cylinder"
| "data"
| "detail"
| "devices"
| "directions"
| "dish"
| "dislike"
| "dizzy"
| "dock-bottom"
| "dock-left"
| "dock-right"
| "dock-top"
| "dollar-circle"
| "donate-blood"
| "donate-heart"
| "doughnut-chart"
| "down-arrow"
| "down-arrow-alt"
| "down-arrow-circle"
| "downvote"
| "drink"
| "duplicate"
| "edit"
| "edit-alt"
| "error"
| "error-alt"
| "error-circle"
| "exit"
| "extension"
| "face"
| "fast-forward-circle"
| "file-blank"
| "file-find"
| "filter-alt"
| "first-aid"
| "folder-open"
| "food-menu"
| "fridge"
| "game"
| "gas-pump"
| "ghost"
| "grid-alt"
| "group"
| "happy"
| "happy-alt"
| "happy-beaming"
| "happy-heart-eyes"
| "hard-hat"
| "heart-circle"
| "heart-square"
| "help-circle"
| "hide"
| "home"
| "home-alt-2"
| "home-circle"
| "home-heart"
| "home-smile"
| "hotel"
| "id-card"
| "image-add"
| "injection"
| "joystick-alt"
| "joystick-button"
| "label"
| "landscape"
| "laugh"
| "layer"
| "layer-minus"
| "layer-plus"
| "layout"
| "leaf"
| "left-arrow"
| "left-arrow-alt"
| "left-arrow-circle"
| "left-down-arrow-circle"
| "left-top-arrow-circle"
| "lemon"
| "like"
| "location-plus"
| "lock-alt"
| "lock-open"
| "lock-open-alt"
| "log-in"
| "log-in-circle"
| "log-out"
| "log-out-circle"
| "low-vision"
| "map-alt"
| "map-pin"
| "medal"
| "meh"
| "meh-alt"
| "meh-blank"
| "memory-card"
| "message"
| "message-add"
| "message-alt"
| "message-alt-add"
| "message-alt-check"
| "message-alt-detail"
| "message-alt-dots"
| "message-alt-edit"
| "message-alt-error"
| "message-alt-minus"
| "message-alt-x"
| "message-check"
| "message-detail"
| "message-dots"
| "message-edit"
| "message-error"
| "message-minus"
| "message-rounded"
| "message-rounded-add"
| "message-rounded-check"
| "message-rounded-detail"
| "message-rounded-dots"
| "message-rounded-edit"
| "message-rounded-error"
| "message-rounded-minus"
| "message-rounded-x"
| "message-square"
| "message-square-add"
| "message-square-check"
| "message-square-detail"
| "message-square-dots"
| "message-square-edit"
| "message-square-error"
| "message-square-minus"
| "message-square-x"
| "message-x"
| "meteor"
| "microchip"
| "microphone"
| "microphone-off"
| "minus-circle"
| "mobile"
| "mobile-vibration"
| "mouse-alt"
| "movie"
| "movie-play"
| "music"
| "navigation"
| "network-chart"
| "news"
| "no-entry"
| "note"
| "notepad"
| "notification"
| "notification-off"
| "package"
| "paint"
| "paint-roll"
| "paper-plane"
| "party"
| "paste"
| "phone-call"
| "phone-incoming"
| "phone-off"
| "phone-outgoing"
| "photo-album"
| "pie-chart-alt"
| "pie-chart-alt-2"
| "planet"
| "pointer"
| "polygon"
| "popsicle"
| "purchase-tag"
| "purchase-tag-alt"
| "pyramid"
| "radio"
| "rectangle"
| "registered"
| "rename"
| "rewind-circle"
| "right-arrow"
| "right-arrow-alt"
| "right-arrow-circle"
| "right-down-arrow-circle"
| "right-top-arrow-circle"
| "rocket"
| "ruler"
| "sad"
| "search-alt-2"
| "select-multiple"
| "share-alt"
| "shield-alt-2"
| "shocked"
| "shopping-bag"
| "show"
| "skip-next-circle"
| "skip-previous-circle"
| "sleepy"
| "slideshow"
| "smile"
| "spa"
| "spray-can"
| "spreadsheet"
| "square-rounded"
| "sticker"
| "store"
| "store-alt"
| "tachometer"
| "tag-alt"
| "taxi"
| "tennis-ball"
| "time"
| "time-five"
| "timer"
| "tired"
| "toggle-left"
| "toggle-right"
| "tone"
| "traffic-cone"
| "train"
| "trash-alt"
| "up-arrow"
| "up-arrow-alt"
| "up-arrow-circle"
| "upside-down"
| "upvote"
| "user"
| "user-check"
| "user-circle"
| "user-minus"
| "user-pin"
| "user-plus"
| "user-voice"
| "user-x"
| "vector"
| "vial"
| "video"
| "video-off"
| "video-plus"
| "video-recording"
| "volume"
| "volume-full"
| "volume-low"
| "wallet-alt"
| "window-alt"
| "wine"
| "wink-smile"
| "wink-tongue"
| "abacus"
| "accessibility"
| "align-justify"
| "align-left"
| "align-right"
| "anchor"
| "aperture"
| "arrow-back"
| "atom"
| "bar-chart-alt"
| "barcode-reader"
| "bitcoin"
| "block"
| "body"
| "bold"
| "border-none"
| "border-radius"
| "bracket"
| "braille"
| "candles"
| "chair"
| "check-double"
| "checkbox-square"
| "closet"
| "cloud-light-rain"
| "code-alt"
| "code-block"
| "code-curly"
| "collapse"
| "collapse-alt"
| "collapse-horizontal"
| "collapse-vertical"
| "cross"
| "crosshair"
| "current-location"
| "cut"
| "cycling"
| "desktop"
| "dialpad"
| "dialpad-alt"
| "dna"
| "dollar"
| "dots-horizontal"
| "dots-horizontal-rounded"
| "dots-vertical"
| "dots-vertical-rounded"
| "dumbbell"
| "equalizer"
| "euro"
| "exit-fullscreen"
| "expand"
| "expand-alt"
| "expand-horizontal"
| "expand-vertical"
| "export"
| "fast-forward"
| "female"
| "female-sign"
| "first-page"
| "font"
| "font-color"
| "font-family"
| "font-size"
| "food-tag"
| "football"
| "fork"
| "git-branch"
| "git-commit"
| "git-compare"
| "git-merge"
| "git-pull-request"
| "git-repo-forked"
| "glasses"
| "glasses-alt"
| "globe-alt"
| "grid-horizontal"
| "grid-small"
| "grid-vertical"
| "handicap"
| "heading"
| "headphone"
| "health"
| "highlight"
| "history"
| "hive"
| "home-alt"
| "horizontal-center"
| "import"
| "infinite"
| "italic"
| "knife"
| "last-page"
| "left-indent"
| "library"
| "line-chart"
| "line-chart-down"
| "link-alt"
| "link-external"
| "lira"
| "list-minus"
| "list-plus"
| "loader"
| "loader-alt"
| "loader-circle"
| "mail-send"
| "male"
| "male-female"
| "male-sign"
| "math"
| "menu"
| "menu-alt-left"
| "menu-alt-right"
| "merge"
| "minus"
| "minus-back"
| "minus-front"
| "mobile-alt"
| "mobile-landscape"
| "money"
| "money-withdraw"
| "move"
| "move-horizontal"
| "move-vertical"
| "no-signal"
| "outline"
| "plus-medical"
| "podcast"
| "poll"
| "pound"
| "power-off"
| "pulse"
| "qr"
| "qr-scan"
| "question-mark"
| "radar"
| "radio-circle"
| "radio-circle-marked"
| "redo"
| "reflect-horizontal"
| "reflect-vertical"
| "refresh"
| "repeat"
| "repost"
| "reset"
| "restaurant"
| "revision"
| "rewind"
| "right-indent"
| "rotate-left"
| "rotate-right"
| "ruble"
| "run"
| "rupee"
| "scan"
| "scatter-chart"
| "screenshot"
| "search-alt"
| "selection"
| "shape-circle"
| "shape-polygon"
| "shape-square"
| "shape-triangle"
| "shekel"
| "shield-alt"
| "shield-quarter"
| "show-alt"
| "sidebar"
| "signal-1"
| "signal-2"
| "signal-3"
| "signal-4"
| "signal-5"
| "sitemap"
| "skip-next"
| "skip-previous"
| "slider"
| "slider-alt"
| "sort"
| "sort-a-z"
| "sort-alt-2"
| "sort-z-a"
| "space-bar"
| "station"
| "stats"
| "street-view"
| "strikethrough"
| "subdirectory-left"
| "subdirectory-right"
| "support"
| "swim"
| "sync"
| "tab"
| "target-lock"
| "task"
| "task-x"
| "test-tube"
| "text"
| "transfer"
| "transfer-alt"
| "trending-down"
| "trending-up"
| "trim"
| "trip"
| "underline"
| "undo"
| "unite"
| "unlink"
| "vertical-center"
| "walk"
| "wifi-0"
| "window-close"
| "window-open"
| "won"
| "world"
| "yen"
# solid
"alarm"
| "archive"
| "award"
| "bank"
| "basket"
| "battery"
| "battery-charging"
| "battery-full"
| "bell"
| "binoculars"
| "book"
| "bookmark"
| "bookmark-heart"
| "bookmark-plus"
| "bookmark-star"
| "bookmarks"
| "box"
| "briefcase"
| "brush"
| "bug"
| "building"
| "bullseye"
| "calculator"
| "calendar"
| "calendar-check"
| "calendar-event"
| "calendar-heart"
| "calendar-minus"
| "calendar-plus"
| "calendar-week"
| "calendar-x"
| "camera"
| "caret-down-square"
| "caret-left-square"
| "caret-right-square"
| "caret-up-square"
| "cart"
| "chat"
| "check-circle"
| "check-square"
| "chevron-down"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "circle"
| "circle-half"
| "cloud"
| "cloud-download"
| "cloud-lightning"
| "cloud-rain"
| "cloud-upload"
| "coin"
| "collection"
| "compass"
| "credit-card"
| "crop"
| "diamond"
| "dice-1"
| "dice-2"
| "dice-3"
| "dice-4"
| "dice-5"
| "dice-6"
| "disc"
| "door-open"
| "download"
| "droplet"
| "droplet-half"
| "eject"
| "envelope"
| "envelope-open"
| "eraser"
| "eyedropper"
| "file"
| "file-image"
| "file-pdf"
| "file-plus"
| "film"
| "flag"
| "folder"
| "folder-minus"
| "folder-plus"
| "gift"
| "grid"
| "hdd"
| "heart"
| "hourglass"
| "hourglass-bottom"
| "hourglass-top"
| "image"
| "image-alt"
| "inbox"
| "info-circle"
| "info-square"
| "joystick"
| "key"
| "keyboard"
| "lock"
| "magnet"
| "map"
| "mask"
| "megaphone"
| "moon"
| "mouse"
| "palette"
| "pen"
| "pencil"
| "phone"
| "pie-chart"
| "pin"
| "plug"
| "plus-circle"
| "plus-square"
| "printer"
| "receipt"
| "save"
| "search"
| "send"
| "server"
| "share"
| "shield"
| "shield-x"
| "speaker"
| "square"
| "star"
| "star-half"
| "stopwatch"
| "sun"
| "tag"
| "terminal"
| "thermometer"
| "trash"
| "tree"
| "trophy"
| "truck"
| "tv"
| "volume-mute"
| "wallet"
| "watch"
| "webcam"
| "wrench"
| "x-circle"
| "x-square"
| "yin-yang"
| "zoom-in"
| "zoom-out"
| "add-to-queue"
| "adjust"
| "adjust-alt"
| "alarm-add"
| "alarm-exclamation"
| "alarm-off"
| "alarm-snooze"
| "album"
| "ambulance"
| "analyse"
| "angry"
| "arch"
| "archive-in"
| "archive-out"
| "area"
| "arrow-from-bottom"
| "arrow-from-left"
| "arrow-from-right"
| "arrow-from-top"
| "arrow-to-bottom"
| "arrow-to-left"
| "arrow-to-right"
| "arrow-to-top"
| "baby-carriage"
| "backpack"
| "badge"
| "badge-check"
| "badge-dollar"
| "baguette"
| "ball"
| "band-aid"
| "bar-chart-alt-2"
| "bar-chart-square"
| "barcode"
| "baseball"
| "basketball"
| "bath"
| "battery-low"
| "bed"
| "been-here"
| "beer"
| "bell-minus"
| "bell-off"
| "bell-plus"
| "bell-ring"
| "bible"
| "blanket"
| "bolt"
| "bolt-circle"
| "bomb"
| "bone"
| "bong"
| "book-add"
| "book-alt"
| "book-bookmark"
| "book-content"
| "book-heart"
| "book-open"
| "book-reader"
| "bookmark-alt"
| "bookmark-alt-minus"
| "bookmark-alt-plus"
| "bookmark-minus"
| "bot"
| "bowl-hot"
| "bowl-rice"
| "bowling-ball"
| "brain"
| "briefcase-alt"
| "briefcase-alt-2"
| "brightness"
| "brightness-half"
| "brush-alt"
| "bug-alt"
| "building-house"
| "buildings"
| "bulb"
| "buoy"
| "bus"
| "bus-school"
| "business"
| "cabinet"
| "cable-car"
| "cake"
| "calendar-alt"
| "calendar-edit"
| "calendar-exclamation"
| "calendar-star"
| "camera-home"
| "camera-movie"
| "camera-off"
| "camera-plus"
| "capsule"
| "captions"
| "car"
| "car-battery"
| "car-crash"
| "car-garage"
| "car-mechanic"
| "car-wash"
| "card"
| "caret-down-circle"
| "caret-left-circle"
| "caret-right-circle"
| "caret-up-circle"
| "carousel"
| "cart-add"
| "cart-alt"
| "cart-download"
| "cat"
| "category"
| "category-alt"
| "cctv"
| "certification"
| "chalkboard"
| "chart"
| "check-shield"
| "checkbox"
| "checkbox-checked"
| "checkbox-minus"
| "cheese"
| "chess"
| "chevron-down-circle"
| "chevron-down-square"
| "chevron-left-circle"
| "chevron-left-square"
| "chevron-right-circle"
| "chevron-right-square"
| "chevron-up-circle"
| "chevron-up-square"
| "chevrons-down"
| "chevrons-left"
| "chevrons-right"
| "chevrons-up"
| "chip"
| "church"
| "circle-quarter"
| "circle-three-quarter"
| "city"
| "clinic"
| "coffee"
| "coffee-alt"
| "coffee-togo"
| "cog"
| "coin-stack"
| "color"
| "color-fill"
| "comment"
| "comment-add"
| "comment-check"
| "comment-detail"
| "comment-dots"
| "comment-edit"
| "comment-error"
| "comment-minus"
| "comment-x"
| "component"
| "confused"
| "contact"
| "conversation"
| "cookie"
| "cool"
| "copy"
| "copy-alt"
| "copyright"
| "coupon"
| "credit-card-alt"
| "credit-card-front"
| "cricket-ball"
| "crown"
| "cube"
| "cube-alt"
| "cuboid"
| "customize"
| "cylinder"
| "dashboard"
| "data"
| "detail"
| "devices"
| "direction-left"
| "direction-right"
| "directions"
| "discount"
| "dish"
| "dislike"
| "dizzy"
| "dock-bottom"
| "dock-left"
| "dock-right"
| "dock-top"
| "dog"
| "dollar-circle"
| "donate-blood"
| "donate-heart"
| "doughnut-chart"
| "down-arrow"
| "down-arrow-alt"
| "down-arrow-circle"
| "down-arrow-square"
| "downvote"
| "drink"
| "dryer"
| "duplicate"
| "edit"
| "edit-alt"
| "edit-location"
| "error"
| "error-alt"
| "error-circle"
| "ev-station"
| "exit"
| "extension"
| "face"
| "face-mask"
| "factory"
| "fast-forward-circle"
| "file-archive"
| "file-blank"
| "file-css"
| "file-doc"
| "file-export"
| "file-find"
| "file-gif"
| "file-html"
| "file-import"
| "file-jpg"
| "file-js"
| "file-json"
| "file-md"
| "file-png"
| "file-txt"
| "filter-alt"
| "first-aid"
| "flag-alt"
| "flag-checkered"
| "flame"
| "flask"
| "florist"
| "folder-open"
| "food-menu"
| "fridge"
| "game"
| "gas-pump"
| "ghost"
| "graduation"
| "grid-alt"
| "group"
| "guitar-amp"
| "hand"
| "hand-down"
| "hand-left"
| "hand-right"
| "hand-up"
| "happy"
| "happy-alt"
| "happy-beaming"
| "happy-heart-eyes"
| "hard-hat"
| "heart-circle"
| "heart-square"
| "help-circle"
| "hide"
| "home"
| "home-alt-2"
| "home-circle"
| "home-heart"
| "home-smile"
| "hot"
| "hotel"
| "id-card"
| "image-add"
| "injection"
| "institution"
| "invader"
| "joystick-alt"
| "joystick-button"
| "label"
| "landmark"
| "landscape"
| "laugh"
| "layer"
| "layer-minus"
| "layer-plus"
| "layout"
| "leaf"
| "left-arrow"
| "left-arrow-alt"
| "left-arrow-circle"
| "left-arrow-square"
| "left-down-arrow-circle"
| "left-top-arrow-circle"
| "lemon"
| "like"
| "location-plus"
| "lock-alt"
| "lock-open"
| "lock-open-alt"
| "log-in"
| "log-in-circle"
| "log-out"
| "log-out-circle"
| "low-vision"
| "magic-wand"
| "map-alt"
| "map-pin"
| "medal"
| "meh"
| "meh-alt"
| "meh-blank"
| "memory-card"
| "message"
| "message-add"
| "message-alt"
| "message-alt-add"
| "message-alt-check"
| "message-alt-detail"
| "message-alt-dots"
| "message-alt-edit"
| "message-alt-error"
| "message-alt-minus"
| "message-alt-x"
| "message-check"
| "message-detail"
| "message-dots"
| "message-edit"
| "message-error"
| "message-minus"
| "message-rounded"
| "message-rounded-add"
| "message-rounded-check"
| "message-rounded-detail"
| "message-rounded-dots"
| "message-rounded-edit"
| "message-rounded-error"
| "message-rounded-minus"
| "message-rounded-x"
| "message-square"
| "message-square-add"
| "message-square-check"
| "message-square-detail"
| "message-square-dots"
| "message-square-edit"
| "message-square-error"
| "message-square-minus"
| "message-square-x"
| "message-x"
| "meteor"
| "microchip"
| "microphone"
| "microphone-alt"
| "microphone-off"
| "minus-circle"
| "minus-square"
| "mobile"
| "mobile-vibration"
| "mouse-alt"
| "movie"
| "movie-play"
| "music"
| "navigation"
| "network-chart"
| "news"
| "no-entry"
| "note"
| "notepad"
| "notification"
| "notification-off"
| "offer"
| "package"
| "paint"
| "paint-roll"
| "paper-plane"
| "parking"
| "party"
| "paste"
| "phone-call"
| "phone-incoming"
| "phone-off"
| "phone-outgoing"
| "photo-album"
| "piano"
| "pie-chart-alt"
| "pie-chart-alt-2"
| "pizza"
| "plane"
| "plane-alt"
| "plane-land"
| "plane-take-off"
| "planet"
| "playlist"
| "pointer"
| "polygon"
| "popsicle"
| "purchase-tag"
| "purchase-tag-alt"
| "pyramid"
| "quote-alt-left"
| "quote-alt-right"
| "quote-left"
| "quote-right"
| "quote-single-left"
| "quote-single-right"
| "radiation"
| "radio"
| "rectangle"
| "registered"
| "rename"
| "report"
| "rewind-circle"
| "right-arrow"
| "right-arrow-alt"
| "right-arrow-circle"
| "right-arrow-square"
| "right-down-arrow-circle"
| "right-top-arrow-circle"
| "rocket"
| "ruler"
| "sad"
| "school"
| "search-alt-2"
| "select-multiple"
| "shapes"
| "share-alt"
| "shield-alt-2"
| "ship"
| "shocked"
| "shopping-bag"
| "shopping-bag-alt"
| "shopping-bags"
| "show"
| "skip-next-circle"
| "skip-previous-circle"
| "skull"
| "sleepy"
| "slideshow"
| "smile"
| "sort-alt"
| "spa"
| "spray-can"
| "spreadsheet"
| "square-rounded"
| "sticker"
| "store"
| "store-alt"
| "t-shirt"
| "tachometer"
| "tag-alt"
| "tag-x"
| "taxi"
| "tennis-ball"
| "time"
| "time-five"
| "timer"
| "tired"
| "to-top"
| "toggle-left"
| "toggle-right"
| "tone"
| "torch"
| "traffic"
| "traffic-barrier"
| "traffic-cone"
| "train"
| "trash-alt"
| "tree-alt"
| "up-arrow"
| "up-arrow-alt"
| "up-arrow-circle"
| "up-arrow-square"
| "upside-down"
| "upvote"
| "user"
| "user-account"
| "user-badge"
| "user-check"
| "user-circle"
| "user-detail"
| "user-minus"
| "user-pin"
| "user-plus"
| "user-rectangle"
| "user-voice"
| "user-x"
| "vector"
| "vial"
| "video"
| "video-off"
| "video-plus"
| "video-recording"
| "videos"
| "virus"
| "virus-block"
| "volume"
| "volume-full"
| "volume-low"
| "wallet-alt"
| "washer"
| "watch-alt"
| "widget"
| "window-alt"
| "wine"
| "wink-smile"
| "wink-tongue"
| "zap"
# bytesize
"activity"
| "archive"
| "arrow-left"
| "arrow-right"
| "bag"
| "bell"
| "book"
| "bookmark"
| "calendar"
| "camera"
| "caret-left"
| "caret-right"
| "cart"
| "chevron-left"
| "chevron-right"
| "clipboard"
| "clock"
| "code"
| "download"
| "eject"
| "eye"
| "file"
| "filter"
| "flag"
| "folder"
| "fullscreen"
| "fullscreen-exit"
| "gift"
| "github"
| "heart"
| "inbox"
| "info"
| "lightning"
| "link"
| "lock"
| "moon"
| "paperclip"
| "pause"
| "play"
| "plus"
| "reply"
| "search"
| "send"
| "star"
| "tag"
| "telephone"
| "trash"
| "twitter"
| "unlock"
| "upload"
| "zoom-in"
| "zoom-out"
| "edit"
| "folder-open"
| "home"
| "message"
| "microphone"
| "mobile"
| "music"
| "user"
| "video"
| "volume"
| "desktop"
| "export"
| "import"
| "menu"
| "minus"
| "move"
| "alert"
| "arrow-bottom"
| "arrow-top"
| "backwards"
| "ban"
| "caret-bottom"
| "caret-top"
| "checkmark"
| "chevron-bottom"
| "chevron-top"
| "close"
| "compose"
| "creditcard"
| "ellipsis-horizontal"
| "ellipsis-vertical"
| "end"
| "external"
| "feed"
| "forwards"
| "location"
| "mail"
| "mute"
| "options"
| "photo"
| "portfolio"
| "print"
| "reload"
| "settings"
| "sign-in"
| "sign-out"
| "start"
| "work"
| "zoom-reset"
# cssgg
"alarm"
| "align-bottom"
| "align-center"
| "align-middle"
| "align-top"
| "arrow-down"
| "arrow-left"
| "arrow-right"
| "arrow-up"
| "asterisk"
| "backspace"
| "battery"
| "battery-full"
| "bell"
| "bookmark"
| "border-all"
| "border-bottom"
| "border-left"
| "border-right"
| "border-top"
| "box"
| "briefcase"
| "brush"
| "calculator"
| "calendar"
| "camera"
| "cast"
| "check"
| "chevron-double-down"
| "chevron-double-left"
| "chevron-double-right"
| "chevron-double-up"
| "chevron-down"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "clipboard"
| "cloud"
| "code"
| "code-slash"
| "controller"
| "credit-card"
| "crop"
| "dice-1"
| "dice-2"
| "dice-3"
| "dice-4"
| "dice-5"
| "dice-6"
| "disc"
| "distribute-horizontal"
| "distribute-vertical"
| "dribbble"
| "eject"
| "ethernet"
| "eye"
| "facebook"
| "file"
| "film"
| "flag"
| "folder"
| "gender-female"
| "gender-male"
| "gift"
| "globe"
| "google"
| "headset"
| "heart"
| "image"
| "inbox"
| "infinity"
| "info"
| "instagram"
| "key"
| "keyboard"
| "laptop"
| "link"
| "list"
| "lock"
| "magnet"
| "mic"
| "microsoft"
| "modem"
| "moon"
| "mouse"
| "music-note"
| "paypal"
| "pen"
| "phone"
| "pin"
| "plug"
| "printer"
| "quote"
| "record"
| "search"
| "server"
| "share"
| "shield"
| "signal"
| "slack"
| "square"
| "stack"
| "stopwatch"
| "sun"
| "tag"
| "terminal"
| "thermometer"
| "toggle-off"
| "toggle-on"
| "trash"
| "tree"
| "trophy"
| "tv"
| "twitter"
| "umbrella"
| "usb"
| "usb-c"
| "view-list"
| "vinyl"
| "voicemail"
| "webcam"
| "windows"
| "youtube"
| "zoom-in"
| "zoom-out"
| "album"
| "band-aid"
| "bolt"
| "bot"
| "bulb"
| "captions"
| "carousel"
| "chart"
| "coffee"
| "comment"
| "copy"
| "copyright"
| "crown"
| "data"
| "dock-bottom"
| "dock-left"
| "dock-right"
| "duplicate"
| "extension"
| "flag-alt"
| "ghost"
| "home"
| "log-in"
| "log-out"
| "music"
| "piano"
| "rename"
| "ruler"
| "shopping-bag"
| "smile"
| "time"
| "timer"
| "user"
| "volume"
| "align-left"
| "align-right"
| "anchor"
| "block"
| "cross"
| "desktop"
| "dialpad"
| "dollar"
| "euro"
| "expand"
| "export"
| "git-branch"
| "git-commit"
| "globe-alt"
| "home-alt"
| "import"
| "menu"
| "poll"
| "qr"
| "redo"
| "repeat"
| "scan"
| "shape-circle"
| "shape-square"
| "shape-triangle"
| "sidebar"
| "support"
| "sync"
| "tab"
| "trending-down"
| "undo"
| "c-plus-plus"
| "digitalocean"
| "figma"
| "patreon"
| "pocket"
| "product-hunt"
| "sketch"
| "trello"
| "unsplash"
| "close"
| "external"
| "feed"
| "mail"
| "options"
| "abstract"
| "add"
| "add-r"
| "adidas"
| "airplane"
| "apple-watch"
| "arrange-back"
| "arrange-front"
| "arrow-align-h"
| "arrow-align-v"
| "arrow-bottom-left"
| "arrow-bottom-left-o"
| "arrow-bottom-left-r"
| "arrow-bottom-right"
| "arrow-bottom-right-o"
| "arrow-bottom-right-r"
| "arrow-down-o"
| "arrow-down-r"
| "arrow-left-o"
| "arrow-left-r"
| "arrow-long-down"
| "arrow-long-down-c"
| "arrow-long-down-e"
| "arrow-long-down-l"
| "arrow-long-down-r"
| "arrow-long-left"
| "arrow-long-left-c"
| "arrow-long-left-e"
| "arrow-long-left-l"
| "arrow-long-left-r"
| "arrow-long-right"
| "arrow-long-right-c"
| "arrow-long-right-e"
| "arrow-long-right-l"
| "arrow-long-right-r"
| "arrow-long-up"
| "arrow-long-up-c"
| "arrow-long-up-e"
| "arrow-long-up-l"
| "arrow-long-up-r"
| "arrow-right-o"
| "arrow-right-r"
| "arrow-top-left"
| "arrow-top-left-o"
| "arrow-top-left-r"
| "arrow-top-right"
| "arrow-top-right-o"
| "arrow-top-right-r"
| "arrow-up-o"
| "arrow-up-r"
| "arrows-breake-h"
| "arrows-breake-v"
| "arrows-exchange"
| "arrows-exchange-alt"
| "arrows-exchange-alt-v"
| "arrows-exchange-v"
| "arrows-expand-down-left"
| "arrows-expand-down-right"
| "arrows-expand-left"
| "arrows-expand-left-alt"
| "arrows-expand-right"
| "arrows-expand-right-alt"
| "arrows-expand-up-left"
| "arrows-expand-up-right"
| "arrows-h"
| "arrows-h-alt"
| "arrows-merge-alt-h"
| "arrows-merge-alt-v"
| "arrows-scroll-h"
| "arrows-scroll-v"
| "arrows-shrink-h"
| "arrows-shrink-v"
| "arrows-v"
| "arrows-v-alt"
| "assign"
| "atlasian"
| "attachment"
| "attribution"
| "awards"
| "battery-empty"
| "bee"
| "bitbucket"
| "bmw"
| "board"
| "border-style-dashed"
| "border-style-dotted"
| "border-style-solid"
| "bowl"
| "boy"
| "brackets"
| "browse"
| "browser"
| "calendar-dates"
| "calendar-due"
| "calendar-next"
| "calendar-today"
| "calendar-two"
| "calibrate"
| "cap"
| "card-clubs"
| "card-diamonds"
| "card-hearts"
| "card-spades"
| "chanel"
| "check-o"
| "check-r"
| "chevron-double-down-o"
| "chevron-double-down-r"
| "chevron-double-left-o"
| "chevron-double-left-r"
| "chevron-double-right-o"
| "chevron-double-right-r"
| "chevron-double-up-o"
| "chevron-double-up-r"
| "chevron-down-o"
| "chevron-down-r"
| "chevron-left-o"
| "chevron-left-r"
| "chevron-right-o"
| "chevron-right-r"
| "chevron-up-o"
| "chevron-up-r"
| "circleci"
| "clapper-board"
| "close-o"
| "close-r"
| "code-climate"
| "collage"
| "color-bucket"
| "color-picker"
| "comedy-central"
| "community"
| "components"
| "compress"
| "compress-left"
| "compress-right"
| "compress-v"
| "corner-double-down-left"
| "corner-double-down-right"
| "corner-double-left-down"
| "corner-double-left-up"
| "corner-double-right-down"
| "corner-double-right-up"
| "corner-double-up-left"
| "corner-double-up-right"
| "corner-down-left"
| "corner-down-right"
| "corner-left-down"
| "corner-left-up"
| "corner-right-down"
| "corner-right-up"
| "corner-up-left"
| "corner-up-right"
| "crowdfire"
| "danger"
| "dark-mode"
| "database"
| "debug"
| "designmodo"
| "details-less"
| "details-more"
| "display-flex"
| "display-fullwidth"
| "display-grid"
| "display-spacing"
| "dock-window"
| "dolby"
| "drive"
| "drop"
| "drop-invert"
| "drop-opacity"
| "edit-black-point"
| "edit-contrast"
| "edit-exposure"
| "edit-fade"
| "edit-flip-h"
| "edit-flip-v"
| "edit-highlight"
| "edit-markup"
| "edit-mask"
| "edit-noise"
| "edit-shadows"
| "edit-straight"
| "edit-unmask"
| "enter"
| "erase"
| "ereader"
| "ericsson"
| "eventbrite"
| "extension-add"
| "extension-alt"
| "extension-remove"
| "eye-alt"
| "file-add"
| "file-document"
| "file-remove"
| "filters"
| "folder-add"
| "folder-remove"
| "font-height"
| "font-spacing"
| "format-bold"
| "format-center"
| "format-color"
| "format-heading"
| "format-indent-decrease"
| "format-indent-increase"
| "format-italic"
| "format-justify"
| "format-left"
| "format-line-height"
| "format-right"
| "format-separator"
| "format-slash"
| "format-strike"
| "format-text"
| "format-underline"
| "format-uppercase"
| "framer"
| "games"
| "ghost-character"
| "girl"
| "git-fork"
| "git-pull"
| "gitter"
| "glass"
| "glass-alt"
| "google-tasks"
| "gym"
| "hashtag"
| "hello"
| "home-screen"
| "icecream"
| "if-design"
| "indie-hackers"
| "inpicture"
| "insert-after"
| "insert-after-o"
| "insert-after-r"
| "insert-before"
| "insert-before-o"
| "insert-before-r"
| "insights"
| "internal"
| "keyhole"
| "lastpass"
| "layout-grid"
| "layout-grid-small"
| "layout-list"
| "layout-pin"
| "linear"
| "list-tree"
| "live-photo"
| "loadbar"
| "loadbar-alt"
| "loadbar-doc"
| "loadbar-sound"
| "lock-unlock"
| "log-off"
| "loupe"
| "mail-forward"
| "mail-open"
| "mail-reply"
| "math-divide"
| "math-equal"
| "math-minus"
| "math-percent"
| "math-plus"
| "maximize"
| "maximize-alt"
| "maze"
| "media-live"
| "media-podcast"
| "menu-boxed"
| "menu-cake"
| "menu-cheese"
| "menu-grid-o"
| "menu-grid-r"
| "menu-hotdog"
| "menu-left"
| "menu-left-alt"
| "menu-motion"
| "menu-oreos"
| "menu-right"
| "menu-right-alt"
| "menu-round"
| "merge-horizontal"
| "merge-vertical"
| "microbit"
| "mini-player"
| "minimize"
| "minimize-alt"
| "monday"
| "more"
| "more-alt"
| "more-o"
| "more-r"
| "more-vertical"
| "more-vertical-alt"
| "more-vertical-o"
| "more-vertical-r"
| "move-down"
| "move-left"
| "move-right"
| "move-task"
| "move-up"
| "music-speaker"
| "nametag"
| "notes"
| "notifications"
| "npm"
| "oculus"
| "open-collective"
| "organisation"
| "overflow"
| "pacman"
| "password"
| "path-back"
| "path-crop"
| "path-divide"
| "path-exclude"
| "path-front"
| "path-intersect"
| "path-outline"
| "path-trim"
| "path-unite"
| "pentagon-bottom-left"
| "pentagon-bottom-right"
| "pentagon-down"
| "pentagon-left"
| "pentagon-right"
| "pentagon-top-left"
| "pentagon-top-right"
| "pentagon-up"
| "performance"
| "pexels"
| "photoscan"
| "pill"
| "pin-alt"
| "pin-bottom"
| "pin-top"
| "play-backwards"
| "play-button"
| "play-button-o"
| "play-button-r"
| "play-forwards"
| "play-list"
| "play-list-add"
| "play-list-check"
| "play-list-remove"
| "play-list-search"
| "play-pause"
| "play-pause-o"
| "play-pause-r"
| "play-stop"
| "play-stop-o"
| "play-stop-r"
| "play-track-next"
| "play-track-next-o"
| "play-track-next-r"
| "play-track-prev"
| "play-track-prev-o"
| "play-track-prev-r"
| "pokemon"
| "polaroid"
| "presentation"
| "profile"
| "pull-clear"
| "push-chevron-down"
| "push-chevron-down-o"
| "push-chevron-down-r"
| "push-chevron-left"
| "push-chevron-left-o"
| "push-chevron-left-r"
| "push-chevron-right"
| "push-chevron-right-o"
| "push-chevron-right-r"
| "push-chevron-up"
| "push-chevron-up-o"
| "push-chevron-up-r"
| "push-down"
| "push-left"
| "push-right"
| "push-up"
| "quote-o"
| "radio-check"
| "radio-checked"
| "ratio"
| "read"
| "readme"
| "remote"
| "remove"
| "remove-r"
| "reorder"
| "ring"
| "row-first"
| "row-last"
| "sand-clock"
| "screen"
| "screen-mirror"
| "screen-shot"
| "screen-wide"
| "scroll-h"
| "scroll-v"
| "search-found"
| "search-loading"
| "select"
| "select-o"
| "select-r"
| "serverless"
| "shape-half-circle"
| "shape-hexagon"
| "shape-rhombus"
| "shape-zigzag"
| "shopping-cart"
| "shortcut"
| "shutterstock"
| "sidebar-open"
| "sidebar-right"
| "size"
| "sleep"
| "smart-home-boiler"
| "smart-home-cooker"
| "smart-home-heat"
| "smart-home-light"
| "smart-home-refrigerator"
| "smart-home-wash-machine"
| "smartphone"
| "smartphone-chip"
| "smartphone-ram"
| "smartphone-shake"
| "smile-mouth-open"
| "smile-neutral"
| "smile-no-mouth"
| "smile-none"
| "smile-sad"
| "smile-upside"
| "software-download"
| "software-upload"
| "sort-az"
| "sort-za"
| "space-between"
| "space-between-v"
| "spectrum"
| "spinner"
| "spinner-alt"
| "spinner-two"
| "spinner-two-alt"
| "stark"
| "stories"
| "studio"
| "style"
| "swap"
| "swap-vertical"
| "sweden"
| "swiss"
| "tally"
| "tap-double"
| "tap-single"
| "template"
| "tennis"
| "terrain"
| "thermostat"
| "tikcode"
| "timelapse"
| "today"
| "toggle-square"
| "toggle-square-off"
| "toolbar-bottom"
| "toolbar-left"
| "toolbar-right"
| "toolbar-top"
| "toolbox"
| "touchpad"
| "track"
| "transcript"
| "trash-empty"
| "trees"
| "trending"
| "twilio"
| "ui-kit"
| "unavailable"
| "unblock"
| "unfold"
| "user-add"
| "user-list"
| "user-remove"
| "userlane"
| "view-cols"
| "view-comfortable"
| "view-day"
| "view-grid"
| "view-month"
| "view-split"
| "voicemail-o"
| "voicemail-r"
| "website"
| "work-alt"
| "yinyang"
| "zeit"
# emojicc
"apple"
| "asterisk"
| "back"
| "balloon"
| "bank"
| "battery"
| "bell"
| "book"
| "bookmark"
| "briefcase"
| "bug"
| "calendar"
| "camera"
| "clipboard"
| "clock"
| "cloud"
| "dash"
| "droplet"
| "ear"
| "egg"
| "eject"
| "envelope"
| "exclamation"
| "eye"
| "eyeglasses"
| "gear"
| "gem"
| "gift"
| "hammer"
| "handbag"
| "hash"
| "headphones"
| "heart"
| "hearts"
| "hospital"
| "hourglass"
| "house"
| "joystick"
| "key"
| "keyboard"
| "link"
| "lock"
| "mailbox"
| "map"
| "mask"
| "mouse"
| "mouse2"
| "newspaper"
| "paperclip"
| "peace"
| "pencil"
| "printer"
| "projector"
| "question"
| "radioactive"
| "rainbow"
| "recycle"
| "robot"
| "scissors"
| "shield"
| "speaker"
| "star"
| "stars"
| "stopwatch"
| "sunglasses"
| "sunrise"
| "telephone"
| "thermometer"
| "ticket"
| "tools"
| "trophy"
| "truck"
| "tv"
| "umbrella"
| "unlock"
| "watch"
| "wrench"
| "x"
| "ambulance"
| "angry"
| "baseball"
| "basketball"
| "bath"
| "bed"
| "beer"
| "bomb"
| "bulb"
| "bus"
| "cake"
| "cat"
| "chart"
| "cheese"
| "church"
| "coffee"
| "confused"
| "cookie"
| "cool"
| "copyright"
| "crown"
| "dizzy"
| "dog"
| "factory"
| "ghost"
| "hotel"
| "label"
| "lemon"
| "medal"
| "microphone"
| "package"
| "parking"
| "pizza"
| "radio"
| "registered"
| "rocket"
| "school"
| "ship"
| "skull"
| "sleepy"
| "smile"
| "taxi"
| "timer"
| "train"
| "zap"
| "anchor"
| "atom"
| "cross"
| "desktop"
| "dollar"
| "euro"
| "football"
| "knife"
| "pound"
| "repeat"
| "rewind"
| "station"
| "yen"
| "end"
| "mute"
| "airplane"
| "bee"
| "boy"
| "girl"
| "icecream"
| "notes"
| "pill"
| "ring"
| "tennis"
| "a"
| "ab"
| "abc"
| "abcd"
| "accept"
| "aerialTramway"
| "airplaneArriving"
| "airplaneDeparture"
| "airplaneSmall"
| "alarmClock"
| "alembic"
| "alien"
| "amphora"
| "angel"
| "angelTone1"
| "angelTone2"
| "angelTone3"
| "angelTone4"
| "angelTone5"
| "anger"
| "angerRight"
| "anguished"
| "ant"
| "aquarius"
| "aries"
| "arrowBackward"
| "arrowDoubleDown"
| "arrowDoubleUp"
| "arrowDown"
| "arrowDownSmall"
| "arrowForward"
| "arrowHeadingDown"
| "arrowHeadingUp"
| "arrowLeft"
| "arrowLowerLeft"
| "arrowLowerRight"
| "arrowRight"
| "arrowRightHook"
| "arrowsClockwise"
| "arrowsCounterclockwise"
| "arrowUp"
| "arrowUpDown"
| "arrowUpperLeft"
| "arrowUpperRight"
| "arrowUpSmall"
| "art"
| "articulatedLorry"
| "astonished"
| "athleticShoe"
| "atm"
| "avocado"
| "b"
| "baby"
| "babyBottle"
| "babyChick"
| "babySymbol"
| "babyTone1"
| "babyTone2"
| "babyTone3"
| "babyTone4"
| "babyTone5"
| "bacon"
| "badminton"
| "baggageClaim"
| "ballotBox"
| "ballotBoxWithCheck"
| "bamboo"
| "banana"
| "bangbang"
| "barber"
| "barChart"
| "basketballPlayer"
| "basketballPlayerTone1"
| "basketballPlayerTone2"
| "basketballPlayerTone3"
| "basketballPlayerTone4"
| "basketballPlayerTone5"
| "bat"
| "bathTone1"
| "bathTone2"
| "bathTone3"
| "bathTone4"
| "bathTone5"
| "bathtub"
| "beach"
| "beachUmbrella"
| "bear"
| "beers"
| "beetle"
| "beginner"
| "bellhop"
| "bento"
| "bicyclist"
| "bicyclistTone1"
| "bicyclistTone2"
| "bicyclistTone3"
| "bicyclistTone4"
| "bicyclistTone5"
| "bike"
| "bikini"
| "biohazard"
| "bird"
| "birthday"
| "blackCircle"
| "blackHeart"
| "blackJoker"
| "blackLargeSquare"
| "blackMediumSmallSquare"
| "blackMediumSquare"
| "blackNib"
| "blackSmallSquare"
| "blackSquareButton"
| "blossom"
| "blowfish"
| "blueBook"
| "blueCar"
| "blueCircle"
| "blueHeart"
| "blush"
| "boar"
| "bookmarkTabs"
| "books"
| "boom"
| "boot"
| "bouquet"
| "bow"
| "bowAndArrow"
| "bowling"
| "bowTone1"
| "bowTone2"
| "bowTone3"
| "bowTone4"
| "bowTone5"
| "boxingGlove"
| "boyTone1"
| "boyTone2"
| "boyTone3"
| "boyTone4"
| "boyTone5"
| "bread"
| "brideWithVeil"
| "brideWithVeilTone1"
| "brideWithVeilTone2"
| "brideWithVeilTone3"
| "brideWithVeilTone4"
| "brideWithVeilTone5"
| "bridgeAtNight"
| "brokenHeart"
| "bullettrainFront"
| "bullettrainSide"
| "burrito"
| "busstop"
| "bustInSilhouette"
| "bustsInSilhouette"
| "butterfly"
| "cactus"
| "calendarSpiral"
| "calling"
| "callMe"
| "callMeTone1"
| "callMeTone2"
| "callMeTone3"
| "callMeTone4"
| "callMeTone5"
| "camel"
| "cameraWithFlash"
| "camping"
| "cancer"
| "candle"
| "candy"
| "canoe"
| "capitalAbcd"
| "capricorn"
| "cardBox"
| "cardIndex"
| "carouselHorse"
| "carrot"
| "cartwheel"
| "cartwheelTone1"
| "cartwheelTone2"
| "cartwheelTone3"
| "cartwheelTone4"
| "cartwheelTone5"
| "cat2"
| "cd"
| "chains"
| "champagne"
| "champagneGlass"
| "chartWithDownwardsTrend"
| "chartWithUpwardsTrend"
| "checkeredFlag"
| "cherries"
| "cherryBlossom"
| "chestnut"
| "chicken"
| "childrenCrossing"
| "chipmunk"
| "chocolateBar"
| "christmasTree"
| "cinema"
| "circusTent"
| "cityDusk"
| "cityscape"
| "citySunset"
| "cl"
| "clap"
| "clapper"
| "clapTone1"
| "clapTone2"
| "clapTone3"
| "clapTone4"
| "clapTone5"
| "classicalBuilding"
| "clock1"
| "clock2"
| "clock3"
| "clock4"
| "clock5"
| "clock6"
| "clock7"
| "clock8"
| "clock9"
| "clock10"
| "clock11"
| "clock12"
| "clock130"
| "clock230"
| "clock330"
| "clock430"
| "clock530"
| "clock630"
| "clock730"
| "clock830"
| "clock930"
| "clock1030"
| "clock1130"
| "clock1230"
| "closedBook"
| "closedLockWithKey"
| "closedUmbrella"
| "cloudLightning"
| "cloudRain"
| "cloudSnow"
| "cloudTornado"
| "clown"
| "clubs"
| "cocktail"
| "coffin"
| "coldSweat"
| "comet"
| "compression"
| "computer"
| "confettiBall"
| "confounded"
| "congratulations"
| "construction"
| "constructionSite"
| "constructionWorker"
| "constructionWorkerTone1"
| "constructionWorkerTone2"
| "constructionWorkerTone3"
| "constructionWorkerTone4"
| "constructionWorkerTone5"
| "controlKnobs"
| "convenienceStore"
| "cooking"
| "cop"
| "copTone1"
| "copTone2"
| "copTone3"
| "copTone4"
| "copTone5"
| "corn"
| "couch"
| "couple"
| "couplekiss"
| "coupleMm"
| "coupleWithHeart"
| "coupleWw"
| "cow"
| "cow2"
| "cowboy"
| "crab"
| "crayon"
| "creditCard"
| "crescentMoon"
| "cricket"
| "crocodile"
| "croissant"
| "crossedFlags"
| "crossedSwords"
| "cruiseShip"
| "cry"
| "cryingCatFace"
| "crystalBall"
| "cucumber"
| "cupid"
| "curlyLoop"
| "currencyExchange"
| "curry"
| "custard"
| "customs"
| "cyclone"
| "dagger"
| "dancer"
| "dancers"
| "dancerTone1"
| "dancerTone2"
| "dancerTone3"
| "dancerTone4"
| "dancerTone5"
| "dango"
| "darkSunglasses"
| "dart"
| "date"
| "deciduousTree"
| "deer"
| "departmentStore"
| "desert"
| "diamonds"
| "diamondShapeWithADotInside"
| "disappointed"
| "disappointedRelieved"
| "dividers"
| "dizzyFace"
| "dog2"
| "dolls"
| "dolphin"
| "doNotLitter"
| "door"
| "doughnut"
| "dove"
| "dragon"
| "dragonFace"
| "dress"
| "dromedaryCamel"
| "droolingFace"
| "drum"
| "duck"
| "dvd"
| "eagle"
| "earOfRice"
| "earthAfrica"
| "earthAmericas"
| "earthAsia"
| "earTone1"
| "earTone2"
| "earTone3"
| "earTone4"
| "earTone5"
| "eggplant"
| "eight"
| "eightBall"
| "eightPointedBlackStar"
| "eightSpokedAsterisk"
| "electricPlug"
| "elephant"
| "eMail"
| "envelopeWithArrow"
| "europeanCastle"
| "europeanPostOffice"
| "evergreenTree"
| "expressionless"
| "eyeInSpeechBubble"
| "eyes"
| "facePalm"
| "facePalmTone1"
| "facePalmTone2"
| "facePalmTone3"
| "facePalmTone4"
| "facePalmTone5"
| "fallenLeaf"
| "family"
| "familyMmb"
| "familyMmbb"
| "familyMmg"
| "familyMmgb"
| "familyMmgg"
| "familyMwbb"
| "familyMwg"
| "familyMwgb"
| "familyMwgg"
| "familyWwb"
| "familyWwbb"
| "familyWwg"
| "familyWwgb"
| "familyWwgg"
| "fastForward"
| "fax"
| "fearful"
| "feet"
| "fencer"
| "ferrisWheel"
| "ferry"
| "fieldHockey"
| "fileCabinet"
| "fileFolder"
| "filmFrames"
| "fingersCrossed"
| "fingersCrossedTone1"
| "fingersCrossedTone2"
| "fingersCrossedTone3"
| "fingersCrossedTone4"
| "fingersCrossedTone5"
| "fire"
| "fireEngine"
| "fireworks"
| "firstPlace"
| "firstQuarterMoon"
| "firstQuarterMoonWithFace"
| "fish"
| "fishCake"
| "fishingPoleAndFish"
| "fist"
| "fistTone1"
| "fistTone2"
| "fistTone3"
| "fistTone4"
| "fistTone5"
| "five"
| "flagAC"
| "flagAD"
| "flagAE"
| "flagAF"
| "flagAG"
| "flagAI"
| "flagAL"
| "flagAM"
| "flagAO"
| "flagAQ"
| "flagAR"
| "flagAS"
| "flagAT"
| "flagAU"
| "flagAW"
| "flagAX"
| "flagAZ"
| "flagBA"
| "flagBB"
| "flagBD"
| "flagBE"
| "flagBF"
| "flagBG"
| "flagBH"
| "flagBI"
| "flagBJ"
| "flagBL"
| "flagBlack"
| "flagBM"
| "flagBN"
| "flagBO"
| "flagBQ"
| "flagBR"
| "flagBS"
| "flagBT"
| "flagBV"
| "flagBW"
| "flagBY"
| "flagBZ"
| "flagCA"
| "flagCC"
| "flagCD"
| "flagCF"
| "flagCG"
| "flagCH"
| "flagCI"
| "flagCK"
| "flagCL"
| "flagCM"
| "flagCN"
| "flagCO"
| "flagCP"
| "flagCR"
| "flagCU"
| "flagCV"
| "flagCW"
| "flagCX"
| "flagCY"
| "flagCZ"
| "flagDE"
| "flagDG"
| "flagDJ"
| "flagDK"
| "flagDM"
| "flagDO"
| "flagDZ"
| "flagEA"
| "flagEC"
| "flagEE"
| "flagEG"
| "flagEH"
| "flagER"
| "flagES"
| "flagET"
| "flagEU"
| "flagFI"
| "flagFJ"
| "flagFK"
| "flagFM"
| "flagFO"
| "flagFR"
| "flagGA"
| "flagGB"
| "flagGD"
| "flagGE"
| "flagGF"
| "flagGG"
| "flagGH"
| "flagGI"
| "flagGL"
| "flagGM"
| "flagGN"
| "flagGP"
| "flagGQ"
| "flagGR"
| "flagGS"
| "flagGT"
| "flagGU"
| "flagGW"
| "flagGY"
| "flagHK"
| "flagHM"
| "flagHN"
| "flagHR"
| "flagHT"
| "flagHU"
| "flagIC"
| "flagID"
| "flagIE"
| "flagIL"
| "flagIM"
| "flagIN"
| "flagIO"
| "flagIQ"
| "flagIR"
| "flagIS"
| "flagIT"
| "flagJE"
| "flagJM"
| "flagJO"
| "flagJP"
| "flagKE"
| "flagKG"
| "flagKH"
| "flagKI"
| "flagKM"
| "flagKN"
| "flagKP"
| "flagKR"
| "flagKW"
| "flagKY"
| "flagKZ"
| "flagLA"
| "flagLB"
| "flagLC"
| "flagLI"
| "flagLK"
| "flagLR"
| "flagLS"
| "flagLT"
| "flagLU"
| "flagLV"
| "flagLY"
| "flagMA"
| "flagMC"
| "flagMD"
| "flagME"
| "flagMF"
| "flagMG"
| "flagMH"
| "flagMK"
| "flagML"
| "flagMM"
| "flagMN"
| "flagMO"
| "flagMP"
| "flagMQ"
| "flagMR"
| "flagMS"
| "flagMT"
| "flagMU"
| "flagMV"
| "flagMW"
| "flagMX"
| "flagMY"
| "flagMZ"
| "flagNA"
| "flagNC"
| "flagNE"
| "flagNF"
| "flagNG"
| "flagNI"
| "flagNL"
| "flagNO"
| "flagNP"
| "flagNR"
| "flagNU"
| "flagNZ"
| "flagOM"
| "flagPA"
| "flagPE"
| "flagPF"
| "flagPG"
| "flagPH"
| "flagPK"
| "flagPL"
| "flagPM"
| "flagPN"
| "flagPR"
| "flagPS"
| "flagPT"
| "flagPW"
| "flagPY"
| "flagQA"
| "flagRE"
| "flagRO"
| "flagRS"
| "flagRU"
| "flagRW"
| "flags"
| "flagSA"
| "flagSB"
| "flagSC"
| "flagSD"
| "flagSE"
| "flagSG"
| "flagSH"
| "flagSI"
| "flagSJ"
| "flagSK"
| "flagSL"
| "flagSM"
| "flagSN"
| "flagSO"
| "flagSR"
| "flagSS"
| "flagST"
| "flagSV"
| "flagSX"
| "flagSY"
| "flagSZ"
| "flagTA"
| "flagTC"
| "flagTD"
| "flagTF"
| "flagTG"
| "flagTH"
| "flagTJ"
| "flagTK"
| "flagTL"
| "flagTM"
| "flagTN"
| "flagTO"
| "flagTR"
| "flagTT"
| "flagTV"
| "flagTW"
| "flagTZ"
| "flagUA"
| "flagUG"
| "flagUM"
| "flagUS"
| "flagUY"
| "flagUZ"
| "flagVA"
| "flagVC"
| "flagVE"
| "flagVG"
| "flagVI"
| "flagVN"
| "flagVU"
| "flagWF"
| "flagWhite"
| "flagWS"
| "flagXK"
| "flagYE"
| "flagYT"
| "flagZA"
| "flagZM"
| "flagZW"
| "flashlight"
| "fleurDeLis"
| "floppyDisk"
| "flowerPlayingCards"
| "flushed"
| "fog"
| "foggy"
| "footprints"
| "forkAndKnife"
| "forkKnifePlate"
| "fountain"
| "four"
| "fourLeafClover"
| "fox"
| "framePhoto"
| "free"
| "frenchBread"
| "friedShrimp"
| "fries"
| "frog"
| "frowning"
| "frowning2"
| "fuelpump"
| "fullMoon"
| "fullMoonWithFace"
| "gameDie"
| "gemini"
| "giftHeart"
| "girlTone1"
| "girlTone2"
| "girlTone3"
| "girlTone4"
| "girlTone5"
| "globeWithMeridians"
| "goal"
| "goat"
| "golf"
| "golfer"
| "gorilla"
| "grapes"
| "greenApple"
| "greenBook"
| "greenHeart"
| "greyExclamation"
| "greyQuestion"
| "grimacing"
| "grin"
| "grinning"
| "guardsman"
| "guardsmanTone1"
| "guardsmanTone2"
| "guardsmanTone3"
| "guardsmanTone4"
| "guardsmanTone5"
| "guitar"
| "gun"
| "haircut"
| "haircutTone1"
| "haircutTone2"
| "haircutTone3"
| "haircutTone4"
| "haircutTone5"
| "hamburger"
| "hammerPick"
| "hamster"
| "handball"
| "handballTone1"
| "handballTone2"
| "handballTone3"
| "handballTone4"
| "handballTone5"
| "handshake"
| "handshakeTone1"
| "handshakeTone2"
| "handshakeTone3"
| "handshakeTone4"
| "handshakeTone5"
| "handSplayed"
| "handSplayedTone1"
| "handSplayedTone2"
| "handSplayedTone3"
| "handSplayedTone4"
| "handSplayedTone5"
| "hatchedChick"
| "hatchingChick"
| "headBandage"
| "hearNoEvil"
| "heartbeat"
| "heartDecoration"
| "heartExclamation"
| "heartEyes"
| "heartEyesCat"
| "heartpulse"
| "heavyCheckMark"
| "heavyDivisionSign"
| "heavyDollarSign"
| "heavyMinusSign"
| "heavyMultiplicationX"
| "heavyPlusSign"
| "helicopter"
| "helmetWithCross"
| "herb"
| "hibiscus"
| "highBrightness"
| "highHeel"
| "hockey"
| "hole"
| "homes"
| "honeyPot"
| "horse"
| "horseRacing"
| "horseRacingTone1"
| "horseRacingTone2"
| "horseRacingTone3"
| "horseRacingTone4"
| "horseRacingTone5"
| "hotdog"
| "hotPepper"
| "hotsprings"
| "hourglassFlowingSand"
| "houseAbandoned"
| "houseWithGarden"
| "hugging"
| "hundred"
| "hushed"
| "iceSkate"
| "id"
| "ideographAdvantage"
| "imp"
| "inboxTray"
| "incomingEnvelope"
| "informationDeskPerson"
| "informationDeskPersonTone1"
| "informationDeskPersonTone2"
| "informationDeskPersonTone3"
| "informationDeskPersonTone4"
| "informationDeskPersonTone5"
| "informationSource"
| "innocent"
| "interrobang"
| "iphone"
| "island"
| "izakayaLantern"
| "jackOLantern"
| "japan"
| "japaneseCastle"
| "japaneseGoblin"
| "japaneseOgre"
| "jeans"
| "joy"
| "joyCat"
| "juggling"
| "jugglingTone1"
| "jugglingTone2"
| "jugglingTone3"
| "jugglingTone4"
| "jugglingTone5"
| "kaaba"
| "key2"
| "keycapTen"
| "kimono"
| "kiss"
| "kissing"
| "kissingCat"
| "kissingClosedEyes"
| "kissingHeart"
| "kissingSmilingEyes"
| "kissMm"
| "kissWw"
| "kiwi"
| "koala"
| "koko"
| "largeBlueDiamond"
| "largeOrangeDiamond"
| "lastQuarterMoon"
| "lastQuarterMoonWithFace"
| "laughing"
| "leaves"
| "ledger"
| "leftFacingFist"
| "leftFacingFistTone1"
| "leftFacingFistTone2"
| "leftFacingFistTone3"
| "leftFacingFistTone4"
| "leftFacingFistTone5"
| "leftLuggage"
| "leftRightArrow"
| "leftwardsArrowWithHook"
| "leo"
| "leopard"
| "levelSlider"
| "levitate"
| "libra"
| "lifter"
| "lifterTone1"
| "lifterTone2"
| "lifterTone3"
| "lifterTone4"
| "lifterTone5"
| "lightRail"
| "lionFace"
| "lips"
| "lipstick"
| "lizard"
| "lockWithInkPen"
| "lollipop"
| "loop"
| "loudSound"
| "loudspeaker"
| "loveHotel"
| "loveLetter"
| "lowBrightness"
| "lyingFace"
| "m"
| "mag"
| "magRight"
| "mahjong"
| "mailboxClosed"
| "mailboxWithMail"
| "mailboxWithNoMail"
| "man"
| "manDancing"
| "manDancingTone1"
| "manDancingTone2"
| "manDancingTone3"
| "manDancingTone4"
| "manDancingTone5"
| "manInTuxedo"
| "manInTuxedoTone1"
| "manInTuxedoTone2"
| "manInTuxedoTone3"
| "manInTuxedoTone4"
| "manInTuxedoTone5"
| "mansShoe"
| "manTone1"
| "manTone2"
| "manTone3"
| "manTone4"
| "manTone5"
| "manWithGuaPiMao"
| "manWithGuaPiMaoTone1"
| "manWithGuaPiMaoTone2"
| "manWithGuaPiMaoTone3"
| "manWithGuaPiMaoTone4"
| "manWithGuaPiMaoTone5"
| "manWithTurban"
| "manWithTurbanTone1"
| "manWithTurbanTone2"
| "manWithTurbanTone3"
| "manWithTurbanTone4"
| "manWithTurbanTone5"
| "mapleLeaf"
| "martialArtsUniform"
| "massage"
| "massageTone1"
| "massageTone2"
| "massageTone3"
| "massageTone4"
| "massageTone5"
| "meatOnBone"
| "mega"
| "melon"
| "menorah"
| "mens"
| "metal"
| "metalTone1"
| "metalTone2"
| "metalTone3"
| "metalTone4"
| "metalTone5"
| "metro"
| "microphone2"
| "microscope"
| "middleFinger"
| "middleFingerTone1"
| "middleFingerTone2"
| "middleFingerTone3"
| "middleFingerTone4"
| "middleFingerTone5"
| "militaryMedal"
| "milk"
| "milkyWay"
| "minibus"
| "minidisc"
| "mobilePhoneOff"
| "moneybag"
| "moneyMouth"
| "moneyWithWings"
| "monkey"
| "monkeyFace"
| "monorail"
| "mortarBoard"
| "mosque"
| "motorboat"
| "motorcycle"
| "motorScooter"
| "motorway"
| "mountain"
| "mountainBicyclist"
| "mountainBicyclistTone1"
| "mountainBicyclistTone2"
| "mountainBicyclistTone3"
| "mountainBicyclistTone4"
| "mountainBicyclistTone5"
| "mountainCableway"
| "mountainRailway"
| "mountainSnow"
| "mountFuji"
| "mouseThreeButton"
| "movieCamera"
| "moyai"
| "mrsClaus"
| "mrsClausTone1"
| "mrsClausTone2"
| "mrsClausTone3"
| "mrsClausTone4"
| "mrsClausTone5"
| "muscle"
| "muscleTone1"
| "muscleTone2"
| "muscleTone3"
| "muscleTone4"
| "muscleTone5"
| "mushroom"
| "musicalKeyboard"
| "musicalNote"
| "musicalScore"
| "nailCare"
| "nailCareTone1"
| "nailCareTone2"
| "nailCareTone3"
| "nailCareTone4"
| "nailCareTone5"
| "nameBadge"
| "nauseatedFace"
| "necktie"
| "negativeSquaredCrossMark"
| "nerd"
| "neutralFace"
| "new"
| "newMoon"
| "newMoonWithFace"
| "newspaper2"
| "ng"
| "nightWithStars"
| "nine"
| "noBell"
| "noBicycles"
| "noEntry"
| "noEntrySign"
| "noGood"
| "noGoodTone1"
| "noGoodTone2"
| "noGoodTone3"
| "noGoodTone4"
| "noGoodTone5"
| "noMobilePhones"
| "noMouth"
| "nonPotableWater"
| "noPedestrians"
| "nose"
| "noseTone1"
| "noseTone2"
| "noseTone3"
| "noseTone4"
| "noseTone5"
| "noSmoking"
| "notebook"
| "notebookWithDecorativeCover"
| "notepadSpiral"
| "nutAndBolt"
| "o"
| "o2"
| "ocean"
| "octagonalSign"
| "octopus"
| "oden"
| "office"
| "oil"
| "ok"
| "okHand"
| "okHandTone1"
| "okHandTone2"
| "okHandTone3"
| "okHandTone4"
| "okHandTone5"
| "okWoman"
| "okWomanTone1"
| "okWomanTone2"
| "okWomanTone3"
| "okWomanTone4"
| "okWomanTone5"
| "olderMan"
| "olderManTone1"
| "olderManTone2"
| "olderManTone3"
| "olderManTone4"
| "olderManTone5"
| "olderWoman"
| "olderWomanTone1"
| "olderWomanTone2"
| "olderWomanTone3"
| "olderWomanTone4"
| "olderWomanTone5"
| "omSymbol"
| "on"
| "oncomingAutomobile"
| "oncomingBus"
| "oncomingPoliceCar"
| "oncomingTaxi"
| "one"
| "oneTwoThreeFour"
| "openFileFolder"
| "openHands"
| "openHandsTone1"
| "openHandsTone2"
| "openHandsTone3"
| "openHandsTone4"
| "openHandsTone5"
| "openMouth"
| "ophiuchus"
| "orangeBook"
| "orthodoxCross"
| "outboxTray"
| "owl"
| "ox"
| "pageFacingUp"
| "pager"
| "pageWithCurl"
| "paintbrush"
| "palmTree"
| "pancakes"
| "pandaFace"
| "paperclips"
| "park"
| "partAlternationMark"
| "partlySunny"
| "passportControl"
| "pauseButton"
| "peach"
| "peanuts"
| "pear"
| "penBallpoint"
| "pencil2"
| "penFountain"
| "penguin"
| "pensive"
| "performingArts"
| "persevere"
| "personFrowning"
| "personFrowningTone1"
| "personFrowningTone2"
| "personFrowningTone3"
| "personFrowningTone4"
| "personFrowningTone5"
| "personWithBlondHair"
| "personWithBlondHairTone1"
| "personWithBlondHairTone2"
| "personWithBlondHairTone3"
| "personWithBlondHairTone4"
| "personWithBlondHairTone5"
| "personWithPoutingFace"
| "personWithPoutingFaceTone1"
| "personWithPoutingFaceTone2"
| "personWithPoutingFaceTone3"
| "personWithPoutingFaceTone4"
| "personWithPoutingFaceTone5"
| "pick"
| "pig"
| "pig2"
| "pigNose"
| "pineapple"
| "pingPong"
| "pisces"
| "placeOfWorship"
| "playPause"
| "pointDown"
| "pointDownTone1"
| "pointDownTone2"
| "pointDownTone3"
| "pointDownTone4"
| "pointDownTone5"
| "pointLeft"
| "pointLeftTone1"
| "pointLeftTone2"
| "pointLeftTone3"
| "pointLeftTone4"
| "pointLeftTone5"
| "pointRight"
| "pointRightTone1"
| "pointRightTone2"
| "pointRightTone3"
| "pointRightTone4"
| "pointRightTone5"
| "pointUp"
| "pointUp2"
| "pointUp2Tone1"
| "pointUp2Tone2"
| "pointUp2Tone3"
| "pointUp2Tone4"
| "pointUp2Tone5"
| "pointUpTone1"
| "pointUpTone2"
| "pointUpTone3"
| "pointUpTone4"
| "pointUpTone5"
| "policeCar"
| "poodle"
| "poop"
| "popcorn"
| "postalHorn"
| "postbox"
| "postOffice"
| "potableWater"
| "potato"
| "pouch"
| "poultryLeg"
| "poutingCat"
| "pray"
| "prayerBeads"
| "prayTone1"
| "prayTone2"
| "prayTone3"
| "prayTone4"
| "prayTone5"
| "pregnantWoman"
| "pregnantWomanTone1"
| "pregnantWomanTone2"
| "pregnantWomanTone3"
| "pregnantWomanTone4"
| "pregnantWomanTone5"
| "prince"
| "princess"
| "princessTone1"
| "princessTone2"
| "princessTone3"
| "princessTone4"
| "princessTone5"
| "princeTone1"
| "princeTone2"
| "princeTone3"
| "princeTone4"
| "princeTone5"
| "punch"
| "punchTone1"
| "punchTone2"
| "punchTone3"
| "punchTone4"
| "punchTone5"
| "purpleHeart"
| "purse"
| "pushpin"
| "putLitterInItsPlace"
| "rabbit"
| "rabbit2"
| "raceCar"
| "racehorse"
| "radioButton"
| "rage"
| "railwayCar"
| "railwayTrack"
| "rainbowFlag"
| "raisedBackOfHand"
| "raisedBackOfHandTone1"
| "raisedBackOfHandTone2"
| "raisedBackOfHandTone3"
| "raisedBackOfHandTone4"
| "raisedBackOfHandTone5"
| "raisedHand"
| "raisedHands"
| "raisedHandsTone1"
| "raisedHandsTone2"
| "raisedHandsTone3"
| "raisedHandsTone4"
| "raisedHandsTone5"
| "raisedHandTone1"
| "raisedHandTone2"
| "raisedHandTone3"
| "raisedHandTone4"
| "raisedHandTone5"
| "raisingHand"
| "raisingHandTone1"
| "raisingHandTone2"
| "raisingHandTone3"
| "raisingHandTone4"
| "raisingHandTone5"
| "ram"
| "ramen"
| "rat"
| "recordButton"
| "redCar"
| "redCircle"
| "regionalIndicatorA"
| "regionalIndicatorB"
| "regionalIndicatorC"
| "regionalIndicatorD"
| "regionalIndicatorE"
| "regionalIndicatorF"
| "regionalIndicatorG"
| "regionalIndicatorH"
| "regionalIndicatorI"
| "regionalIndicatorJ"
| "regionalIndicatorK"
| "regionalIndicatorL"
| "regionalIndicatorM"
| "regionalIndicatorN"
| "regionalIndicatorO"
| "regionalIndicatorP"
| "regionalIndicatorQ"
| "regionalIndicatorR"
| "regionalIndicatorS"
| "regionalIndicatorT"
| "regionalIndicatorU"
| "regionalIndicatorV"
| "regionalIndicatorW"
| "regionalIndicatorX"
| "regionalIndicatorY"
| "regionalIndicatorZ"
| "relaxed"
| "relieved"
| "reminderRibbon"
| "repeatOne"
| "restroom"
| "revolvingHearts"
| "rhino"
| "ribbon"
| "rice"
| "riceBall"
| "riceCracker"
| "riceScene"
| "rightFacingFist"
| "rightFacingFistTone1"
| "rightFacingFistTone2"
| "rightFacingFistTone3"
| "rightFacingFistTone4"
| "rightFacingFistTone5"
| "rofl"
| "rollerCoaster"
| "rollingEyes"
| "rooster"
| "rose"
| "rosette"
| "rotatingLight"
| "roundPushpin"
| "rowboat"
| "rowboatTone1"
| "rowboatTone2"
| "rowboatTone3"
| "rowboatTone4"
| "rowboatTone5"
| "rugbyFootball"
| "runner"
| "runnerTone1"
| "runnerTone2"
| "runnerTone3"
| "runnerTone4"
| "runnerTone5"
| "runningShirtWithSash"
| "sa"
| "sagittarius"
| "sailboat"
| "sake"
| "salad"
| "sandal"
| "santa"
| "santaTone1"
| "santaTone2"
| "santaTone3"
| "santaTone4"
| "santaTone5"
| "satellite"
| "satelliteOrbital"
| "saxophone"
| "scales"
| "schoolSatchel"
| "scooter"
| "scorpion"
| "scorpius"
| "scream"
| "screamCat"
| "scroll"
| "seat"
| "secondPlace"
| "secret"
| "seedling"
| "seeNoEvil"
| "selfie"
| "selfieTone1"
| "selfieTone2"
| "selfieTone3"
| "selfieTone4"
| "selfieTone5"
| "seven"
| "shallowPanOfFood"
| "shamrock"
| "shark"
| "shavedIce"
| "sheep"
| "shell"
| "shintoShrine"
| "shirt"
| "shoppingBags"
| "shoppingCart"
| "shower"
| "shrimp"
| "shrug"
| "shrugTone1"
| "shrugTone2"
| "shrugTone3"
| "shrugTone4"
| "shrugTone5"
| "signalStrength"
| "six"
| "sixPointedStar"
| "ski"
| "skier"
| "skullCrossbones"
| "sleeping"
| "sleepingAccommodation"
| "slightFrown"
| "slightSmile"
| "slotMachine"
| "smallBlueDiamond"
| "smallOrangeDiamond"
| "smallRedTriangle"
| "smallRedTriangleDown"
| "smileCat"
| "smiley"
| "smileyCat"
| "smilingImp"
| "smirk"
| "smirkCat"
| "smoking"
| "snail"
| "snake"
| "sneezingFace"
| "snowboarder"
| "snowflake"
| "snowman"
| "snowman2"
| "sob"
| "soccer"
| "soon"
| "sos"
| "sound"
| "spaceInvader"
| "spades"
| "spaghetti"
| "sparkle"
| "sparkler"
| "sparkles"
| "sparklingHeart"
| "speakingHead"
| "speakNoEvil"
| "speechBalloon"
| "speechLeft"
| "speedboat"
| "spider"
| "spiderWeb"
| "spoon"
| "spy"
| "spyTone1"
| "spyTone2"
| "spyTone3"
| "spyTone4"
| "spyTone5"
| "squid"
| "stadium"
| "star2"
| "starAndCrescent"
| "starOfDavid"
| "statueOfLiberty"
| "steamLocomotive"
| "stew"
| "stopButton"
| "straightRuler"
| "strawberry"
| "stuckOutTongue"
| "stuckOutTongueClosedEyes"
| "stuckOutTongueWinkingEye"
| "stuffedFlatbread"
| "sunflower"
| "sunny"
| "sunriseOverMountains"
| "sunWithFace"
| "surfer"
| "surferTone1"
| "surferTone2"
| "surferTone3"
| "surferTone4"
| "surferTone5"
| "sushi"
| "suspensionRailway"
| "sweat"
| "sweatDrops"
| "sweatSmile"
| "sweetPotato"
| "swimmer"
| "swimmerTone1"
| "swimmerTone2"
| "swimmerTone3"
| "swimmerTone4"
| "swimmerTone5"
| "symbols"
| "synagogue"
| "syringe"
| "taco"
| "tada"
| "tanabataTree"
| "tangerine"
| "taurus"
| "tea"
| "telephoneReceiver"
| "telescope"
| "tent"
| "thermometerFace"
| "thinking"
| "thirdPlace"
| "thoughtBalloon"
| "three"
| "thumbsdown"
| "thumbsdownTone1"
| "thumbsdownTone2"
| "thumbsdownTone3"
| "thumbsdownTone4"
| "thumbsdownTone5"
| "thumbsup"
| "thumbsupTone1"
| "thumbsupTone2"
| "thumbsupTone3"
| "thumbsupTone4"
| "thumbsupTone5"
| "thunderCloudRain"
| "tickets"
| "tiger"
| "tiger2"
| "tiredFace"
| "tm"
| "toilet"
| "tokyoTower"
| "tomato"
| "tone1"
| "tone2"
| "tone3"
| "tone4"
| "tone5"
| "tongue"
| "top"
| "tophat"
| "trackball"
| "trackNext"
| "trackPrevious"
| "tractor"
| "trafficLight"
| "train2"
| "tram"
| "triangularFlagOnPost"
| "triangularRuler"
| "trident"
| "triumph"
| "trolleybus"
| "tropicalDrink"
| "tropicalFish"
| "trumpet"
| "tulip"
| "tumblerGlass"
| "turkey"
| "turtle"
| "twistedRightwardsArrows"
| "two"
| "twoHearts"
| "twoMenHoldingHands"
| "twoWomenHoldingHands"
| "u6e80"
| "u7a7a"
| "u55b6"
| "u5272"
| "u5408"
| "u6307"
| "u6708"
| "u6709"
| "u7121"
| "u7533"
| "u7981"
| "umbrella2"
| "unamused"
| "underage"
| "unicorn"
| "up"
| "upsideDown"
| "urn"
| "v"
| "verticalTrafficLight"
| "vhs"
| "vibrationMode"
| "videoCamera"
| "videoGame"
| "violin"
| "virgo"
| "volcano"
| "volleyball"
| "vs"
| "vTone1"
| "vTone2"
| "vTone3"
| "vTone4"
| "vTone5"
| "vulcan"
| "vulcanTone1"
| "vulcanTone2"
| "vulcanTone3"
| "vulcanTone4"
| "vulcanTone5"
| "walking"
| "walkingTone1"
| "walkingTone2"
| "walkingTone3"
| "walkingTone4"
| "walkingTone5"
| "waningCrescentMoon"
| "waningGibbousMoon"
| "warning"
| "wastebasket"
| "waterBuffalo"
| "watermelon"
| "waterPolo"
| "waterPoloTone1"
| "waterPoloTone2"
| "waterPoloTone3"
| "waterPoloTone4"
| "waterPoloTone5"
| "wave"
| "waveTone1"
| "waveTone2"
| "waveTone3"
| "waveTone4"
| "waveTone5"
| "wavyDash"
| "waxingCrescentMoon"
| "waxingGibbousMoon"
| "wc"
| "weary"
| "wedding"
| "whale"
| "whale2"
| "wheelchair"
| "wheelOfDharma"
| "whiteCheckMark"
| "whiteCircle"
| "whiteFlower"
| "whiteLargeSquare"
| "whiteMediumSmallSquare"
| "whiteMediumSquare"
| "whiteSmallSquare"
| "whiteSquareButton"
| "whiteSunCloud"
| "whiteSunRainCloud"
| "whiteSunSmallCloud"
| "wiltedRose"
| "windBlowingFace"
| "windChime"
| "wineGlass"
| "wink"
| "wolf"
| "woman"
| "womansClothes"
| "womansHat"
| "womanTone1"
| "womanTone2"
| "womanTone3"
| "womanTone4"
| "womanTone5"
| "womens"
| "worried"
| "wrestlers"
| "wrestlersTone1"
| "wrestlersTone2"
| "wrestlersTone3"
| "wrestlersTone4"
| "wrestlersTone5"
| "writingHand"
| "writingHandTone1"
| "writingHandTone2"
| "writingHandTone3"
| "writingHandTone4"
| "writingHandTone5"
| "yellowHeart"
| "yinYang"
| "yum"
| "zero"
| "zipperMouth"
| "zzz"
# eos
{
# animated
"compass"
| "hourglass"
| "arrow_rotate"
| "atom_electron"
| "bubble_loading"
| "installing"
| "loading"
| "rotating_gear"
| "three_dots_loading"
| "typing"
# outlined
"alarm"
| "archive"
| "backspace"
| "bluetooth"
| "book"
| "bookmark"
| "bookmarks"
| "brush"
| "camera"
| "cast"
| "chat"
| "check"
| "cloud"
| "code"
| "crop"
| "download"
| "earbuds"
| "eject"
| "explicit"
| "filter"
| "fingerprint"
| "flag"
| "folder"
| "forward"
| "fullscreen"
| "headset"
| "house"
| "image"
| "inbox"
| "info"
| "keyboard"
| "layers"
| "lightbulb"
| "link"
| "list"
| "lock"
| "map"
| "memory"
| "mic"
| "mouse"
| "outlet"
| "palette"
| "pause"
| "person"
| "phone"
| "pin"
| "power"
| "receipt"
| "reply"
| "router"
| "save"
| "search"
| "send"
| "share"
| "shield"
| "shop"
| "shuffle"
| "speaker"
| "spellcheck"
| "star"
| "stars"
| "stop"
| "tablet"
| "tag"
| "terminal"
| "translate"
| "tv"
| "umbrella"
| "upload"
| "usb"
| "voicemail"
| "watch"
| "water"
| "wifi"
| "window"
| "adjust"
| "album"
| "backpack"
| "badge"
| "bed"
| "bolt"
| "business"
| "cake"
| "category"
| "coffee"
| "comment"
| "copyright"
| "dashboard"
| "devices"
| "directions"
| "edit"
| "error"
| "extension"
| "face"
| "group"
| "home"
| "hotel"
| "label"
| "landscape"
| "message"
| "movie"
| "navigation"
| "note"
| "package"
| "piano"
| "radio"
| "report"
| "school"
| "slideshow"
| "spa"
| "store"
| "timer"
| "traffic"
| "train"
| "volume"
| "accessibility"
| "anchor"
| "block"
| "chair"
| "dialpad"
| "equalizer"
| "euro"
| "expand"
| "female"
| "fork"
| "highlight"
| "history"
| "male"
| "menu"
| "merge"
| "money"
| "radar"
| "redo"
| "refresh"
| "repeat"
| "restaurant"
| "screenshot"
| "sort"
| "support"
| "sync"
| "tab"
| "task"
| "undo"
| "android"
| "blender"
| "close"
| "feed"
| "photo"
| "print"
| "settings"
| "work"
| "abstract"
| "add"
| "attachment"
| "attribution"
| "compress"
| "games"
| "icecream"
| "insights"
| "loupe"
| "maximize"
| "minimize"
| "more"
| "notes"
| "notifications"
| "password"
| "remove"
| "reorder"
| "shortcut"
| "smartphone"
| "style"
| "terrain"
| "thermostat"
| "timelapse"
| "today"
| "atm"
| "bathtub"
| "bento"
| "computer"
| "construction"
| "loop"
| "park"
| "satellite"
| "secret"
| "shower"
| "tram"
| "warning"
| "wc"
| "1k"
| "1k_plus"
| "1x_mobiledata"
| "2k"
| "2k_plus"
| "2mp"
| "3d_rotation"
| "3g_mobiledata"
| "3k"
| "3k_plus"
| "3mp"
| "3p"
| "4g_mobiledata"
| "4g_plus_mobiledata"
| "4k"
| "4k_plus"
| "4mp"
| "5g"
| "5k"
| "5k_plus"
| "5mp"
| "6_ft_apart"
| "6k"
| "6k_plus"
| "6mp"
| "7k"
| "7k_plus"
| "7mp"
| "8k"
| "8k_plus"
| "8mp"
| "9k"
| "9k_plus"
| "9mp"
| "10k"
| "10mp"
| "11mp"
| "12mp"
| "13mp"
| "14mp"
| "15mp"
| "16mp"
| "17mp"
| "18mp"
| "19mp"
| "20mp"
| "21mp"
| "22mp"
| "23mp"
| "24mp"
| "30fps"
| "30fps_select"
| "60fps"
| "60fps_select"
| "360"
| "abstract_instance"
| "ac_unit"
| "access_alarm"
| "access_time_filled"
| "accessibility_new"
| "accessible"
| "accessible_forward"
| "account_balance"
| "account_balance_wallet"
| "account_box"
| "account_circle"
| "account_tree"
| "action_chains"
| "activate_subscriptions"
| "ad_units"
| "adb"
| "add_a_photo"
| "add_alarm"
| "add_alert"
| "add_box"
| "add_business"
| "add_chart"
| "add_circle"
| "add_comment"
| "add_ic_call"
| "add_link"
| "add_location"
| "add_location_alt"
| "add_moderator"
| "add_photo_alternate"
| "add_reaction"
| "add_road"
| "add_shopping_cart"
| "add_task"
| "add_to_drive"
| "add_to_home_screen"
| "add_to_queue"
| "addchart"
| "admin"
| "admin_panel_settings"
| "ads_click"
| "agriculture"
| "ai_healing"
| "air"
| "airline_seat_flat"
| "airline_seat_flat_angled"
| "airline_seat_individual_suite"
| "airline_seat_legroom_extra"
| "airline_seat_legroom_normal"
| "airline_seat_legroom_reduced"
| "airline_seat_recline_extra"
| "airline_seat_recline_normal"
| "airplane_ticket"
| "airplanemode_inactive"
| "airplay"
| "airport_shuttle"
| "alarm_off"
| "alarm_on"
| "align_horizontal_center"
| "align_horizontal_left"
| "align_horizontal_right"
| "align_vertical_bottom"
| "align_vertical_center"
| "align_vertical_top"
| "all_inbox"
| "all_inclusive"
| "all_out"
| "alt_route"
| "alternate_email"
| "analytics"
| "animation"
| "announcement"
| "aod"
| "apartment"
| "api"
| "api_alt"
| "app_blocking"
| "app_registration"
| "app_settings_alt"
| "application"
| "application_incomplete"
| "application_instance"
| "application_window"
| "approval"
| "apps"
| "architecture"
| "area_chart"
| "arrow_back"
| "arrow_back_ios"
| "arrow_circle_down"
| "arrow_circle_up"
| "arrow_downward"
| "arrow_drop_down"
| "arrow_drop_down_circle"
| "arrow_drop_up"
| "arrow_forward"
| "arrow_forward_ios"
| "arrow_left"
| "arrow_right"
| "arrow_right_alt"
| "arrow_upward"
| "art_track"
| "article"
| "aspect_ratio"
| "assignment"
| "assignment_ind"
| "assignment_late"
| "assignment_return"
| "assignment_returned"
| "assignment_turned_in"
| "assistant"
| "assistant_direction"
| "assistant_photo"
| "attach_email"
| "attach_file"
| "attach_money"
| "attractions"
| "audiotrack"
| "auto_awesome"
| "auto_awesome_mosaic"
| "auto_awesome_motion"
| "auto_delete"
| "auto_fix_high"
| "auto_fix_normal"
| "auto_fix_off"
| "auto_graph"
| "auto_stories"
| "autofps_select"
| "autorenew"
| "av_timer"
| "baby_changing_station"
| "back_hand"
| "backup_table"
| "bakery_dining"
| "balcony"
| "ballot"
| "bar_chart"
| "batch_prediction"
| "bathroom"
| "battery_alert"
| "battery_charging_full"
| "battery_full"
| "battery_saver"
| "battery_unknown"
| "beach_access"
| "bedroom_baby"
| "bedroom_child"
| "bedroom_parent"
| "bedtime"
| "beenhere"
| "bike_scooter"
| "biotech"
| "bloodtype"
| "bluetooth_connected"
| "bluetooth_disabled"
| "bluetooth_drive"
| "bluetooth_searching"
| "blur_circular"
| "blur_linear"
| "blur_off"
| "blur_on"
| "book_online"
| "bookmark_add"
| "bookmark_added"
| "bookmark_remove"
| "bootstrapping"
| "border_all"
| "border_bottom"
| "border_clear"
| "border_color"
| "border_horizontal"
| "border_inner"
| "border_left"
| "border_outer"
| "border_right"
| "border_style"
| "border_top"
| "border_vertical"
| "branch"
| "branding_watermark"
| "breakfast_dining"
| "brightness_2"
| "brightness_3"
| "brightness_4"
| "brightness_auto"
| "brightness_high"
| "brightness_low"
| "brightness_medium"
| "broken_image"
| "browser_not_supported"
| "brunch_dining"
| "bubble_chart"
| "bug_report"
| "build"
| "build_circle"
| "bungalow"
| "burst_mode"
| "bus_alert"
| "business_center"
| "cabin"
| "cable"
| "cached"
| "calculate"
| "calendar_today"
| "calendar_view_day"
| "calendar_view_month"
| "calendar_view_week"
| "call"
| "call_end"
| "call_made"
| "call_merge"
| "call_missed"
| "call_missed_outgoing"
| "call_received"
| "call_split"
| "call_to_action"
| "camera_alt"
| "camera_enhance"
| "camera_front"
| "camera_indoor"
| "camera_outdoor"
| "camera_rear"
| "camera_roll"
| "cameraswitch"
| "campaign"
| "cancel"
| "cancel_presentation"
| "cancel_schedule_send"
| "car_rental"
| "car_repair"
| "card_giftcard"
| "card_membership"
| "card_travel"
| "carpenter"
| "cases"
| "casino"
| "cast_connected"
| "cast_for_education"
| "catching_pokemon"
| "celebration"
| "cell_wifi"
| "center_focus_strong"
| "center_focus_weak"
| "chair_alt"
| "chalet"
| "change_circle"
| "change_history"
| "charging_station"
| "chat_bubble"
| "check_box"
| "check_box_blank"
| "check_circle"
| "check_circle_outline"
| "checklist"
| "checklist_rtl"
| "checkroom"
| "child_care"
| "child_friendly"
| "chrome_reader_mode"
| "circle_notifications"
| "clean_hands"
| "cleaning_services"
| "clear_all"
| "close_fullscreen"
| "closed_caption"
| "closed_caption_disabled"
| "closed_caption_off"
| "cloud_circle"
| "cloud_done"
| "cloud_download"
| "cloud_off"
| "cloud_queue"
| "cloud_upload"
| "code_off"
| "coffee_maker"
| "collections"
| "collections_bookmark"
| "color_lens"
| "colorize"
| "comment_bank"
| "commit"
| "commute"
| "compare"
| "compare_arrows"
| "compare_states"
| "compass_calibration"
| "compost"
| "configuration_file"
| "confirmation_number"
| "connect_without_contact"
| "connected_tv"
| "contact_mail"
| "contact_page"
| "contact_phone"
| "contact_support"
| "contactless"
| "contacts"
| "container"
| "content_copy"
| "content_cut"
| "content_paste"
| "content_paste_off"
| "control_camera"
| "control_point_duplicate"
| "copy_all"
| "coronavirus"
| "corporate_fare"
| "cottage"
| "countertops"
| "create_new_folder"
| "credit_card"
| "credit_card_off"
| "credit_score"
| "crib"
| "critical_bug"
| "crop_3_2"
| "crop_5_4"
| "crop_7_5"
| "crop_16_9"
| "crop_din"
| "crop_free"
| "crop_landscape"
| "crop_original"
| "crop_portrait"
| "crop_rotate"
| "crop_square"
| "cruelty_free"
| "daemon"
| "daemon_set"
| "dangerous"
| "dark_mode"
| "dashboard_customize"
| "data_exploration"
| "data_saver_on"
| "data_scientist"
| "data_usage"
| "date_range"
| "deck"
| "dehaze"
| "delete"
| "delete_forever"
| "delete_outline"
| "delete_sweep"
| "delivery_dining"
| "departure_board"
| "description"
| "design_services"
| "desktop_access_disabled"
| "desktop_mac"
| "desktop_windows"
| "details"
| "developer_board"
| "developer_board_off"
| "developer_mode"
| "device_hub"
| "device_thermostat"
| "device_unknown"
| "devices_other"
| "dialer_sip"
| "diff_modified"
| "dining"
| "dinner_dining"
| "directions_bike"
| "directions_boat"
| "directions_bus"
| "directions_car"
| "directions_off"
| "directions_railway"
| "directions_run"
| "directions_subway"
| "directions_transit"
| "directions_walk"
| "dirty_lens"
| "disabled_by_default"
| "disabled_visible"
| "disc_full"
| "do_disturb_off"
| "do_not_disturb"
| "do_not_disturb_alt"
| "do_not_disturb_off"
| "do_not_disturb_on"
| "do_not_disturb_on_total_silence"
| "do_not_step"
| "do_not_touch"
| "dock"
| "document_scanner"
| "domain"
| "domain_disabled"
| "domain_verification"
| "done"
| "done_all"
| "donut_large"
| "donut_small"
| "door_back"
| "door_front"
| "door_sliding"
| "doorbell"
| "double_arrow"
| "downhill_skiing"
| "download_done"
| "download_for_offline"
| "downloading"
| "drafts"
| "drag_handle"
| "drag_indicator"
| "draw"
| "drive_eta"
| "drive_file_move"
| "drive_file_move_rtl"
| "drive_file_rename"
| "drive_folder_upload"
| "dry"
| "dry_cleaning"
| "duo"
| "dvr"
| "dynamic_feed"
| "dynamic_form"
| "e_mobiledata"
| "earbuds_battery"
| "eco"
| "edgesensor_high"
| "edgesensor_low"
| "edit_attributes"
| "edit_calendar"
| "edit_location"
| "edit_location_alt"
| "edit_note"
| "edit_notifications"
| "edit_off"
| "edit_road"
| "elderly"
| "electric_bike"
| "electric_car"
| "electric_moped"
| "electric_rickshaw"
| "electric_scooter"
| "electrical_services"
| "elevator"
| "email"
| "emergency"
| "emoji_emotions"
| "emoji_events"
| "emoji_flags"
| "emoji_food_beverage"
| "emoji_nature"
| "emoji_objects"
| "emoji_people"
| "emoji_symbols"
| "emoji_transportation"
| "engineering"
| "enhanced_encryption"
| "escalator"
| "escalator_warning"
| "euro_symbol"
| "ev_station"
| "event"
| "event_available"
| "event_busy"
| "event_note"
| "event_seat"
| "exit_to_app"
| "explore"
| "explore_off"
| "exposure"
| "exposure_neg_1"
| "exposure_neg_2"
| "exposure_plus_1"
| "exposure_plus_2"
| "exposure_zero"
| "extension_off"
| "face_retouching_natural"
| "face_retouching_off"
| "fact_check"
| "family_restroom"
| "fast_forward"
| "fast_rewind"
| "fastfood"
| "favorite"
| "featured_play_list"
| "featured_video"
| "feedback"
| "fence"
| "festival"
| "fiber_dvr"
| "fiber_manual_record"
| "fiber_new"
| "fiber_pin"
| "fiber_smart_record"
| "file_copy"
| "file_download_done"
| "file_download_off"
| "file_present"
| "file_system"
| "filter_1"
| "filter_2"
| "filter_3"
| "filter_4"
| "filter_5"
| "filter_6"
| "filter_7"
| "filter_8"
| "filter_9"
| "filter_9_plus"
| "filter_alt"
| "filter_b_and_w"
| "filter_center_focus"
| "filter_drama"
| "filter_frames"
| "filter_hdr"
| "filter_list"
| "filter_none"
| "filter_tilt_shift"
| "filter_vintage"
| "find_in_page"
| "find_replace"
| "fire_extinguisher"
| "fireplace"
| "first_page"
| "fit_screen"
| "fitness_center"
| "flaky"
| "flare"
| "flash_auto"
| "flash_off"
| "flash_on"
| "flashlight_off"
| "flashlight_on"
| "flatware"
| "flight_land"
| "flight_takeoff"
| "flip"
| "flip_camera_android"
| "flip_camera_ios"
| "flip_to_back"
| "flip_to_front"
| "flourescent"
| "flutter_dash"
| "fmd_bad"
| "fmd_good"
| "folder_open"
| "folder_shared"
| "folder_special"
| "follow_the_signs"
| "font_download"
| "font_download_off"
| "food_bank"
| "format_align_center"
| "format_align_justify"
| "format_align_left"
| "format_align_right"
| "format_bold"
| "format_clear"
| "format_color_fill"
| "format_color_reset"
| "format_color_text"
| "format_indent_decrease"
| "format_indent_increase"
| "format_italic"
| "format_line_spacing"
| "format_list_bulleted"
| "format_list_numbered"
| "format_list_numbered_rtl"
| "format_paint"
| "format_quote"
| "format_shapes"
| "format_size"
| "format_strikethrough"
| "format_textdirection_l_to_r"
| "format_textdirection_r_to_l"
| "format_underlined"
| "forum"
| "forward_5"
| "forward_10"
| "forward_30"
| "forward_to_inbox"
| "foundation"
| "free_breakfast"
| "free_cancellation"
| "front_hand"
| "fullscreen_exit"
| "functions"
| "g_mobiledata"
| "g_translate"
| "gamepad"
| "garage"
| "gavel"
| "generating_tokens"
| "gesture"
| "gif"
| "gite"
| "golf_course"
| "gpp_bad"
| "gpp_good"
| "gpp_maybe"
| "gps_fixed"
| "gps_not_fixed"
| "gps_off"
| "grade"
| "gradient"
| "grading"
| "grain"
| "graphic_eq"
| "grass"
| "grid_3x3"
| "grid_4x4"
| "grid_goldenratio"
| "grid_off"
| "grid_on"
| "grid_view"
| "group_add"
| "group_off"
| "group_work"
| "groups"
| "h_mobiledata"
| "h_plus_mobiledata"
| "hail"
| "handyman"
| "hardware"
| "hd"
| "hdr_auto"
| "hdr_auto_select"
| "hdr_enhanced_select"
| "hdr_off"
| "hdr_off_select"
| "hdr_on"
| "hdr_on_select"
| "hdr_plus"
| "hdr_strong"
| "hdr_weak"
| "headphones_battery"
| "headset_mic"
| "headset_off"
| "healing"
| "health_and_safety"
| "hearing"
| "hearing_disabled"
| "height"
| "help"
| "help_center"
| "hevc"
| "hide_image"
| "hide_source"
| "high_quality"
| "highlight_alt"
| "highlight_off"
| "hiking"
| "history_edu"
| "history_toggle_off"
| "holiday_village"
| "home_max"
| "home_mini"
| "home_repair_service"
| "home_work"
| "horizontal_distribute"
| "horizontal_rule"
| "horizontal_split"
| "hot_tub"
| "hotel_class"
| "hourglass_bottom"
| "hourglass_disabled"
| "hourglass_empty"
| "hourglass_full"
| "hourglass_top"
| "house_siding"
| "houseboat"
| "how_to_reg"
| "how_to_vote"
| "http"
| "https"
| "hvac"
| "ice_skating"
| "image_aspect_ratio"
| "image_not_supported"
| "image_search"
| "imagesearch_roller"
| "import_contacts"
| "import_export"
| "important_devices"
| "incomplete_circle"
| "indeterminate_check_box"
| "init_container"
| "input"
| "insert_chart"
| "insert_chart_outlined"
| "insert_comment"
| "insert_drive_file"
| "insert_emoticon"
| "insert_invitation"
| "insert_link"
| "insert_photo"
| "integration_instructions"
| "inventory"
| "invert_colors"
| "invert_colors_off"
| "ios_share"
| "ip"
| "iron"
| "iso"
| "kayaking"
| "keyboard_alt"
| "keyboard_arrow_down"
| "keyboard_arrow_left"
| "keyboard_arrow_right"
| "keyboard_arrow_up"
| "keyboard_backspace"
| "keyboard_capslock"
| "keyboard_hide"
| "keyboard_return"
| "keyboard_tab"
| "keyboard_voice"
| "king_bed"
| "kitchen"
| "kitesurfing"
| "kubelet"
| "label_important"
| "label_off"
| "language"
| "laptop_chromebook"
| "laptop_mac"
| "laptop_windows"
| "last_page"
| "launch"
| "layers_clear"
| "leaderboard"
| "leak_add"
| "leak_remove"
| "legend_toggle"
| "lens"
| "lens_blur"
| "library_add"
| "library_add_check"
| "library_books"
| "library_music"
| "light"
| "light_mode"
| "line_style"
| "line_weight"
| "linear_scale"
| "link_off"
| "linked_camera"
| "liquor"
| "list_alt"
| "live_help"
| "live_tv"
| "living"
| "local_activity"
| "local_atm"
| "local_bar"
| "local_cafe"
| "local_car_wash"
| "local_convenience_store"
| "local_dining"
| "local_drink"
| "local_fire_department"
| "local_florist"
| "local_gas_station"
| "local_hospital"
| "local_laundry_service"
| "local_library"
| "local_mall"
| "local_parking"
| "local_pharmacy"
| "local_phone"
| "local_pizza"
| "local_play"
| "local_police"
| "local_post_office"
| "local_printshop"
| "local_see"
| "local_shipping"
| "local_taxi"
| "location_city"
| "location_off"
| "location_on"
| "lock_clock"
| "lock_open"
| "login"
| "logout"
| "looks"
| "looks_3"
| "looks_4"
| "looks_5"
| "looks_6"
| "looks_one"
| "looks_two"
| "low_priority"
| "loyalty"
| "lte_mobiledata"
| "lte_plus_mobiledata"
| "luggage"
| "lunch_dining"
| "machine_learning"
| "manage_accounts"
| "manage_search"
| "maps_home_work"
| "maps_ugc"
| "margin"
| "mark_as_unread"
| "mark_chat_read"
| "mark_chat_unread"
| "mark_email_read"
| "mark_email_unread"
| "markunread_mailbox"
| "masks"
| "master"
| "media_bluetooth_off"
| "media_bluetooth_on"
| "mediation"
| "medical_services"
| "medication"
| "meeting_room"
| "menu_book"
| "menu_open"
| "merge_type"
| "mic_external_off"
| "mic_external_on"
| "mic_none"
| "mic_off"
| "microwave"
| "military_tech"
| "miscellaneous"
| "miscellaneous_services"
| "missed_video_call"
| "mms"
| "mobile_friendly"
| "mobile_off"
| "mobile_screen_share"
| "mobiledata_off"
| "mode_comment"
| "mode_edit"
| "mode_night"
| "mode_standby"
| "model_training"
| "modified_date"
| "molecules"
| "monetization_on"
| "money_off"
| "monitor"
| "monitor_weight"
| "monochrome_photos"
| "mood"
| "mood_bad"
| "moped"
| "more_horiz"
| "more_time"
| "more_vert"
| "motion_photos_auto"
| "motion_photos_off"
| "motion_photos_on"
| "motion_photos_pause"
| "motion_photos_paused"
| "move_to_inbox"
| "movie_filter"
| "moving"
| "mp"
| "multiline_chart"
| "multiple_stop"
| "museum"
| "music_note"
| "music_off"
| "music_video"
| "nat"
| "nature"
| "nature_people"
| "near_me"
| "near_me_disabled"
| "nearby_error"
| "nearby_off"
| "network_cell"
| "network_check"
| "network_file_system"
| "network_locked"
| "network_policy"
| "network_wifi"
| "new_label"
| "new_releases"
| "next_plan"
| "next_week"
| "nfc"
| "night_shelter"
| "nightlife"
| "nightlight"
| "nightlight_round"
| "nights_stay"
| "no_accounts"
| "no_backpack"
| "no_cell"
| "no_drinks"
| "no_encryption"
| "no_encryption_gmailerrorred"
| "no_flash"
| "no_food"
| "no_luggage"
| "no_meals"
| "no_meeting_room"
| "no_photography"
| "no_sim"
| "no_stroller"
| "no_transfer"
| "node"
| "nordic_walking"
| "north"
| "north_east"
| "north_west"
| "not_accessible"
| "not_interested"
| "not_listed_location"
| "not_started"
| "note_add"
| "note_alt"
| "notification_add"
| "notification_important"
| "notifications_active"
| "notifications_none"
| "notifications_off"
| "notifications_paused"
| "offline_bolt"
| "offline_pin"
| "offline_share"
| "ondemand_video"
| "online_prediction"
| "opacity"
| "open_in_browser"
| "open_in_full"
| "open_in_new"
| "open_in_new_off"
| "open_with"
| "organisms"
| "organization"
| "other_houses"
| "outbox"
| "outdoor_grill"
| "outlined_flag"
| "package_upgrade"
| "packages"
| "padding"
| "pages"
| "pageview"
| "paid"
| "pan_tool"
| "panorama"
| "panorama_horizontal"
| "panorama_horizontal_select"
| "panorama_photosphere"
| "panorama_photosphere_select"
| "panorama_vertical"
| "panorama_vertical_select"
| "panorama_wide_angle"
| "panorama_wide_angle_select"
| "paragliding"
| "party_mode"
| "patch_fixes"
| "pattern"
| "patterns"
| "pause_circle"
| "pause_presentation"
| "payments"
| "pedal_bike"
| "pending"
| "pending_actions"
| "people_outline"
| "perm_camera_mic"
| "perm_contact_calendar"
| "perm_data_setting"
| "perm_device_information"
| "perm_media"
| "perm_phone_msg"
| "perm_scan_wifi"
| "person_add"
| "person_add_alt"
| "person_add_disabled"
| "person_off"
| "person_outline"
| "person_pin"
| "person_pin_circle"
| "person_remove"
| "person_search"
| "pest_control"
| "pest_control_rodent"
| "pets"
| "phone_android"
| "phone_bluetooth_speaker"
| "phone_callback"
| "phone_disabled"
| "phone_enabled"
| "phone_forwarded"
| "phone_in_talk"
| "phone_iphone"
| "phone_locked"
| "phone_missed"
| "phone_paused"
| "phonelink"
| "phonelink_erase"
| "phonelink_lock"
| "phonelink_off"
| "phonelink_ring"
| "phonelink_setup"
| "photo_album"
| "photo_camera_back"
| "photo_camera_front"
| "photo_filter"
| "photo_library"
| "photo_size_select_actual"
| "photo_size_select_large"
| "photo_size_select_small"
| "piano_off"
| "picture_as_pdf"
| "picture_in_picture"
| "picture_in_picture_alt"
| "pie_chart"
| "pin_drop"
| "pin_end"
| "pin_invoke"
| "pin_number"
| "pipeline"
| "pivot_table_chart"
| "plagiarism"
| "play_arrow"
| "play_circle"
| "play_disabled"
| "play_for_work"
| "play_lesson"
| "playlist_add"
| "playlist_add_check"
| "playlist_play"
| "plumbing"
| "pod"
| "pod_autoscaler"
| "pod_security"
| "podcasts"
| "point_of_sale"
| "policy"
| "polymer"
| "pool"
| "portable_wifi_off"
| "portrait"
| "post_add"
| "power_input"
| "power_off"
| "power_settings_new"
| "precision_manufacturing"
| "pregnant_woman"
| "present_to_all"
| "preview"
| "price_change"
| "price_check"
| "print_disabled"
| "priority_high"
| "privacy_tip"
| "private_connectivity"
| "product_classes"
| "product_subscriptions"
| "production_quantity_limits"
| "products"
| "project"
| "proxy"
| "psychology"
| "public"
| "public_off"
| "publish"
| "published_with_changes"
| "pull_request"
| "push_pin"
| "qr_code"
| "qr_code_scanner"
| "query_stats"
| "question_answer"
| "queue_music"
| "queue_play_next"
| "quickreply"
| "quiz"
| "quota"
| "r_mobiledata"
| "radio_button_checked"
| "radio_button_unchecked"
| "railway_alert"
| "ramen_dining"
| "rate_review"
| "raw_off"
| "raw_on"
| "read_more"
| "receipt_long"
| "recent_actors"
| "recommend"
| "record_voice_over"
| "recycling"
| "reduce_capacity"
| "remember_me"
| "remove_circle"
| "remove_done"
| "remove_from_queue"
| "remove_moderator"
| "remove_red_eye"
| "remove_shopping_cart"
| "repeat_on"
| "repeat_one"
| "repeat_one_on"
| "replay"
| "replay_5"
| "replay_10"
| "replay_30"
| "replay_circle"
| "reply_all"
| "report_gmailerrorred"
| "report_off"
| "request_quote"
| "reset_tv"
| "restart_alt"
| "restaurant_menu"
| "restore"
| "restore_from_trash"
| "restore_page"
| "reviews"
| "rice_bowl"
| "ring_volume"
| "role_binding"
| "roofing"
| "room_preferences"
| "room_service"
| "rotate_90_degrees_ccw"
| "rotate_left"
| "rotate_right"
| "rounded_corner"
| "rowing"
| "rss_feed"
| "rsvp"
| "rtt"
| "rule"
| "rule_folder"
| "run_circle"
| "running_with_errors"
| "rv_hookup"
| "safety_divider"
| "sailing"
| "sandbox"
| "sanitizer"
| "save_alt"
| "saved_search"
| "savings"
| "scanner"
| "scatter_plot"
| "schedule"
| "schedule_send"
| "schema"
| "science"
| "scientist"
| "score"
| "screen_lock_landscape"
| "screen_lock_portrait"
| "screen_lock_rotation"
| "screen_rotation"
| "screen_search_desktop"
| "screen_share"
| "sd"
| "sd_card"
| "sd_storage"
| "search_off"
| "secure_data"
| "security"
| "security_update"
| "security_update_good"
| "security_update_warning"
| "segment"
| "select_all"
| "self_improvement"
| "sell"
| "send_and_archive"
| "send_to_mobile"
| "sensor_door"
| "sensor_window"
| "sensors"
| "sensors_off"
| "sentiment_dissatisfied"
| "sentiment_neutral"
| "sentiment_satisfied"
| "sentiment_very_dissatisfied"
| "sentiment_very_satisfied"
| "service"
| "service_instance"
| "service_plan"
| "set_meal"
| "settings_accessibility"
| "settings_applications"
| "settings_backup_restore"
| "settings_bluetooth"
| "settings_brightness"
| "settings_cell"
| "settings_ethernet"
| "settings_input_antenna"
| "settings_input_component"
| "settings_input_hdmi"
| "settings_input_svideo"
| "settings_overscan"
| "settings_phone"
| "settings_power"
| "settings_remote"
| "settings_suggest"
| "settings_system_daydream"
| "settings_voice"
| "share_location"
| "shop_two"
| "shopping_bag"
| "shopping_basket"
| "shopping_cart"
| "short_text"
| "show_chart"
| "shuffle_on"
| "shutter_speed"
| "sick"
| "signal_cellular_alt"
| "signal_cellular_no_sim"
| "signal_cellular_nodata"
| "signal_cellular_null"
| "signal_cellular_off"
| "signal_wifi_bad"
| "signal_wifi_off"
| "signal_wifi_statusbar_4_bar"
| "signal_wifi_statusbar_connected_no_internet_4"
| "signal_wifi_statusbar_null"
| "sim_card"
| "sim_card_alert"
| "sim_card_download"
| "single_bed"
| "sip"
| "skateboarding"
| "skip_next"
| "skip_previous"
| "sledding"
| "slow_motion_video"
| "smart_button"
| "smart_display"
| "smart_screen"
| "smart_toy"
| "smoke_free"
| "smoking_rooms"
| "sms"
| "sms_failed"
| "snippet_folder"
| "snooze"
| "snowboarding"
| "snowmobile"
| "snowshoeing"
| "soap"
| "social_distance"
| "software"
| "sort_by_alpha"
| "source"
| "south"
| "south_east"
| "south_west"
| "space_bar"
| "speaker_group"
| "speaker_notes"
| "speaker_notes_off"
| "speaker_phone"
| "speed"
| "splitscreen"
| "sports"
| "sports_bar"
| "sports_baseball"
| "sports_basketball"
| "sports_cricket"
| "sports_esports"
| "sports_football"
| "sports_golf"
| "sports_handball"
| "sports_hockey"
| "sports_kabaddi"
| "sports_mma"
| "sports_motorsports"
| "sports_rugby"
| "sports_score"
| "sports_soccer"
| "sports_tennis"
| "sports_volleyball"
| "square_foot"
| "stacked_bar_chart"
| "stacked_line_chart"
| "stairs"
| "star_half"
| "star_purple500"
| "stateful_set"
| "stay_current_landscape"
| "stay_current_portrait"
| "sticky_note"
| "stop_circle"
| "stop_screen_share"
| "storage"
| "storage_class"
| "storefront"
| "storm"
| "straighten"
| "stream"
| "streetview"
| "strikethrough_s"
| "stroller"
| "subdirectory_arrow_left"
| "subdirectory_arrow_right"
| "subject"
| "subscript"
| "subscriptions"
| "subscriptions_created"
| "subtitles"
| "subtitles_off"
| "subway"
| "summarize"
| "superscript"
| "supervised_user_circle"
| "supervisor_account"
| "support_agent"
| "surfing"
| "surround_sound"
| "swap_calls"
| "swap_horiz"
| "swap_horizontal_circle"
| "swap_vert"
| "swap_vertical_circle"
| "swipe"
| "switch_account"
| "switch_camera"
| "switch_left"
| "switch_right"
| "switch_video"
| "symlink"
| "sync_alt"
| "sync_disabled"
| "sync_problem"
| "system_image"
| "system_ok"
| "system_security_update"
| "system_security_update_warning"
| "system_update"
| "system_update_alt"
| "tab_unselected"
| "table_chart"
| "table_rows"
| "table_view"
| "tablet_android"
| "tablet_mac"
| "tag_faces"
| "takeout_dining"
| "tap_and_play"
| "tapas"
| "task_alt"
| "taxi_alert"
| "templates"
| "text_fields"
| "text_format"
| "text_rotate_up"
| "text_rotate_vertical"
| "text_rotation_angledown"
| "text_rotation_angleup"
| "text_rotation_down"
| "text_rotation_none"
| "text_snippet"
| "textsms"
| "texture"
| "theater_comedy"
| "theaters"
| "thermostat_auto"
| "thumb_down"
| "thumb_down_off_alt"
| "thumb_up"
| "thumb_up_off_alt"
| "thumbs_up_down"
| "time_to_leave"
| "timeline"
| "timer_3"
| "timer_3_select"
| "timer_10"
| "timer_10_select"
| "timer_off"
| "tips_and_updates"
| "title"
| "toc"
| "toggle_off"
| "toggle_on"
| "toll"
| "tonality"
| "touch_app"
| "tour"
| "toys"
| "track_changes"
| "transfer_within_a_station"
| "transform"
| "transgender"
| "transit_enterexit"
| "travel_explore"
| "trending_down"
| "trending_flat"
| "trending_up"
| "trip_origin"
| "try"
| "tty"
| "tune"
| "tungsten"
| "tv_off"
| "two_wheeler"
| "unarchive"
| "unfold_less"
| "unfold_more"
| "unpublished"
| "unsubscribe"
| "upcoming"
| "update"
| "update_disabled"
| "upgrade"
| "upload_file"
| "usb_off"
| "verified"
| "verified_user"
| "vertical_align_bottom"
| "vertical_align_center"
| "vertical_align_top"
| "vertical_distribute"
| "vertical_split"
| "vibration"
| "video_call"
| "video_camera_back"
| "video_camera_front"
| "video_label"
| "video_library"
| "video_settings"
| "video_stable"
| "videocam"
| "videocam_off"
| "videogame_asset"
| "videogame_asset_off"
| "view_agenda"
| "view_array"
| "view_carousel"
| "view_column"
| "view_comfy"
| "view_compact"
| "view_day"
| "view_headline"
| "view_in_ar"
| "view_list"
| "view_module"
| "view_quilt"
| "view_sidebar"
| "view_stream"
| "view_week"
| "vignette"
| "villa"
| "virtual_reality"
| "visibility"
| "visibility_off"
| "voice_chat"
| "voice_over_off"
| "volume_binding"
| "volume_down"
| "volume_mute"
| "volume_off"
| "volume_up"
| "volunteer_activism"
| "vpn_key"
| "vpn_lock"
| "vrpano"
| "wallpaper"
| "wash"
| "water_damage"
| "water_drop"
| "waterfall_chart"
| "waves"
| "waving_hand"
| "wb_auto"
| "wb_incandescent"
| "wb_iridescent"
| "wb_shade"
| "wb_sunny"
| "wb_twilight"
| "web"
| "web_asset"
| "web_asset_off"
| "weekend"
| "west"
| "whatshot"
| "wheelchair_pickup"
| "where_to_vote"
| "widgets"
| "wifi_calling"
| "wifi_calling_3"
| "wifi_lock"
| "wifi_off"
| "wifi_protected_setup"
| "wifi_tethering"
| "wifi_tethering_error_rounded"
| "wifi_tethering_off"
| "wine_bar"
| "work_off"
| "workspaces"
| "wrap_text"
| "wrong_location"
| "wysiwyg"
| "yard"
| "youtube_searched_for"
| "zoom_in"
| "zoom_out"
| "zoom_out_map"
# solid
"alarm"
| "archive"
| "backspace"
| "bluetooth"
| "book"
| "bookmark"
| "bookmarks"
| "brush"
| "camera"
| "cast"
| "chat"
| "check"
| "cloud"
| "code"
| "crop"
| "download"
| "earbuds"
| "eject"
| "explicit"
| "filter"
| "fingerprint"
| "flag"
| "folder"
| "forward"
| "fullscreen"
| "headset"
| "house"
| "image"
| "inbox"
| "info"
| "keyboard"
| "layers"
| "lightbulb"
| "link"
| "list"
| "lock"
| "map"
| "memory"
| "mic"
| "mouse"
| "outlet"
| "palette"
| "pause"
| "person"
| "phone"
| "pin"
| "power"
| "receipt"
| "reply"
| "router"
| "save"
| "search"
| "send"
| "share"
| "shield"
| "shop"
| "shuffle"
| "speaker"
| "spellcheck"
| "star"
| "stars"
| "stop"
| "tablet"
| "tag"
| "terminal"
| "translate"
| "tv"
| "umbrella"
| "upload"
| "usb"
| "voicemail"
| "watch"
| "water"
| "wifi"
| "window"
| "adjust"
| "album"
| "backpack"
| "badge"
| "bed"
| "bolt"
| "business"
| "cake"
| "category"
| "coffee"
| "comment"
| "copyright"
| "dashboard"
| "devices"
| "directions"
| "edit"
| "error"
| "extension"
| "face"
| "flask"
| "group"
| "home"
| "hotel"
| "label"
| "landscape"
| "message"
| "movie"
| "navigation"
| "note"
| "package"
| "piano"
| "radio"
| "report"
| "school"
| "slideshow"
| "spa"
| "store"
| "timer"
| "traffic"
| "train"
| "volume"
| "accessibility"
| "anchor"
| "block"
| "chair"
| "dialpad"
| "equalizer"
| "euro"
| "expand"
| "female"
| "fork"
| "highlight"
| "history"
| "male"
| "menu"
| "merge"
| "money"
| "move"
| "radar"
| "redo"
| "refresh"
| "repeat"
| "restaurant"
| "screenshot"
| "sort"
| "support"
| "sync"
| "tab"
| "task"
| "undo"
| "android"
| "blender"
| "close"
| "feed"
| "photo"
| "print"
| "settings"
| "work"
| "abstract"
| "add"
| "attachment"
| "attribution"
| "compress"
| "games"
| "icecream"
| "insights"
| "loupe"
| "maximize"
| "minimize"
| "more"
| "notes"
| "notifications"
| "password"
| "performance"
| "remove"
| "reorder"
| "shortcut"
| "smartphone"
| "style"
| "terrain"
| "thermostat"
| "timelapse"
| "today"
| "atm"
| "bathtub"
| "bento"
| "computer"
| "construction"
| "loop"
| "park"
| "satellite"
| "secret"
| "shower"
| "tram"
| "warning"
| "wc"
| "1k"
| "1k_plus"
| "1x_mobiledata"
| "2k"
| "2k_plus"
| "2mp"
| "3d_rotation"
| "3g_mobiledata"
| "3k"
| "3k_plus"
| "3mp"
| "3p"
| "4g_mobiledata"
| "4g_plus_mobiledata"
| "4k"
| "4k_plus"
| "4mp"
| "5g"
| "5k"
| "5k_plus"
| "5mp"
| "6_ft_apart"
| "6k"
| "6k_plus"
| "6mp"
| "7k"
| "7k_plus"
| "7mp"
| "8k"
| "8k_plus"
| "8mp"
| "9k"
| "9k_plus"
| "9mp"
| "10k"
| "10mp"
| "11mp"
| "12mp"
| "13mp"
| "14mp"
| "15mp"
| "16mp"
| "17mp"
| "18mp"
| "19mp"
| "20mp"
| "21mp"
| "22mp"
| "23mp"
| "24mp"
| "30fps"
| "30fps_select"
| "60fps"
| "60fps_select"
| "360"
| "abstract_instance"
| "ac_unit"
| "access_alarm"
| "accessibility_new"
| "accessible"
| "accessible_forward"
| "account_balance"
| "account_balance_wallet"
| "account_box"
| "account_circle"
| "account_tree"
| "action_chains"
| "activate_subscriptions"
| "ad_units"
| "adb"
| "add_a_photo"
| "add_alarm"
| "add_alert"
| "add_box"
| "add_business"
| "add_chart"
| "add_circle"
| "add_comment"
| "add_ic_call"
| "add_link"
| "add_location"
| "add_location_alt"
| "add_moderator"
| "add_photo_alternate"
| "add_reaction"
| "add_road"
| "add_shopping_cart"
| "add_task"
| "add_to_drive"
| "add_to_home_screen"
| "add_to_queue"
| "addchart"
| "admin"
| "admin_panel_settings"
| "ads_click"
| "agriculture"
| "ai_healing"
| "air"
| "airline_seat_flat"
| "airline_seat_flat_angled"
| "airline_seat_individual_suite"
| "airline_seat_legroom_extra"
| "airline_seat_legroom_normal"
| "airline_seat_legroom_reduced"
| "airline_seat_recline_extra"
| "airline_seat_recline_normal"
| "airplane_ticket"
| "airplanemode_inactive"
| "airplay"
| "airport_shuttle"
| "alarm_off"
| "alarm_on"
| "align_horizontal_center"
| "align_horizontal_left"
| "align_horizontal_right"
| "align_vertical_bottom"
| "align_vertical_center"
| "align_vertical_top"
| "all_inbox"
| "all_inclusive"
| "all_out"
| "alt_route"
| "alternate_email"
| "analytics"
| "animation"
| "announcement"
| "aod"
| "apartment"
| "api"
| "api_alt"
| "app_blocking"
| "app_registration"
| "app_settings_alt"
| "application"
| "application_incomplete"
| "application_instance"
| "application_window"
| "approval"
| "apps"
| "architecture"
| "area_chart"
| "arrow_back"
| "arrow_back_ios"
| "arrow_circle_down"
| "arrow_circle_up"
| "arrow_downward"
| "arrow_drop_down"
| "arrow_drop_down_circle"
| "arrow_drop_up"
| "arrow_forward"
| "arrow_forward_ios"
| "arrow_left"
| "arrow_right"
| "arrow_right_alt"
| "arrow_upward"
| "art_track"
| "article"
| "aspect_ratio"
| "assignment"
| "assignment_ind"
| "assignment_late"
| "assignment_return"
| "assignment_returned"
| "assignment_turned_in"
| "assistant"
| "assistant_direction"
| "assistant_photo"
| "attach_email"
| "attach_file"
| "attach_money"
| "attractions"
| "audiotrack"
| "auto_awesome"
| "auto_awesome_mosaic"
| "auto_awesome_motion"
| "auto_delete"
| "auto_fix_high"
| "auto_fix_normal"
| "auto_fix_off"
| "auto_graph"
| "auto_stories"
| "autofps_select"
| "autorenew"
| "av_timer"
| "baby_changing_station"
| "back_hand"
| "backup_table"
| "bakery_dining"
| "balcony"
| "ballot"
| "bar_chart"
| "batch_prediction"
| "bathroom"
| "battery_alert"
| "battery_charging_full"
| "battery_full"
| "battery_saver"
| "battery_unknown"
| "beach_access"
| "bedroom_baby"
| "bedroom_child"
| "bedroom_parent"
| "bedtime"
| "beenhere"
| "bike_scooter"
| "biotech"
| "bloodtype"
| "bluetooth_connected"
| "bluetooth_disabled"
| "bluetooth_drive"
| "bluetooth_searching"
| "blur_circular"
| "blur_linear"
| "blur_off"
| "blur_on"
| "book_online"
| "bookmark_add"
| "bookmark_added"
| "bookmark_remove"
| "bootstrapping"
| "border_all"
| "border_bottom"
| "border_clear"
| "border_color"
| "border_horizontal"
| "border_inner"
| "border_left"
| "border_outer"
| "border_right"
| "border_style"
| "border_top"
| "border_vertical"
| "branch"
| "branding_watermark"
| "breakfast_dining"
| "brightness_2"
| "brightness_3"
| "brightness_4"
| "brightness_auto"
| "brightness_high"
| "brightness_low"
| "brightness_medium"
| "broken_image"
| "browser_not_supported"
| "brunch_dining"
| "bubble_chart"
| "bug_report"
| "build"
| "build_circle"
| "bungalow"
| "burst_mode"
| "bus_alert"
| "business_center"
| "cabin"
| "cable"
| "cached"
| "calculate"
| "calendar_today"
| "calendar_view_day"
| "calendar_view_month"
| "calendar_view_week"
| "call"
| "call_end"
| "call_made"
| "call_merge"
| "call_missed"
| "call_missed_outgoing"
| "call_received"
| "call_split"
| "call_to_action"
| "camera_alt"
| "camera_enhance"
| "camera_front"
| "camera_indoor"
| "camera_outdoor"
| "camera_rear"
| "camera_roll"
| "cameraswitch"
| "campaign"
| "cancel"
| "cancel_presentation"
| "cancel_schedule_send"
| "car_rental"
| "car_repair"
| "card_giftcard"
| "card_membership"
| "card_travel"
| "carpenter"
| "cases"
| "casino"
| "cast_connected"
| "cast_for_education"
| "catching_pokemon"
| "celebration"
| "cell_wifi"
| "center_focus_strong"
| "center_focus_weak"
| "chair_alt"
| "chalet"
| "change_circle"
| "change_history"
| "charging_station"
| "chat_bubble"
| "check_box"
| "check_box_blank"
| "check_circle"
| "checklist"
| "checklist_rtl"
| "checkroom"
| "child_care"
| "child_friendly"
| "chrome_reader_mode"
| "circle_notifications"
| "clean_hands"
| "cleaning_services"
| "clear_all"
| "close_fullscreen"
| "closed_caption"
| "closed_caption_disabled"
| "closed_caption_off"
| "cloud_circle"
| "cloud_done"
| "cloud_download"
| "cloud_off"
| "cloud_upload"
| "code_off"
| "coffee_maker"
| "collections"
| "collections_bookmark"
| "color_lens"
| "colorize"
| "comment_bank"
| "commit"
| "commute"
| "compare"
| "compare_arrows"
| "compare_states"
| "compass_calibration"
| "compost"
| "configuration_file"
| "confirmation_number"
| "connect_without_contact"
| "connected_tv"
| "contact_mail"
| "contact_page"
| "contact_phone"
| "contact_support"
| "contactless"
| "contacts"
| "container"
| "content_copy"
| "content_cut"
| "content_paste"
| "content_paste_off"
| "control_camera"
| "control_point_duplicate"
| "copy_all"
| "coronavirus"
| "corporate_fare"
| "cottage"
| "countertops"
| "create_new_folder"
| "credit_card"
| "credit_card_off"
| "credit_score"
| "crib"
| "critical_bug"
| "crop_3_2"
| "crop_5_4"
| "crop_7_5"
| "crop_16_9"
| "crop_din"
| "crop_free"
| "crop_landscape"
| "crop_original"
| "crop_portrait"
| "crop_rotate"
| "crop_square"
| "cruelty_free"
| "daemon"
| "daemon_set"
| "dangerous"
| "dark_mode"
| "dashboard_customize"
| "data_exploration"
| "data_saver_on"
| "data_scientist"
| "data_usage"
| "date_range"
| "deck"
| "dehaze"
| "delete"
| "delete_forever"
| "delete_sweep"
| "delivery_dining"
| "departure_board"
| "description"
| "design_services"
| "desktop_access_disabled"
| "desktop_mac"
| "desktop_windows"
| "details"
| "developer_board"
| "developer_board_off"
| "developer_mode"
| "device_hub"
| "device_thermostat"
| "device_unknown"
| "devices_other"
| "dialer_sip"
| "diff_modified"
| "dining"
| "dinner_dining"
| "directions_bike"
| "directions_boat"
| "directions_bus"
| "directions_car"
| "directions_off"
| "directions_railway"
| "directions_run"
| "directions_subway"
| "directions_walk"
| "dirty_lens"
| "disabled_by_default"
| "disabled_visible"
| "disc_full"
| "do_not_disturb"
| "do_not_disturb_alt"
| "do_not_disturb_off"
| "do_not_disturb_on"
| "do_not_disturb_on_total_silence"
| "do_not_step"
| "do_not_touch"
| "dock"
| "document_scanner"
| "domain"
| "domain_disabled"
| "domain_verification"
| "done"
| "done_all"
| "donut_large"
| "donut_small"
| "door_back"
| "door_front"
| "door_sliding"
| "doorbell"
| "double_arrow"
| "downhill_skiing"
| "download_done"
| "download_for_offline"
| "downloading"
| "drafts"
| "drag_handle"
| "drag_indicator"
| "draw"
| "drive_eta"
| "drive_file_move"
| "drive_file_move_rtl"
| "drive_file_rename"
| "drive_folder_upload"
| "dry"
| "dry_cleaning"
| "duo"
| "dvr"
| "dynamic_feed"
| "dynamic_form"
| "e_mobiledata"
| "earbuds_battery"
| "eco"
| "edgesensor_high"
| "edgesensor_low"
| "edit_attributes"
| "edit_calendar"
| "edit_location"
| "edit_location_alt"
| "edit_note"
| "edit_notifications"
| "edit_off"
| "edit_road"
| "elderly"
| "electric_bike"
| "electric_car"
| "electric_moped"
| "electric_rickshaw"
| "electric_scooter"
| "electrical_services"
| "elevator"
| "email"
| "emergency"
| "emoji_emotions"
| "emoji_events"
| "emoji_flags"
| "emoji_food_beverage"
| "emoji_nature"
| "emoji_objects"
| "emoji_people"
| "emoji_symbols"
| "emoji_transportation"
| "engineering"
| "enhanced_encryption"
| "escalator"
| "escalator_warning"
| "ev_station"
| "event"
| "event_available"
| "event_busy"
| "event_note"
| "event_seat"
| "exit_to_app"
| "explore"
| "explore_off"
| "exposure"
| "exposure_neg_1"
| "exposure_neg_2"
| "exposure_plus_1"
| "exposure_plus_2"
| "exposure_zero"
| "extension_off"
| "face_retouching_natural"
| "face_retouching_off"
| "fact_check"
| "family_restroom"
| "fast_forward"
| "fast_rewind"
| "fastfood"
| "favorite"
| "featured_play_list"
| "featured_video"
| "feedback"
| "fence"
| "festival"
| "fiber_dvr"
| "fiber_manual_record"
| "fiber_new"
| "fiber_pin"
| "fiber_smart_record"
| "file_copy"
| "file_download_done"
| "file_download_off"
| "file_present"
| "file_system"
| "filter_1"
| "filter_2"
| "filter_3"
| "filter_4"
| "filter_5"
| "filter_6"
| "filter_7"
| "filter_8"
| "filter_9"
| "filter_9_plus"
| "filter_alt"
| "filter_b_and_w"
| "filter_center_focus"
| "filter_drama"
| "filter_frames"
| "filter_hdr"
| "filter_list"
| "filter_none"
| "filter_tilt_shift"
| "filter_vintage"
| "find_in_page"
| "find_replace"
| "fire_extinguisher"
| "fireplace"
| "first_page"
| "fit_screen"
| "fitness_center"
| "flaky"
| "flare"
| "flash_auto"
| "flash_off"
| "flash_on"
| "flashlight_off"
| "flashlight_on"
| "flatware"
| "flight_land"
| "flight_takeoff"
| "flip"
| "flip_camera_android"
| "flip_camera_ios"
| "flip_to_back"
| "flip_to_front"
| "flourescent"
| "flutter_dash"
| "fmd_bad"
| "fmd_good"
| "folder_open"
| "folder_shared"
| "folder_special"
| "follow_the_signs"
| "font_download"
| "font_download_off"
| "food_bank"
| "format_align_center"
| "format_align_justify"
| "format_align_left"
| "format_align_right"
| "format_bold"
| "format_clear"
| "format_color_fill"
| "format_color_reset"
| "format_color_text"
| "format_indent_decrease"
| "format_indent_increase"
| "format_italic"
| "format_line_spacing"
| "format_list_bulleted"
| "format_list_numbered"
| "format_list_numbered_rtl"
| "format_paint"
| "format_quote"
| "format_shapes"
| "format_size"
| "format_strikethrough"
| "format_textdirection_l_to_r"
| "format_textdirection_r_to_l"
| "format_underlined"
| "forum"
| "forward_5"
| "forward_10"
| "forward_30"
| "forward_to_inbox"
| "foundation"
| "free_breakfast"
| "free_cancellation"
| "front_hand"
| "fullscreen_exit"
| "functions"
| "g_mobiledata"
| "g_translate"
| "garage"
| "gavel"
| "generating_tokens"
| "gesture"
| "gif"
| "gite"
| "golf_course"
| "gpp_bad"
| "gpp_good"
| "gpp_maybe"
| "gps_fixed"
| "gps_not_fixed"
| "gps_off"
| "grade"
| "gradient"
| "grading"
| "grain"
| "graphic_eq"
| "grass"
| "grid_3x3"
| "grid_4x4"
| "grid_goldenratio"
| "grid_off"
| "grid_on"
| "grid_view"
| "group_add"
| "group_off"
| "group_work"
| "groups"
| "h_mobiledata"
| "h_plus_mobiledata"
| "hail"
| "handyman"
| "hardware"
| "hd"
| "hdr_auto"
| "hdr_auto_select"
| "hdr_enhanced_select"
| "hdr_off"
| "hdr_off_select"
| "hdr_on"
| "hdr_on_select"
| "hdr_plus"
| "hdr_strong"
| "hdr_weak"
| "headphones_battery"
| "headset_mic"
| "headset_off"
| "healing"
| "health_and_safety"
| "hearing"
| "hearing_disabled"
| "height"
| "help"
| "help_center"
| "hevc"
| "hide_image"
| "hide_source"
| "high_quality"
| "highlight_alt"
| "highlight_off"
| "hiking"
| "history_edu"
| "history_toggle_off"
| "holiday_village"
| "home_max"
| "home_mini"
| "home_repair_service"
| "home_work"
| "horizontal_distribute"
| "horizontal_rule"
| "horizontal_split"
| "hot_tub"
| "hotel_class"
| "hourglass_bottom"
| "hourglass_disabled"
| "hourglass_empty"
| "hourglass_full"
| "hourglass_top"
| "house_siding"
| "houseboat"
| "how_to_reg"
| "how_to_vote"
| "http"
| "hvac"
| "ice_skating"
| "image_aspect_ratio"
| "image_not_supported"
| "image_search"
| "imagesearch_roller"
| "import_contacts"
| "import_export"
| "important_devices"
| "incomplete_circle"
| "indeterminate_check_box"
| "init_container"
| "input"
| "insert_chart"
| "insert_comment"
| "insert_drive_file"
| "insert_emoticon"
| "insert_invitation"
| "insert_link"
| "insert_photo"
| "integration_instructions"
| "inventory"
| "invert_colors"
| "invert_colors_off"
| "ios_share"
| "ip"
| "iron"
| "iso"
| "kayaking"
| "keyboard_alt"
| "keyboard_arrow_down"
| "keyboard_arrow_left"
| "keyboard_arrow_right"
| "keyboard_arrow_up"
| "keyboard_backspace"
| "keyboard_capslock"
| "keyboard_hide"
| "keyboard_return"
| "keyboard_tab"
| "keyboard_voice"
| "king_bed"
| "kitchen"
| "kitesurfing"
| "kubelet"
| "label_important"
| "label_off"
| "language"
| "laptop_chromebook"
| "laptop_mac"
| "laptop_windows"
| "last_page"
| "launch"
| "layers_clear"
| "leaderboard"
| "leak_add"
| "leak_remove"
| "legend_toggle"
| "lens"
| "lens_blur"
| "library_add"
| "library_add_check"
| "library_books"
| "library_music"
| "light"
| "light_mode"
| "line_style"
| "line_weight"
| "linear_scale"
| "link_off"
| "linked_camera"
| "liquor"
| "list_alt"
| "live_help"
| "live_tv"
| "living"
| "local_activity"
| "local_atm"
| "local_bar"
| "local_cafe"
| "local_car_wash"
| "local_convenience_store"
| "local_dining"
| "local_drink"
| "local_fire_department"
| "local_florist"
| "local_gas_station"
| "local_hospital"
| "local_laundry_service"
| "local_library"
| "local_mall"
| "local_parking"
| "local_pharmacy"
| "local_phone"
| "local_pizza"
| "local_play"
| "local_police"
| "local_post_office"
| "local_printshop"
| "local_see"
| "local_shipping"
| "local_taxi"
| "location_city"
| "location_off"
| "location_on"
| "lock_clock"
| "lock_open"
| "login"
| "logout"
| "looks"
| "looks_3"
| "looks_4"
| "looks_5"
| "looks_6"
| "looks_one"
| "looks_two"
| "low_priority"
| "loyalty"
| "lte_mobiledata"
| "lte_plus_mobiledata"
| "luggage"
| "lunch_dining"
| "machine_learning"
| "manage_accounts"
| "manage_search"
| "maps_ugc"
| "margin"
| "mark_as_unread"
| "mark_chat_read"
| "mark_chat_unread"
| "mark_email_read"
| "mark_email_unread"
| "markunread_mailbox"
| "masks"
| "master"
| "media_bluetooth_off"
| "media_bluetooth_on"
| "mediation"
| "medical_services"
| "medication"
| "meeting_room"
| "menu_book"
| "menu_open"
| "merge_type"
| "mic_external_off"
| "mic_external_on"
| "mic_none"
| "mic_off"
| "microwave"
| "military_tech"
| "miscellaneous"
| "miscellaneous_services"
| "missed_video_call"
| "mms"
| "mobile_friendly"
| "mobile_off"
| "mobile_screen_share"
| "mobiledata_off"
| "mode_comment"
| "mode_edit"
| "mode_night"
| "mode_standby"
| "model_training"
| "modified_date"
| "molecules"
| "monetization_on"
| "money_off"
| "monitor"
| "monitor_weight"
| "monochrome_photos"
| "mood"
| "mood_bad"
| "moped"
| "more_horiz"
| "more_time"
| "more_vert"
| "motion_photos_auto"
| "motion_photos_off"
| "motion_photos_on"
| "motion_photos_pause"
| "move_to_inbox"
| "movie_filter"
| "moving"
| "mp"
| "multiline_chart"
| "multiple_stop"
| "museum"
| "music_note"
| "music_off"
| "music_video"
| "nat"
| "nature"
| "nature_people"
| "near_me"
| "near_me_disabled"
| "nearby_error"
| "nearby_off"
| "network_cell"
| "network_check"
| "network_file_system"
| "network_locked"
| "network_policy"
| "network_wifi"
| "new_label"
| "new_releases"
| "next_plan"
| "next_week"
| "nfc"
| "night_shelter"
| "nightlife"
| "nightlight"
| "nightlight_round"
| "nights_stay"
| "no_accounts"
| "no_backpack"
| "no_cell"
| "no_drinks"
| "no_encryption"
| "no_flash"
| "no_food"
| "no_luggage"
| "no_meals"
| "no_meeting_room"
| "no_photography"
| "no_sim"
| "no_stroller"
| "no_transfer"
| "node"
| "nordic_walking"
| "north"
| "north_east"
| "north_west"
| "not_accessible"
| "not_interested"
| "not_listed_location"
| "not_started"
| "note_add"
| "note_alt"
| "notification_add"
| "notification_important"
| "notifications_active"
| "notifications_none"
| "notifications_off"
| "notifications_paused"
| "offline_bolt"
| "offline_pin"
| "offline_share"
| "ondemand_video"
| "online_prediction"
| "opacity"
| "open_in_browser"
| "open_in_full"
| "open_in_new"
| "open_in_new_off"
| "open_with"
| "organisms"
| "organization"
| "other_houses"
| "outbox"
| "outdoor_grill"
| "package_upgrade"
| "packages"
| "padding"
| "pages"
| "pageview"
| "paid"
| "pan_tool"
| "panorama"
| "panorama_horizontal"
| "panorama_photosphere"
| "panorama_vertical"
| "panorama_wide_angle"
| "paragliding"
| "party_mode"
| "patch_fixes"
| "pattern"
| "patterns"
| "pause_circle"
| "pause_presentation"
| "payments"
| "pedal_bike"
| "pending"
| "pending_actions"
| "perm_camera_mic"
| "perm_contact_calendar"
| "perm_data_setting"
| "perm_device_information"
| "perm_media"
| "perm_phone_msg"
| "perm_scan_wifi"
| "person_add"
| "person_add_alt"
| "person_add_disabled"
| "person_off"
| "person_pin"
| "person_pin_circle"
| "person_remove"
| "person_search"
| "pest_control"
| "pest_control_rodent"
| "pets"
| "phone_android"
| "phone_bluetooth_speaker"
| "phone_callback"
| "phone_disabled"
| "phone_enabled"
| "phone_forwarded"
| "phone_in_talk"
| "phone_iphone"
| "phone_locked"
| "phone_missed"
| "phone_paused"
| "phonelink"
| "phonelink_erase"
| "phonelink_lock"
| "phonelink_off"
| "phonelink_ring"
| "phonelink_setup"
| "photo_album"
| "photo_camera_back"
| "photo_camera_front"
| "photo_filter"
| "photo_library"
| "photo_size_select_actual"
| "photo_size_select_large"
| "photo_size_select_small"
| "piano_off"
| "picture_as_pdf"
| "picture_in_picture"
| "picture_in_picture_alt"
| "pie_chart"
| "pin_drop"
| "pin_end"
| "pin_invoke"
| "pin_number"
| "pipeline"
| "pivot_table_chart"
| "plagiarism"
| "play_arrow"
| "play_circle"
| "play_disabled"
| "play_for_work"
| "play_lesson"
| "playlist_add"
| "playlist_add_check"
| "playlist_play"
| "plumbing"
| "pod"
| "pod_autoscaler"
| "pod_security"
| "podcasts"
| "point_of_sale"
| "policy"
| "polymer"
| "pool"
| "portable_wifi_off"
| "portrait"
| "post_add"
| "power_input"
| "power_off"
| "power_settings_new"
| "precision_manufacturing"
| "pregnant_woman"
| "present_to_all"
| "preview"
| "price_change"
| "price_check"
| "print_disabled"
| "priority_high"
| "privacy_tip"
| "private_connectivity"
| "product_classes"
| "product_subscriptions"
| "production_quantity_limits"
| "products"
| "project"
| "proxy"
| "psychology"
| "public"
| "public_off"
| "publish"
| "published_with_changes"
| "pull_request"
| "push_pin"
| "qr_code"
| "qr_code_scanner"
| "query_stats"
| "question_answer"
| "queue_music"
| "queue_play_next"
| "quickreply"
| "quiz"
| "quota"
| "r_mobiledata"
| "radio_button_checked"
| "radio_button_unchecked"
| "railway_alert"
| "ramen_dining"
| "rate_review"
| "raw_off"
| "raw_on"
| "read_more"
| "receipt_long"
| "recent_actors"
| "recommend"
| "record_voice_over"
| "recycling"
| "reduce_capacity"
| "remember_me"
| "remove_circle"
| "remove_done"
| "remove_from_queue"
| "remove_moderator"
| "remove_red_eye"
| "remove_shopping_cart"
| "repeat_on"
| "repeat_one"
| "repeat_one_on"
| "replay"
| "replay_5"
| "replay_10"
| "replay_30"
| "replay_circle"
| "reply_all"
| "report_off"
| "request_quote"
| "reset_tv"
| "restart_alt"
| "restaurant_menu"
| "restore"
| "restore_from_trash"
| "restore_page"
| "reviews"
| "rice_bowl"
| "ring_volume"
| "role_binding"
| "roofing"
| "room_preferences"
| "room_service"
| "rotate_90_degrees_ccw"
| "rotate_left"
| "rotate_right"
| "rounded_corner"
| "rowing"
| "rss_feed"
| "rsvp"
| "rtt"
| "rule"
| "rule_folder"
| "run_circle"
| "running_with_errors"
| "rv_hookup"
| "safety_divider"
| "sailing"
| "sandbox"
| "sanitizer"
| "save_alt"
| "saved_search"
| "savings"
| "scanner"
| "scatter_plot"
| "schedule"
| "schedule_send"
| "schema"
| "science"
| "scientist"
| "score"
| "screen_lock_landscape"
| "screen_lock_portrait"
| "screen_lock_rotation"
| "screen_rotation"
| "screen_search_desktop"
| "screen_share"
| "sd"
| "sd_card"
| "search_off"
| "secure_data"
| "security"
| "security_update"
| "security_update_good"
| "security_update_warning"
| "segment"
| "select_all"
| "self_improvement"
| "sell"
| "send_and_archive"
| "send_to_mobile"
| "sensor_door"
| "sensor_window"
| "sensors"
| "sensors_off"
| "sentiment_dissatisfied"
| "sentiment_neutral"
| "sentiment_satisfied"
| "sentiment_very_dissatisfied"
| "sentiment_very_satisfied"
| "service"
| "service_instance"
| "service_plan"
| "set_meal"
| "settings_accessibility"
| "settings_applications"
| "settings_backup_restore"
| "settings_bluetooth"
| "settings_brightness"
| "settings_cell"
| "settings_ethernet"
| "settings_input_antenna"
| "settings_input_component"
| "settings_input_hdmi"
| "settings_input_svideo"
| "settings_overscan"
| "settings_phone"
| "settings_power"
| "settings_remote"
| "settings_suggest"
| "settings_system_daydream"
| "settings_voice"
| "share_location"
| "shop_two"
| "shopping_bag"
| "shopping_basket"
| "shopping_cart"
| "short_text"
| "show_chart"
| "shuffle_on"
| "shutter_speed"
| "sick"
| "signal_cellular_alt"
| "signal_cellular_no_sim"
| "signal_cellular_nodata"
| "signal_cellular_null"
| "signal_cellular_off"
| "signal_wifi_bad"
| "signal_wifi_off"
| "signal_wifi_statusbar_4_bar"
| "signal_wifi_statusbar_connected_no_internet_4"
| "signal_wifi_statusbar_null"
| "sim_card"
| "sim_card_alert"
| "sim_card_download"
| "single_bed"
| "sip"
| "skateboarding"
| "skip_next"
| "skip_previous"
| "sledding"
| "slow_motion_video"
| "smart_button"
| "smart_display"
| "smart_screen"
| "smart_toy"
| "smoke_free"
| "smoking_rooms"
| "sms"
| "sms_failed"
| "snippet_folder"
| "snooze"
| "snowboarding"
| "snowmobile"
| "snowshoeing"
| "soap"
| "social_distance"
| "software"
| "sort_by_alpha"
| "source"
| "south"
| "south_east"
| "south_west"
| "space_bar"
| "speaker_group"
| "speaker_notes"
| "speaker_notes_off"
| "speaker_phone"
| "speed"
| "splitscreen"
| "sports"
| "sports_bar"
| "sports_baseball"
| "sports_basketball"
| "sports_cricket"
| "sports_esports"
| "sports_football"
| "sports_golf"
| "sports_handball"
| "sports_hockey"
| "sports_kabaddi"
| "sports_mma"
| "sports_motorsports"
| "sports_rugby"
| "sports_score"
| "sports_soccer"
| "sports_tennis"
| "sports_volleyball"
| "square_foot"
| "stacked_bar_chart"
| "stacked_line_chart"
| "stairs"
| "star_half"
| "stateful_set"
| "stay_current_landscape"
| "stay_current_portrait"
| "sticky_note"
| "stop_circle"
| "stop_screen_share"
| "storage"
| "storage_class"
| "storefront"
| "storm"
| "straighten"
| "stream"
| "streetview"
| "strikethrough_s"
| "stroller"
| "subdirectory_arrow_left"
| "subdirectory_arrow_right"
| "subject"
| "subscript"
| "subscriptions"
| "subscriptions_created"
| "subtitles"
| "subtitles_off"
| "subway"
| "summarize"
| "superscript"
| "supervised_user_circle"
| "supervisor_account"
| "support_agent"
| "surfing"
| "surround_sound"
| "swap_calls"
| "swap_horiz"
| "swap_horizontal_circle"
| "swap_vert"
| "swap_vertical_circle"
| "swipe"
| "switch_account"
| "switch_camera"
| "switch_left"
| "switch_right"
| "switch_video"
| "symlink"
| "sync_alt"
| "sync_disabled"
| "sync_problem"
| "system_image"
| "system_ok"
| "system_security_update"
| "system_security_update_warning"
| "system_update"
| "system_update_alt"
| "tab_unselected"
| "table_chart"
| "table_rows"
| "table_view"
| "tablet_android"
| "tablet_mac"
| "tag_faces"
| "takeout_dining"
| "tap_and_play"
| "tapas"
| "task_alt"
| "taxi_alert"
| "templates"
| "text_fields"
| "text_format"
| "text_rotate_up"
| "text_rotate_vertical"
| "text_rotation_angledown"
| "text_rotation_angleup"
| "text_rotation_down"
| "text_rotation_none"
| "text_snippet"
| "textsms"
| "texture"
| "theater_comedy"
| "theaters"
| "thermostat_auto"
| "thumb_down"
| "thumb_up"
| "thumbs_up_down"
| "time_to_leave"
| "timeline"
| "timer_3"
| "timer_3_select"
| "timer_10"
| "timer_10_select"
| "timer_off"
| "tips_and_updates"
| "title"
| "toc"
| "toggle_off"
| "toggle_on"
| "toll"
| "tonality"
| "touch_app"
| "tour"
| "toys"
| "track_changes"
| "transfer_within_a_station"
| "transform"
| "transgender"
| "transit_enterexit"
| "travel_explore"
| "trending_down"
| "trending_flat"
| "trending_up"
| "trip_origin"
| "try"
| "tty"
| "tune"
| "tungsten"
| "tv_off"
| "two_wheeler"
| "unarchive"
| "unfold_less"
| "unfold_more"
| "unpublished"
| "unsubscribe"
| "upcoming"
| "update"
| "update_disabled"
| "upgrade"
| "upload_file"
| "usb_off"
| "verified"
| "verified_user"
| "vertical_align_bottom"
| "vertical_align_center"
| "vertical_align_top"
| "vertical_distribute"
| "vertical_split"
| "vibration"
| "video_call"
| "video_camera_back"
| "video_camera_front"
| "video_label"
| "video_library"
| "video_settings"
| "video_stable"
| "videocam"
| "videocam_off"
| "videogame_asset"
| "videogame_asset_off"
| "view_agenda"
| "view_array"
| "view_carousel"
| "view_column"
| "view_comfy"
| "view_compact"
| "view_day"
| "view_headline"
| "view_in_ar"
| "view_list"
| "view_module"
| "view_quilt"
| "view_sidebar"
| "view_stream"
| "view_week"
| "vignette"
| "villa"
| "virtual_reality"
| "visibility"
| "visibility_off"
| "voice_chat"
| "voice_over_off"
| "volume_binding"
| "volume_down"
| "volume_mute"
| "volume_off"
| "volume_up"
| "volunteer_activism"
| "vpn_key"
| "vpn_lock"
| "vrpano"
| "wallpaper"
| "wash"
| "water_damage"
| "water_drop"
| "waterfall_chart"
| "waves"
| "waving_hand"
| "wb_auto"
| "wb_incandescent"
| "wb_iridescent"
| "wb_shade"
| "wb_sunny"
| "wb_twilight"
| "web"
| "web_asset"
| "web_asset_off"
| "weekend"
| "west"
| "whatshot"
| "wheelchair_pickup"
| "where_to_vote"
| "widgets"
| "wifi_calling"
| "wifi_calling_3"
| "wifi_lock"
| "wifi_off"
| "wifi_protected_setup"
| "wifi_tethering"
| "wifi_tethering_error_rounded"
| "wifi_tethering_off"
| "wine_bar"
| "work_off"
| "workspaces"
| "wrap_text"
| "wrong_location"
| "wysiwyg"
| "yard"
| "youtube_searched_for"
| "zoom_in"
| "zoom_out"
| "zoom_out_map"
| "abstract_incomplete"
| "ai"
| "ai_operator"
| "autoinstallation"
| "background_tasks"
| "cleanup"
| "cloud_controller_manager"
| "cluster_role"
| "cluster_role_binding"
| "collocation"
| "config_map"
| "constraint"
| "content_deleted"
| "content_lifecycle_management"
| "content_modified"
| "content_new"
| "counting"
| "cronjob"
| "csv_file"
| "data_mining"
| "deploy"
| "dns"
| "endpoints"
| "endpoints_connected"
| "endpoints_disconnected"
| "enhancement"
| "inbound"
| "ingress"
| "job"
| "monitoring"
| "multistate"
| "namespace"
| "network"
| "neural_network"
| "outbound"
| "persistent_volume"
| "primitive"
| "replica"
| "replica_set"
| "repositories"
| "route"
| "self_healing"
| "snapshot_rollback"
| "state"
| "subscription_management"
| "system_group"
| "system_re_registered"
| "system_warning"
| "test_tube"
| "timeout"
| "troubleshooting"
| "trusted_organization"
| "virtual_guest"
| "virtual_host_manager"
| "virtual_space"
| "workload"
# feather
"activity"
| "align-center"
| "archive"
| "arrow-down"
| "arrow-down-circle"
| "arrow-down-left"
| "arrow-down-right"
| "arrow-left"
| "arrow-left-circle"
| "arrow-right"
| "arrow-right-circle"
| "arrow-up"
| "arrow-up-circle"
| "arrow-up-left"
| "arrow-up-right"
| "award"
| "bar-chart"
| "battery"
| "battery-charging"
| "bell"
| "bluetooth"
| "book"
| "bookmark"
| "box"
| "briefcase"
| "calendar"
| "camera"
| "cast"
| "check"
| "check-circle"
| "check-square"
| "chevron-down"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "circle"
| "clipboard"
| "clock"
| "cloud"
| "cloud-drizzle"
| "cloud-lightning"
| "cloud-rain"
| "cloud-snow"
| "code"
| "columns"
| "command"
| "compass"
| "cpu"
| "credit-card"
| "crop"
| "disc"
| "download"
| "dribbble"
| "droplet"
| "eye"
| "facebook"
| "file"
| "file-minus"
| "file-plus"
| "file-text"
| "film"
| "filter"
| "flag"
| "folder"
| "folder-minus"
| "folder-plus"
| "gift"
| "github"
| "globe"
| "grid"
| "hash"
| "headphones"
| "heart"
| "hexagon"
| "image"
| "inbox"
| "info"
| "instagram"
| "key"
| "layers"
| "link"
| "linkedin"
| "list"
| "lock"
| "map"
| "mic"
| "moon"
| "octagon"
| "paperclip"
| "pause"
| "pause-circle"
| "percent"
| "phone"
| "pie-chart"
| "play"
| "play-circle"
| "plus"
| "plus-circle"
| "plus-square"
| "power"
| "printer"
| "rss"
| "save"
| "scissors"
| "search"
| "send"
| "server"
| "share"
| "shield"
| "shuffle"
| "skip-forward"
| "slack"
| "slash"
| "sliders"
| "speaker"
| "square"
| "star"
| "stop-circle"
| "sun"
| "sunrise"
| "sunset"
| "tablet"
| "tag"
| "terminal"
| "thermometer"
| "trash"
| "triangle"
| "truck"
| "tv"
| "twitch"
| "twitter"
| "type"
| "umbrella"
| "unlock"
| "upload"
| "voicemail"
| "watch"
| "wifi"
| "wifi-off"
| "wind"
| "x"
| "x-circle"
| "x-octagon"
| "x-square"
| "youtube"
| "zoom-in"
| "zoom-out"
| "bell-off"
| "book-open"
| "camera-off"
| "chevrons-down"
| "chevrons-left"
| "chevrons-right"
| "chevrons-up"
| "coffee"
| "copy"
| "edit"
| "help-circle"
| "home"
| "layout"
| "log-in"
| "log-out"
| "map-pin"
| "meh"
| "message-square"
| "minus-circle"
| "minus-square"
| "music"
| "navigation"
| "package"
| "phone-call"
| "phone-incoming"
| "phone-off"
| "phone-outgoing"
| "radio"
| "shopping-bag"
| "smile"
| "toggle-left"
| "toggle-right"
| "user"
| "user-check"
| "user-minus"
| "user-plus"
| "user-x"
| "video"
| "video-off"
| "volume"
| "zap"
| "align-justify"
| "align-left"
| "align-right"
| "anchor"
| "aperture"
| "bold"
| "crosshair"
| "fast-forward"
| "git-branch"
| "git-commit"
| "git-merge"
| "git-pull-request"
| "italic"
| "loader"
| "menu"
| "minus"
| "move"
| "repeat"
| "rewind"
| "sidebar"
| "trending-down"
| "trending-up"
| "underline"
| "chrome"
| "codepen"
| "figma"
| "gitlab"
| "pocket"
| "trello"
| "mail"
| "settings"
| "corner-down-left"
| "corner-down-right"
| "corner-left-down"
| "corner-left-up"
| "corner-right-down"
| "corner-right-up"
| "corner-up-left"
| "corner-up-right"
| "database"
| "framer"
| "maximize"
| "minimize"
| "more-vertical"
| "shopping-cart"
| "smartphone"
| "airplay"
| "delete"
| "monitor"
| "alert-circle"
| "alert-octagon"
| "alert-triangle"
| "at-sign"
| "bar-chart-2"
| "cloud-off"
| "codesandbox"
| "divide"
| "divide-circle"
| "divide-square"
| "dollar-sign"
| "download-cloud"
| "edit-2"
| "edit-3"
| "external-link"
| "eye-off"
| "feather"
| "frown"
| "hard-drive"
| "life-buoy"
| "link-2"
| "maximize-2"
| "message-circle"
| "mic-off"
| "minimize-2"
| "more-horizontal"
| "mouse-pointer"
| "navigation-2"
| "pen-tool"
| "phone-forwarded"
| "phone-missed"
| "refresh-ccw"
| "refresh-cw"
| "rotate-ccw"
| "rotate-cw"
| "share-2"
| "shield-off"
| "skip-back"
| "target"
| "thumbs-down"
| "thumbs-up"
| "tool"
| "trash-2"
| "upload-cloud"
| "users"
| "volume-1"
| "volume-2"
| "volume-x"
| "zap-off"
# flags
"at"
| "hr"
| "tv"
| "cd"
| "cl"
| "id"
| "ng"
| "sa"
| "tm"
| "mp"
| "sd"
| "ai"
| "ad"
| "ae"
| "af"
| "ag"
| "al"
| "am"
| "ao"
| "aq"
| "ar"
| "as"
| "au"
| "aw"
| "ax"
| "az"
| "ba"
| "bb"
| "bd"
| "be"
| "bf"
| "bg"
| "bh"
| "bi"
| "bj"
| "bl"
| "bm"
| "bn"
| "bo"
| "bq"
| "br"
| "bs"
| "bt"
| "bv"
| "bw"
| "by"
| "bz"
| "ca"
| "cc"
| "cf"
| "cg"
| "ch"
| "ci"
| "ck"
| "cm"
| "cn"
| "co"
| "cr"
| "cu"
| "cv"
| "cw"
| "cx"
| "cy"
| "cz"
| "de"
| "dj"
| "dk"
| "dm"
| "do"
| "dz"
| "ec"
| "ee"
| "eg"
| "eh"
| "er"
| "es"
| "et"
| "eu"
| "fi"
| "fj"
| "fk"
| "fm"
| "fo"
| "fr"
| "ga"
| "gb"
| "gb-eng"
| "gb-nir"
| "gb-sct"
| "gb-wls"
| "gd"
| "ge"
| "gf"
| "gg"
| "gh"
| "gi"
| "gl"
| "gm"
| "gn"
| "gp"
| "gq"
| "gr"
| "gs"
| "gt"
| "gu"
| "gw"
| "gy"
| "hk"
| "hm"
| "hn"
| "ht"
| "hu"
| "ie"
| "il"
| "im"
| "in"
| "io"
| "iq"
| "ir"
| "is"
| "it"
| "je"
| "jm"
| "jo"
| "jp"
| "ke"
| "kg"
| "kh"
| "ki"
| "km"
| "kn"
| "kp"
| "kr"
| "kw"
| "ky"
| "kz"
| "la"
| "lb"
| "lc"
| "li"
| "lk"
| "lr"
| "ls"
| "lt"
| "lu"
| "lv"
| "ly"
| "ma"
| "mc"
| "md"
| "me"
| "mf"
| "mg"
| "mh"
| "mk"
| "ml"
| "mm"
| "mn"
| "mo"
| "mq"
| "mr"
| "ms"
| "mt"
| "mu"
| "mv"
| "mw"
| "mx"
| "my"
| "mz"
| "na"
| "nc"
| "ne"
| "nf"
| "ni"
| "nl"
| "no"
| "np"
| "nr"
| "nu"
| "nz"
| "om"
| "pa"
| "pe"
| "pf"
| "pg"
| "ph"
| "pk"
| "pl"
| "pm"
| "pn"
| "pr"
| "ps"
| "pt"
| "pw"
| "py"
| "qa"
| "re"
| "ro"
| "rs"
| "ru"
| "rw"
| "sb"
| "sc"
| "se"
| "sg"
| "sh"
| "si"
| "sj"
| "sk"
| "sl"
| "sm"
| "sn"
| "so"
| "sr"
| "ss"
| "st"
| "sv"
| "sx"
| "sy"
| "sz"
| "tc"
| "td"
| "tf"
| "tg"
| "th"
| "tj"
| "tk"
| "tl"
| "tn"
| "to"
| "tr"
| "tt"
| "tw"
| "tz"
| "ua"
| "ug"
| "um"
| "un"
| "us"
| "uy"
| "uz"
| "va"
| "vc"
| "ve"
| "vg"
| "vi"
| "vn"
| "vu"
| "wf"
| "ws"
| "ye"
| "yt"
| "za"
| "zm"
| "zw"
# fontawesome
{
# brands
"apple"
| "behance"
| "bluetooth"
| "bootstrap"
| "discord"
| "dribbble"
| "facebook"
| "git"
| "github"
| "google"
| "instagram"
| "line"
| "linkedin"
| "markdown"
| "mastodon"
| "medium"
| "microsoft"
| "paypal"
| "pinterest"
| "playstation"
| "quora"
| "reddit"
| "skype"
| "slack"
| "snapchat"
| "spotify"
| "stack-overflow"
| "steam"
| "strava"
| "telegram"
| "tiktok"
| "twitch"
| "twitter"
| "usb"
| "vimeo"
| "whatsapp"
| "windows"
| "wordpress"
| "xbox"
| "youtube"
| "bitcoin"
| "hive"
| "500px"
| "airbnb"
| "algolia"
| "amazon"
| "android"
| "angular"
| "audible"
| "aws"
| "blogger"
| "chrome"
| "codepen"
| "creative-commons"
| "css3"
| "dailymotion"
| "deezer"
| "deviantart"
| "digg"
| "discourse"
| "docker"
| "dropbox"
| "drupal"
| "ebay"
| "edge"
| "etsy"
| "facebook-square"
| "figma"
| "firefox"
| "flickr"
| "foursquare"
| "gitlab"
| "google-plus"
| "html5"
| "imdb"
| "internet-explorer"
| "invision"
| "java"
| "joomla"
| "jsfiddle"
| "kickstarter"
| "less"
| "magento"
| "mailchimp"
| "opera"
| "patreon"
| "periscope"
| "php"
| "product-hunt"
| "python"
| "react"
| "sass"
| "shopify"
| "sketch"
| "soundcloud"
| "squarespace"
| "stripe"
| "trello"
| "tumblr"
| "unity"
| "unsplash"
| "vk"
| "vuejs"
| "whatsapp-square"
| "wix"
| "xing"
| "yahoo"
| "yelp"
| "bitbucket"
| "gitter"
| "npm"
| "readme"
| "node"
| "gg"
| "font-awesome-logo-full"
| "accessible-icon"
| "accusoft"
| "acquisitions-incorporated"
| "adn"
| "adversal"
| "affiliatetheme"
| "alipay"
| "amazon-pay"
| "amilia"
| "angellist"
| "angrycreative"
| "app-store"
| "app-store-ios"
| "apper"
| "apple-pay"
| "artstation"
| "asymmetrik"
| "atlassian"
| "autoprefixer"
| "avianex"
| "aviato"
| "bandcamp"
| "battle-net"
| "behance-square"
| "bimobject"
| "bity"
| "black-tie"
| "blackberry"
| "blogger-b"
| "bluetooth-b"
| "btc"
| "buffer"
| "buromobelexperte"
| "buy-n-large"
| "buysellads"
| "canadian-maple-leaf"
| "cc-amazon-pay"
| "cc-amex"
| "cc-apple-pay"
| "cc-diners-club"
| "cc-discover"
| "cc-jcb"
| "cc-mastercard"
| "cc-paypal"
| "cc-stripe"
| "cc-visa"
| "centercode"
| "centos"
| "chromecast"
| "cloudflare"
| "cloudscale"
| "cloudsmith"
| "cloudversify"
| "codiepie"
| "confluence"
| "connectdevelop"
| "contao"
| "cotton-bureau"
| "cpanel"
| "creative-commons-by"
| "creative-commons-nc"
| "creative-commons-nc-eu"
| "creative-commons-nc-jp"
| "creative-commons-nd"
| "creative-commons-pd"
| "creative-commons-pd-alt"
| "creative-commons-remix"
| "creative-commons-sa"
| "creative-commons-sampling"
| "creative-commons-sampling-plus"
| "creative-commons-share"
| "creative-commons-zero"
| "critical-role"
| "css3-alt"
| "cuttlefish"
| "d-and-d"
| "d-and-d-beyond"
| "dashcube"
| "delicious"
| "deploydog"
| "deskpro"
| "dev"
| "dhl"
| "diaspora"
| "digital-ocean"
| "dochub"
| "draft2digital"
| "dribbble-square"
| "dyalog"
| "earlybirds"
| "edge-legacy"
| "elementor"
| "ello"
| "ember"
| "empire"
| "envira"
| "erlang"
| "ethereum"
| "evernote"
| "expeditedssl"
| "facebook-f"
| "facebook-messenger"
| "fantasy-flight-games"
| "fedex"
| "fedora"
| "firefox-browser"
| "first-order"
| "first-order-alt"
| "firstdraft"
| "flipboard"
| "fly"
| "font-awesome"
| "font-awesome-alt"
| "font-awesome-flag"
| "fonticons"
| "fonticons-fi"
| "fort-awesome"
| "fort-awesome-alt"
| "forumbee"
| "free-code-camp"
| "freebsd"
| "fulcrum"
| "galactic-republic"
| "galactic-senate"
| "get-pocket"
| "gg-circle"
| "git-alt"
| "git-square"
| "github-alt"
| "github-square"
| "gitkraken"
| "glide"
| "glide-g"
| "gofore"
| "goodreads"
| "goodreads-g"
| "google-drive"
| "google-pay"
| "google-play"
| "google-plus-g"
| "google-plus-square"
| "google-wallet"
| "gratipay"
| "grav"
| "gripfire"
| "grunt"
| "guilded"
| "gulp"
| "hacker-news"
| "hacker-news-square"
| "hackerrank"
| "hips"
| "hire-a-helper"
| "hooli"
| "hornbill"
| "hotjar"
| "houzz"
| "hubspot"
| "ideal"
| "innosoft"
| "instagram-square"
| "instalod"
| "intercom"
| "ioxhost"
| "itch-io"
| "itunes"
| "itunes-note"
| "jedi-order"
| "jenkins"
| "jira"
| "joget"
| "js"
| "js-square"
| "kaggle"
| "keybase"
| "keycdn"
| "kickstarter-k"
| "korvue"
| "laravel"
| "lastfm"
| "lastfm-square"
| "leanpub"
| "linkedin-in"
| "linode"
| "linux"
| "lyft"
| "mandalorian"
| "maxcdn"
| "mdb"
| "medapps"
| "medium-m"
| "medrt"
| "meetup"
| "megaport"
| "mendeley"
| "microblog"
| "mix"
| "mixcloud"
| "mixer"
| "mizuni"
| "modx"
| "monero"
| "napster"
| "neos"
| "nimblr"
| "node-js"
| "ns8"
| "nutritionix"
| "octopus-deploy"
| "odnoklassniki"
| "odnoklassniki-square"
| "old-republic"
| "opencart"
| "openid"
| "optin-monster"
| "orcid"
| "osi"
| "page4"
| "pagelines"
| "palfed"
| "penny-arcade"
| "perbyte"
| "phabricator"
| "phoenix-framework"
| "phoenix-squadron"
| "pied-piper"
| "pied-piper-alt"
| "pied-piper-hat"
| "pied-piper-pp"
| "pied-piper-square"
| "pinterest-p"
| "pinterest-square"
| "pushed"
| "qq"
| "quinscape"
| "r-project"
| "raspberry-pi"
| "ravelry"
| "reacteurope"
| "rebel"
| "red-river"
| "reddit-alien"
| "reddit-square"
| "redhat"
| "renren"
| "replyd"
| "researchgate"
| "resolving"
| "rev"
| "rocketchat"
| "rockrms"
| "rust"
| "safari"
| "salesforce"
| "schlix"
| "scribd"
| "searchengin"
| "sellcast"
| "sellsy"
| "servicestack"
| "shirtsinbulk"
| "shopware"
| "simplybuilt"
| "sistrix"
| "sith"
| "skyatlas"
| "slack-hash"
| "slideshare"
| "snapchat-ghost"
| "snapchat-square"
| "sourcetree"
| "speakap"
| "speaker-deck"
| "stack-exchange"
| "stackpath"
| "staylinked"
| "steam-square"
| "steam-symbol"
| "sticker-mule"
| "stripe-s"
| "studiovinari"
| "stumbleupon"
| "stumbleupon-circle"
| "superpowers"
| "supple"
| "suse"
| "swift"
| "symfony"
| "teamspeak"
| "telegram-plane"
| "tencent-weibo"
| "the-red-yeti"
| "themeco"
| "themeisle"
| "think-peaks"
| "trade-federation"
| "tumblr-square"
| "twitter-square"
| "typo3"
| "uber"
| "ubuntu"
| "uikit"
| "umbraco"
| "uncharted"
| "uniregistry"
| "untappd"
| "ups"
| "usps"
| "ussunnah"
| "vaadin"
| "viacoin"
| "viadeo"
| "viadeo-square"
| "viber"
| "vimeo-square"
| "vimeo-v"
| "vine"
| "vnv"
| "watchman-monitoring"
| "waze"
| "weebly"
| "weibo"
| "weixin"
| "whmcs"
| "wikipedia-w"
| "wizards-of-the-coast"
| "wodu"
| "wolf-pack-battalion"
| "wordpress-simple"
| "wpbeginner"
| "wpexplorer"
| "wpforms"
| "wpressr"
| "xing-square"
| "y-combinator"
| "yammer"
| "yandex"
| "yandex-international"
| "yarn"
| "yoast"
| "youtube-square"
| "zhihu"
# regular
"bell"
| "bell-slash"
| "bookmark"
| "building"
| "calendar"
| "calendar-check"
| "calendar-minus"
| "calendar-plus"
| "check-circle"
| "check-square"
| "circle"
| "clipboard"
| "clock"
| "compass"
| "credit-card"
| "envelope"
| "envelope-open"
| "eye"
| "eye-slash"
| "file"
| "file-code"
| "file-excel"
| "file-image"
| "file-pdf"
| "file-word"
| "flag"
| "folder"
| "gem"
| "hdd"
| "heart"
| "hospital"
| "hourglass"
| "image"
| "images"
| "keyboard"
| "lightbulb"
| "map"
| "moon"
| "newspaper"
| "pause-circle"
| "play-circle"
| "plus-square"
| "question-circle"
| "save"
| "square"
| "star"
| "star-half"
| "stop-circle"
| "sun"
| "angry"
| "calendar-alt"
| "comment"
| "comment-dots"
| "copy"
| "copyright"
| "dizzy"
| "edit"
| "file-archive"
| "folder-open"
| "id-card"
| "laugh"
| "lemon"
| "meh"
| "meh-blank"
| "minus-square"
| "paper-plane"
| "registered"
| "smile"
| "tired"
| "trash-alt"
| "user"
| "user-circle"
| "window-close"
| "flushed"
| "grin"
| "handshake"
| "kiss"
| "snowflake"
| "frown"
| "thumbs-down"
| "thumbs-up"
| "address-book"
| "address-card"
| "arrow-alt-circle-down"
| "arrow-alt-circle-left"
| "arrow-alt-circle-right"
| "arrow-alt-circle-up"
| "calendar-times"
| "caret-square-down"
| "caret-square-left"
| "caret-square-right"
| "caret-square-up"
| "chart-bar"
| "clone"
| "closed-captioning"
| "comment-alt"
| "comments"
| "dot-circle"
| "file-alt"
| "file-audio"
| "file-powerpoint"
| "file-video"
| "font-awesome-logo-full"
| "frown-open"
| "futbol"
| "grimace"
| "grin-alt"
| "grin-beam"
| "grin-beam-sweat"
| "grin-hearts"
| "grin-squint"
| "grin-squint-tears"
| "grin-stars"
| "grin-tears"
| "grin-tongue"
| "grin-tongue-squint"
| "grin-tongue-wink"
| "grin-wink"
| "hand-lizard"
| "hand-paper"
| "hand-peace"
| "hand-point-down"
| "hand-point-left"
| "hand-point-right"
| "hand-point-up"
| "hand-pointer"
| "hand-rock"
| "hand-scissors"
| "hand-spock"
| "id-badge"
| "kiss-beam"
| "kiss-wink-heart"
| "laugh-beam"
| "laugh-squint"
| "laugh-wink"
| "life-ring"
| "list-alt"
| "meh-rolling-eyes"
| "money-bill-alt"
| "object-group"
| "object-ungroup"
| "sad-cry"
| "sad-tear"
| "share-square"
| "smile-beam"
| "smile-wink"
| "sticky-note"
| "surprise"
| "times-circle"
| "window-maximize"
| "window-minimize"
| "window-restore"
# solid
"align-center"
| "archive"
| "arrow-down"
| "arrow-left"
| "arrow-right"
| "arrow-up"
| "asterisk"
| "at"
| "award"
| "backspace"
| "battery-full"
| "battery-half"
| "bell"
| "bell-slash"
| "bicycle"
| "binoculars"
| "book"
| "bookmark"
| "border-all"
| "border-style"
| "box"
| "boxes"
| "briefcase"
| "brush"
| "bug"
| "building"
| "bullseye"
| "calculator"
| "calendar"
| "calendar-check"
| "calendar-day"
| "calendar-minus"
| "calendar-plus"
| "calendar-week"
| "camera"
| "caret-down"
| "caret-left"
| "caret-right"
| "caret-up"
| "cart-plus"
| "check"
| "check-circle"
| "check-square"
| "chevron-down"
| "chevron-left"
| "chevron-right"
| "chevron-up"
| "circle"
| "clipboard"
| "clipboard-check"
| "clock"
| "cloud"
| "cloud-moon"
| "cloud-rain"
| "cloud-sun"
| "code"
| "columns"
| "compass"
| "credit-card"
| "crop"
| "door-closed"
| "door-open"
| "download"
| "egg"
| "eject"
| "envelope"
| "envelope-open"
| "eraser"
| "ethernet"
| "exclamation"
| "exclamation-circle"
| "exclamation-triangle"
| "eye"
| "eye-slash"
| "fan"
| "file"
| "file-code"
| "file-excel"
| "file-image"
| "file-medical"
| "file-pdf"
| "file-word"
| "film"
| "filter"
| "fingerprint"
| "flag"
| "folder"
| "folder-minus"
| "folder-plus"
| "forward"
| "gem"
| "gift"
| "globe"
| "grip-horizontal"
| "grip-vertical"
| "hammer"
| "hdd"
| "headphones"
| "headset"
| "heart"
| "hospital"
| "hourglass"
| "image"
| "images"
| "inbox"
| "infinity"
| "info"
| "info-circle"
| "key"
| "keyboard"
| "laptop"
| "lightbulb"
| "link"
| "list"
| "list-ol"
| "list-ul"
| "lock"
| "magic"
| "magnet"
| "map"
| "mask"
| "memory"
| "moon"
| "mouse"
| "newspaper"
| "palette"
| "paperclip"
| "paragraph"
| "pause"
| "pause-circle"
| "peace"
| "pen"
| "percent"
| "phone"
| "piggy-bank"
| "play"
| "play-circle"
| "plug"
| "plus"
| "plus-circle"
| "plus-square"
| "question"
| "question-circle"
| "rainbow"
| "receipt"
| "recycle"
| "reply"
| "reply-all"
| "robot"
| "rss"
| "save"
| "screwdriver"
| "sd-card"
| "search"
| "server"
| "share"
| "signal"
| "slash"
| "sort-alpha-down"
| "sort-alpha-down-alt"
| "sort-alpha-up"
| "sort-alpha-up-alt"
| "sort-down"
| "sort-numeric-down"
| "sort-numeric-down-alt"
| "sort-numeric-up"
| "sort-numeric-up-alt"
| "sort-up"
| "square"
| "star"
| "star-half"
| "stop"
| "stop-circle"
| "stopwatch"
| "sun"
| "table"
| "tablet"
| "tag"
| "tags"
| "terminal"
| "thermometer"
| "thermometer-half"
| "toggle-off"
| "toggle-on"
| "tools"
| "trash"
| "tree"
| "trophy"
| "truck"
| "tv"
| "umbrella"
| "unlock"
| "upload"
| "voicemail"
| "volume-down"
| "volume-mute"
| "volume-off"
| "volume-up"
| "wallet"
| "water"
| "wifi"
| "wind"
| "wrench"
| "yin-yang"
| "adjust"
| "ambulance"
| "angry"
| "baby-carriage"
| "band-aid"
| "barcode"
| "bath"
| "bed"
| "beer"
| "bible"
| "bolt"
| "bomb"
| "bone"
| "bong"
| "book-open"
| "book-reader"
| "bowling-ball"
| "brain"
| "bus"
| "calendar-alt"
| "car"
| "car-battery"
| "car-crash"
| "cat"
| "chalkboard"
| "cheese"
| "chess"
| "church"
| "city"
| "coffee"
| "cog"
| "comment"
| "comment-dots"
| "cookie"
| "copy"
| "copyright"
| "crown"
| "cube"
| "directions"
| "dizzy"
| "dog"
| "edit"
| "file-archive"
| "file-export"
| "file-import"
| "first-aid"
| "flag-checkered"
| "flask"
| "folder-open"
| "gas-pump"
| "ghost"
| "hard-hat"
| "home"
| "hotel"
| "id-card"
| "landmark"
| "laugh"
| "leaf"
| "lemon"
| "lock-open"
| "low-vision"
| "map-pin"
| "medal"
| "meh"
| "meh-blank"
| "meteor"
| "microchip"
| "microphone"
| "microphone-alt"
| "minus-circle"
| "minus-square"
| "mobile"
| "music"
| "paper-plane"
| "parking"
| "paste"
| "plane"
| "quote-left"
| "quote-right"
| "radiation"
| "registered"
| "rocket"
| "ruler"
| "school"
| "shapes"
| "share-alt"
| "ship"
| "shopping-bag"
| "skull"
| "smile"
| "spa"
| "spray-can"
| "store"
| "store-alt"
| "taxi"
| "tired"
| "train"
| "trash-alt"
| "user"
| "user-check"
| "user-circle"
| "user-minus"
| "user-plus"
| "vial"
| "video"
| "virus"
| "align-justify"
| "align-left"
| "align-right"
| "anchor"
| "atom"
| "bold"
| "border-none"
| "braille"
| "chair"
| "check-double"
| "cross"
| "cut"
| "desktop"
| "dna"
| "dumbbell"
| "expand"
| "expand-alt"
| "fast-forward"
| "female"
| "font"
| "glasses"
| "heading"
| "history"
| "italic"
| "male"
| "minus"
| "mobile-alt"
| "podcast"
| "poll"
| "power-off"
| "redo"
| "shield-alt"
| "sitemap"
| "sort"
| "street-view"
| "strikethrough"
| "sync"
| "underline"
| "undo"
| "unlink"
| "window-close"
| "blender"
| "ban"
| "print"
| "battery-empty"
| "compress"
| "database"
| "hashtag"
| "ring"
| "shopping-cart"
| "spinner"
| "toolbox"
| "baby"
| "bacon"
| "biohazard"
| "carrot"
| "cocktail"
| "couch"
| "dove"
| "dragon"
| "drum"
| "fax"
| "fire"
| "fish"
| "flushed"
| "frog"
| "grin"
| "guitar"
| "hamburger"
| "handshake"
| "heartbeat"
| "helicopter"
| "horse"
| "hotdog"
| "kaaba"
| "kiss"
| "menorah"
| "microscope"
| "mosque"
| "motorcycle"
| "mountain"
| "pager"
| "poop"
| "pray"
| "restroom"
| "ribbon"
| "satellite"
| "scroll"
| "seedling"
| "shower"
| "smoking"
| "snowflake"
| "snowman"
| "spider"
| "swimmer"
| "synagogue"
| "syringe"
| "toilet"
| "tractor"
| "tram"
| "walking"
| "wheelchair"
| "gamepad"
| "gavel"
| "hiking"
| "language"
| "portrait"
| "sms"
| "snowboarding"
| "soap"
| "stream"
| "subscript"
| "subway"
| "superscript"
| "transgender"
| "tty"
| "route"
| "divide"
| "dollar-sign"
| "feather"
| "frown"
| "mouse-pointer"
| "thumbs-down"
| "thumbs-up"
| "users"
| "ad"
| "om"
| "th"
| "address-book"
| "address-card"
| "air-freshener"
| "allergies"
| "american-sign-language-interpreting"
| "angle-double-down"
| "angle-double-left"
| "angle-double-right"
| "angle-double-up"
| "angle-down"
| "angle-left"
| "angle-right"
| "angle-up"
| "ankh"
| "apple-alt"
| "archway"
| "arrow-alt-circle-down"
| "arrow-alt-circle-left"
| "arrow-alt-circle-right"
| "arrow-alt-circle-up"
| "arrow-circle-down"
| "arrow-circle-left"
| "arrow-circle-right"
| "arrow-circle-up"
| "arrows-alt"
| "arrows-alt-h"
| "arrows-alt-v"
| "assistive-listening-systems"
| "atlas"
| "audio-description"
| "backward"
| "bacteria"
| "bacterium"
| "bahai"
| "balance-scale"
| "balance-scale-left"
| "balance-scale-right"
| "bars"
| "baseball-ball"
| "basketball-ball"
| "battery-quarter"
| "battery-three-quarters"
| "bezier-curve"
| "biking"
| "birthday-cake"
| "blender-phone"
| "blind"
| "blog"
| "book-dead"
| "book-medical"
| "box-open"
| "box-tissue"
| "bread-slice"
| "briefcase-medical"
| "broadcast-tower"
| "broom"
| "bullhorn"
| "burn"
| "bus-alt"
| "business-time"
| "calendar-times"
| "camera-retro"
| "campground"
| "candy-cane"
| "cannabis"
| "capsules"
| "car-alt"
| "car-side"
| "caravan"
| "caret-square-down"
| "caret-square-left"
| "caret-square-right"
| "caret-square-up"
| "cart-arrow-down"
| "cash-register"
| "certificate"
| "chalkboard-teacher"
| "charging-station"
| "chart-area"
| "chart-bar"
| "chart-line"
| "chart-pie"
| "chess-bishop"
| "chess-board"
| "chess-king"
| "chess-knight"
| "chess-pawn"
| "chess-queen"
| "chess-rook"
| "chevron-circle-down"
| "chevron-circle-left"
| "chevron-circle-right"
| "chevron-circle-up"
| "child"
| "circle-notch"
| "clinic-medical"
| "clipboard-list"
| "clone"
| "closed-captioning"
| "cloud-download-alt"
| "cloud-meatball"
| "cloud-moon-rain"
| "cloud-showers-heavy"
| "cloud-sun-rain"
| "cloud-upload-alt"
| "code-branch"
| "cogs"
| "coins"
| "comment-alt"
| "comment-dollar"
| "comment-medical"
| "comment-slash"
| "comments"
| "comments-dollar"
| "compact-disc"
| "compress-alt"
| "compress-arrows-alt"
| "concierge-bell"
| "cookie-bite"
| "crop-alt"
| "crosshairs"
| "crow"
| "crutch"
| "cubes"
| "deaf"
| "democrat"
| "dharmachakra"
| "diagnoses"
| "dice"
| "dice-d6"
| "dice-d20"
| "dice-five"
| "dice-four"
| "dice-one"
| "dice-six"
| "dice-three"
| "dice-two"
| "digital-tachograph"
| "disease"
| "dolly"
| "dolly-flatbed"
| "donate"
| "dot-circle"
| "drafting-compass"
| "draw-polygon"
| "drum-steelpan"
| "drumstick-bite"
| "dumpster"
| "dumpster-fire"
| "dungeon"
| "ellipsis-h"
| "ellipsis-v"
| "envelope-open-text"
| "envelope-square"
| "equals"
| "euro-sign"
| "exchange-alt"
| "expand-arrows-alt"
| "external-link-alt"
| "external-link-square-alt"
| "eye-dropper"
| "fast-backward"
| "faucet"
| "feather-alt"
| "fighter-jet"
| "file-alt"
| "file-audio"
| "file-contract"
| "file-csv"
| "file-download"
| "file-invoice"
| "file-invoice-dollar"
| "file-medical-alt"
| "file-powerpoint"
| "file-prescription"
| "file-signature"
| "file-upload"
| "file-video"
| "fill"
| "fill-drip"
| "fire-alt"
| "fire-extinguisher"
| "fist-raised"
| "flag-usa"
| "font-awesome-logo-full"
| "football-ball"
| "frown-open"
| "funnel-dollar"
| "futbol"
| "genderless"
| "gifts"
| "glass-cheers"
| "glass-martini"
| "glass-martini-alt"
| "glass-whiskey"
| "globe-africa"
| "globe-americas"
| "globe-asia"
| "globe-europe"
| "golf-ball"
| "gopuram"
| "graduation-cap"
| "greater-than"
| "greater-than-equal"
| "grimace"
| "grin-alt"
| "grin-beam"
| "grin-beam-sweat"
| "grin-hearts"
| "grin-squint"
| "grin-squint-tears"
| "grin-stars"
| "grin-tears"
| "grin-tongue"
| "grin-tongue-squint"
| "grin-tongue-wink"
| "grin-wink"
| "grip-lines"
| "grip-lines-vertical"
| "h-square"
| "hamsa"
| "hand-holding"
| "hand-holding-heart"
| "hand-holding-medical"
| "hand-holding-usd"
| "hand-holding-water"
| "hand-lizard"
| "hand-middle-finger"
| "hand-paper"
| "hand-peace"
| "hand-point-down"
| "hand-point-left"
| "hand-point-right"
| "hand-point-up"
| "hand-pointer"
| "hand-rock"
| "hand-scissors"
| "hand-sparkles"
| "hand-spock"
| "hands"
| "hands-helping"
| "hands-wash"
| "handshake-alt-slash"
| "handshake-slash"
| "hanukiah"
| "hat-cowboy"
| "hat-cowboy-side"
| "hat-wizard"
| "head-side-cough"
| "head-side-cough-slash"
| "head-side-mask"
| "head-side-virus"
| "headphones-alt"
| "heart-broken"
| "highlighter"
| "hippo"
| "hockey-puck"
| "holly-berry"
| "horse-head"
| "hospital-alt"
| "hospital-symbol"
| "hospital-user"
| "hot-tub"
| "hourglass-end"
| "hourglass-half"
| "hourglass-start"
| "house-damage"
| "house-user"
| "hryvnia"
| "i-cursor"
| "ice-cream"
| "icicles"
| "icons"
| "id-badge"
| "id-card-alt"
| "igloo"
| "indent"
| "industry"
| "jedi"
| "joint"
| "journal-whills"
| "khanda"
| "kiss-beam"
| "kiss-wink-heart"
| "kiwi-bird"
| "laptop-code"
| "laptop-house"
| "laptop-medical"
| "laugh-beam"
| "laugh-squint"
| "laugh-wink"
| "layer-group"
| "less-than"
| "less-than-equal"
| "level-down-alt"
| "level-up-alt"
| "life-ring"
| "lira-sign"
| "list-alt"
| "location-arrow"
| "long-arrow-alt-down"
| "long-arrow-alt-left"
| "long-arrow-alt-right"
| "long-arrow-alt-up"
| "luggage-cart"
| "lungs"
| "lungs-virus"
| "mail-bulk"
| "map-marked"
| "map-marked-alt"
| "map-marker"
| "map-marker-alt"
| "map-signs"
| "marker"
| "mars"
| "mars-double"
| "mars-stroke"
| "mars-stroke-h"
| "mars-stroke-v"
| "medkit"
| "meh-rolling-eyes"
| "mercury"
| "microphone-alt-slash"
| "microphone-slash"
| "mitten"
| "money-bill"
| "money-bill-alt"
| "money-bill-wave"
| "money-bill-wave-alt"
| "money-check"
| "money-check-alt"
| "monument"
| "mortar-pestle"
| "mug-hot"
| "network-wired"
| "neuter"
| "not-equal"
| "notes-medical"
| "object-group"
| "object-ungroup"
| "oil-can"
| "otter"
| "outdent"
| "paint-brush"
| "paint-roller"
| "pallet"
| "parachute-box"
| "passport"
| "pastafarianism"
| "paw"
| "pen-alt"
| "pen-fancy"
| "pen-nib"
| "pen-square"
| "pencil-alt"
| "pencil-ruler"
| "people-arrows"
| "people-carry"
| "pepper-hot"
| "percentage"
| "person-booth"
| "phone-alt"
| "phone-slash"
| "phone-square"
| "phone-square-alt"
| "phone-volume"
| "photo-video"
| "pills"
| "pizza-slice"
| "place-of-worship"
| "plane-arrival"
| "plane-departure"
| "plane-slash"
| "poll-h"
| "poo"
| "poo-storm"
| "pound-sign"
| "praying-hands"
| "prescription"
| "prescription-bottle"
| "prescription-bottle-alt"
| "procedures"
| "project-diagram"
| "pump-medical"
| "pump-soap"
| "puzzle-piece"
| "qrcode"
| "quidditch"
| "quran"
| "radiation-alt"
| "random"
| "record-vinyl"
| "redo-alt"
| "remove-format"
| "republican"
| "retweet"
| "road"
| "rss-square"
| "ruble-sign"
| "ruler-combined"
| "ruler-horizontal"
| "ruler-vertical"
| "running"
| "rupee-sign"
| "sad-cry"
| "sad-tear"
| "satellite-dish"
| "search-dollar"
| "search-location"
| "search-minus"
| "search-plus"
| "share-alt-square"
| "share-square"
| "shekel-sign"
| "shield-virus"
| "shipping-fast"
| "shoe-prints"
| "shopping-basket"
| "shuttle-van"
| "sign"
| "sign-in-alt"
| "sign-language"
| "sign-out-alt"
| "signature"
| "sim-card"
| "sink"
| "skating"
| "skiing"
| "skiing-nordic"
| "skull-crossbones"
| "sleigh"
| "sliders-h"
| "smile-beam"
| "smile-wink"
| "smog"
| "smoking-ban"
| "snowplow"
| "socks"
| "solar-panel"
| "sort-amount-down"
| "sort-amount-down-alt"
| "sort-amount-up"
| "sort-amount-up-alt"
| "space-shuttle"
| "spell-check"
| "splotch"
| "square-full"
| "square-root-alt"
| "stamp"
| "star-and-crescent"
| "star-half-alt"
| "star-of-david"
| "star-of-life"
| "step-backward"
| "step-forward"
| "stethoscope"
| "sticky-note"
| "stopwatch-20"
| "store-alt-slash"
| "store-slash"
| "stroopwafel"
| "suitcase"
| "suitcase-rolling"
| "surprise"
| "swatchbook"
| "swimming-pool"
| "sync-alt"
| "table-tennis"
| "tablet-alt"
| "tablets"
| "tachometer-alt"
| "tape"
| "tasks"
| "teeth"
| "teeth-open"
| "temperature-high"
| "temperature-low"
| "tenge"
| "text-height"
| "text-width"
| "th-large"
| "th-list"
| "theater-masks"
| "thermometer-empty"
| "thermometer-full"
| "thermometer-quarter"
| "thermometer-three-quarters"
| "thumbtack"
| "ticket-alt"
| "times"
| "times-circle"
| "tint"
| "tint-slash"
| "toilet-paper"
| "toilet-paper-slash"
| "tooth"
| "torah"
| "torii-gate"
| "trademark"
| "traffic-light"
| "trailer"
| "transgender-alt"
| "trash-restore"
| "trash-restore-alt"
| "truck-loading"
| "truck-monster"
| "truck-moving"
| "truck-pickup"
| "tshirt"
| "umbrella-beach"
| "undo-alt"
| "universal-access"
| "university"
| "unlock-alt"
| "user-alt"
| "user-alt-slash"
| "user-astronaut"
| "user-clock"
| "user-cog"
| "user-edit"
| "user-friends"
| "user-graduate"
| "user-injured"
| "user-lock"
| "user-md"
| "user-ninja"
| "user-nurse"
| "user-secret"
| "user-shield"
| "user-slash"
| "user-tag"
| "user-tie"
| "user-times"
| "users-cog"
| "users-slash"
| "utensil-spoon"
| "utensils"
| "vector-square"
| "venus"
| "venus-double"
| "venus-mars"
| "vest"
| "vest-patches"
| "vials"
| "video-slash"
| "vihara"
| "virus-slash"
| "viruses"
| "volleyball-ball"
| "vote-yea"
| "vr-cardboard"
| "warehouse"
| "wave-square"
| "weight"
| "weight-hanging"
| "window-maximize"
| "window-minimize"
| "window-restore"
| "wine-bottle"
| "wine-glass"
| "wine-glass-alt"
| "won-sign"
| "x-ray"
| "yen-sign"
# iconoir
"activity"
| "alarm"
| "align-center"
| "apple"
| "archive"
| "arrow-down"
| "arrow-left"
| "arrow-right"
| "arrow-up"
| "bag"
| "bank"
| "battery-charging"
| "battery-full"
| "bell"
| "bicycle"
| "bluetooth"
| "book"
| "border-bottom"
| "border-inner"
| "border-left"
| "border-right"
| "border-top"
| "box"
| "building"
| "calculator"
| "calendar"
| "camera"
| "cart"
| "cash"
| "check"
| "circle"
| "cloud"
| "cloud-check"
| "cloud-download"
| "cloud-upload"
| "code"
| "coin"
| "cpu"
| "credit-card"
| "crop"
| "download"
| "dribbble"
| "droplet"
| "droplet-half"
| "egg"
| "eject"
| "exclude"
| "facebook"
| "filter"
| "fingerprint"
| "folder"
| "gift"
| "github"
| "google"
| "graph-down"
| "graph-up"
| "handbag"
| "headset"
| "heart"
| "heptagon"
| "hexagon"
| "hospital"
| "hourglass"
| "instagram"
| "intersect"
| "journal"
| "lamp"
| "laptop"
| "link"
| "linkedin"
| "list"
| "lock"
| "magnet"
| "map"
| "medium"
| "megaphone"
| "mic"
| "mic-mute"
| "octagon"
| "palette"
| "pentagon"
| "phone"
| "piggy-bank"
| "pin"
| "plus"
| "printer"
| "qr-code"
| "search"
| "server"
| "shield"
| "shield-check"
| "shield-minus"
| "shop"
| "shuffle"
| "snapchat"
| "snow"
| "sort-down"
| "sort-up"
| "square"
| "table"
| "telegram"
| "tiktok"
| "translate"
| "trash"
| "triangle"
| "trophy"
| "tv"
| "twitter"
| "type"
| "union"
| "upload"
| "usb"
| "wallet"
| "wifi"
| "wifi-off"
| "wind"
| "windows"
| "youtube"
| "zoom-in"
| "zoom-out"
| "album"
| "bell-off"
| "bowling-ball"
| "cart-alt"
| "church"
| "city"
| "cookie"
| "copy"
| "copyright"
| "dashboard"
| "edit"
| "ev-station"
| "filter-alt"
| "flask"
| "fridge"
| "group"
| "home"
| "log-in"
| "log-out"
| "medal"
| "message"
| "minus-square"
| "movie"
| "parking"
| "planet"
| "playlist"
| "ruler"
| "shopping-bag"
| "shopping-bag-alt"
| "tennis-ball"
| "timer"
| "user"
| "accessibility"
| "align-justify"
| "align-left"
| "align-right"
| "atom"
| "bold"
| "closet"
| "collapse"
| "cut"
| "cycling"
| "dialpad"
| "dollar"
| "euro"
| "expand"
| "female"
| "font-size"
| "football"
| "git-branch"
| "git-commit"
| "git-merge"
| "glasses"
| "home-alt"
| "import"
| "italic"
| "male"
| "menu"
| "minus"
| "pound"
| "question-mark"
| "redo"
| "refresh"
| "repeat"
| "selection"
| "shield-alt"
| "test-tube"
| "text"
| "underline"
| "undo"
| "yen"
| "codepen"
| "creative-commons"
| "css3"
| "figma"
| "html5"
| "pocket"
| "trello"
| "unity"
| "mail"
| "settings"
| "airplane"
| "attachment"
| "battery-empty"
| "color-picker"
| "compress"
| "eye-alt"
| "gym"
| "linear"
| "maximize"
| "move-down"
| "move-left"
| "move-right"
| "move-up"
| "notes"
| "pin-alt"
| "view-grid"
| "computer"
| "fog"
| "golf"
| "metro"
| "smoking"
| "tram"
| "walking"
| "airplay"
| "cancel"
| "flare"
| "flip"
| "garage"
| "hd"
| "language"
| "leaderboard"
| "lens"
| "skateboarding"
| "soap"
| "stroller"
| "network"
| "eye-off"
| "hard-drive"
| "compact-disc"
| "donate"
| "football-ball"
| "industry"
| "percentage"
| "pizza-slice"
| "running"
| "trademark"
| "weight"
| "chromecast"
| "google-drive"
| "linux"
| "safari"
| "1st-medal"
| "4k-display"
| "4x4-cell"
| "360-view"
| "accessibility-sign"
| "accessibility-tech"
| "add-circled-outline"
| "add-database-script"
| "add-folder"
| "add-frame"
| "add-hexagon"
| "add-keyframe"
| "add-keyframe-alt"
| "add-keyframes"
| "add-lens"
| "add-media-image"
| "add-media-video"
| "add-page"
| "add-pin-alt"
| "add-selection"
| "add-square"
| "add-to-cart"
| "add-user"
| "air-conditioner"
| "airplane-helix"
| "airplane-helix-45deg"
| "airplane-off"
| "airplane-rotation"
| "album-carousel"
| "album-list"
| "album-open"
| "align-bottom-box"
| "align-left-box"
| "align-right-box"
| "align-top-box"
| "antenna"
| "antenna-off"
| "antenna-signal"
| "antenna-signal-rounded"
| "app-notification"
| "apple-half"
| "apple-half-alt"
| "apple-imac-2021"
| "apple-imac-2021-side"
| "apple-mac"
| "apple-swift"
| "apple-wallet"
| "ar-symbol"
| "archery"
| "area-search"
| "arrow-archery"
| "arrow-down-circled"
| "arrow-left-circled"
| "arrow-right-circled"
| "arrow-separate"
| "arrow-separate-vertical"
| "arrow-union"
| "arrow-union-vertical"
| "arrow-up-circled"
| "asana"
| "auto-flash"
| "backward-15-seconds"
| "basket-ball"
| "basket-ball-alt"
| "basketball-field"
| "battery-25"
| "battery-50"
| "battery-75"
| "battery-indicator"
| "battery-warning"
| "bbq"
| "beach-bag"
| "beach-bag-big"
| "bell-notification"
| "bin"
| "bin-add"
| "bin-full"
| "bin-half"
| "bin-minus"
| "bluetooth-rounded"
| "bold-square-outline"
| "bonfire"
| "book-stack"
| "bookmark-book"
| "bookmark-circled"
| "bookmark-empty"
| "border-bl"
| "border-br"
| "border-out"
| "border-tl"
| "border-tr"
| "bounce-left"
| "bounce-right"
| "box-iso"
| "boxing-glove"
| "bubble-download"
| "bubble-error"
| "bubble-income"
| "bubble-outcome"
| "bubble-search"
| "bubble-star"
| "bubble-upload"
| "bubble-warning"
| "bus-outline"
| "bus-stop"
| "cable-rounded"
| "car-outline"
| "carbon"
| "card-wallet"
| "center-align"
| "chat-add"
| "chat-bubble"
| "chat-bubble-check"
| "chat-bubble-check-1"
| "chat-bubble-empty"
| "chat-bubble-error"
| "chat-bubble-question"
| "chat-bubble-translate"
| "chat-bubble-warning"
| "chat-lines"
| "chat-remove"
| "check-circled-outline"
| "chocolate"
| "chromecast-active"
| "church-alt"
| "cinema-old"
| "clock-outline"
| "cloud-book-alt"
| "cloud-desync"
| "cloud-error"
| "cloud-sunny"
| "cloud-sync"
| "code-brackets"
| "code-brackets-square"
| "collage-frame"
| "color-filter"
| "color-picker-empty"
| "combine"
| "compress-lines"
| "control-slider"
| "corner-bottom-left"
| "corner-bottom-right"
| "corner-top-left"
| "corner-top-right"
| "cpu-warning"
| "cracked-egg"
| "credit-card-2"
| "crop-rotate-bl"
| "crop-rotate-br"
| "crop-rotate-tl"
| "crop-rotate-tr"
| "cursor-pointer"
| "cut-alt"
| "dash-flag"
| "dashboard-dots"
| "dashboard-speed"
| "data-transfer-both"
| "data-transfer-check"
| "data-transfer-down"
| "data-transfer-up"
| "data-transfer-warning"
| "database-backup"
| "database-export"
| "database-monitor"
| "database-restore"
| "database-rounded"
| "database-script"
| "database-settings"
| "database-star"
| "database-stats"
| "db"
| "db-check"
| "db-error"
| "db-search"
| "db-star"
| "db-warning"
| "de-compress"
| "delete-circled-outline"
| "design-pencil"
| "divide-selection-1"
| "divide-selection-2"
| "doc-search"
| "doc-search-alt"
| "doc-star"
| "doc-star-alt"
| "domotic-issue"
| "double-check"
| "down-round-arrow"
| "download-circled-outline"
| "download-square-outline"
| "drag-hand-gesture"
| "drawer"
| "ease-curve-control-points"
| "ease-in"
| "ease-in-control-point"
| "ease-in-out"
| "ease-out"
| "ease-out-control-point"
| "edit-pencil"
| "electronics-chip"
| "electronics-transister"
| "emoji"
| "emoji-ball"
| "emoji-blink-left"
| "emoji-blink-right"
| "emoji-look-bottom"
| "emoji-look-left"
| "emoji-look-right"
| "emoji-look-top"
| "emoji-quite"
| "emoji-really"
| "emoji-sad"
| "emoji-satisfied"
| "emoji-sing-left"
| "emoji-sing-left-note"
| "emoji-sing-right"
| "emoji-sing-right-note"
| "emoji-surprise"
| "emoji-surprise-alt"
| "emoji-talking-angry"
| "emoji-talking-happy"
| "emoji-think-left"
| "emoji-think-right"
| "empty-page"
| "enlarge"
| "enlarge-round-arrow"
| "euro-square"
| "ev-charge"
| "ev-charge-alt"
| "ev-plug"
| "ev-plug-charging"
| "ev-plug-error"
| "ev-rounded"
| "expand-lines"
| "eye-close"
| "eye-empty"
| "face-id"
| "facebook-squared"
| "facetime"
| "farm"
| "fast-arrow-down"
| "fast-arrow-down-box"
| "fast-arrow-left"
| "fast-arrow-left-box"
| "fast-arrow-right"
| "fast-arrow-right-box"
| "fast-arrow-top"
| "fast-arrow-up-box"
| "fast-bottom-circle"
| "fast-left-circle"
| "fast-right-circle"
| "fast-top-circle"
| "favourite-book"
| "file-not-found"
| "finder"
| "fingerprint-circled"
| "fingerprint-circled-error"
| "fingerprint-circled-lock"
| "fingerprint-circled-ok"
| "fingerprint-phone"
| "fingerprint-scan"
| "fingerprint-squared"
| "fire-flame"
| "Fishing"
| "flash"
| "flash-off"
| "flip-reverse"
| "flower"
| "fluorine"
| "folder-alert"
| "forward-15-seconds"
| "forward-outline"
| "frame"
| "frame-alt"
| "frame-alt-empty"
| "frame-select"
| "frame-simple"
| "frame-tool"
| "fx"
| "fx-rounded"
| "gas"
| "gas-tank"
| "gas-tank-drop"
| "github-outline"
| "gitlab-full"
| "glass-empty"
| "glass-half"
| "glass-half-alt"
| "google-circled"
| "google-docs"
| "google-drive-check"
| "google-drive-sync"
| "google-drive-warning"
| "google-home"
| "google-one"
| "gps"
| "grid-add"
| "grid-minus"
| "grid-remove"
| "half-cookie"
| "half-moon"
| "hand-brake"
| "hat"
| "hd-display"
| "hdr"
| "headset-charge"
| "headset-help"
| "headset-issue"
| "health-shield"
| "healthcare"
| "heavy-rain"
| "her-slips"
| "hesa-warning-outline"
| "hexagon-alt"
| "high-priority"
| "historic-shield"
| "historic-shield-alt"
| "home-alt-slim"
| "home-alt-slim-horiz"
| "home-hospital"
| "home-simple"
| "home-simple-door"
| "home-user"
| "horiz-distribution-left"
| "horiz-distribution-right"
| "hospital-sign"
| "hydrogen"
| "iconoir"
| "info-empty"
| "input-field"
| "input-search"
| "intersect-alt"
| "ios-settings"
| "iris-scan"
| "italic-square-outline"
| "journal-page"
| "key-alt"
| "key-alt-back"
| "key-alt-minus"
| "key-alt-plus"
| "key-alt-remove"
| "keyframe"
| "keyframe-align-center"
| "keyframe-align-horizontal"
| "keyframe-align-horizontal-1"
| "keyframe-position"
| "keyframes"
| "keyframes-couple"
| "label-outline"
| "laptop-charging"
| "laptop-fix"
| "laptop-issue"
| "large-suitcase"
| "layout-left"
| "layout-right"
| "leaderboard-star"
| "left-round-arrow"
| "lifebelt"
| "light-bulb"
| "light-bulb-off"
| "light-bulb-on"
| "line-space"
| "load-action-floppy"
| "lock-key"
| "locked-book"
| "log-denied"
| "long-arrow-down-left"
| "long-arrow-down-right"
| "long-arrow-left-down"
| "long-arrow-left-up"
| "long-arrow-right-down"
| "long-arrow-right-up"
| "long-arrow-right-up-1"
| "long-arrow-up-left"
| "long-arrow-up-right"
| "lot-of-cash"
| "mac-control-key"
| "mac-dock"
| "mac-option-key"
| "mac-os-window"
| "magnet-energy"
| "mail-opened"
| "map-issue"
| "maps-arrow"
| "maps-arrow-diagonal"
| "maps-arrow-issue"
| "maps-go-straight"
| "maps-turn-back"
| "maps-turn-left"
| "maps-turn-right"
| "mask-square"
| "math-book"
| "media-image"
| "media-image-folder"
| "media-image-list"
| "media-video"
| "media-video-folder"
| "media-video-list"
| "menu-scale"
| "message-alert"
| "message-text"
| "mic-add"
| "mic-check"
| "mic-remove"
| "mic-speaking"
| "mic-warning"
| "minus-1"
| "minus-hexagon"
| "minus-pin-alt"
| "missing-font"
| "modern-tv"
| "modern-tv-4k"
| "money-square"
| "moon-sat"
| "more-horiz"
| "more-horiz-circled-outline"
| "more-vert"
| "more-vert-circled-outline"
| "mouse-button-left"
| "mouse-button-right"
| "mouse-scroll-wheel"
| "move-ruler"
| "multi-bubble"
| "multi-mac-os-window"
| "multi-window"
| "multiple-pages"
| "multiple-pages-add"
| "multiple-pages-delete"
| "multiple-pages-empty"
| "multiple-pages-remove"
| "music-1"
| "music-1-add"
| "music-2"
| "music-2-add"
| "nav-arrow-down"
| "nav-arrow-left"
| "nav-arrow-right"
| "nav-arrow-up"
| "navigator"
| "navigator-alt"
| "network-alt"
| "network-left"
| "network-right"
| "nitrogen"
| "no-battery"
| "no-coin"
| "no-credit-card"
| "no-lock"
| "no-smoking"
| "numbered-list-left"
| "numbered-list-right"
| "off-rounded"
| "oil-industry"
| "on-rounded"
| "one-finger-select-hand-gesture"
| "open-in-browser"
| "open-in-window"
| "open-select-hand-gesture"
| "open-vpn"
| "orange-half"
| "orange-slice"
| "orange-slice-alt"
| "oxygen"
| "page"
| "page-edit"
| "page-flip"
| "page-search"
| "page-star"
| "panorama-enlarge"
| "panorama-reduce"
| "pants"
| "pants-alt"
| "password-cursor"
| "password-error"
| "password-pass"
| "pause-outline"
| "pc-mouse"
| "pen-connect-bluetooth"
| "pen-connect-wifi"
| "pen-tablet"
| "pen-tablet-connect-usb"
| "pen-tablet-connect-wifi"
| "people-rounded"
| "percentage-round"
| "percentage-square"
| "pharmacy-circled-cross"
| "pharmacy-squared-cross"
| "phone-add"
| "phone-delete"
| "phone-disabled"
| "phone-income"
| "phone-outcome"
| "phone-paused"
| "phone-remove"
| "planet-alt"
| "planet-sat"
| "play-outline"
| "playlist-add"
| "playlist-play"
| "plug-type-a"
| "plug-type-c"
| "plug-type-g"
| "plug-type-l"
| "position"
| "position-align"
| "precision-tool"
| "printer-alt"
| "printing-page"
| "priority-down"
| "priority-up"
| "profile-circled"
| "prohibition"
| "question-mark-circle"
| "question-square-outline"
| "rain"
| "receive-dollars"
| "receive-euros"
| "receive-pounds"
| "receive-yens"
| "redo-action"
| "redo-circle"
| "reduce"
| "reduce-round-arrow"
| "refresh-circular"
| "refresh-double"
| "reminder-hand-gesture"
| "remove-database-script"
| "remove-empty"
| "remove-folder"
| "remove-frame"
| "remove-from-cart"
| "remove-keyframe"
| "remove-keyframe-alt"
| "remove-keyframes"
| "remove-media-image"
| "remove-media-video"
| "remove-page"
| "remove-pin-alt"
| "remove-selection"
| "remove-square"
| "remove-user"
| "repeat-once"
| "report-columns"
| "reports"
| "rewind-outline"
| "rhombus"
| "right-round-arrow"
| "rings"
| "rotate-camera-left"
| "rotate-camera-right"
| "round-flask"
| "rss-feed"
| "rss-feed-squared"
| "ruler-add"
| "ruler-combine"
| "ruler-remove"
| "sandals"
| "save-action-floppy"
| "save-floppy-disk"
| "scale-frame-enlarge"
| "scale-frame-reduce"
| "scan-qr-code"
| "scanning"
| "scarf"
| "scissor"
| "scissor-alt"
| "sea-and-sun"
| "sea-waves"
| "search-font"
| "security-pass"
| "selective-tool"
| "send-dollars"
| "send-euros"
| "send-pounds"
| "send-yens"
| "server-connection"
| "settings-cloud"
| "settings-profiles"
| "share-android"
| "share-ios"
| "shield-add"
| "shield-alert"
| "shield-broken"
| "shield-cross"
| "shield-download"
| "shield-eye"
| "shield-loading"
| "shield-question"
| "shield-search"
| "shield-upload"
| "shop-alt"
| "shopping-bag-add"
| "shopping-bag-arrow-down"
| "shopping-bag-arrow-up"
| "shopping-bag-check"
| "shopping-bag-issue"
| "shopping-bag-remove"
| "shopping-code"
| "shopping-code-check"
| "shopping-code-error"
| "short-pants"
| "short-pants-alt"
| "sidebar-collapse"
| "sidebar-expand"
| "simple-cart"
| "single-tap-gesture"
| "skateboard"
| "skip-next-outline"
| "skip-prev-outline"
| "small-shop"
| "small-shop-alt"
| "smartphone-device"
| "snow-flake"
| "soccer-ball"
| "sound-high"
| "sound-low"
| "sound-min"
| "sound-off"
| "spock-hand-gesture"
| "star-dashed"
| "star-half-dashed"
| "star-outline"
| "stat-down"
| "stat-up"
| "stats-report"
| "stats-square-down"
| "stats-square-up"
| "stretching"
| "style-border"
| "substract"
| "suggestion"
| "sun-light"
| "swimming"
| "swipe-down-gesture"
| "swipe-left-gesture"
| "swipe-right-gesture"
| "swipe-two-fingers-down-gesture"
| "swipe-two-fingers-left-gesture"
| "swipe-two-fingers-right-gesture"
| "swipe-two-fingers-up-gesture"
| "swipe-up-gesture"
| "switch-off-outline"
| "switch-on-outline"
| "system-restart"
| "system-shut"
| "table-2-columns"
| "table-rows"
| "task-list"
| "telegram-circled"
| "tennis-ball-alt"
| "terminal-outline"
| "terminal-simple"
| "text-alt"
| "text-size"
| "three-stars"
| "thunderstorm"
| "timer-off"
| "tower"
| "tower-check"
| "tower-no-access"
| "tower-warning"
| "train-outline"
| "transition-bottom"
| "transition-left"
| "transition-right"
| "transition-top"
| "treadmill"
| "trekking"
| "triangle-flag"
| "triangle-flag-circle"
| "triangle-flag-full"
| "tunnel"
| "tv-fix"
| "tv-issue"
| "twitter-verified-badge"
| "umbrella-full"
| "underline-square-outline"
| "undo-action"
| "undo-circle"
| "union-alt"
| "union-horiz-alt"
| "unity-5"
| "up-round-arrow"
| "upload-square-outline"
| "user-bag"
| "user-cart"
| "user-circle-alt"
| "user-scan"
| "user-square-alt"
| "verified-badge"
| "verified-user"
| "video-camera"
| "video-camera-off"
| "view-columns-2"
| "view-columns-3"
| "view-structure-down"
| "view-structure-up"
| "voice"
| "voice-circled"
| "voice-circled-lock"
| "voice-error"
| "voice-ok"
| "voice-phone"
| "voice-scan"
| "voice-squared"
| "vr-symbol"
| "waist"
| "warning-circled-outline"
| "warning-square-outline"
| "warning-triangle-outline"
| "web-window"
| "web-window-close"
| "web-window-energy-consumption"
| "weight-alt"
| "white-flag"
| "wifi-issue"
| "wifi-rounded"
| "wifi-signal-none"
| "wrap-text"
| "wristwatch"
| "yen-square"
| "yoga"
# iconpark
{
# Abstract
"asterisk"
| "cone"
| "display"
| "badge"
| "cube"
| "cylinder"
| "export"
| "sync"
| "texture"
| "outbound"
| "ad-product"
| "api-app"
| "app-switch"
| "application-one"
| "association"
| "benz"
| "blocks-and-arrows"
| "category-management"
| "circle-five-line"
| "circle-four"
| "circle-four-line"
| "circle-three"
| "circle-two-line"
| "circles-and-triangles"
| "circles-seven"
| "circular-connection"
| "cones"
| "converging-gateway"
| "coordinate-system"
| "cross-ring-two"
| "crown-two"
| "cube-five"
| "cube-four"
| "cube-three"
| "cube-two"
| "cycle-arrow"
| "cycle-one"
| "error-prompt"
| "exclusive-gateway"
| "external-transmission"
| "figma-component"
| "figma-reset-instance"
| "five-ellipses"
| "four-arrows"
| "four-leaves"
| "four-point-connection"
| "four-round-point-connection"
| "game-emoji"
| "geometric-flowers"
| "graphic-design"
| "graphic-design-two"
| "graphic-stitching"
| "graphic-stitching-four"
| "graphic-stitching-three"
| "halo"
| "hexagon-strip"
| "hexagonal"
| "inclusive-gateway"
| "internal-data"
| "internal-transmission"
| "keyline"
| "misaligned-semicircle"
| "multi-circular"
| "multi-rectangle"
| "multi-ring"
| "multi-triangular"
| "multi-triangular-four"
| "multi-triangular-three"
| "multi-triangular-two"
| "multilayer-sphere"
| "nested-arrows"
| "nine-points-connected"
| "one-third-rotation"
| "open-one"
| "oval-love"
| "oval-love-two"
| "parallel-gateway"
| "process-line"
| "quadrangular-pyramid"
| "rectangle-tear"
| "rectangle-x"
| "rectangular-circular-connection"
| "rectangular-circular-separation"
| "rectangular-vertebra"
| "refraction"
| "reverse-operation-in"
| "reverse-operation-out"
| "right-run"
| "round-caliper"
| "round-distortion"
| "round-mask"
| "run-left"
| "sales-report"
| "seo"
| "six-circular-connection"
| "six-points"
| "smart-optimization"
| "sphere"
| "split-branch"
| "stereo-nesting"
| "stereo-perspective"
| "switch-contrast"
| "symbol-double-x"
| "symmetry"
| "table-report"
| "texture-two"
| "three-hexagons"
| "three-slashes"
| "three-triangles"
| "treasure-chest"
| "triangle-round-rectangle"
| "triangular-pyramid"
| "two-ellipses"
| "two-semicircles"
| "two-triangles"
| "two-triangles-two"
| "update-rotation"
| "warehousing"
| "whirlwind"
# Arrows
"arrow-down"
| "arrow-left"
| "arrow-right"
| "arrow-up"
| "download"
| "send"
| "shuffle"
| "upload"
| "to-top"
| "redo"
| "sort"
| "trending-down"
| "trending-up"
| "undo"
| "corner-down-left"
| "corner-down-right"
| "corner-left-down"
| "corner-left-up"
| "corner-right-down"
| "corner-right-up"
| "corner-up-left"
| "corner-up-right"
| "up"
| "login"
| "logout"
| "recycling"
| "arrow-circle-down"
| "arrow-circle-left"
| "arrow-circle-right"
| "arrow-circle-up"
| "arrow-left-down"
| "arrow-left-up"
| "arrow-right-down"
| "arrow-right-up"
| "change"
| "circle-double-down"
| "circle-double-left"
| "circle-double-right"
| "circle-double-up"
| "circle-left-down"
| "circle-left-up"
| "circle-right-down"
| "circle-right-up"
| "click-to-fold"
| "collapse-text-input"
| "connection-arrow"
| "cycle"
| "cycle-movement"
| "double-down"
| "double-left"
| "double-right"
| "double-up"
| "down"
| "down-c"
| "down-one"
| "down-small"
| "down-square"
| "down-two"
| "download-one"
| "download-three"
| "download-two"
| "expand-down-one"
| "expand-text-input"
| "figma-flatten-selection"
| "fold-up-one"
| "full-screen-one"
| "full-screen-two"
| "go-end"
| "go-start"
| "incoming"
| "install"
| "left"
| "left-c"
| "left-one"
| "left-small"
| "left-small-down"
| "left-small-up"
| "left-square"
| "left-two"
| "loop-once"
| "menu-fold"
| "menu-fold-one"
| "menu-unfold"
| "menu-unfold-one"
| "move-in"
| "off-screen-one"
| "off-screen-two"
| "outgoing"
| "play-cycle"
| "play-once"
| "recycling-pool"
| "reject"
| "right"
| "right-c"
| "right-one"
| "right-small"
| "right-small-down"
| "right-small-up"
| "right-square"
| "right-two"
| "rotate"
| "rotation-horizontal"
| "rotation-vertical"
| "send-one"
| "shuffle-one"
| "sort-four"
| "sort-one"
| "sort-three"
| "sort-two"
| "switch"
| "to-bottom"
| "to-bottom-one"
| "to-left"
| "to-right"
| "to-top-one"
| "transfer-data"
| "up-c"
| "up-one"
| "up-small"
| "up-square"
| "up-two"
| "upload-one"
| "upload-three"
| "upload-two"
# Base
"alarm"
| "bluetooth"
| "bookmark"
| "box"
| "broadcast"
| "bug"
| "camera"
| "compass"
| "filter"
| "folder"
| "gift"
| "inbox"
| "key"
| "laptop"
| "lightning"
| "link"
| "lock"
| "mouse"
| "pause"
| "play"
| "projector"
| "puzzle"
| "rss"
| "save"
| "search"
| "share"
| "shield"
| "tag"
| "terminal"
| "trophy"
| "umbrella"
| "unlock"
| "zoom-in"
| "zoom-out"
| "coupon"
| "devices"
| "dislike"
| "home"
| "like"
| "movie"
| "parking"
| "phone-call"
| "phone-incoming"
| "phone-off"
| "phone-outgoing"
| "radiation"
| "report"
| "rocket"
| "ruler"
| "shopping-bag"
| "video"
| "equalizer"
| "female"
| "glasses"
| "male"
| "pound"
| "radar"
| "refresh"
| "scan"
| "screenshot"
| "test-tube"
| "mail"
| "browser"
| "mail-open"
| "sleep"
| "flashlight"
| "telescope"
| "loading"
| "airplay"
| "api"
| "delete"
| "monitor"
| "phone-missed"
| "tool"
| "fire-extinguisher"
| "page"
| "shield-add"
| "accept-email"
| "aiming"
| "balance-two"
| "bill"
| "bookmark-one"
| "broadcast-radio"
| "carousel-video"
| "caution"
| "clear"
| "click-tap"
| "color-card"
| "config"
| "consume"
| "cuvette"
| "delete-one"
| "delete-two"
| "dislike-two"
| "document-folder"
| "drone"
| "electrocardiogram"
| "email-block"
| "email-delect"
| "email-down"
| "email-fail"
| "email-lock"
| "email-push"
| "email-search"
| "email-security"
| "email-successfully"
| "endless"
| "envelope-one"
| "expand-down"
| "expand-left"
| "expand-right"
| "expand-up"
| "experiment"
| "experiment-one"
| "game-ps"
| "gift-box"
| "hamburger-button"
| "harm"
| "imbalance"
| "inbox-in"
| "inbox-out"
| "inbox-success"
| "inspection"
| "loading-four"
| "loading-three"
| "mail-edit"
| "mail-package"
| "mail-review"
| "mail-unpacking"
| "map-distance"
| "micro-slr-camera"
| "mirror-one"
| "monitor-off"
| "parachute"
| "pause-one"
| "phone-incoming-one"
| "phone-outgoing-one"
| "phone-telephone"
| "phone-video-call"
| "pic"
| "platte"
| "play-one"
| "playback-progress"
| "preview-close"
| "preview-close-one"
| "preview-open"
| "protect"
| "protection"
| "red-cross"
| "road-sign-both"
| "round-socket"
| "ruler-one"
| "save-one"
| "scan-code"
| "send-email"
| "setting"
| "setting-config"
| "setting-one"
| "setting-three"
| "setting-two"
| "shopping-cart-one"
| "slide"
| "stopwatch-start"
| "success"
| "table-lamp"
| "tag-one"
| "timed-mail"
| "tips"
| "triangle-ruler"
| "turn-off-bluetooth"
| "umbrella-one"
| "umbrella-two"
| "unlike"
| "view-grid-card"
| "view-grid-detail"
| "view-grid-list"
| "voice-message"
| "waterfalls-h"
| "waterfalls-v"
| "windmill"
# Books
"book"
| "bookshelf"
| "clipboard"
| "envelope"
| "folder-minus"
| "folder-plus"
| "table"
| "view-list"
| "book-open"
| "folder-open"
| "notepad"
| "notes"
| "notebook"
| "doc-search"
| "book-one"
| "doc-add"
| "doc-detail"
| "doc-fail"
| "doc-search-two"
| "doc-success"
| "folder-block"
| "folder-block-one"
| "folder-close"
| "folder-code"
| "folder-code-one"
| "folder-conversion"
| "folder-conversion-one"
| "folder-download"
| "folder-failed"
| "folder-failed-one"
| "folder-focus"
| "folder-focus-one"
| "folder-lock"
| "folder-lock-one"
| "folder-music"
| "folder-music-one"
| "folder-protection"
| "folder-protection-one"
| "folder-quality"
| "folder-quality-one"
| "folder-search"
| "folder-search-one"
| "folder-settings"
| "folder-settings-one"
| "folder-success"
| "folder-success-one"
| "folder-upload"
| "folder-withdrawal"
| "folder-withdrawal-one"
| "inbox-download-r"
| "inbox-r"
| "inbox-success-r"
| "inbox-upload-r"
| "log"
| "mail-download"
| "newspaper-folding"
| "notebook-and-pen"
| "notebook-one"
| "order"
| "seo-folder"
# Brand
"apple"
| "behance"
| "facebook"
| "github"
| "google"
| "instagram"
| "paypal"
| "telegram"
| "tiktok"
| "twitter"
| "windows"
| "youtube"
| "health"
| "android"
| "dropbox"
| "figma"
| "foursquare"
| "gitlab"
| "sketch"
| "tumblr"
| "cc"
| "alipay"
| "app-store"
| "weibo"
| "facetime"
| "adobe-illustrate"
| "adobe-indesign"
| "adobe-lightroom"
| "adobe-photoshop"
| "browser-chrome"
| "browser-safari"
| "bydesign"
| "bytedance"
| "customer"
| "dianziqian"
| "dongchedi"
| "dribble"
| "facebook-one"
| "faceu"
| "fanqiexiaoshuo"
| "feelgood"
| "feelgood-one"
| "feiyu"
| "friends-circle"
| "github-one"
| "google-ads"
| "html-five"
| "huoshanzhibo"
| "instagram-one"
| "jinritoutiao"
| "lark"
| "lark-one"
| "lincoln"
| "maill-one"
| "market"
| "mediaeditor"
| "messages"
| "messages-one"
| "mitsubishi"
| "oceanengine"
| "orange-station"
| "pangle"
| "phone-two"
| "qingniao-clue"
| "qiyehao"
| "renault"
| "star-one"
| "taobao"
| "tencent-qq"
| "topbuzz"
| "tuchong"
| "ulikecam"
| "vigo"
| "volkswagen"
| "wechat"
| "xigua"
| "xingfuli"
| "xingtu"
| "youtobe"
| "zijinyunying"
# Build
"shop"
| "city"
| "hotel"
| "pyramid"
| "school"
| "application"
| "elevator"
| "garage"
| "tower"
| "arc-de-triomphe"
| "booth"
| "brdige-three"
| "bridge-one"
| "bridge-two"
| "building-four"
| "building-one"
| "building-three"
| "building-two"
| "castle"
| "chimney"
| "chinese-pavilion"
| "church-one"
| "church-two"
| "circle-house"
| "circus"
| "city-gate"
| "city-one"
| "clock-tower"
| "death-star"
| "dome"
| "dubai"
| "eiffel-tower"
| "escalators"
| "factory-building"
| "fence-one"
| "fence-two"
| "ferris-wheel"
| "future-build-one"
| "future-build-three"
| "future-build-two"
| "gate"
| "great-wall"
| "green-house"
| "home-two"
| "hospital-two"
| "light-house"
| "maya"
| "monument-one"
| "monument-two"
| "museum-one"
| "museum-two"
| "nuclear-plant"
| "open-door"
| "pagoda"
| "palace"
| "pearl-of-the-orient"
| "phone-booth"
| "prison"
| "pull-door"
| "push-door"
| "security-stall"
| "shopping-mall"
| "signal-tower-one"
| "space-colony"
| "taj-mahal"
| "tower-of-babel"
| "tower-of-pisa"
| "up-and-down"
| "windmill-one"
| "xiaodu-home"
# Character
"symbol"
| "check"
| "info"
| "plus"
| "copyright"
| "error"
| "bitcoin"
| "minus"
| "close"
| "add"
| "help"
| "at-sign"
| "ad"
| "percentage"
| "trademark"
| "reduce"
| "add-one"
| "attention"
| "big-x"
| "ce-marking"
| "check-one"
| "check-small"
| "close-one"
| "close-small"
| "correct"
| "division"
| "font-size-two"
| "forbid"
| "more-three"
| "plus-cross"
| "reduce-one"
| "vip"
# Charts
"data"
| "timeline"
| "chart-line"
| "chart-pie"
| "activity-source"
| "analysis"
| "area-map"
| "arithmetic"
| "arithmetic-one"
| "average"
| "broadcast-one"
| "bubble-chart"
| "bullet-map"
| "change-date-sort"
| "chart-graph"
| "chart-histogram"
| "chart-histogram-one"
| "chart-histogram-two"
| "chart-line-area"
| "chart-proportion"
| "chart-ring"
| "chart-scatter"
| "chart-stock"
| "creation-date-sort"
| "data-all"
| "data-arrival"
| "data-four"
| "data-null"
| "data-one"
| "data-screen"
| "data-sheet"
| "data-three"
| "data-two"
| "deadline-sort"
| "end-time-sort"
| "follow-up-date-sort"
| "form"
| "histogram"
| "kagi-map"
| "maslow-pyramids"
| "material-three"
| "maximum"
| "min"
| "multicast"
| "negative-dynamics"
| "pie"
| "pie-five"
| "pie-four"
| "pie-one"
| "pie-seven"
| "pie-six"
| "pie-three"
| "pie-two"
| "pivot-table"
| "positive-dynamics"
| "recent-views-sort"
| "start-time-sort"
| "unicast"
| "vertical-timeline"
| "viencharts"
# Child
"chair"
| "boy"
| "girl"
| "family"
| "crib"
| "baby-app"
| "baby-car-seat"
| "baby-feet"
| "baby-meal"
| "baby-mobile"
| "baby-one"
| "baby-pants"
| "baby-sling"
| "baby-taste"
| "bib"
| "booster-car-seat"
| "boy-one"
| "boy-stroller"
| "boy-two"
| "breast-pump"
| "chair-one"
| "child-with-pacifier"
| "children-pyramid"
| "crying-baby"
| "float"
| "girl-one"
| "girl-two"
| "heart-ballon"
| "holding-hands"
| "onesies"
| "pacifier"
| "paper-ship"
| "parenting-book"
| "party-balloon"
| "pokeball-one"
| "powder"
| "preschool"
| "radio-nanny"
| "rattle"
| "rattle-one"
| "rocking-horse"
| "romper"
| "sippy-cup"
| "sleep-one"
| "steoller"
| "tire-swing"
# Clothes
"briefcase"
| "handbag"
| "backpack"
| "t-shirt"
| "bow"
| "diamonds"
| "necktie"
| "socks"
| "vest"
| "hat"
| "a-cane"
| "bachelor-cap"
| "baseball-cap"
| "basketball-clothes"
| "belt"
| "boots"
| "chef-hat"
| "children-cap"
| "clothes-briefs"
| "clothes-cardigan"
| "clothes-crew-neck"
| "clothes-diapers"
| "clothes-gloves"
| "clothes-gloves-two"
| "clothes-hoodie"
| "clothes-pants"
| "clothes-pants-short"
| "clothes-pants-sweat"
| "clothes-short-sleeve"
| "clothes-skates"
| "clothes-suit"
| "clothes-sweater"
| "clothes-turtleneck"
| "clothes-windbreaker"
| "coat-hanger"
| "commuter-bag"
| "crown-three"
| "diamond-necklace"
| "diamond-ring"
| "diapers-one"
| "full-dress-longuette"
| "glasses-one"
| "hanfu-chinese-style"
| "hanger-one"
| "headwear"
| "high-heeled-shoes"
| "holy-sword"
| "magic-hat"
| "men-jacket"
| "panties"
| "perfume"
| "retro-bag"
| "short-skirt"
| "shorts"
| "skates"
| "slippers"
| "slippers-one"
| "sorcerer-hat"
| "straw-hat"
| "sun-hat"
| "sweater"
| "swimsuit"
| "the-single-shoulder-bag"
| "trousers-bell-bottoms"
| "trunk"
| "women-coat"
| "woolen-hat"
# Communicate
"comment"
| "message"
| "comments"
| "comment-one"
| "communication"
| "message-emoji"
| "message-failed"
| "message-one"
| "message-privacy"
| "message-search"
| "message-security"
| "message-sent"
| "message-success"
| "message-unread"
| "online-meeting"
| "tips-one"
| "topic"
| "topic-discussion"
# Connect
"command"
| "anchor"
| "ring"
| "bezier-curve"
| "anchor-one"
| "anchor-round"
| "anchor-squre"
| "assembly-line"
| "branch-one"
| "branch-two"
| "bring-to-front-one"
| "clue"
| "connect"
| "connect-address-one"
| "connect-address-two"
| "connection"
| "connection-point"
| "connection-point-two"
| "difference-set"
| "intersection"
| "link-break"
| "link-cloud"
| "link-cloud-faild"
| "link-cloud-sucess"
| "link-four"
| "link-in"
| "link-interrupt"
| "link-left"
| "link-out"
| "link-right"
| "link-three"
| "minus-the-bottom"
| "minus-the-top"
| "network-tree"
| "relational-graph"
| "ring-one"
| "s-turn-down"
| "s-turn-left"
| "s-turn-right"
| "s-turn-up"
| "send-to-back"
| "share-one"
| "split-turn-down-left"
| "split-turn-down-right"
| "sum"
| "tree-diagram"
| "u-turn-down"
| "u-turn-left"
| "u-turn-right"
| "u-turn-up"
| "whole-site-accelerator"
# Datas
"data-display"
| "data-lock"
| "data-switching"
| "data-user"
| "database-alert"
| "database-code"
| "database-config"
| "database-download"
| "database-enter"
| "database-fail"
| "database-first"
| "database-forbid"
| "database-lock"
| "database-network"
| "database-network-point"
| "database-point"
| "database-position"
| "database-power"
| "database-proportion"
| "database-search"
| "database-setting"
| "database-success"
| "database-sync"
| "database-time"
# Edit
"align-bottom"
| "align-top"
| "back"
| "calendar"
| "code"
| "dot"
| "file-excel"
| "file-pdf"
| "file-word"
| "list"
| "quote"
| "star"
| "brightness"
| "copy"
| "edit"
| "file-gif"
| "file-jpg"
| "file-txt"
| "group"
| "magic-wand"
| "align-left"
| "align-right"
| "block"
| "font-size"
| "merge"
| "strikethrough"
| "text"
| "unlink"
| "components"
| "more"
| "margin"
| "fill"
| "pound-sign"
| "sort-amount-down"
| "sort-amount-up"
| "stamp"
| "code-brackets"
| "scanning"
| "stretching"
| "add-four"
| "add-item"
| "add-subset"
| "add-text"
| "add-text-two"
| "add-three"
| "adjacent-item"
| "adjustment"
| "afferent"
| "afferent-two"
| "align-bottom-two"
| "align-horizontal-center-two"
| "align-horizontally"
| "align-left-one"
| "align-left-two"
| "align-right-one"
| "align-right-two"
| "align-text-both"
| "align-text-both-one"
| "align-text-bottom"
| "align-text-bottom-one"
| "align-text-center"
| "align-text-center-one"
| "align-text-left"
| "align-text-left-one"
| "align-text-middle"
| "align-text-middle-one"
| "align-text-right"
| "align-text-right-one"
| "align-text-top"
| "align-text-top-one"
| "align-top-two"
| "align-vertical-center-two"
| "align-vertically"
| "alignment-bottom-center"
| "alignment-bottom-left"
| "alignment-bottom-right"
| "alignment-horizontal-bottom"
| "alignment-horizontal-center"
| "alignment-horizontal-top"
| "alignment-left-bottom"
| "alignment-left-center"
| "alignment-left-top"
| "alignment-right-bottom"
| "alignment-right-center"
| "alignment-right-top"
| "alignment-top-center"
| "alignment-top-left"
| "alignment-top-right"
| "alignment-vertical-center"
| "alignment-vertical-left"
| "alignment-vertical-right"
| "alphabetical-sorting"
| "alphabetical-sorting-two"
| "application-two"
| "auto-focus"
| "auto-height-one"
| "auto-line-height"
| "auto-line-width"
| "auto-width"
| "auto-width-one"
| "background-color"
| "bottom-bar"
| "bring-forward"
| "bring-to-front"
| "center-alignment"
| "chart-pie-one"
| "check-correct"
| "clear-format"
| "code-download"
| "column"
| "copy-link"
| "cutting"
| "cutting-one"
| "deeplink"
| "delete-themes"
| "delete-three"
| "direction"
| "direction-adjustment"
| "direction-adjustment-three"
| "direction-adjustment-two"
| "distortion"
| "distribute-horizontal-spacing"
| "distribute-horizontally"
| "distribute-vertical-spacing"
| "distribute-vertically"
| "dividing-line"
| "done-all"
| "download-four"
| "drag"
| "drop-down-list"
| "drop-shadow-down"
| "drop-shadow-left"
| "drop-shadow-right"
| "drop-shadow-up"
| "edit-movie"
| "edit-one"
| "edit-two"
| "electric-wave"
| "endpoint-displacement"
| "endpoint-flat"
| "endpoint-round"
| "endpoint-square"
| "enter-the-keyboard"
| "equal-ratio"
| "excel-one"
| "exclude-selection"
| "expand-left-and-right"
| "extend"
| "filter-one"
| "find"
| "flashlamp"
| "flip-horizontally"
| "flip-vertically"
| "focus"
| "format-brush"
| "formula"
| "freeze-column"
| "freeze-line"
| "freezing-line-column"
| "full-screen"
| "full-selection"
| "fullwidth"
| "go-on"
| "grid-four"
| "grid-nine"
| "grid-sixteen"
| "grid-three"
| "grid-two"
| "h"
| "h1"
| "h2"
| "h3"
| "helpcenter"
| "high-light"
| "horizontal-spacing-between-items"
| "horizontal-tidy-up"
| "horizontally-centered"
| "increase-the-scale"
| "indent-left"
| "indent-right"
| "inline"
| "inner-shadow-bottom-left"
| "inner-shadow-bottom-right"
| "inner-shadow-down"
| "inner-shadow-left"
| "inner-shadow-right"
| "inner-shadow-top-left"
| "inner-shadow-top-right"
| "inner-shadow-up"
| "insert-table"
| "internal-expansion"
| "internal-reduction"
| "intersect-selection"
| "invert-camera"
| "layout-five"
| "layout-four"
| "layout-one"
| "layout-three"
| "layout-two"
| "left-alignment"
| "left-bar"
| "left-expand"
| "lens-alignment"
| "level-adjustment"
| "level-eight-title"
| "level-five-title"
| "level-four-title"
| "level-nine-title"
| "level-seven-title"
| "level-six-title"
| "link-one"
| "link-two"
| "list-alphabet"
| "list-bottom"
| "list-checkbox"
| "list-fail"
| "list-middle"
| "list-numbers"
| "list-one"
| "list-success"
| "list-top"
| "list-two"
| "many-to-many"
| "margin-one"
| "mask-two"
| "merge-cells"
| "mind-mapping"
| "mindmap-list"
| "mindmap-map"
| "modify"
| "modify-two"
| "more-four"
| "more-one"
| "more-two"
| "mosaic"
| "move-in-one"
| "move-one"
| "multi-picture-carousel"
| "newlybuild"
| "next"
| "node-flat"
| "node-round"
| "node-square"
| "off-screen"
| "one-to-many"
| "one-to-one"
| "ordered-list"
| "overall-reduction"
| "paragraph-alphabet"
| "paragraph-break"
| "paragraph-break-two"
| "paragraph-cut"
| "paragraph-rectangle"
| "paragraph-round"
| "paragraph-triangle"
| "paragraph-unfold"
| "perspective"
| "picture-one"
| "plan"
| "powerpoint"
| "proportional-scaling"
| "reduce-decimal-places"
| "reduce-two"
| "refresh-one"
| "repair"
| "return"
| "right-bar"
| "right-expand"
| "rotate-one"
| "rotation"
| "rotation-one"
| "row-height"
| "scale"
| "scanning-two"
| "scatter-alignment"
| "screenshot-one"
| "screenshot-two"
| "selected"
| "selected-focus"
| "send-backward"
| "sent-to-back"
| "share-three"
| "share-two"
| "split"
| "split-cells"
| "subtract-selection"
| "subtract-selection-one"
| "switch-themes"
| "switching-done"
| "tailoring"
| "tailoring-two"
| "text-bold"
| "text-italic"
| "text-rotation-down"
| "text-rotation-left"
| "text-rotation-none"
| "text-rotation-up"
| "text-style"
| "text-style-one"
| "text-underline"
| "text-wrap-overflow"
| "text-wrap-truncation"
| "title-level"
| "top-bar"
| "translation"
| "two-dimensional-code"
| "two-dimensional-code-one"
| "two-dimensional-code-two"
| "ungroup"
| "union-selection"
| "unordered-list"
| "upload-logs"
| "vertical-spacing-between-items"
| "vertical-tidy-up"
| "vertically-centered"
| "video-two"
| "word"
| "write"
| "writing-fluently"
| "zip"
# Emoji
"angry-face"
| "anguished-face"
| "astonished-face"
| "confounded-face"
| "confused-face"
| "disappointed-face"
| "distraught-face"
| "dizzy-face"
| "emotion-happy"
| "emotion-unhappy"
| "expressionless-face"
| "face-with-smiling-open-eyes"
| "face-without-mouth"
| "frowning-face-whit-open-mouth"
| "grimacing-face"
| "grinning-face"
| "grinning-face-with-open-mouth"
| "grinning-face-with-squinting-eyes"
| "grinning-face-with-tightly-closed-eyes"
| "grinning-face-with-tightly-closed-eyes-open-mouth"
| "loudly-crying-face"
| "loudly-crying-face-whit-open-mouth"
| "neutral-face"
| "pouting-face"
| "relieved-face"
| "slightly-frowning-face-whit-open-mouth"
| "slightly-smiling-face"
| "sly-face-whit-smile"
| "smiling-face"
| "smiling-face-with-squinting-eyes"
| "surprised-face-with-open-big-mouth"
| "surprised-face-with-open-mouth"
| "upside-down-face"
| "weary-face"
| "winking-face"
| "winking-face-with-open-eyes"
| "worried-face"
# Foods
"egg"
| "nut"
| "beer"
| "bone"
| "cake"
| "cheese"
| "drink"
| "lemon"
| "bowl"
| "icecream"
| "avocado"
| "banana"
| "bread"
| "candy"
| "carrot"
| "chicken"
| "cooking"
| "crab"
| "croissant"
| "doughnut"
| "eggplant"
| "fish"
| "hamburger"
| "lollipop"
| "milk"
| "peach"
| "pear"
| "pineapple"
| "popcorn"
| "rice"
| "shrimp"
| "spoon"
| "tea"
| "tomato"
| "turkey"
| "watermelon"
| "birthday-cake"
| "apple-one"
| "avocado-one"
| "barbecue"
| "beer-mug"
| "bottle-one"
| "bottle-three"
| "bottle-two"
| "bowl-one"
| "bread-machine"
| "bread-one"
| "cake-five"
| "cake-four"
| "cake-one"
| "cake-three"
| "cake-two"
| "canned-fruit"
| "chafing-dish"
| "chafing-dish-one"
| "chef-hat-one"
| "cherry"
| "chicken-leg"
| "chili"
| "chopping-board"
| "chopsticks-fork"
| "cola"
| "cook"
| "cup-four"
| "cup-one"
| "drumstick"
| "egg-one"
| "fork-spoon"
| "french-fries"
| "garlic"
| "glove"
| "goblet"
| "goblet-cracking"
| "goblet-full"
| "goblet-one"
| "hamburger-one"
| "honey-one"
| "hot-pot"
| "hot-pot-one"
| "icecream-five"
| "icecream-four"
| "icecream-one"
| "icecream-three"
| "icecream-two"
| "juice"
| "kettle-one"
| "kitchen-knife"
| "knife-fork"
| "liqueur"
| "macadamia-nut"
| "measuring-cup"
| "milk-one"
| "noodles"
| "orange"
| "orange-one"
| "oven"
| "oven-tray"
| "painted-eggshell"
| "peas"
| "popcorn-one"
| "pot"
| "pumpkin"
| "radish"
| "radish-one"
| "refrigerator"
| "sandwich"
| "sandwich-one"
| "scallion"
| "shovel"
| "shovel-one"
| "soybean-milk-maker"
| "tea-drink"
| "teapot"
| "thermos-cup"
| "tray"
| "vegetable-basket"
| "vegetables"
| "vicia-faba"
| "watermelon-one"
# Graphics
"octagon"
| "square"
| "triangle"
| "rectangle"
| "diamond-one"
| "diamond-three"
| "diamond-two"
| "hexagon-one"
| "oval-one"
| "parallelogram"
| "pentagon-one"
| "quadrilateral"
| "rectangle-one"
| "rectangle-small"
| "right-angle"
| "round"
| "square-small"
| "trapezoid"
# Hands
"fingerprint"
| "cool"
| "hand-down"
| "hand-left"
| "hand-right"
| "hand-up"
| "move"
| "zoom"
| "reload"
| "clap"
| "fist"
| "five"
| "four"
| "one"
| "six"
| "three"
| "two"
| "thumbs-down"
| "thumbs-up"
| "bad"
| "bad-one"
| "bad-two"
| "bless"
| "bye"
| "click-tap-two"
| "come"
| "concept-sharing"
| "delivery"
| "easy"
| "empty"
| "fingerprint-three"
| "fingerprint-two"
| "first"
| "five-five"
| "flirt"
| "four-four"
| "good"
| "good-one"
| "good-two"
| "hand-drag"
| "hi"
| "hold"
| "hold-interface"
| "hold-seeds"
| "index-finger"
| "mayura-gesture"
| "middle-finger"
| "okay"
| "one-one"
| "open"
| "palm"
| "point"
| "point-out"
| "press"
| "respect"
| "rock"
| "rock-gesture"
| "spider-man"
| "swing"
| "three-three"
| "turn-on"
| "two-fingers"
| "two-hands"
| "two-two"
| "yep"
# Hardware
"calculator"
| "cpu"
| "cup"
| "hdd"
| "keyboard"
| "lamp"
| "memory"
| "phone"
| "printer"
| "robot"
| "router"
| "sd-card"
| "server"
| "speaker"
| "thunderbolt"
| "truck"
| "tv"
| "webcam"
| "bus"
| "car"
| "chip"
| "memory-card"
| "microphone"
| "radio"
| "timer"
| "bike"
| "cd"
| "computer"
| "iphone"
| "sound"
| "toilet"
| "trumpet"
| "master"
| "sd"
| "subway"
| "sim-card"
| "intercom"
| "air-conditioning"
| "asterisk-key"
| "battery-working-one"
| "bolt-one"
| "calculator-one"
| "camera-five"
| "camera-four"
| "camera-one"
| "camera-three"
| "camera-two"
| "charging-treasure"
| "cloud-storage"
| "computer-one"
| "control"
| "dashboard-one"
| "delete-key"
| "desk-lamp"
| "digital-watches"
| "disk-one"
| "disk-two"
| "dome-light"
| "drone-one"
| "dvi"
| "eight-key"
| "electric-iron"
| "electronic-door-lock"
| "electronic-locks-close"
| "electronic-locks-open"
| "electronic-pen"
| "enter-key-one"
| "ethernet-off"
| "ethernet-on"
| "f-eight-key"
| "f-five-key"
| "f-four-key"
| "f-n-key"
| "f-nine-key"
| "f-one-key"
| "f-seven-key"
| "f-six-key"
| "f-three-key"
| "f-two-key"
| "f-zero-key"
| "five-key"
| "four-key"
| "game-console"
| "game-console-one"
| "game-three"
| "gopro"
| "hair-dryer-one"
| "hand-painted-plate"
| "hard-disk"
| "hard-disk-one"
| "hashtag-key"
| "hdmi-cable"
| "hdmi-connector"
| "headset-two"
| "hunting-gear"
| "i-mac"
| "induction-lock"
| "ipad"
| "ipad-one"
| "iwatch-one"
| "iwatch-two"
| "kettle"
| "keyboard-one"
| "laptop-computer"
| "memory-one"
| "micro-sd"
| "microphone-one"
| "microscope-one"
| "microwave-oven"
| "microwaves"
| "mini-sd-card"
| "monitor-camera"
| "monitor-one"
| "mouse-one"
| "network-drive"
| "nine-key"
| "one-key"
| "pad"
| "painted-screen"
| "phone-one"
| "phonograph"
| "plug-one"
| "power-supply"
| "power-supply-one"
| "printer-one"
| "printer-two"
| "projector-one"
| "projector-three"
| "projector-two"
| "radio-one"
| "record-player"
| "remote-control"
| "remote-control-one"
| "robot-one"
| "rocket-one"
| "router-one"
| "rs-male"
| "seal"
| "seven-key"
| "shaver"
| "signal-tower"
| "six-key"
| "slave"
| "solar-energy"
| "solid-state-disk"
| "sound-one"
| "speaker-one"
| "ssd"
| "stapler"
| "stereo-one"
| "storage-card-one"
| "storage-card-two"
| "surveillance-cameras-one"
| "switch-nintendo"
| "switch-one"
| "three-key"
| "tv-one"
| "two-key"
| "type-drive"
| "u-disk"
| "usb-memory-stick"
| "usb-micro-one"
| "usb-micro-two"
| "usb-type-c"
| "vacuum-cleaner"
| "videocamera"
| "videocamera-one"
| "virtual-reality-glasses"
| "vr-glasses"
| "washing-machine"
| "washing-machine-one"
| "watch-one"
| "zero-key"
# Health
"heart"
| "hospital"
| "mask"
| "brain"
| "injection"
| "eyes"
| "microscope"
| "pills"
| "prescription"
| "teeth"
| "weight"
| "abdominal"
| "anti-corrosion"
| "bottle"
| "cardioelectric"
| "cell"
| "chest"
| "composition"
| "detection"
| "endocrine"
| "gastrointestinal"
| "general-branch"
| "germs"
| "lung"
| "medical-box"
| "medical-files"
| "medicine-bottle"
| "nasal"
| "nests"
| "neural"
| "nmr"
| "nutrition"
| "orthopedic"
| "other"
| "period"
| "pesticide"
| "plastic-surgery"
| "pregnant-women"
| "pure-natural"
| "renal"
| "sperm"
| "swallow"
| "toxins"
| "traditional-chinese-medicine"
| "uterus"
# Industry
"ladder"
| "oil-industry"
| "fire-extinguisher-one"
| "hammer-and-anvil"
| "heater-resistor"
| "helmet-one"
| "industrial-scales"
| "land-surveying"
| "led-diode"
| "oscillator"
| "petrol"
| "potentiometer"
| "resistor"
| "robot-two"
| "solar-energy-one"
| "stack-light"
| "wind-turbine"
| "worker"
# Life
"iron"
| "beach-umbrella"
| "bedside"
| "bedside-two"
| "door-handle"
| "double-bed"
| "hair-dryer"
| "hanger"
| "hanger-two"
| "hotel-do-not-clean"
| "hotel-please-clean"
| "iron-disable"
| "iron-three"
| "iron-two"
| "shower-head"
| "single-bed"
| "sofa-two"
# Makeups
"scissors"
| "paint"
| "lipstick"
| "afro-pick"
| "barber-brush"
| "barber-clippers"
| "beauty-instrument"
| "blade"
| "comb"
| "conditioner"
| "cosmetic-brush"
| "english-mustache"
| "eyebrow"
| "face-powder"
| "facial-cleanser"
| "fingernail"
| "foundation-makeup"
| "hair-brush"
| "hair-clip"
| "hand-cream"
| "handwashing"
| "handwashing-fluid"
| "health-products"
| "jewelry"
| "lip-gloss"
| "lip-tattoo"
| "lipstick-one"
| "lotion"
| "makeups"
| "mascara"
| "massage-chair"
| "massage-chair-one"
| "massage-table"
| "mirror"
| "mirror-two"
| "nail-polish"
| "nail-polish-one"
| "perfumer-bottle"
| "razor"
| "reel"
| "shaver-one"
| "shaving"
| "soap-bubble"
| "spa-candle"
| "straight-razor"
# Money
"bank"
| "wallet"
| "dollar"
| "shopping-cart"
| "swipe"
| "add-subtract"
| "bank-card"
| "bank-card-one"
| "bank-transfer"
| "blockchain"
| "commodity"
| "credit"
| "currency"
| "deposit"
| "discovery-index"
| "exchange"
| "exchange-four"
| "exchange-one"
| "exchange-three"
| "exchange-two"
| "expenses"
| "expenses-one"
| "finance"
| "financing"
| "financing-one"
| "financing-two"
| "flash-payment"
| "funds"
| "heavy-metal"
| "history-query"
| "income"
| "income-one"
| "insert-card"
| "ipo"
| "mall-bag"
| "medication-time"
| "open-an-account"
| "optional"
| "paper-money-two"
| "pay-code-one"
| "pay-code-two"
| "payment-method"
| "red-envelope"
| "shopping"
| "shopping-cart-add"
| "shopping-cart-del"
| "stock-market"
| "transaction"
| "transaction-order"
| "wallet-one"
| "wallet-two"
# Music
"headset"
| "record"
| "voicemail"
| "volume-down"
| "volume-mute"
| "volume-up"
| "bell-ring"
| "music"
| "piano"
| "mute"
| "performance"
| "fm"
| "tape"
| "voice"
| "acoustic"
| "add-music"
| "airpods"
| "close-remind"
| "collection-records"
| "concern"
| "entertainment"
| "headphone-sound"
| "headset-one"
| "list-add"
| "monitor-two"
| "music-cd"
| "music-list"
| "music-menu"
| "music-one"
| "music-rhythm"
| "play-wrong"
| "record-disc"
| "remind"
| "remind-disable"
| "replay-five"
| "replay-music"
| "signal-strength"
| "sound-wave"
| "voice-off"
| "voice-one"
| "volume-notice"
| "volume-small"
| "waves-left"
| "waves-right"
# Office
"file-code"
| "file-lock"
| "file-music"
| "file-ppt"
| "file-text"
| "file-zip"
| "hourglass"
| "paperclip"
| "ticket"
| "file-doc"
| "label"
| "compression"
| "schedule"
| "security"
| "transform"
| "abnormal"
| "add-print"
| "agreement"
| "application-effect"
| "audio-file"
| "chinese"
| "chinese-one"
| "collection-files"
| "copy-one"
| "data-file"
| "date-comes-back"
| "editor"
| "english"
| "excel"
| "file-addition"
| "file-addition-one"
| "file-code-one"
| "file-collection"
| "file-collection-one"
| "file-conversion"
| "file-conversion-one"
| "file-date"
| "file-date-one"
| "file-display"
| "file-display-one"
| "file-editing"
| "file-editing-one"
| "file-failed"
| "file-failed-one"
| "file-focus"
| "file-focus-one"
| "file-hash"
| "file-hash-one"
| "file-hiding"
| "file-hiding-one"
| "file-lock-one"
| "file-music-one"
| "file-pdf-one"
| "file-protection"
| "file-protection-one"
| "file-quality"
| "file-quality-one"
| "file-question"
| "file-removal"
| "file-removal-one"
| "file-search"
| "file-search-one"
| "file-search-two"
| "file-settings"
| "file-settings-one"
| "file-staff"
| "file-staff-one"
| "file-success"
| "file-success-one"
| "file-text-one"
| "file-tips"
| "file-tips-one"
| "file-txt-one"
| "file-withdrawal"
| "file-withdrawal-one"
| "find-one"
| "font-search"
| "form-one"
| "format"
| "healthy-recognition"
| "image-files"
| "increase"
| "instruction"
| "invalid-files"
| "level"
| "list-view"
| "market-analysis"
| "optimize"
| "permissions"
| "picture"
| "play-two"
| "receive"
| "termination-file"
| "text-message"
| "text-recognition"
| "ticket-one"
| "video-file"
| "video-one"
# Operate
"magnet"
| "pin"
| "textarea"
| "checkbox"
| "dark-mode"
| "erase"
| "color-filter"
| "add-mode"
| "add-pic"
| "aperture-priority"
| "application-menu"
| "beauty"
| "bytedance-mini-app"
| "click"
| "contrast"
| "contrast-view"
| "contrast-view-circle"
| "damage-map"
| "delete-mode"
| "effects"
| "face-recognition"
| "figma-mask"
| "flip-camera"
| "focus-one"
| "game-two"
| "handle-a"
| "handle-b"
| "handle-c"
| "handle-down"
| "handle-left"
| "handle-right"
| "handle-round"
| "handle-square"
| "handle-triangle"
| "handle-up"
| "handle-x"
| "handle-y"
| "handle-z"
| "import-and-export"
| "intermediate-mode"
| "lattice-pattern"
| "loading-one"
| "loading-two"
| "mask-one"
| "material-two"
| "natural-mode"
| "no-shooting"
| "pic-one"
| "radio-two"
| "recycle-bin"
| "reverse-lens"
| "reverse-lens-one"
| "reverse-rotation"
| "rotating-add"
| "rotating-forward"
| "scan-setting"
| "screen-rotation"
| "shutter-priority"
| "stickers"
| "switch-track"
| "viewfinder"
# Others
"battery-full"
| "diamond"
| "fan"
| "flag"
| "globe"
| "joystick"
| "layers"
| "magic"
| "nintendo-switch"
| "plug"
| "power"
| "signal"
| "sim"
| "thermometer"
| "translate"
| "tree"
| "usb"
| "water"
| "wifi"
| "baseball"
| "basketball"
| "car-battery"
| "carousel"
| "crown"
| "flask"
| "game"
| "ghost"
| "id-card"
| "leaf"
| "navigation"
| "planet"
| "ship"
| "skull"
| "taxi"
| "vial"
| "football"
| "fork"
| "world"
| "battery-empty"
| "keyhole"
| "fire"
| "fireworks"
| "leaves"
| "tent"
| "wheelchair"
| "branch"
| "checklist"
| "coronavirus"
| "light"
| "waves"
| "target"
| "certificate"
| "road"
| "stethoscope"
| "gps"
| "all-application"
| "anchor-two"
| "applet-closed"
| "arithmetic-buttons"
| "arrow-keys"
| "audit"
| "baby-bottle"
| "balance"
| "bank-card-two"
| "bar-code"
| "battery-charge"
| "battery-working"
| "block-eight"
| "block-five"
| "block-four"
| "block-nine"
| "block-one"
| "block-seven"
| "block-six"
| "block-ten"
| "block-three"
| "block-two"
| "brake-pads"
| "bus-two"
| "buy"
| "card-two"
| "cast-screen"
| "christmas-tree"
| "close-wifi"
| "connection-box"
| "cooking-pot"
| "cooperative-handshake"
| "creative"
| "cross-ring"
| "curve-adjustment"
| "dashboard-car"
| "dashboard-two"
| "data-server"
| "degree-hat"
| "disk"
| "earth"
| "energy-socket"
| "enter-key"
| "express-delivery"
| "file-cabinet"
| "fire-two"
| "full-screen-play"
| "game-handle"
| "green-new-energy"
| "guide-board"
| "handheld"
| "honey"
| "hourglass-full"
| "hourglass-null"
| "international"
| "ios-face-recognition"
| "lifebuoy"
| "light-member"
| "local"
| "local-pin"
| "local-two"
| "luminous"
| "mac-finder"
| "manual-gear"
| "map-draw"
| "map-road"
| "map-road-two"
| "map-two"
| "mark"
| "material"
| "more-app"
| "mouth"
| "movie-board"
| "multi-function-knife"
| "outdoor"
| "page-template"
| "panorama-horizontal"
| "paper-money"
| "parabola"
| "pay-code"
| "pennant"
| "pinwheel"
| "poker"
| "ppt"
| "pull-requests"
| "radar-chart"
| "ranking"
| "ranking-list"
| "receiver"
| "red-envelopes"
| "ripple"
| "road-cone"
| "road-sign"
| "rugby"
| "sapling"
| "shake"
| "share-sys"
| "signal-one"
| "sinusoid"
| "sleaves"
| "slide-two"
| "sliding-horizontal"
| "sliding-vertical"
| "snacks"
| "sofa"
| "steering-wheel"
| "strongbox"
| "surveillance-cameras"
| "surveillance-cameras-two"
| "switch-button"
| "system"
| "table-file"
| "tent-banner"
| "theater"
| "theme"
| "thinking-problem"
| "three-d-glasses"
| "trace"
| "transporter"
| "tree-list"
| "trend"
| "trend-two"
| "usb-one"
| "voice-input"
| "water-level"
| "water-no"
| "water-rate"
| "water-rate-two"
| "weixin-cards-offers"
| "weixin-favorites"
| "weixin-games"
| "weixin-market"
| "weixin-mini-app"
| "weixin-scan"
| "weixin-search"
| "weixin-shake"
| "weixin-top-stories"
| "windmill-two"
| "workbench"
| "xiaodu"
| "zoom-internal"
# Peoples
"people"
| "user"
| "baby"
| "woman"
| "me"
| "address-book"
| "hands"
| "passport"
| "add-user"
| "appointment"
| "avatar"
| "classroom"
| "edit-name"
| "every-user"
| "id-card-h"
| "id-card-v"
| "people-bottom"
| "people-bottom-card"
| "people-delete"
| "people-delete-one"
| "people-download"
| "people-left"
| "people-minus"
| "people-minus-one"
| "people-plus"
| "people-plus-one"
| "people-right"
| "people-safe"
| "people-safe-one"
| "people-search"
| "people-search-one"
| "people-speak"
| "people-top"
| "people-top-card"
| "people-unknown"
| "people-upload"
| "peoples"
| "peoples-two"
| "personal-collection"
| "personal-privacy"
| "public-toilet"
| "reduce-user"
| "right-user"
| "turn-around"
| "user-business"
| "user-positioning"
| "user-to-user-transmission"
| "weixin-people-nearby"
| "wrong-user"
# Sports
"chess"
| "torch"
| "dumbbell"
| "tennis"
| "badminton"
| "bowling"
| "heartbeat"
| "hockey"
| "muscle"
| "sailboat"
| "soccer"
| "volleyball"
| "rowing"
| "skating"
| "skiing-nordic"
| "swimming-pool"
| "rings"
| "treadmill"
| "archers-bow"
| "arena"
| "badge-two"
| "balance-one"
| "baokemeng"
| "basketball-one"
| "basketball-stand"
| "black-eight"
| "bottom-bar-one"
| "boxing"
| "boxing-one"
| "checkerboard"
| "chess-one"
| "court"
| "curling"
| "diving-bottle"
| "diving-suit"
| "five-star-badge"
| "gold-medal"
| "gold-medal-two"
| "golf-course"
| "gymnastics"
| "gymnastics-one"
| "helmet"
| "kungfu"
| "play-basketball"
| "play-volleyball"
| "riding"
| "rollerskates"
| "rope-skipping"
| "rope-skipping-one"
| "rugby-one"
| "scoreboard"
| "skate"
| "soccer-one"
| "softball"
| "spikedshoes"
| "spinning-top"
| "sport"
| "swimming-ring"
| "tabletennis"
| "target-one"
| "target-two"
| "thin"
| "towel"
| "treadmill-one"
| "waterpolo"
| "waterpolo-one"
| "weightlifting"
| "whistling"
| "wingsuit-flying"
# Time
"stopwatch"
| "watch"
| "dashboard"
| "time"
| "history"
| "speed"
| "alarm-clock"
| "big-clock"
| "calendar-dot"
| "calendar-thirty"
| "calendar-thirty-two"
| "calendar-three"
| "iwatch"
| "radar-two"
| "speed-one"
# Travel
"sunrise"
| "cable-car"
| "landscape"
| "transfer"
| "cocktail"
| "selfie"
| "luggage"
| "sailing"
| "sandals"
| "acceleration"
| "airplane-window"
| "airplane-window-one"
| "aviation"
| "baggage-delay"
| "camp"
| "check-in"
| "coconut-tree"
| "compass-one"
| "consignment"
| "cruise"
| "descend"
| "diving"
| "enquire"
| "fishing"
| "flight-airflow"
| "flight-safety"
| "gate-machine"
| "homestay"
| "hot-air-balloon"
| "in-flight"
| "journey"
| "passport-one"
| "photograph"
| "pyramid-one"
| "railway"
| "repositioning"
| "resting"
| "riding-one"
| "round-trip"
| "set-off"
| "shade"
| "sunbath"
| "sunshade"
| "take-off"
| "tickets-checked"
| "tickets-one"
| "tickets-two"
| "tour-bus"
| "transport"
| "universal"
# Weather
"cloudy"
| "moon"
| "snow"
| "sun"
| "wind"
| "fog"
| "snowflake"
| "sunny"
| "heavy-rain"
| "thunderstorm"
| "cloudy-night"
| "heavy-wind"
| "light-rain"
| "sandstorm"
| "sun-one"
| "thunderstorm-one"
# material
"123"
| "alarm"
| "apple"
| "archive"
| "backspace"
| "bluetooth"
| "book"
| "bookmark"
| "bookmarks"
| "brush"
| "camera"
| "cast"
| "chat"
| "check"
| "circle"
| "cloud"
| "code"
| "crop"
| "diamond"
| "discord"
| "download"
| "earbuds"
| "egg"
| "eject"
| "explicit"
| "facebook"
| "filter"
| "fingerprint"
| "flag"
| "folder"
| "forward"
| "fullscreen"
| "headphones"
| "headset"
| "hexagon"
| "house"
| "image"
| "inbox"
| "info"
| "key"
| "keyboard"
| "laptop"
| "layers"
| "lightbulb"
| "link"
| "list"
| "lock"
| "map"
| "memory"
| "mic"
| "mouse"
| "newspaper"
| "outlet"
| "palette"
| "pause"
| "paypal"
| "pentagon"
| "people"
| "percent"
| "person"
| "phone"
| "pin"
| "plus"
| "power"
| "quora"
| "receipt"
| "reddit"
| "reply"
| "router"
| "save"
| "search"
| "send"
| "share"
| "shield"
| "shop"
| "shuffle"
| "signpost"
| "snapchat"
| "speaker"
| "spellcheck"
| "square"
| "star"
| "stars"
| "stop"
| "tablet"
| "tag"
| "telegram"
| "terminal"
| "tiktok"
| "tornado"
| "translate"
| "tsunami"
| "tv"
| "umbrella"
| "upload"
| "usb"
| "voicemail"
| "wallet"
| "watch"
| "water"
| "whatsapp"
| "wifi"
| "window"
| "wordpress"
| "adjust"
| "album"
| "backpack"
| "badge"
| "barcode"
| "bed"
| "bolt"
| "business"
| "cake"
| "category"
| "church"
| "coffee"
| "comment"
| "cookie"
| "copyright"
| "dashboard"
| "devices"
| "directions"
| "discount"
| "edit"
| "error"
| "extension"
| "face"
| "factory"
| "group"
| "home"
| "hotel"
| "label"
| "landscape"
| "message"
| "movie"
| "navigation"
| "note"
| "piano"
| "radio"
| "rectangle"
| "report"
| "rocket"
| "school"
| "slideshow"
| "spa"
| "store"
| "timer"
| "traffic"
| "train"
| "accessibility"
| "anchor"
| "block"
| "chair"
| "dialpad"
| "equalizer"
| "euro"
| "expand"
| "female"
| "highlight"
| "history"
| "hive"
| "male"
| "menu"
| "merge"
| "minus"
| "money"
| "poll"
| "radar"
| "redo"
| "refresh"
| "repeat"
| "restaurant"
| "screenshot"
| "sort"
| "support"
| "sync"
| "tab"
| "task"
| "undo"
| "adobe"
| "android"
| "blender"
| "javascript"
| "php"
| "shopify"
| "close"
| "feed"
| "mail"
| "photo"
| "print"
| "settings"
| "start"
| "work"
| "add"
| "attachment"
| "attribution"
| "boy"
| "compress"
| "games"
| "girl"
| "icecream"
| "insights"
| "loupe"
| "maximize"
| "minimize"
| "more"
| "notes"
| "notifications"
| "password"
| "remove"
| "reorder"
| "shortcut"
| "smartphone"
| "style"
| "terrain"
| "thermostat"
| "timelapse"
| "today"
| "abc"
| "atm"
| "bathtub"
| "bento"
| "computer"
| "construction"
| "cyclone"
| "fax"
| "handshake"
| "loop"
| "man"
| "mosque"
| "motorcycle"
| "park"
| "satellite"
| "shower"
| "sos"
| "stadium"
| "synagogue"
| "tram"
| "volcano"
| "warning"
| "wc"
| "woman"
| "1k"
| "1k_plus"
| "1x_mobiledata"
| "2k"
| "2k_plus"
| "2mp"
| "3d_rotation"
| "3g_mobiledata"
| "3k"
| "3k_plus"
| "3mp"
| "3p"
| "4g_mobiledata"
| "4g_plus_mobiledata"
| "4k"
| "4k_plus"
| "4mp"
| "5g"
| "5k"
| "5k_plus"
| "5mp"
| "6_ft_apart"
| "6k"
| "6k_plus"
| "6mp"
| "7k"
| "7k_plus"
| "7mp"
| "8k"
| "8k_plus"
| "8mp"
| "9k"
| "9k_plus"
| "9mp"
| "10k"
| "10mp"
| "11mp"
| "12mp"
| "13mp"
| "14mp"
| "15mp"
| "16mp"
| "17mp"
| "18mp"
| "19mp"
| "20mp"
| "21mp"
| "22mp"
| "23mp"
| "24mp"
| "30fps"
| "30fps_select"
| "60fps"
| "60fps_select"
| "360"
| "ac_unit"
| "access_alarm"
| "access_time_filled"
| "accessibility_new"
| "accessible"
| "accessible_forward"
| "account_balance"
| "account_balance_wallet"
| "account_box"
| "account_circle"
| "account_tree"
| "ad_units"
| "adb"
| "add_a_photo"
| "add_alarm"
| "add_alert"
| "add_box"
| "add_business"
| "add_chart"
| "add_circle"
| "add_comment"
| "add_ic_call"
| "add_link"
| "add_location"
| "add_location_alt"
| "add_moderator"
| "add_photo_alternate"
| "add_reaction"
| "add_road"
| "add_shopping_cart"
| "add_task"
| "add_to_drive"
| "add_to_home_screen"
| "add_to_queue"
| "addchart"
| "admin_panel_settings"
| "ads_click"
| "agriculture"
| "air"
| "airline_seat_flat"
| "airline_seat_flat_angled"
| "airline_seat_individual_suite"
| "airline_seat_legroom_extra"
| "airline_seat_legroom_normal"
| "airline_seat_legroom_reduced"
| "airline_seat_recline_extra"
| "airline_seat_recline_normal"
| "airplane_ticket"
| "airplanemode_inactive"
| "airplay"
| "airport_shuttle"
| "alarm_off"
| "alarm_on"
| "align_horizontal_center"
| "align_horizontal_left"
| "align_horizontal_right"
| "align_vertical_bottom"
| "align_vertical_center"
| "align_vertical_top"
| "all_inbox"
| "all_inclusive"
| "all_out"
| "alt_route"
| "alternate_email"
| "analytics"
| "animation"
| "announcement"
| "aod"
| "apartment"
| "api"
| "app_blocking"
| "app_registration"
| "app_settings_alt"
| "approval"
| "apps"
| "architecture"
| "area_chart"
| "arrow_back"
| "arrow_back_ios"
| "arrow_circle_down"
| "arrow_circle_up"
| "arrow_downward"
| "arrow_drop_down"
| "arrow_drop_down_circle"
| "arrow_drop_up"
| "arrow_forward"
| "arrow_forward_ios"
| "arrow_left"
| "arrow_right"
| "arrow_right_alt"
| "arrow_upward"
| "art_track"
| "article"
| "aspect_ratio"
| "assignment"
| "assignment_ind"
| "assignment_late"
| "assignment_return"
| "assignment_returned"
| "assignment_turned_in"
| "assistant"
| "assistant_direction"
| "assistant_photo"
| "attach_email"
| "attach_file"
| "attach_money"
| "attractions"
| "audiotrack"
| "auto_awesome"
| "auto_awesome_mosaic"
| "auto_awesome_motion"
| "auto_delete"
| "auto_fix_high"
| "auto_fix_normal"
| "auto_fix_off"
| "auto_graph"
| "auto_stories"
| "autofps_select"
| "autorenew"
| "av_timer"
| "baby_changing_station"
| "back_hand"
| "backup_table"
| "bakery_dining"
| "balcony"
| "ballot"
| "bar_chart"
| "batch_prediction"
| "bathroom"
| "battery_alert"
| "battery_charging_full"
| "battery_full"
| "battery_saver"
| "battery_unknown"
| "beach_access"
| "bedroom_baby"
| "bedroom_child"
| "bedroom_parent"
| "bedtime"
| "beenhere"
| "bike_scooter"
| "biotech"
| "bloodtype"
| "bluetooth_connected"
| "bluetooth_disabled"
| "bluetooth_drive"
| "bluetooth_searching"
| "blur_circular"
| "blur_linear"
| "blur_off"
| "blur_on"
| "book_online"
| "bookmark_add"
| "bookmark_added"
| "bookmark_remove"
| "border_all"
| "border_bottom"
| "border_clear"
| "border_color"
| "border_horizontal"
| "border_inner"
| "border_left"
| "border_outer"
| "border_right"
| "border_style"
| "border_top"
| "border_vertical"
| "branding_watermark"
| "breakfast_dining"
| "brightness_2"
| "brightness_3"
| "brightness_4"
| "brightness_auto"
| "brightness_high"
| "brightness_low"
| "brightness_medium"
| "broken_image"
| "browser_not_supported"
| "brunch_dining"
| "bubble_chart"
| "bug_report"
| "build"
| "build_circle"
| "bungalow"
| "burst_mode"
| "bus_alert"
| "business_center"
| "cabin"
| "cable"
| "cached"
| "calculate"
| "calendar_today"
| "calendar_view_day"
| "calendar_view_month"
| "calendar_view_week"
| "call"
| "call_end"
| "call_made"
| "call_merge"
| "call_missed"
| "call_missed_outgoing"
| "call_received"
| "call_split"
| "call_to_action"
| "camera_alt"
| "camera_enhance"
| "camera_front"
| "camera_indoor"
| "camera_outdoor"
| "camera_rear"
| "camera_roll"
| "cameraswitch"
| "campaign"
| "cancel"
| "cancel_presentation"
| "cancel_schedule_send"
| "car_rental"
| "car_repair"
| "card_giftcard"
| "card_membership"
| "card_travel"
| "carpenter"
| "cases"
| "casino"
| "cast_connected"
| "cast_for_education"
| "catching_pokemon"
| "celebration"
| "cell_wifi"
| "center_focus_strong"
| "center_focus_weak"
| "chair_alt"
| "chalet"
| "change_circle"
| "change_history"
| "charging_station"
| "chat_bubble"
| "check_box"
| "check_circle"
| "check_circle_outline"
| "checklist"
| "checklist_rtl"
| "checkroom"
| "child_care"
| "child_friendly"
| "chrome_reader_mode"
| "circle_notifications"
| "clean_hands"
| "cleaning_services"
| "clear_all"
| "close_fullscreen"
| "closed_caption"
| "closed_caption_disabled"
| "closed_caption_off"
| "cloud_circle"
| "cloud_done"
| "cloud_download"
| "cloud_off"
| "cloud_queue"
| "cloud_upload"
| "code_off"
| "coffee_maker"
| "collections"
| "collections_bookmark"
| "color_lens"
| "colorize"
| "comment_bank"
| "commit"
| "commute"
| "compare"
| "compare_arrows"
| "compass_calibration"
| "compost"
| "confirmation_number"
| "connect_without_contact"
| "connected_tv"
| "contact_mail"
| "contact_page"
| "contact_phone"
| "contact_support"
| "contactless"
| "contacts"
| "content_copy"
| "content_cut"
| "content_paste"
| "content_paste_off"
| "control_camera"
| "control_point_duplicate"
| "copy_all"
| "coronavirus"
| "corporate_fare"
| "cottage"
| "countertops"
| "create_new_folder"
| "credit_card"
| "credit_card_off"
| "credit_score"
| "crib"
| "crop_3_2"
| "crop_5_4"
| "crop_7_5"
| "crop_16_9"
| "crop_din"
| "crop_free"
| "crop_landscape"
| "crop_original"
| "crop_portrait"
| "crop_rotate"
| "crop_square"
| "cruelty_free"
| "dangerous"
| "dark_mode"
| "dashboard_customize"
| "data_exploration"
| "data_saver_on"
| "data_usage"
| "date_range"
| "deck"
| "dehaze"
| "delete"
| "delete_forever"
| "delete_outline"
| "delete_sweep"
| "delivery_dining"
| "departure_board"
| "description"
| "design_services"
| "desktop_access_disabled"
| "desktop_mac"
| "desktop_windows"
| "details"
| "developer_board"
| "developer_board_off"
| "developer_mode"
| "device_hub"
| "device_thermostat"
| "device_unknown"
| "devices_other"
| "dialer_sip"
| "dining"
| "dinner_dining"
| "directions_bike"
| "directions_boat"
| "directions_bus"
| "directions_car"
| "directions_off"
| "directions_railway"
| "directions_run"
| "directions_subway"
| "directions_transit"
| "directions_walk"
| "dirty_lens"
| "disabled_by_default"
| "disabled_visible"
| "disc_full"
| "do_disturb_off"
| "do_not_disturb"
| "do_not_disturb_alt"
| "do_not_disturb_off"
| "do_not_disturb_on"
| "do_not_disturb_on_total_silence"
| "do_not_step"
| "do_not_touch"
| "dock"
| "document_scanner"
| "domain"
| "domain_disabled"
| "domain_verification"
| "done"
| "done_all"
| "donut_large"
| "donut_small"
| "door_back"
| "door_front"
| "door_sliding"
| "doorbell"
| "double_arrow"
| "downhill_skiing"
| "download_done"
| "download_for_offline"
| "downloading"
| "drafts"
| "drag_handle"
| "drag_indicator"
| "draw"
| "drive_eta"
| "drive_file_move"
| "drive_file_move_rtl"
| "drive_folder_upload"
| "dry"
| "dry_cleaning"
| "duo"
| "dvr"
| "dynamic_feed"
| "dynamic_form"
| "e_mobiledata"
| "earbuds_battery"
| "eco"
| "edgesensor_high"
| "edgesensor_low"
| "edit_attributes"
| "edit_calendar"
| "edit_location"
| "edit_location_alt"
| "edit_note"
| "edit_notifications"
| "edit_off"
| "edit_road"
| "elderly"
| "electric_bike"
| "electric_car"
| "electric_moped"
| "electric_rickshaw"
| "electric_scooter"
| "electrical_services"
| "elevator"
| "email"
| "emergency"
| "emoji_emotions"
| "emoji_events"
| "emoji_flags"
| "emoji_food_beverage"
| "emoji_nature"
| "emoji_objects"
| "emoji_people"
| "emoji_symbols"
| "emoji_transportation"
| "engineering"
| "enhanced_encryption"
| "escalator"
| "escalator_warning"
| "euro_symbol"
| "ev_station"
| "event"
| "event_available"
| "event_busy"
| "event_note"
| "event_seat"
| "exit_to_app"
| "explore"
| "explore_off"
| "exposure"
| "exposure_neg_1"
| "exposure_neg_2"
| "exposure_plus_1"
| "exposure_plus_2"
| "exposure_zero"
| "extension_off"
| "face_retouching_natural"
| "face_retouching_off"
| "fact_check"
| "family_restroom"
| "fast_forward"
| "fast_rewind"
| "fastfood"
| "favorite"
| "featured_play_list"
| "featured_video"
| "feedback"
| "fence"
| "festival"
| "fiber_dvr"
| "fiber_manual_record"
| "fiber_new"
| "fiber_pin"
| "fiber_smart_record"
| "file_copy"
| "file_download_done"
| "file_download_off"
| "file_present"
| "filter_1"
| "filter_2"
| "filter_3"
| "filter_4"
| "filter_5"
| "filter_6"
| "filter_7"
| "filter_8"
| "filter_9"
| "filter_9_plus"
| "filter_alt"
| "filter_b_and_w"
| "filter_center_focus"
| "filter_drama"
| "filter_frames"
| "filter_hdr"
| "filter_list"
| "filter_none"
| "filter_tilt_shift"
| "filter_vintage"
| "find_in_page"
| "find_replace"
| "fire_extinguisher"
| "fireplace"
| "first_page"
| "fit_screen"
| "fitness_center"
| "flaky"
| "flare"
| "flash_auto"
| "flash_off"
| "flash_on"
| "flashlight_off"
| "flashlight_on"
| "flatware"
| "flight_land"
| "flight_takeoff"
| "flip"
| "flip_camera_android"
| "flip_camera_ios"
| "flip_to_back"
| "flip_to_front"
| "flourescent"
| "flutter_dash"
| "fmd_bad"
| "fmd_good"
| "folder_open"
| "folder_shared"
| "folder_special"
| "follow_the_signs"
| "font_download"
| "font_download_off"
| "food_bank"
| "format_align_center"
| "format_align_justify"
| "format_align_left"
| "format_align_right"
| "format_bold"
| "format_clear"
| "format_color_fill"
| "format_color_reset"
| "format_color_text"
| "format_indent_decrease"
| "format_indent_increase"
| "format_italic"
| "format_line_spacing"
| "format_list_bulleted"
| "format_list_numbered"
| "format_list_numbered_rtl"
| "format_paint"
| "format_quote"
| "format_shapes"
| "format_size"
| "format_strikethrough"
| "format_textdirection_l_to_r"
| "format_textdirection_r_to_l"
| "format_underlined"
| "forum"
| "forward_5"
| "forward_10"
| "forward_30"
| "forward_to_inbox"
| "foundation"
| "free_breakfast"
| "free_cancellation"
| "front_hand"
| "fullscreen_exit"
| "functions"
| "g_mobiledata"
| "g_translate"
| "gamepad"
| "garage"
| "gavel"
| "generating_tokens"
| "gesture"
| "gif"
| "gite"
| "golf_course"
| "gpp_bad"
| "gpp_good"
| "gpp_maybe"
| "gps_fixed"
| "gps_not_fixed"
| "gps_off"
| "grade"
| "gradient"
| "grading"
| "grain"
| "graphic_eq"
| "grass"
| "grid_3x3"
| "grid_4x4"
| "grid_goldenratio"
| "grid_off"
| "grid_on"
| "grid_view"
| "group_add"
| "group_off"
| "group_work"
| "groups"
| "h_mobiledata"
| "h_plus_mobiledata"
| "hail"
| "handyman"
| "hardware"
| "hd"
| "hdr_auto"
| "hdr_auto_select"
| "hdr_enhanced_select"
| "hdr_off"
| "hdr_off_select"
| "hdr_on"
| "hdr_on_select"
| "hdr_plus"
| "hdr_strong"
| "hdr_weak"
| "headphones_battery"
| "headset_mic"
| "headset_off"
| "healing"
| "health_and_safety"
| "hearing"
| "hearing_disabled"
| "height"
| "help"
| "help_center"
| "hevc"
| "hide_image"
| "hide_source"
| "high_quality"
| "highlight_alt"
| "highlight_off"
| "hiking"
| "history_edu"
| "history_toggle_off"
| "holiday_village"
| "home_max"
| "home_mini"
| "home_repair_service"
| "home_work"
| "horizontal_distribute"
| "horizontal_rule"
| "horizontal_split"
| "hot_tub"
| "hotel_class"
| "hourglass_bottom"
| "hourglass_disabled"
| "hourglass_empty"
| "hourglass_full"
| "hourglass_top"
| "house_siding"
| "houseboat"
| "how_to_reg"
| "how_to_vote"
| "http"
| "https"
| "hvac"
| "ice_skating"
| "image_aspect_ratio"
| "image_not_supported"
| "image_search"
| "imagesearch_roller"
| "import_contacts"
| "import_export"
| "important_devices"
| "incomplete_circle"
| "indeterminate_check_box"
| "input"
| "insert_chart"
| "insert_chart_outlined"
| "insert_comment"
| "insert_drive_file"
| "insert_emoticon"
| "insert_invitation"
| "insert_link"
| "insert_photo"
| "integration_instructions"
| "inventory"
| "invert_colors"
| "invert_colors_off"
| "ios_share"
| "iron"
| "iso"
| "kayaking"
| "keyboard_alt"
| "keyboard_arrow_down"
| "keyboard_arrow_left"
| "keyboard_arrow_right"
| "keyboard_arrow_up"
| "keyboard_backspace"
| "keyboard_capslock"
| "keyboard_hide"
| "keyboard_return"
| "keyboard_tab"
| "keyboard_voice"
| "king_bed"
| "kitchen"
| "kitesurfing"
| "label_important"
| "label_off"
| "language"
| "laptop_chromebook"
| "laptop_mac"
| "laptop_windows"
| "last_page"
| "launch"
| "layers_clear"
| "leaderboard"
| "leak_add"
| "leak_remove"
| "legend_toggle"
| "lens"
| "lens_blur"
| "library_add"
| "library_add_check"
| "library_books"
| "library_music"
| "light"
| "light_mode"
| "line_style"
| "line_weight"
| "linear_scale"
| "link_off"
| "linked_camera"
| "liquor"
| "list_alt"
| "live_help"
| "live_tv"
| "living"
| "local_activity"
| "local_atm"
| "local_bar"
| "local_cafe"
| "local_car_wash"
| "local_convenience_store"
| "local_dining"
| "local_drink"
| "local_fire_department"
| "local_florist"
| "local_gas_station"
| "local_hospital"
| "local_laundry_service"
| "local_library"
| "local_mall"
| "local_parking"
| "local_pharmacy"
| "local_phone"
| "local_pizza"
| "local_play"
| "local_police"
| "local_post_office"
| "local_printshop"
| "local_see"
| "local_shipping"
| "local_taxi"
| "location_city"
| "location_off"
| "location_on"
| "lock_clock"
| "lock_open"
| "login"
| "logout"
| "looks"
| "looks_3"
| "looks_4"
| "looks_5"
| "looks_6"
| "looks_one"
| "looks_two"
| "low_priority"
| "loyalty"
| "lte_mobiledata"
| "lte_plus_mobiledata"
| "luggage"
| "lunch_dining"
| "manage_accounts"
| "manage_search"
| "maps_home_work"
| "maps_ugc"
| "margin"
| "mark_as_unread"
| "mark_chat_read"
| "mark_chat_unread"
| "mark_email_read"
| "mark_email_unread"
| "markunread_mailbox"
| "masks"
| "media_bluetooth_off"
| "media_bluetooth_on"
| "mediation"
| "medical_services"
| "medication"
| "meeting_room"
| "menu_book"
| "menu_open"
| "merge_type"
| "mic_external_off"
| "mic_external_on"
| "mic_none"
| "mic_off"
| "microwave"
| "military_tech"
| "miscellaneous_services"
| "missed_video_call"
| "mms"
| "mobile_friendly"
| "mobile_off"
| "mobile_screen_share"
| "mobiledata_off"
| "mode_comment"
| "mode_edit"
| "mode_night"
| "mode_standby"
| "model_training"
| "monetization_on"
| "money_off"
| "monitor"
| "monitor_weight"
| "monochrome_photos"
| "mood"
| "mood_bad"
| "moped"
| "more_horiz"
| "more_time"
| "more_vert"
| "motion_photos_auto"
| "motion_photos_off"
| "motion_photos_on"
| "motion_photos_pause"
| "motion_photos_paused"
| "move_to_inbox"
| "movie_filter"
| "moving"
| "mp"
| "multiline_chart"
| "multiple_stop"
| "museum"
| "music_note"
| "music_off"
| "music_video"
| "nat"
| "nature"
| "nature_people"
| "near_me"
| "near_me_disabled"
| "nearby_error"
| "nearby_off"
| "network_cell"
| "network_check"
| "network_locked"
| "network_wifi"
| "new_label"
| "new_releases"
| "next_plan"
| "next_week"
| "nfc"
| "night_shelter"
| "nightlife"
| "nightlight"
| "nightlight_round"
| "nights_stay"
| "no_accounts"
| "no_backpack"
| "no_cell"
| "no_drinks"
| "no_encryption"
| "no_encryption_gmailerrorred"
| "no_flash"
| "no_food"
| "no_luggage"
| "no_meals"
| "no_meeting_room"
| "no_photography"
| "no_sim"
| "no_stroller"
| "no_transfer"
| "nordic_walking"
| "north"
| "north_east"
| "north_west"
| "not_accessible"
| "not_interested"
| "not_listed_location"
| "not_started"
| "note_add"
| "note_alt"
| "notification_add"
| "notification_important"
| "notifications_active"
| "notifications_none"
| "notifications_off"
| "notifications_paused"
| "offline_bolt"
| "offline_pin"
| "offline_share"
| "ondemand_video"
| "online_prediction"
| "opacity"
| "open_in_browser"
| "open_in_full"
| "open_in_new"
| "open_in_new_off"
| "open_with"
| "other_houses"
| "outbox"
| "outdoor_grill"
| "outlined_flag"
| "padding"
| "pages"
| "pageview"
| "paid"
| "pan_tool"
| "panorama"
| "panorama_horizontal"
| "panorama_horizontal_select"
| "panorama_photosphere"
| "panorama_photosphere_select"
| "panorama_vertical"
| "panorama_vertical_select"
| "panorama_wide_angle"
| "panorama_wide_angle_select"
| "paragliding"
| "party_mode"
| "pattern"
| "pause_circle"
| "pause_presentation"
| "payments"
| "pedal_bike"
| "pending"
| "pending_actions"
| "people_outline"
| "perm_camera_mic"
| "perm_contact_calendar"
| "perm_data_setting"
| "perm_device_information"
| "perm_media"
| "perm_phone_msg"
| "perm_scan_wifi"
| "person_add"
| "person_add_alt"
| "person_add_disabled"
| "person_off"
| "person_outline"
| "person_pin"
| "person_pin_circle"
| "person_remove"
| "person_search"
| "pest_control"
| "pest_control_rodent"
| "pets"
| "phone_android"
| "phone_bluetooth_speaker"
| "phone_callback"
| "phone_disabled"
| "phone_enabled"
| "phone_forwarded"
| "phone_in_talk"
| "phone_iphone"
| "phone_locked"
| "phone_missed"
| "phone_paused"
| "phonelink"
| "phonelink_erase"
| "phonelink_lock"
| "phonelink_off"
| "phonelink_ring"
| "phonelink_setup"
| "photo_album"
| "photo_camera_back"
| "photo_camera_front"
| "photo_filter"
| "photo_library"
| "photo_size_select_actual"
| "photo_size_select_large"
| "photo_size_select_small"
| "piano_off"
| "picture_as_pdf"
| "picture_in_picture"
| "picture_in_picture_alt"
| "pie_chart"
| "pin_drop"
| "pin_end"
| "pin_invoke"
| "pivot_table_chart"
| "plagiarism"
| "play_arrow"
| "play_circle"
| "play_disabled"
| "play_for_work"
| "play_lesson"
| "playlist_add"
| "playlist_add_check"
| "playlist_play"
| "plumbing"
| "podcasts"
| "point_of_sale"
| "policy"
| "polymer"
| "pool"
| "portable_wifi_off"
| "portrait"
| "post_add"
| "power_input"
| "power_off"
| "power_settings_new"
| "precision_manufacturing"
| "pregnant_woman"
| "present_to_all"
| "preview"
| "price_change"
| "price_check"
| "print_disabled"
| "priority_high"
| "privacy_tip"
| "private_connectivity"
| "production_quantity_limits"
| "psychology"
| "public"
| "public_off"
| "publish"
| "published_with_changes"
| "push_pin"
| "qr_code"
| "qr_code_scanner"
| "query_stats"
| "question_answer"
| "queue_music"
| "queue_play_next"
| "quickreply"
| "quiz"
| "r_mobiledata"
| "radio_button_checked"
| "radio_button_unchecked"
| "railway_alert"
| "ramen_dining"
| "rate_review"
| "raw_off"
| "raw_on"
| "read_more"
| "receipt_long"
| "recent_actors"
| "recommend"
| "record_voice_over"
| "recycling"
| "reduce_capacity"
| "remember_me"
| "remove_circle"
| "remove_done"
| "remove_from_queue"
| "remove_moderator"
| "remove_red_eye"
| "remove_shopping_cart"
| "repeat_on"
| "repeat_one"
| "repeat_one_on"
| "replay"
| "replay_5"
| "replay_10"
| "replay_30"
| "reply_all"
| "report_gmailerrorred"
| "report_off"
| "request_quote"
| "reset_tv"
| "restart_alt"
| "restaurant_menu"
| "restore"
| "restore_from_trash"
| "restore_page"
| "reviews"
| "rice_bowl"
| "ring_volume"
| "roofing"
| "room_preferences"
| "room_service"
| "rotate_90_degrees_ccw"
| "rotate_left"
| "rotate_right"
| "rounded_corner"
| "rowing"
| "rss_feed"
| "rsvp"
| "rtt"
| "rule"
| "rule_folder"
| "run_circle"
| "running_with_errors"
| "rv_hookup"
| "safety_divider"
| "sailing"
| "sanitizer"
| "save_alt"
| "saved_search"
| "savings"
| "scanner"
| "scatter_plot"
| "schedule"
| "schedule_send"
| "schema"
| "science"
| "score"
| "screen_lock_landscape"
| "screen_lock_portrait"
| "screen_lock_rotation"
| "screen_rotation"
| "screen_search_desktop"
| "screen_share"
| "sd"
| "sd_card"
| "sd_storage"
| "search_off"
| "security"
| "security_update"
| "security_update_good"
| "security_update_warning"
| "segment"
| "select_all"
| "self_improvement"
| "sell"
| "send_and_archive"
| "send_to_mobile"
| "sensor_door"
| "sensor_window"
| "sensors"
| "sensors_off"
| "sentiment_dissatisfied"
| "sentiment_neutral"
| "sentiment_satisfied"
| "sentiment_very_dissatisfied"
| "sentiment_very_satisfied"
| "set_meal"
| "settings_accessibility"
| "settings_applications"
| "settings_backup_restore"
| "settings_bluetooth"
| "settings_brightness"
| "settings_cell"
| "settings_ethernet"
| "settings_input_antenna"
| "settings_input_component"
| "settings_input_hdmi"
| "settings_input_svideo"
| "settings_overscan"
| "settings_phone"
| "settings_power"
| "settings_remote"
| "settings_suggest"
| "settings_system_daydream"
| "settings_voice"
| "share_location"
| "shop_two"
| "shopping_bag"
| "shopping_basket"
| "shopping_cart"
| "short_text"
| "show_chart"
| "shuffle_on"
| "shutter_speed"
| "sick"
| "signal_cellular_alt"
| "signal_cellular_no_sim"
| "signal_cellular_nodata"
| "signal_cellular_null"
| "signal_cellular_off"
| "signal_wifi_bad"
| "signal_wifi_off"
| "signal_wifi_statusbar_4_bar"
| "signal_wifi_statusbar_connected_no_internet_4"
| "signal_wifi_statusbar_null"
| "sim_card"
| "sim_card_alert"
| "sim_card_download"
| "single_bed"
| "sip"
| "skateboarding"
| "skip_next"
| "skip_previous"
| "sledding"
| "slow_motion_video"
| "smart_button"
| "smart_display"
| "smart_screen"
| "smart_toy"
| "smoke_free"
| "smoking_rooms"
| "sms"
| "sms_failed"
| "snippet_folder"
| "snooze"
| "snowboarding"
| "snowmobile"
| "snowshoeing"
| "soap"
| "social_distance"
| "sort_by_alpha"
| "source"
| "south"
| "south_east"
| "south_west"
| "space_bar"
| "speaker_group"
| "speaker_notes"
| "speaker_notes_off"
| "speaker_phone"
| "speed"
| "splitscreen"
| "sports"
| "sports_bar"
| "sports_baseball"
| "sports_basketball"
| "sports_cricket"
| "sports_esports"
| "sports_football"
| "sports_golf"
| "sports_handball"
| "sports_hockey"
| "sports_kabaddi"
| "sports_mma"
| "sports_motorsports"
| "sports_rugby"
| "sports_score"
| "sports_soccer"
| "sports_tennis"
| "sports_volleyball"
| "square_foot"
| "stacked_bar_chart"
| "stacked_line_chart"
| "stairs"
| "star_half"
| "star_purple500"
| "stay_current_landscape"
| "stay_current_portrait"
| "stop_circle"
| "stop_screen_share"
| "storage"
| "storefront"
| "storm"
| "straighten"
| "stream"
| "streetview"
| "strikethrough_s"
| "stroller"
| "subdirectory_arrow_left"
| "subdirectory_arrow_right"
| "subject"
| "subscript"
| "subscriptions"
| "subtitles"
| "subtitles_off"
| "subway"
| "summarize"
| "superscript"
| "supervised_user_circle"
| "supervisor_account"
| "support_agent"
| "surfing"
| "surround_sound"
| "swap_calls"
| "swap_horiz"
| "swap_horizontal_circle"
| "swap_vert"
| "swap_vertical_circle"
| "swipe"
| "switch_account"
| "switch_camera"
| "switch_left"
| "switch_right"
| "switch_video"
| "sync_alt"
| "sync_disabled"
| "sync_problem"
| "system_security_update"
| "system_security_update_warning"
| "system_update"
| "system_update_alt"
| "tab_unselected"
| "table_chart"
| "table_rows"
| "table_view"
| "tablet_android"
| "tablet_mac"
| "tag_faces"
| "takeout_dining"
| "tap_and_play"
| "tapas"
| "task_alt"
| "taxi_alert"
| "text_fields"
| "text_format"
| "text_rotate_up"
| "text_rotate_vertical"
| "text_rotation_angledown"
| "text_rotation_angleup"
| "text_rotation_down"
| "text_rotation_none"
| "text_snippet"
| "textsms"
| "texture"
| "theater_comedy"
| "theaters"
| "thermostat_auto"
| "thumb_down"
| "thumb_down_off_alt"
| "thumb_up"
| "thumb_up_off_alt"
| "thumbs_up_down"
| "time_to_leave"