icon-svg

Memoized fetch SVG icons from many popular icon sets with editor autocomplete and a Web Component ready to use

npm i icon-svg pnpm add icon-svg yarn add icon-svg

Examples

# app

    # 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
    )

API

# IconSvg
    # toString
      # () – Returns a string representation of a function.

        ()  =>

          string
# IconSvgElement – The IconSvgElement custom element.

src/element.ts#L49

# FetchProps

src/fetch.ts#L16

# IconKinds

src/types.ts#L80

# IconTypes

src/types.ts#L72

    # boxicons

    src/types.ts#L73

      "solid" | "regular" | "logos"

    # eos

    src/types.ts#L74

      "solid" | "animated" | "outlined"

    # fontawesome

    src/types.ts#L75

      "solid" | "regular" | "brands"

    # iconpark

    src/types.ts#L76

      "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"

    # phosphor

    src/types.ts#L77

      "regular" | "thin" | "light" | "fill" | "duotone" | "bold"

# Icons

src/types.ts#L1

    # bootstrap

    src/types.ts#L2

      "bootstrap" | "search" | "link" | "at" | "type" | "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" | "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-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-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-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-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

    src/types.ts#L3

      {

      # logos

      src/types.ts#L6

        "bootstrap" | "apple" | "behance" | "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" | "c-plus-plus" | "digitalocean" | "figma" | "patreon" | "pocket" | "product-hunt" | "sketch" | "trello" | "unsplash" | "chrome" | "codepen" | "gitlab" | "creative-commons" | "css3" | "flask" | "html5" | "unity" | "adobe" | "airbnb" | "amazon" | "android" | "angular" | "baidu" | "bing" | "bitcoin" | "blogger" | "deezer" | "docker" | "dropbox" | "drupal" | "ebay" | "edge" | "firefox" | "flickr" | "flutter" | "gmail" | "heroku" | "imdb" | "java" | "javascript" | "kickstarter" | "mailchimp" | "opera" | "php" | "python" | "react" | "sass" | "soundcloud" | "tumblr" | "upwork" | "venmo" | "vk" | "wikipedia" | "xing" | "yahoo" | "yelp" | "zoom" | "shopify" | "blender" | "99designs" | "500px" | "algolia" | "audible" | "aws" | "dailymotion" | "dev-to" | "deviantart" | "digg" | "discord-alt" | "discourse" | "django" | "etsy" | "facebook-circle" | "facebook-square" | "firebase" | "flickr-square" | "foursquare" | "go-lang" | "google-cloud" | "google-plus" | "google-plus-circle" | "instagram-alt" | "internet-explorer" | "invision" | "joomla" | "jquery" | "jsfiddle" | "kubernetes" | "less" | "linkedin-square" | "magento" | "mastercard" | "medium-old" | "medium-square" | "microsoft-teams" | "mongodb" | "netlify" | "nodejs" | "ok-ru" | "periscope" | "pinterest-alt" | "play-store" | "postgresql" | "redbubble" | "redux" | "slack-old" | "spring-boot" | "squarespace" | "stripe" | "tailwind-css" | "trip-advisor" | "tux" | "visa" | "visual-studio" | "vuejs" | "whatsapp-square" | "wix"

      # regular

      src/types.ts#L5

        "bold" | "search" | "trim" | "repeat" | "anchor" | "link" | "at" | "alarm" | "align-middle" | "archive" | "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" | "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" | "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" | "desktop" | "edit" | "export" | "folder-open" | "home" | "import" | "menu" | "message" | "microphone" | "minus" | "mobile" | "move" | "music" | "user" | "video" | "volume" | "album" | "align-left" | "align-right" | "band-aid" | "block" | "bot" | "bulb" | "captions" | "carousel" | "chart" | "coffee" | "comment" | "copy" | "copyright" | "cross" | "crown" | "data" | "dialpad" | "dock-bottom" | "dock-left" | "dock-right" | "dollar" | "duplicate" | "euro" | "expand" | "extension" | "ghost" | "git-branch" | "git-commit" | "globe-alt" | "home-alt" | "log-in" | "log-out" | "poll" | "qr" | "redo" | "rename" | "ruler" | "scan" | "shape-circle" | "shape-square" | "shape-triangle" | "shopping-bag" | "sidebar" | "smile" | "support" | "sync" | "tab" | "time" | "timer" | "trending-down" | "undo" | "angry" | "atom" | "baseball" | "basketball" | "bath" | "bed" | "beer" | "bomb" | "bus" | "cake" | "cheese" | "church" | "confused" | "cookie" | "cool" | "dizzy" | "football" | "hotel" | "knife" | "label" | "lemon" | "medal" | "package" | "pound" | "radio" | "registered" | "rewind" | "rocket" | "sleepy" | "station" | "taxi" | "train" | "yen" | "align-justify" | "aperture" | "bell-off" | "book-open" | "camera-off" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "crosshair" | "fast-forward" | "git-merge" | "git-pull-request" | "help-circle" | "italic" | "layout" | "loader" | "map-pin" | "meh" | "message-square" | "minus-circle" | "navigation" | "phone-call" | "phone-incoming" | "phone-off" | "phone-outgoing" | "toggle-left" | "toggle-right" | "trending-up" | "underline" | "user-check" | "user-minus" | "user-plus" | "user-x" | "video-off" | "accessibility" | "bowling-ball" | "cart-alt" | "closet" | "collapse" | "cut" | "cycling" | "female" | "filter-alt" | "font-size" | "fridge" | "glasses" | "group" | "male" | "movie" | "planet" | "question-mark" | "refresh" | "selection" | "shield-alt" | "tennis-ball" | "test-tube" | "text" | "bitcoin" | "abacus" | "arrow-back" | "badge" | "barcode" | "bell-minus" | "bell-plus" | "bible" | "bone" | "border-none" | "border-radius" | "brightness" | "brightness-half" | "car" | "checkbox" | "current-location" | "devices" | "directions" | "dna" | "dots-vertical" | "git-compare" | "heading" | "highlight" | "history" | "leaf" | "lock-open" | "math" | "message-dots" | "microphone-off" | "news" | "note" | "notification" | "paint" | "polygon" | "pyramid" | "radar" | "rectangle" | "run" | "sitemap" | "slideshow" | "sticker" | "strikethrough" | "traffic-cone" | "unlink" | "user-circle" | "vector" | "video-plus" | "walk" | "wifi-0" | "world" | "task" | "store" | "spa" | "sort" | "screenshot" | "restaurant" | "money" | "merge" | "landscape" | "hive" | "face" | "error" | "equalizer" | "chair" | "category" | "adjust" | "add-to-queue" | "alarm-add" | "alarm-exclamation" | "alarm-off" | "alarm-snooze" | "analyse" | "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-check" | "baguette" | "ball" | "bar-chart-alt-2" | "bar-chart-square" | "been-here" | "blanket" | "bolt-circle" | "bong" | "book-add" | "book-alt" | "book-bookmark" | "book-content" | "book-heart" | "book-reader" | "bookmark-alt" | "bookmark-alt-minus" | "bookmark-alt-plus" | "bookmark-minus" | "bowl-hot" | "bowl-rice" | "brain" | "briefcase-alt" | "briefcase-alt-2" | "brush-alt" | "bug-alt" | "building-house" | "buildings" | "buoy" | "bus-school" | "cabinet" | "cable-car" | "calendar-alt" | "calendar-edit" | "calendar-exclamation" | "calendar-star" | "camera-home" | "camera-movie" | "capsule" | "card" | "caret-down-circle" | "caret-left-circle" | "caret-right-circle" | "caret-up-circle" | "cart-add" | "cart-download" | "category-alt" | "cctv" | "certification" | "chalkboard" | "check-shield" | "checkbox-checked" | "checkbox-minus" | "chevron-down-circle" | "chevron-down-square" | "chevron-left-circle" | "chevron-left-square" | "chevron-right-circle" | "chevron-right-square" | "chevron-up-circle" | "chevron-up-square" | "chip" | "circle-quarter" | "circle-three-quarter" | "clinic" | "coffee-togo" | "cog" | "coin-stack" | "color" | "color-fill" | "comment-add" | "comment-check" | "comment-detail" | "comment-dots" | "comment-edit" | "comment-error" | "comment-minus" | "comment-x" | "conversation" | "copy-alt" | "credit-card-alt" | "credit-card-front" | "cricket-ball" | "cube" | "cube-alt" | "cuboid" | "customize" | "cylinder" | "detail" | "dish" | "dislike" | "dock-top" | "dollar-circle" | "donate-blood" | "donate-heart" | "doughnut-chart" | "down-arrow" | "down-arrow-alt" | "down-arrow-circle" | "downvote" | "drink" | "edit-alt" | "error-alt" | "error-circle" | "exit" | "fast-forward-circle" | "file-blank" | "file-find" | "first-aid" | "food-menu" | "game" | "gas-pump" | "grid-alt" | "happy" | "happy-alt" | "happy-beaming" | "happy-heart-eyes" | "hard-hat" | "heart-circle" | "heart-square" | "hide" | "home-alt-2" | "home-circle" | "home-heart" | "home-smile" | "id-card" | "image-add" | "injection" | "joystick-alt" | "joystick-button" | "laugh" | "layer" | "layer-minus" | "layer-plus" | "left-arrow" | "left-arrow-alt" | "left-arrow-circle" | "left-down-arrow-circle" | "left-top-arrow-circle" | "like" | "location-plus" | "lock-alt" | "lock-open-alt" | "log-in-circle" | "log-out-circle" | "low-vision" | "map-alt" | "meh-alt" | "meh-blank" | "memory-card" | "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-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-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" | "mobile-vibration" | "mouse-alt" | "movie-play" | "network-chart" | "no-entry" | "notepad" | "notification-off" | "paint-roll" | "paper-plane" | "party" | "paste" | "photo-album" | "pie-chart-alt" | "pie-chart-alt-2" | "pointer" | "popsicle" | "purchase-tag" | "purchase-tag-alt" | "rewind-circle" | "right-arrow" | "right-arrow-alt" | "right-arrow-circle" | "right-down-arrow-circle" | "right-top-arrow-circle" | "sad" | "search-alt-2" | "select-multiple" | "share-alt" | "shield-alt-2" | "shocked" | "show" | "skip-next-circle" | "skip-previous-circle" | "spray-can" | "spreadsheet" | "square-rounded" | "store-alt" | "tachometer" | "tag-alt" | "time-five" | "tired" | "tone" | "trash-alt" | "up-arrow" | "up-arrow-alt" | "up-arrow-circle" | "upside-down" | "upvote" | "user-pin" | "user-voice" | "vial" | "video-recording" | "volume-full" | "volume-low" | "wallet-alt" | "window-alt" | "wine" | "wink-smile" | "wink-tongue" | "bar-chart-alt" | "barcode-reader" | "body" | "bracket" | "braille" | "candles" | "check-double" | "checkbox-square" | "cloud-light-rain" | "code-alt" | "code-block" | "code-curly" | "collapse-alt" | "collapse-horizontal" | "collapse-vertical" | "dialpad-alt" | "dots-horizontal" | "dots-horizontal-rounded" | "dots-vertical-rounded" | "dumbbell" | "exit-fullscreen" | "expand-alt" | "expand-horizontal" | "expand-vertical" | "female-sign" | "first-page" | "font" | "font-color" | "font-family" | "food-tag" | "fork" | "git-repo-forked" | "glasses-alt" | "grid-horizontal" | "grid-small" | "grid-vertical" | "handicap" | "headphone" | "health" | "horizontal-center" | "infinite" | "last-page" | "left-indent" | "library" | "line-chart" | "line-chart-down" | "link-alt" | "link-external" | "lira" | "list-minus" | "list-plus" | "loader-alt" | "loader-circle" | "mail-send" | "male-female" | "male-sign" | "menu-alt-left" | "menu-alt-right" | "minus-back" | "minus-front" | "mobile-alt" | "mobile-landscape" | "money-withdraw" | "move-horizontal" | "move-vertical" | "no-signal" | "outline" | "plus-medical" | "podcast" | "power-off" | "pulse" | "qr-scan" | "radio-circle" | "radio-circle-marked" | "reflect-horizontal" | "reflect-vertical" | "repost" | "reset" | "revision" | "right-indent" | "rotate-left" | "rotate-right" | "ruble" | "rupee" | "scatter-chart" | "search-alt" | "shape-polygon" | "shekel" | "shield-quarter" | "show-alt" | "signal-1" | "signal-2" | "signal-3" | "signal-4" | "signal-5" | "skip-next" | "skip-previous" | "slider" | "slider-alt" | "sort-a-z" | "sort-alt-2" | "sort-z-a" | "space-bar" | "stats" | "street-view" | "subdirectory-left" | "subdirectory-right" | "swim" | "target-lock" | "task-x" | "transfer" | "transfer-alt" | "trip" | "unite" | "vertical-center" | "window-close" | "window-open" | "won"

      # solid

      src/types.ts#L4

        "search" | "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" | "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" | "edit" | "folder-open" | "home" | "message" | "microphone" | "mobile" | "music" | "user" | "video" | "volume" | "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" | "log-in" | "log-out" | "piano" | "rename" | "ruler" | "shopping-bag" | "smile" | "time" | "timer" | "ambulance" | "angry" | "baseball" | "basketball" | "bath" | "bed" | "beer" | "bomb" | "bus" | "cake" | "cat" | "cheese" | "church" | "confused" | "cookie" | "cool" | "dizzy" | "dog" | "factory" | "hotel" | "label" | "lemon" | "medal" | "package" | "parking" | "pizza" | "radio" | "registered" | "rocket" | "school" | "ship" | "skull" | "sleepy" | "taxi" | "train" | "zap" | "bell-off" | "book-open" | "camera-off" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "help-circle" | "layout" | "map-pin" | "meh" | "message-square" | "minus-circle" | "minus-square" | "navigation" | "phone-call" | "phone-incoming" | "phone-off" | "phone-outgoing" | "toggle-left" | "toggle-right" | "user-check" | "user-minus" | "user-plus" | "user-x" | "video-off" | "bowling-ball" | "cart-alt" | "city" | "dashboard" | "ev-station" | "filter-alt" | "flask" | "fridge" | "group" | "movie" | "planet" | "playlist" | "shopping-bag-alt" | "tennis-ball" | "baby-carriage" | "backpack" | "badge" | "barcode" | "bell-minus" | "bell-plus" | "bible" | "bone" | "brightness" | "brightness-half" | "camera-plus" | "car" | "car-crash" | "checkbox" | "devices" | "directions" | "discount" | "face-mask" | "file-export" | "file-import" | "flame" | "leaf" | "lock-open" | "message-dots" | "microphone-off" | "news" | "note" | "notification" | "paint" | "plane" | "polygon" | "pyramid" | "rectangle" | "report" | "slideshow" | "sticker" | "traffic-cone" | "user-circle" | "vector" | "video-plus" | "virus" | "traffic" | "store" | "spa" | "landscape" | "face" | "error" | "category" | "business" | "adjust" | "add-to-queue" | "adjust-alt" | "alarm-add" | "alarm-exclamation" | "alarm-off" | "alarm-snooze" | "analyse" | "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-check" | "badge-dollar" | "baguette" | "ball" | "bar-chart-alt-2" | "bar-chart-square" | "battery-low" | "been-here" | "bell-ring" | "blanket" | "bolt-circle" | "bong" | "book-add" | "book-alt" | "book-bookmark" | "book-content" | "book-heart" | "book-reader" | "bookmark-alt" | "bookmark-alt-minus" | "bookmark-alt-plus" | "bookmark-minus" | "bowl-hot" | "bowl-rice" | "brain" | "briefcase-alt" | "briefcase-alt-2" | "brush-alt" | "bug-alt" | "building-house" | "buildings" | "buoy" | "bus-school" | "cabinet" | "cable-car" | "calendar-alt" | "calendar-edit" | "calendar-exclamation" | "calendar-star" | "camera-home" | "camera-movie" | "capsule" | "car-battery" | "car-garage" | "car-mechanic" | "car-wash" | "card" | "caret-down-circle" | "caret-left-circle" | "caret-right-circle" | "caret-up-circle" | "cart-add" | "cart-download" | "category-alt" | "cctv" | "certification" | "chalkboard" | "check-shield" | "checkbox-checked" | "checkbox-minus" | "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" | "chip" | "circle-quarter" | "circle-three-quarter" | "clinic" | "coffee-alt" | "coffee-togo" | "cog" | "coin-stack" | "color" | "color-fill" | "comment-add" | "comment-check" | "comment-detail" | "comment-dots" | "comment-edit" | "comment-error" | "comment-minus" | "comment-x" | "component" | "contact" | "conversation" | "copy-alt" | "coupon" | "credit-card-alt" | "credit-card-front" | "cricket-ball" | "cube" | "cube-alt" | "cuboid" | "customize" | "cylinder" | "detail" | "direction-left" | "direction-right" | "dish" | "dislike" | "dock-top" | "dollar-circle" | "donate-blood" | "donate-heart" | "doughnut-chart" | "down-arrow" | "down-arrow-alt" | "down-arrow-circle" | "down-arrow-square" | "downvote" | "drink" | "dryer" | "edit-alt" | "edit-location" | "error-alt" | "error-circle" | "exit" | "fast-forward-circle" | "file-archive" | "file-blank" | "file-css" | "file-doc" | "file-find" | "file-gif" | "file-html" | "file-jpg" | "file-js" | "file-json" | "file-md" | "file-png" | "file-txt" | "first-aid" | "flag-checkered" | "florist" | "food-menu" | "game" | "gas-pump" | "graduation" | "grid-alt" | "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" | "hide" | "home-alt-2" | "home-circle" | "home-heart" | "home-smile" | "hot" | "id-card" | "image-add" | "injection" | "institution" | "invader" | "joystick-alt" | "joystick-button" | "landmark" | "laugh" | "layer" | "layer-minus" | "layer-plus" | "left-arrow" | "left-arrow-alt" | "left-arrow-circle" | "left-arrow-square" | "left-down-arrow-circle" | "left-top-arrow-circle" | "like" | "location-plus" | "lock-alt" | "lock-open-alt" | "log-in-circle" | "log-out-circle" | "low-vision" | "magic-wand" | "map-alt" | "meh-alt" | "meh-blank" | "memory-card" | "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-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-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-alt" | "mobile-vibration" | "mouse-alt" | "movie-play" | "network-chart" | "no-entry" | "notepad" | "notification-off" | "offer" | "paint-roll" | "paper-plane" | "party" | "paste" | "photo-album" | "pie-chart-alt" | "pie-chart-alt-2" | "plane-alt" | "plane-land" | "plane-take-off" | "pointer" | "popsicle" | "purchase-tag" | "purchase-tag-alt" | "quote-alt-left" | "quote-alt-right" | "quote-left" | "quote-right" | "quote-single-left" | "quote-single-right" | "radiation" | "rewind-circle" | "right-arrow" | "right-arrow-alt" | "right-arrow-circle" | "right-arrow-square" | "right-down-arrow-circle" | "right-top-arrow-circle" | "sad" | "search-alt-2" | "select-multiple" | "shapes" | "share-alt" | "shield-alt-2" | "shocked" | "shopping-bags" | "show" | "skip-next-circle" | "skip-previous-circle" | "sort-alt" | "spray-can" | "spreadsheet" | "square-rounded" | "store-alt" | "t-shirt" | "tachometer" | "tag-alt" | "tag-x" | "time-five" | "tired" | "to-top" | "tone" | "torch" | "traffic-barrier" | "trash-alt" | "tree-alt" | "up-arrow" | "up-arrow-alt" | "up-arrow-circle" | "up-arrow-square" | "upside-down" | "upvote" | "user-account" | "user-badge" | "user-detail" | "user-pin" | "user-rectangle" | "user-voice" | "vial" | "video-recording" | "videos" | "virus-block" | "volume-full" | "volume-low" | "wallet-alt" | "washer" | "watch-alt" | "widget" | "window-alt" | "wine" | "wink-smile" | "wink-tongue"

      }

    # bytesize

    src/types.ts#L8

      "search" | "link" | "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" | "lock" | "moon" | "paperclip" | "pause" | "play" | "plus" | "reply" | "send" | "star" | "tag" | "telephone" | "trash" | "twitter" | "unlock" | "upload" | "zoom-in" | "zoom-out" | "alert" | "arrow-bottom" | "arrow-top" | "backwards" | "ban" | "caret-bottom" | "caret-top" | "checkmark" | "chevron-bottom" | "chevron-top" | "close" | "compose" | "creditcard" | "desktop" | "edit" | "ellipsis-horizontal" | "ellipsis-vertical" | "end" | "export" | "external" | "feed" | "folder-open" | "forwards" | "home" | "import" | "location" | "mail" | "menu" | "message" | "microphone" | "minus" | "mobile" | "move" | "music" | "mute" | "options" | "photo" | "portfolio" | "print" | "reload" | "settings" | "sign-in" | "sign-out" | "start" | "user" | "video" | "volume" | "work" | "zoom-reset"

    # cssgg

    src/types.ts#L9

      "search" | "repeat" | "anchor" | "link" | "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" | "list" | "lock" | "magnet" | "mic" | "microsoft" | "modem" | "moon" | "mouse" | "music-note" | "paypal" | "pen" | "phone" | "pin" | "plug" | "printer" | "quote" | "record" | "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" | "close" | "desktop" | "export" | "external" | "feed" | "home" | "import" | "mail" | "menu" | "music" | "options" | "user" | "volume" | "abstract" | "add" | "add-r" | "adidas" | "airplane" | "album" | "align-left" | "align-right" | "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" | "band-aid" | "battery-empty" | "bee" | "bitbucket" | "block" | "bmw" | "board" | "bolt" | "border-style-dashed" | "border-style-dotted" | "border-style-solid" | "bot" | "bowl" | "boy" | "brackets" | "browse" | "browser" | "bulb" | "c-plus-plus" | "calendar-dates" | "calendar-due" | "calendar-next" | "calendar-today" | "calendar-two" | "calibrate" | "cap" | "captions" | "card-clubs" | "card-diamonds" | "card-hearts" | "card-spades" | "carousel" | "chanel" | "chart" | "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" | "coffee" | "collage" | "color-bucket" | "color-picker" | "comedy-central" | "comment" | "community" | "components" | "compress" | "compress-left" | "compress-right" | "compress-v" | "copy" | "copyright" | "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" | "cross" | "crowdfire" | "crown" | "danger" | "dark-mode" | "data" | "database" | "debug" | "designmodo" | "details-less" | "details-more" | "dialpad" | "digitalocean" | "display-flex" | "display-fullwidth" | "display-grid" | "display-spacing" | "dock-bottom" | "dock-left" | "dock-right" | "dock-window" | "dolby" | "dollar" | "drive" | "drop" | "drop-invert" | "drop-opacity" | "duplicate" | "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" | "euro" | "eventbrite" | "expand" | "extension" | "extension-add" | "extension-alt" | "extension-remove" | "eye-alt" | "figma" | "file-add" | "file-document" | "file-remove" | "filters" | "flag-alt" | "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" | "ghost-character" | "girl" | "git-branch" | "git-commit" | "git-fork" | "git-pull" | "gitter" | "glass" | "glass-alt" | "globe-alt" | "google-tasks" | "gym" | "hashtag" | "hello" | "home-alt" | "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-in" | "log-off" | "log-out" | "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" | "patreon" | "pentagon-bottom-left" | "pentagon-bottom-right" | "pentagon-down" | "pentagon-left" | "pentagon-right" | "pentagon-top-left" | "pentagon-top-right" | "pentagon-up" | "performance" | "pexels" | "photoscan" | "piano" | "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" | "pocket" | "pokemon" | "polaroid" | "poll" | "presentation" | "product-hunt" | "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" | "qr" | "quote-o" | "radio-check" | "radio-checked" | "ratio" | "read" | "readme" | "redo" | "remote" | "remove" | "remove-r" | "rename" | "reorder" | "ring" | "row-first" | "row-last" | "ruler" | "sand-clock" | "scan" | "screen" | "screen-mirror" | "screen-shot" | "screen-wide" | "scroll-h" | "scroll-v" | "search-found" | "search-loading" | "select" | "select-o" | "select-r" | "serverless" | "shape-circle" | "shape-half-circle" | "shape-hexagon" | "shape-rhombus" | "shape-square" | "shape-triangle" | "shape-zigzag" | "shopping-bag" | "shopping-cart" | "shortcut" | "shutterstock" | "sidebar" | "sidebar-open" | "sidebar-right" | "size" | "sketch" | "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" | "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" | "support" | "swap" | "swap-vertical" | "sweden" | "swiss" | "sync" | "tab" | "tally" | "tap-double" | "tap-single" | "template" | "tennis" | "terrain" | "thermostat" | "tikcode" | "time" | "timelapse" | "timer" | "today" | "toggle-square" | "toggle-square-off" | "toolbar-bottom" | "toolbar-left" | "toolbar-right" | "toolbar-top" | "toolbox" | "touchpad" | "track" | "transcript" | "trash-empty" | "trees" | "trello" | "trending" | "trending-down" | "twilio" | "ui-kit" | "unavailable" | "unblock" | "undo" | "unfold" | "unsplash" | "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

    src/types.ts#L10

      "flags" | "repeat" | "anchor" | "link" | "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" | "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" | "desktop" | "end" | "microphone" | "mute" | "airplane" | "bee" | "boy" | "bulb" | "chart" | "coffee" | "copyright" | "cross" | "crown" | "dollar" | "euro" | "ghost" | "girl" | "icecream" | "notes" | "pill" | "ring" | "smile" | "tennis" | "timer" | "a" | "ab" | "abc" | "abcd" | "accept" | "aerialTramway" | "airplaneArriving" | "airplaneDeparture" | "airplaneSmall" | "alarmClock" | "alembic" | "alien" | "ambulance" | "amphora" | "angel" | "angelTone1" | "angelTone2" | "angelTone3" | "angelTone4" | "angelTone5" | "anger" | "angerRight" | "angry" | "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" | "atom" | "avocado" | "b" | "baby" | "babyBottle" | "babyChick" | "babySymbol" | "babyTone1" | "babyTone2" | "babyTone3" | "babyTone4" | "babyTone5" | "bacon" | "badminton" | "baggageClaim" | "ballotBox" | "ballotBoxWithCheck" | "bamboo" | "banana" | "bangbang" | "barber" | "barChart" | "baseball" | "basketball" | "basketballPlayer" | "basketballPlayerTone1" | "basketballPlayerTone2" | "basketballPlayerTone3" | "basketballPlayerTone4" | "basketballPlayerTone5" | "bat" | "bath" | "bathTone1" | "bathTone2" | "bathTone3" | "bathTone4" | "bathTone5" | "bathtub" | "beach" | "beachUmbrella" | "bear" | "bed" | "beer" | "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" | "bomb" | "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" | "bus" | "busstop" | "bustInSilhouette" | "bustsInSilhouette" | "butterfly" | "cactus" | "cake" | "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" | "cat" | "cat2" | "cd" | "chains" | "champagne" | "champagneGlass" | "chartWithDownwardsTrend" | "chartWithUpwardsTrend" | "checkeredFlag" | "cheese" | "cherries" | "cherryBlossom" | "chestnut" | "chicken" | "childrenCrossing" | "chipmunk" | "chocolateBar" | "christmasTree" | "church" | "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" | "confused" | "congratulations" | "construction" | "constructionSite" | "constructionWorker" | "constructionWorkerTone1" | "constructionWorkerTone2" | "constructionWorkerTone3" | "constructionWorkerTone4" | "constructionWorkerTone5" | "controlKnobs" | "convenienceStore" | "cookie" | "cooking" | "cool" | "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" | "dizzy" | "dizzyFace" | "dog" | "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" | "factory" | "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" | "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" | "football" | "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" | "hotel" | "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" | "knife" | "koala" | "koko" | "label" | "largeBlueDiamond" | "largeOrangeDiamond" | "lastQuarterMoon" | "lastQuarterMoonWithFace" | "laughing" | "leaves" | "ledger" | "leftFacingFist" | "leftFacingFistTone1" | "leftFacingFistTone2" | "leftFacingFistTone3" | "leftFacingFistTone4" | "leftFacingFistTone5" | "leftLuggage" | "leftRightArrow" | "leftwardsArrowWithHook" | "lemon" | "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" | "medal" | "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" | "package" | "pageFacingUp" | "pager" | "pageWithCurl" | "paintbrush" | "palmTree" | "pancakes" | "pandaFace" | "paperclips" | "park" | "parking" | "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" | "pizza" | "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" | "pound" | "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" | "radio" | "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" | "registered" | "relaxed" | "relieved" | "reminderRibbon" | "repeatOne" | "restroom" | "revolvingHearts" | "rewind" | "rhino" | "ribbon" | "rice" | "riceBall" | "riceCracker" | "riceScene" | "rightFacingFist" | "rightFacingFistTone1" | "rightFacingFistTone2" | "rightFacingFistTone3" | "rightFacingFistTone4" | "rightFacingFistTone5" | "rocket" | "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" | "school" | "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" | "ship" | "shirt" | "shoppingBags" | "shoppingCart" | "shower" | "shrimp" | "shrug" | "shrugTone1" | "shrugTone2" | "shrugTone3" | "shrugTone4" | "shrugTone5" | "signalStrength" | "six" | "sixPointedStar" | "ski" | "skier" | "skull" | "skullCrossbones" | "sleeping" | "sleepingAccommodation" | "sleepy" | "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" | "station" | "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" | "taxi" | "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" | "train" | "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" | "yen" | "yinYang" | "yum" | "zap" | "zero" | "zipperMouth" | "zzz"

    # eos

    src/types.ts#L11

      {

      # animated

      src/types.ts#L12

        "compass" | "hourglass" | "arrow_rotate" | "atom_electron" | "bubble_loading" | "installing" | "loading" | "rotating_gear" | "three_dots_loading" | "typing"

      # outlined

      src/types.ts#L13

        "light" | "search" | "repeat" | "anchor" | "link" | "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" | "list" | "lock" | "map" | "memory" | "mic" | "mouse" | "outlet" | "palette" | "pause" | "person" | "phone" | "pin" | "power" | "receipt" | "reply" | "router" | "save" | "send" | "share" | "shield" | "shop" | "shuffle" | "speaker" | "spellcheck" | "star" | "stars" | "stop" | "tablet" | "tag" | "terminal" | "translate" | "tv" | "umbrella" | "upload" | "usb" | "voicemail" | "watch" | "water" | "wifi" | "window" | "close" | "edit" | "feed" | "home" | "menu" | "message" | "photo" | "print" | "settings" | "volume" | "work" | "abstract" | "add" | "album" | "attachment" | "attribution" | "block" | "bolt" | "coffee" | "comment" | "compress" | "copyright" | "dialpad" | "euro" | "expand" | "extension" | "games" | "icecream" | "insights" | "loupe" | "maximize" | "minimize" | "more" | "notes" | "notifications" | "password" | "piano" | "redo" | "remove" | "reorder" | "shortcut" | "smartphone" | "style" | "support" | "sync" | "tab" | "terrain" | "thermostat" | "timelapse" | "timer" | "today" | "undo" | "atm" | "bathtub" | "bed" | "bento" | "cake" | "computer" | "construction" | "hotel" | "label" | "loop" | "package" | "park" | "radio" | "satellite" | "school" | "secret" | "shower" | "train" | "tram" | "warning" | "wc" | "airplay" | "delete" | "monitor" | "navigation" | "accessibility" | "cancel" | "dashboard" | "female" | "flare" | "flip" | "garage" | "group" | "hd" | "language" | "leaderboard" | "lens" | "male" | "movie" | "refresh" | "skateboarding" | "soap" | "stroller" | "android" | "email" | "accessible" | "api" | "apps" | "backpack" | "badge" | "container" | "details" | "devices" | "directions" | "elevator" | "exposure" | "fence" | "gavel" | "grain" | "help" | "highlight" | "history" | "login" | "logout" | "luggage" | "moped" | "nfc" | "note" | "pool" | "radar" | "report" | "slideshow" | "stairs" | "subscript" | "superscript" | "timeline" | "wallpaper" | "mp" | "sd" | "zoom_out_map" | "zoom_out" | "zoom_in" | "youtube_searched_for" | "yard" | "wysiwyg" | "wrong_location" | "wrap_text" | "workspaces" | "work_off" | "wine_bar" | "wifi_tethering_off" | "wifi_tethering_error_rounded" | "wifi_tethering" | "wifi_protected_setup" | "wifi_off" | "wifi_lock" | "wifi_calling_3" | "wifi_calling" | "widgets" | "where_to_vote" | "wheelchair_pickup" | "whatshot" | "west" | "weekend" | "web_asset_off" | "web_asset" | "web" | "wb_twilight" | "wb_sunny" | "wb_shade" | "wb_iridescent" | "wb_incandescent" | "wb_auto" | "waving_hand" | "waves" | "waterfall_chart" | "water_drop" | "water_damage" | "wash" | "vrpano" | "vpn_lock" | "vpn_key" | "volunteer_activism" | "volume_up" | "volume_off" | "volume_mute" | "volume_down" | "voice_over_off" | "voice_chat" | "visibility_off" | "visibility" | "villa" | "vignette" | "view_week" | "view_stream" | "view_sidebar" | "view_quilt" | "view_module" | "view_list" | "view_in_ar" | "view_headline" | "view_day" | "view_compact" | "view_comfy" | "view_column" | "view_carousel" | "view_array" | "view_agenda" | "videogame_asset_off" | "videogame_asset" | "videocam_off" | "videocam" | "video_stable" | "video_settings" | "video_library" | "video_label" | "video_camera_front" | "video_camera_back" | "video_call" | "vibration" | "vertical_split" | "vertical_distribute" | "vertical_align_top" | "vertical_align_center" | "vertical_align_bottom" | "verified_user" | "verified" | "usb_off" | "upload_file" | "upgrade" | "update_disabled" | "update" | "upcoming" | "unsubscribe" | "unpublished" | "unfold_more" | "unfold_less" | "unarchive" | "two_wheeler" | "tv_off" | "tungsten" | "tune" | "tty" | "try" | "trip_origin" | "trending_up" | "trending_flat" | "trending_down" | "travel_explore" | "transit_enterexit" | "transgender" | "transform" | "transfer_within_a_station" | "traffic" | "track_changes" | "toys" | "tour" | "touch_app" | "tonality" | "toll" | "toggle_on" | "toggle_off" | "toc" | "title" | "tips_and_updates" | "timer_off" | "timer_10_select" | "timer_10" | "timer_3_select" | "timer_3" | "time_to_leave" | "thumbs_up_down" | "thumb_up_off_alt" | "thumb_up" | "thumb_down_off_alt" | "thumb_down" | "thermostat_auto" | "theaters" | "theater_comedy" | "texture" | "textsms" | "text_snippet" | "text_rotation_none" | "text_rotation_down" | "text_rotation_angleup" | "text_rotation_angledown" | "text_rotate_vertical" | "text_rotate_up" | "text_format" | "text_fields" | "taxi_alert" | "task_alt" | "task" | "tapas" | "tap_and_play" | "takeout_dining" | "tag_faces" | "tablet_mac" | "tablet_android" | "table_view" | "table_rows" | "table_chart" | "tab_unselected" | "system_update_alt" | "system_update" | "system_security_update_warning" | "system_security_update" | "sync_problem" | "sync_disabled" | "sync_alt" | "switch_video" | "switch_right" | "switch_left" | "switch_camera" | "switch_account" | "swipe" | "swap_vertical_circle" | "swap_vert" | "swap_horizontal_circle" | "swap_horiz" | "swap_calls" | "surround_sound" | "surfing" | "support_agent" | "supervisor_account" | "supervised_user_circle" | "summarize" | "subway" | "subtitles_off" | "subtitles" | "subscriptions" | "subject" | "subdirectory_arrow_right" | "subdirectory_arrow_left" | "strikethrough_s" | "streetview" | "stream" | "straighten" | "storm" | "storefront" | "store" | "storage" | "stop_screen_share" | "stop_circle" | "stay_current_portrait" | "stay_current_landscape" | "star_purple500" | "star_half" | "stacked_line_chart" | "stacked_bar_chart" | "square_foot" | "sports_volleyball" | "sports_tennis" | "sports_soccer" | "sports_score" | "sports_rugby" | "sports_motorsports" | "sports_mma" | "sports_kabaddi" | "sports_hockey" | "sports_handball" | "sports_golf" | "sports_football" | "sports_esports" | "sports_cricket" | "sports_basketball" | "sports_baseball" | "sports_bar" | "sports" | "splitscreen" | "speed" | "speaker_phone" | "speaker_notes_off" | "speaker_notes" | "speaker_group" | "space_bar" | "spa" | "south_west" | "south_east" | "south" | "source" | "sort_by_alpha" | "sort" | "social_distance" | "snowshoeing" | "snowmobile" | "snowboarding" | "snooze" | "snippet_folder" | "sms_failed" | "sms" | "smoking_rooms" | "smoke_free" | "smart_toy" | "smart_screen" | "smart_display" | "smart_button" | "slow_motion_video" | "sledding" | "skip_previous" | "skip_next" | "sip" | "single_bed" | "sim_card_download" | "sim_card_alert" | "sim_card" | "signal_wifi_statusbar_null" | "signal_wifi_statusbar_connected_no_internet_4" | "signal_wifi_statusbar_4_bar" | "signal_wifi_off" | "signal_wifi_bad" | "signal_cellular_off" | "signal_cellular_null" | "signal_cellular_nodata" | "signal_cellular_no_sim" | "signal_cellular_alt" | "sick" | "shutter_speed" | "shuffle_on" | "show_chart" | "short_text" | "shopping_cart" | "shopping_basket" | "shopping_bag" | "shop_two" | "share_location" | "settings_voice" | "settings_system_daydream" | "settings_suggest" | "settings_remote" | "settings_power" | "settings_phone" | "settings_overscan" | "settings_input_svideo" | "settings_input_hdmi" | "settings_input_component" | "settings_input_antenna" | "settings_ethernet" | "settings_cell" | "settings_brightness" | "settings_bluetooth" | "settings_backup_restore" | "settings_applications" | "settings_accessibility" | "set_meal" | "sentiment_very_satisfied" | "sentiment_very_dissatisfied" | "sentiment_satisfied" | "sentiment_neutral" | "sentiment_dissatisfied" | "sensors_off" | "sensors" | "sensor_window" | "sensor_door" | "send_to_mobile" | "send_and_archive" | "sell" | "self_improvement" | "select_all" | "segment" | "security_update_warning" | "security_update_good" | "security_update" | "security" | "search_off" | "sd_storage" | "sd_card" | "screenshot" | "screen_share" | "screen_search_desktop" | "screen_rotation" | "screen_lock_rotation" | "screen_lock_portrait" | "screen_lock_landscape" | "score" | "science" | "schema" | "schedule_send" | "schedule" | "scatter_plot" | "scanner" | "savings" | "saved_search" | "save_alt" | "sanitizer" | "sailing" | "safety_divider" | "rv_hookup" | "running_with_errors" | "run_circle" | "rule_folder" | "rule" | "rtt" | "rsvp" | "rss_feed" | "rowing" | "rounded_corner" | "rotate_right" | "rotate_left" | "rotate_90_degrees_ccw" | "room_service" | "room_preferences" | "roofing" | "ring_volume" | "rice_bowl" | "reviews" | "restore_page" | "restore_from_trash" | "restore" | "restaurant_menu" | "restaurant" | "restart_alt" | "reset_tv" | "request_quote" | "report_off" | "report_gmailerrorred" | "reply_all" | "replay_30" | "replay_10" | "replay_5" | "replay" | "repeat_one_on" | "repeat_one" | "repeat_on" | "remove_shopping_cart" | "remove_red_eye" | "remove_moderator" | "remove_from_queue" | "remove_done" | "remove_circle" | "remember_me" | "reduce_capacity" | "recycling" | "record_voice_over" | "recommend" | "recent_actors" | "receipt_long" | "read_more" | "raw_on" | "raw_off" | "rate_review" | "ramen_dining" | "railway_alert" | "radio_button_unchecked" | "radio_button_checked" | "r_mobiledata" | "quiz" | "quickreply" | "queue_play_next" | "queue_music" | "question_answer" | "query_stats" | "qr_code_scanner" | "qr_code" | "push_pin" | "published_with_changes" | "publish" | "public_off" | "public" | "psychology" | "production_quantity_limits" | "private_connectivity" | "privacy_tip" | "priority_high" | "print_disabled" | "price_check" | "price_change" | "preview" | "present_to_all" | "pregnant_woman" | "precision_manufacturing" | "power_settings_new" | "power_off" | "power_input" | "post_add" | "portrait" | "portable_wifi_off" | "polymer" | "policy" | "point_of_sale" | "podcasts" | "plumbing" | "playlist_play" | "playlist_add_check" | "playlist_add" | "play_lesson" | "play_for_work" | "play_disabled" | "play_circle" | "play_arrow" | "plagiarism" | "pivot_table_chart" | "pin_invoke" | "pin_end" | "pin_drop" | "pie_chart" | "picture_in_picture_alt" | "picture_in_picture" | "picture_as_pdf" | "piano_off" | "photo_size_select_small" | "photo_size_select_large" | "photo_size_select_actual" | "photo_library" | "photo_filter" | "photo_camera_front" | "photo_camera_back" | "photo_album" | "phonelink_setup" | "phonelink_ring" | "phonelink_off" | "phonelink_lock" | "phonelink_erase" | "phonelink" | "phone_paused" | "phone_missed" | "phone_locked" | "phone_iphone" | "phone_in_talk" | "phone_forwarded" | "phone_enabled" | "phone_disabled" | "phone_callback" | "phone_bluetooth_speaker" | "phone_android" | "pets" | "pest_control_rodent" | "pest_control" | "person_search" | "person_remove" | "person_pin_circle" | "person_pin" | "person_outline" | "person_off" | "person_add_disabled" | "person_add_alt" | "person_add" | "perm_scan_wifi" | "perm_phone_msg" | "perm_media" | "perm_device_information" | "perm_data_setting" | "perm_contact_calendar" | "perm_camera_mic" | "people_outline" | "pending_actions" | "pending" | "pedal_bike" | "payments" | "pause_presentation" | "pause_circle" | "pattern" | "party_mode" | "paragliding" | "panorama_wide_angle_select" | "panorama_wide_angle" | "panorama_vertical_select" | "panorama_vertical" | "panorama_photosphere_select" | "panorama_photosphere" | "panorama_horizontal_select" | "panorama_horizontal" | "panorama" | "pan_tool" | "paid" | "pageview" | "pages" | "padding" | "outlined_flag" | "outdoor_grill" | "outbox" | "other_houses" | "open_with" | "open_in_new_off" | "open_in_new" | "open_in_full" | "open_in_browser" | "opacity" | "online_prediction" | "ondemand_video" | "offline_share" | "offline_pin" | "offline_bolt" | "notifications_paused" | "notifications_off" | "notifications_none" | "notifications_active" | "notification_important" | "notification_add" | "note_alt" | "note_add" | "not_started" | "not_listed_location" | "not_interested" | "not_accessible" | "north_west" | "north_east" | "north" | "nordic_walking" | "no_transfer" | "no_stroller" | "no_sim" | "no_photography" | "no_meeting_room" | "no_meals" | "no_luggage" | "no_food" | "no_flash" | "no_encryption_gmailerrorred" | "no_encryption" | "no_drinks" | "no_cell" | "no_backpack" | "no_accounts" | "nights_stay" | "nightlight_round" | "nightlight" | "nightlife" | "night_shelter" | "next_week" | "next_plan" | "new_releases" | "new_label" | "network_wifi" | "network_locked" | "network_check" | "network_cell" | "nearby_off" | "nearby_error" | "near_me_disabled" | "near_me" | "nature_people" | "nature" | "nat" | "music_video" | "music_off" | "music_note" | "museum" | "multiple_stop" | "multiline_chart" | "moving" | "movie_filter" | "move_to_inbox" | "motion_photos_paused" | "motion_photos_pause" | "motion_photos_on" | "motion_photos_off" | "motion_photos_auto" | "more_vert" | "more_time" | "more_horiz" | "mood_bad" | "mood" | "monochrome_photos" | "monitor_weight" | "money_off" | "money" | "monetization_on" | "model_training" | "mode_standby" | "mode_night" | "mode_edit" | "mode_comment" | "mobiledata_off" | "mobile_screen_share" | "mobile_off" | "mobile_friendly" | "mms" | "missed_video_call" | "miscellaneous_services" | "military_tech" | "microwave" | "mic_off" | "mic_none" | "mic_external_on" | "mic_external_off" | "merge_type" | "merge" | "menu_open" | "menu_book" | "meeting_room" | "medication" | "medical_services" | "mediation" | "media_bluetooth_on" | "media_bluetooth_off" | "masks" | "markunread_mailbox" | "mark_email_unread" | "mark_email_read" | "mark_chat_unread" | "mark_chat_read" | "mark_as_unread" | "margin" | "maps_ugc" | "maps_home_work" | "manage_search" | "manage_accounts" | "lunch_dining" | "lte_plus_mobiledata" | "lte_mobiledata" | "loyalty" | "low_priority" | "looks_two" | "looks_one" | "looks_6" | "looks_5" | "looks_4" | "looks_3" | "looks" | "lock_open" | "lock_clock" | "location_on" | "location_off" | "location_city" | "local_taxi" | "local_shipping" | "local_see" | "local_printshop" | "local_post_office" | "local_police" | "local_play" | "local_pizza" | "local_phone" | "local_pharmacy" | "local_parking" | "local_mall" | "local_library" | "local_laundry_service" | "local_hospital" | "local_gas_station" | "local_florist" | "local_fire_department" | "local_drink" | "local_dining" | "local_convenience_store" | "local_car_wash" | "local_cafe" | "local_bar" | "local_atm" | "local_activity" | "living" | "live_tv" | "live_help" | "list_alt" | "liquor" | "linked_camera" | "link_off" | "linear_scale" | "line_weight" | "line_style" | "light_mode" | "library_music" | "library_books" | "library_add_check" | "library_add" | "lens_blur" | "legend_toggle" | "leak_remove" | "leak_add" | "layers_clear" | "launch" | "last_page" | "laptop_windows" | "laptop_mac" | "laptop_chromebook" | "landscape" | "label_off" | "label_important" | "kitesurfing" | "kitchen" | "king_bed" | "keyboard_voice" | "keyboard_tab" | "keyboard_return" | "keyboard_hide" | "keyboard_capslock" | "keyboard_backspace" | "keyboard_arrow_up" | "keyboard_arrow_right" | "keyboard_arrow_left" | "keyboard_arrow_down" | "keyboard_alt" | "kayaking" | "iso" | "iron" | "ios_share" | "invert_colors_off" | "invert_colors" | "inventory" | "integration_instructions" | "insert_photo" | "insert_link" | "insert_invitation" | "insert_emoticon" | "insert_drive_file" | "insert_comment" | "insert_chart_outlined" | "insert_chart" | "input" | "indeterminate_check_box" | "incomplete_circle" | "important_devices" | "import_export" | "import_contacts" | "imagesearch_roller" | "image_search" | "image_not_supported" | "image_aspect_ratio" | "ice_skating" | "hvac" | "https" | "http" | "how_to_vote" | "how_to_reg" | "houseboat" | "house_siding" | "hourglass_top" | "hourglass_full" | "hourglass_empty" | "hourglass_disabled" | "hourglass_bottom" | "hotel_class" | "hot_tub" | "horizontal_split" | "horizontal_rule" | "horizontal_distribute" | "home_work" | "home_repair_service" | "home_mini" | "home_max" | "holiday_village" | "history_toggle_off" | "history_edu" | "hiking" | "highlight_off" | "highlight_alt" | "high_quality" | "hide_source" | "hide_image" | "hevc" | "help_center" | "height" | "hearing_disabled" | "hearing" | "health_and_safety" | "healing" | "headset_off" | "headset_mic" | "headphones_battery" | "hdr_weak" | "hdr_strong" | "hdr_plus" | "hdr_on_select" | "hdr_on" | "hdr_off_select" | "hdr_off" | "hdr_enhanced_select" | "hdr_auto_select" | "hdr_auto" | "hardware" | "handyman" | "hail" | "h_plus_mobiledata" | "h_mobiledata" | "groups" | "group_work" | "group_off" | "group_add" | "grid_view" | "grid_on" | "grid_off" | "grid_goldenratio" | "grid_4x4" | "grid_3x3" | "grass" | "graphic_eq" | "grading" | "gradient" | "grade" | "gps_off" | "gps_not_fixed" | "gps_fixed" | "gpp_maybe" | "gpp_good" | "gpp_bad" | "golf_course" | "gite" | "gif" | "gesture" | "generating_tokens" | "gamepad" | "g_translate" | "g_mobiledata" | "functions" | "fullscreen_exit" | "front_hand" | "free_cancellation" | "free_breakfast" | "foundation" | "forward_to_inbox" | "forward_30" | "forward_10" | "forward_5" | "forum" | "format_underlined" | "format_textdirection_r_to_l" | "format_textdirection_l_to_r" | "format_strikethrough" | "format_size" | "format_shapes" | "format_quote" | "format_paint" | "format_list_numbered_rtl" | "format_list_numbered" | "format_list_bulleted" | "format_line_spacing" | "format_italic" | "format_indent_increase" | "format_indent_decrease" | "format_color_text" | "format_color_reset" | "format_color_fill" | "format_clear" | "format_bold" | "format_align_right" | "format_align_left" | "format_align_justify" | "format_align_center" | "food_bank" | "font_download_off" | "font_download" | "follow_the_signs" | "folder_special" | "folder_shared" | "folder_open" | "fmd_good" | "fmd_bad" | "flutter_dash" | "flourescent" | "flip_to_front" | "flip_to_back" | "flip_camera_ios" | "flip_camera_android" | "flight_takeoff" | "flight_land" | "flatware" | "flashlight_on" | "flashlight_off" | "flash_on" | "flash_off" | "flash_auto" | "flaky" | "fitness_center" | "fit_screen" | "first_page" | "fireplace" | "fire_extinguisher" | "find_replace" | "find_in_page" | "filter_vintage" | "filter_tilt_shift" | "filter_none" | "filter_list" | "filter_hdr" | "filter_frames" | "filter_drama" | "filter_center_focus" | "filter_b_and_w" | "filter_alt" | "filter_9_plus" | "filter_9" | "filter_8" | "filter_7" | "filter_6" | "filter_5" | "filter_4" | "filter_3" | "filter_2" | "filter_1" | "file_present" | "file_download_off" | "file_download_done" | "file_copy" | "fiber_smart_record" | "fiber_pin" | "fiber_new" | "fiber_manual_record" | "fiber_dvr" | "festival" | "feedback" | "featured_video" | "featured_play_list" | "favorite" | "fastfood" | "fast_rewind" | "fast_forward" | "family_restroom" | "fact_check" | "face_retouching_off" | "face_retouching_natural" | "face" | "extension_off" | "exposure_zero" | "exposure_plus_2" | "exposure_plus_1" | "exposure_neg_2" | "exposure_neg_1" | "explore_off" | "explore" | "exit_to_app" | "event_seat" | "event_note" | "event_busy" | "event_available" | "event" | "ev_station" | "euro_symbol" | "escalator_warning" | "escalator" | "error" | "equalizer" | "enhanced_encryption" | "engineering" | "emoji_transportation" | "emoji_symbols" | "emoji_people" | "emoji_objects" | "emoji_nature" | "emoji_food_beverage" | "emoji_flags" | "emoji_events" | "emoji_emotions" | "emergency" | "electrical_services" | "electric_scooter" | "electric_rickshaw" | "electric_moped" | "electric_car" | "electric_bike" | "elderly" | "edit_road" | "edit_off" | "edit_notifications" | "edit_note" | "edit_location_alt" | "edit_location" | "edit_calendar" | "edit_attributes" | "edgesensor_low" | "edgesensor_high" | "eco" | "earbuds_battery" | "e_mobiledata" | "dynamic_form" | "dynamic_feed" | "dvr" | "duo" | "dry_cleaning" | "dry" | "drive_folder_upload" | "drive_file_move_rtl" | "drive_file_move" | "drive_eta" | "draw" | "drag_indicator" | "drag_handle" | "drafts" | "downloading" | "download_for_offline" | "download_done" | "downhill_skiing" | "double_arrow" | "doorbell" | "door_sliding" | "door_front" | "door_back" | "donut_small" | "donut_large" | "done_all" | "done" | "domain_verification" | "domain_disabled" | "domain" | "document_scanner" | "dock" | "do_not_touch" | "do_not_step" | "do_not_disturb_on_total_silence" | "do_not_disturb_on" | "do_not_disturb_off" | "do_not_disturb_alt" | "do_not_disturb" | "do_disturb_off" | "disc_full" | "disabled_visible" | "disabled_by_default" | "dirty_lens" | "directions_walk" | "directions_transit" | "directions_subway" | "directions_run" | "directions_railway" | "directions_off" | "directions_car" | "directions_bus" | "directions_boat" | "directions_bike" | "dinner_dining" | "dining" | "dialer_sip" | "devices_other" | "device_unknown" | "device_thermostat" | "device_hub" | "developer_mode" | "developer_board_off" | "developer_board" | "desktop_windows" | "desktop_mac" | "desktop_access_disabled" | "design_services" | "description" | "departure_board" | "delivery_dining" | "delete_sweep" | "delete_outline" | "delete_forever" | "dehaze" | "deck" | "date_range" | "data_usage" | "data_saver_on" | "data_exploration" | "dashboard_customize" | "dark_mode" | "dangerous" | "cruelty_free" | "crop_square" | "crop_rotate" | "crop_portrait" | "crop_original" | "crop_landscape" | "crop_free" | "crop_din" | "crop_16_9" | "crop_7_5" | "crop_5_4" | "crop_3_2" | "crib" | "credit_score" | "credit_card_off" | "credit_card" | "create_new_folder" | "countertops" | "cottage" | "corporate_fare" | "coronavirus" | "copy_all" | "control_point_duplicate" | "control_camera" | "content_paste_off" | "content_paste" | "content_cut" | "content_copy" | "contacts" | "contactless" | "contact_support" | "contact_phone" | "contact_page" | "contact_mail" | "connected_tv" | "connect_without_contact" | "confirmation_number" | "compost" | "compass_calibration" | "compare_arrows" | "compare" | "commute" | "commit" | "comment_bank" | "colorize" | "color_lens" | "collections_bookmark" | "collections" | "coffee_maker" | "code_off" | "cloud_upload" | "cloud_queue" | "cloud_off" | "cloud_download" | "cloud_done" | "cloud_circle" | "closed_caption_off" | "closed_caption_disabled" | "closed_caption" | "close_fullscreen" | "clear_all" | "cleaning_services" | "clean_hands" | "circle_notifications" | "chrome_reader_mode" | "child_friendly" | "child_care" | "checkroom" | "checklist_rtl" | "checklist" | "check_circle_outline" | "check_circle" | "check_box" | "chat_bubble" | "charging_station" | "change_history" | "change_circle" | "chalet" | "chair_alt" | "chair" | "center_focus_weak" | "center_focus_strong" | "cell_wifi" | "celebration" | "category" | "catching_pokemon" | "cast_for_education" | "cast_connected" | "casino" | "cases" | "carpenter" | "card_travel" | "card_membership" | "card_giftcard" | "car_repair" | "car_rental" | "cancel_schedule_send" | "cancel_presentation" | "campaign" | "cameraswitch" | "camera_roll" | "camera_rear" | "camera_outdoor" | "camera_indoor" | "camera_front" | "camera_enhance" | "camera_alt" | "call_to_action" | "call_split" | "call_received" | "call_missed_outgoing" | "call_missed" | "call_merge" | "call_made" | "call_end" | "call" | "calendar_view_week" | "calendar_view_month" | "calendar_view_day" | "calendar_today" | "calculate" | "cached" | "cable" | "cabin" | "business_center" | "business" | "bus_alert" | "burst_mode" | "bungalow" | "build_circle" | "build" | "bug_report" | "bubble_chart" | "brunch_dining" | "browser_not_supported" | "broken_image" | "brightness_medium" | "brightness_low" | "brightness_high" | "brightness_auto" | "brightness_4" | "brightness_3" | "brightness_2" | "breakfast_dining" | "branding_watermark" | "border_vertical" | "border_top" | "border_style" | "border_right" | "border_outer" | "border_left" | "border_inner" | "border_horizontal" | "border_color" | "border_clear" | "border_bottom" | "border_all" | "bookmark_remove" | "bookmark_added" | "bookmark_add" | "book_online" | "blur_on" | "blur_off" | "blur_linear" | "blur_circular" | "bluetooth_searching" | "bluetooth_drive" | "bluetooth_disabled" | "bluetooth_connected" | "bloodtype" | "blender" | "biotech" | "bike_scooter" | "beenhere" | "bedtime" | "bedroom_parent" | "bedroom_child" | "bedroom_baby" | "beach_access" | "battery_unknown" | "battery_saver" | "battery_full" | "battery_charging_full" | "battery_alert" | "bathroom" | "batch_prediction" | "bar_chart" | "ballot" | "balcony" | "bakery_dining" | "backup_table" | "back_hand" | "baby_changing_station" | "av_timer" | "autorenew" | "autofps_select" | "auto_stories" | "auto_graph" | "auto_fix_off" | "auto_fix_normal" | "auto_fix_high" | "auto_delete" | "auto_awesome_motion" | "auto_awesome_mosaic" | "auto_awesome" | "audiotrack" | "attractions" | "attach_money" | "attach_file" | "attach_email" | "assistant_photo" | "assistant_direction" | "assistant" | "assignment_turned_in" | "assignment_returned" | "assignment_return" | "assignment_late" | "assignment_ind" | "assignment" | "aspect_ratio" | "article" | "art_track" | "arrow_upward" | "arrow_right_alt" | "arrow_right" | "arrow_left" | "arrow_forward_ios" | "arrow_forward" | "arrow_drop_up" | "arrow_drop_down_circle" | "arrow_drop_down" | "arrow_downward" | "arrow_circle_up" | "arrow_circle_down" | "arrow_back_ios" | "arrow_back" | "area_chart" | "architecture" | "approval" | "app_settings_alt" | "app_registration" | "app_blocking" | "apartment" | "aod" | "announcement" | "animation" | "analytics" | "alternate_email" | "alt_route" | "all_out" | "all_inclusive" | "all_inbox" | "align_vertical_top" | "align_vertical_center" | "align_vertical_bottom" | "align_horizontal_right" | "align_horizontal_left" | "align_horizontal_center" | "alarm_on" | "alarm_off" | "airport_shuttle" | "airplanemode_inactive" | "airplane_ticket" | "airline_seat_recline_normal" | "airline_seat_recline_extra" | "airline_seat_legroom_reduced" | "airline_seat_legroom_normal" | "airline_seat_legroom_extra" | "airline_seat_individual_suite" | "airline_seat_flat_angled" | "airline_seat_flat" | "air" | "agriculture" | "ads_click" | "admin_panel_settings" | "adjust" | "addchart" | "add_to_queue" | "add_to_home_screen" | "add_to_drive" | "add_task" | "add_shopping_cart" | "add_road" | "add_reaction" | "add_photo_alternate" | "add_moderator" | "add_location_alt" | "add_location" | "add_link" | "add_ic_call" | "add_comment" | "add_circle" | "add_chart" | "add_business" | "add_box" | "add_alert" | "add_alarm" | "add_a_photo" | "adb" | "ad_units" | "account_tree" | "account_circle" | "account_box" | "account_balance_wallet" | "account_balance" | "accessible_forward" | "accessibility_new" | "access_time_filled" | "access_alarm" | "ac_unit" | "360" | "60fps_select" | "60fps" | "30fps_select" | "30fps" | "24mp" | "23mp" | "22mp" | "21mp" | "20mp" | "19mp" | "18mp" | "17mp" | "16mp" | "15mp" | "14mp" | "13mp" | "12mp" | "11mp" | "10mp" | "10k" | "9mp" | "9k_plus" | "9k" | "8mp" | "8k_plus" | "8k" | "7mp" | "7k_plus" | "7k" | "6mp" | "6k_plus" | "6k" | "6_ft_apart" | "5mp" | "5k_plus" | "5k" | "5g" | "4mp" | "4k_plus" | "4k" | "4g_plus_mobiledata" | "4g_mobiledata" | "3p" | "3mp" | "3k_plus" | "3k" | "3g_mobiledata" | "3d_rotation" | "2mp" | "2k_plus" | "2k" | "1x_mobiledata" | "1k_plus" | "1k" | "fork" | "abstract_instance" | "action_chains" | "activate_subscriptions" | "admin" | "ai_healing" | "api_alt" | "application" | "application_incomplete" | "application_instance" | "application_window" | "bootstrapping" | "branch" | "check_box_blank" | "compare_states" | "configuration_file" | "critical_bug" | "daemon" | "daemon_set" | "data_scientist" | "diff_modified" | "drive_file_rename" | "file_system" | "init_container" | "ip" | "kubelet" | "machine_learning" | "master" | "miscellaneous" | "modified_date" | "molecules" | "network_file_system" | "network_policy" | "node" | "organisms" | "organization" | "package_upgrade" | "packages" | "patch_fixes" | "patterns" | "pin_number" | "pipeline" | "pod" | "pod_autoscaler" | "pod_security" | "product_classes" | "product_subscriptions" | "products" | "project" | "proxy" | "pull_request" | "quota" | "replay_circle" | "role_binding" | "sandbox" | "scientist" | "secure_data" | "service" | "service_instance" | "service_plan" | "software" | "stateful_set" | "sticky_note" | "storage_class" | "subscriptions_created" | "symlink" | "system_image" | "system_ok" | "templates" | "virtual_reality" | "volume_binding"

      # solid

      src/types.ts#L14

        "light" | "search" | "repeat" | "anchor" | "link" | "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" | "list" | "lock" | "map" | "memory" | "mic" | "mouse" | "outlet" | "palette" | "pause" | "person" | "phone" | "pin" | "power" | "receipt" | "reply" | "router" | "save" | "send" | "share" | "shield" | "shop" | "shuffle" | "speaker" | "spellcheck" | "star" | "stars" | "stop" | "tablet" | "tag" | "terminal" | "translate" | "tv" | "umbrella" | "upload" | "usb" | "voicemail" | "watch" | "water" | "wifi" | "window" | "close" | "edit" | "feed" | "home" | "menu" | "message" | "move" | "photo" | "print" | "settings" | "volume" | "work" | "abstract" | "add" | "album" | "attachment" | "attribution" | "block" | "bolt" | "coffee" | "comment" | "compress" | "copyright" | "dialpad" | "euro" | "expand" | "extension" | "games" | "icecream" | "insights" | "loupe" | "maximize" | "minimize" | "more" | "notes" | "notifications" | "password" | "performance" | "piano" | "redo" | "remove" | "reorder" | "shortcut" | "smartphone" | "style" | "support" | "sync" | "tab" | "terrain" | "thermostat" | "timelapse" | "timer" | "today" | "undo" | "atm" | "bathtub" | "bed" | "bento" | "cake" | "computer" | "construction" | "hotel" | "label" | "loop" | "package" | "park" | "radio" | "satellite" | "school" | "secret" | "shower" | "train" | "tram" | "warning" | "wc" | "airplay" | "delete" | "monitor" | "navigation" | "accessibility" | "cancel" | "dashboard" | "female" | "flare" | "flask" | "flip" | "garage" | "group" | "hd" | "language" | "leaderboard" | "lens" | "male" | "movie" | "network" | "refresh" | "skateboarding" | "soap" | "stroller" | "android" | "email" | "accessible" | "api" | "apps" | "backpack" | "badge" | "container" | "details" | "devices" | "directions" | "elevator" | "exposure" | "fence" | "gavel" | "grain" | "help" | "highlight" | "history" | "login" | "logout" | "luggage" | "moped" | "nfc" | "note" | "pool" | "radar" | "report" | "route" | "slideshow" | "stairs" | "subscript" | "superscript" | "timeline" | "wallpaper" | "ai" | "mp" | "sd" | "zoom_out_map" | "zoom_out" | "zoom_in" | "youtube_searched_for" | "yard" | "wysiwyg" | "wrong_location" | "wrap_text" | "workspaces" | "work_off" | "wine_bar" | "wifi_tethering_off" | "wifi_tethering_error_rounded" | "wifi_tethering" | "wifi_protected_setup" | "wifi_off" | "wifi_lock" | "wifi_calling_3" | "wifi_calling" | "widgets" | "where_to_vote" | "wheelchair_pickup" | "whatshot" | "west" | "weekend" | "web_asset_off" | "web_asset" | "web" | "wb_twilight" | "wb_sunny" | "wb_shade" | "wb_iridescent" | "wb_incandescent" | "wb_auto" | "waving_hand" | "waves" | "waterfall_chart" | "water_drop" | "water_damage" | "wash" | "vrpano" | "vpn_lock" | "vpn_key" | "volunteer_activism" | "volume_up" | "volume_off" | "volume_mute" | "volume_down" | "voice_over_off" | "voice_chat" | "visibility_off" | "visibility" | "villa" | "vignette" | "view_week" | "view_stream" | "view_sidebar" | "view_quilt" | "view_module" | "view_list" | "view_in_ar" | "view_headline" | "view_day" | "view_compact" | "view_comfy" | "view_column" | "view_carousel" | "view_array" | "view_agenda" | "videogame_asset_off" | "videogame_asset" | "videocam_off" | "videocam" | "video_stable" | "video_settings" | "video_library" | "video_label" | "video_camera_front" | "video_camera_back" | "video_call" | "vibration" | "vertical_split" | "vertical_distribute" | "vertical_align_top" | "vertical_align_center" | "vertical_align_bottom" | "verified_user" | "verified" | "usb_off" | "upload_file" | "upgrade" | "update_disabled" | "update" | "upcoming" | "unsubscribe" | "unpublished" | "unfold_more" | "unfold_less" | "unarchive" | "two_wheeler" | "tv_off" | "tungsten" | "tune" | "tty" | "try" | "trip_origin" | "trending_up" | "trending_flat" | "trending_down" | "travel_explore" | "transit_enterexit" | "transgender" | "transform" | "transfer_within_a_station" | "traffic" | "track_changes" | "toys" | "tour" | "touch_app" | "tonality" | "toll" | "toggle_on" | "toggle_off" | "toc" | "title" | "tips_and_updates" | "timer_off" | "timer_10_select" | "timer_10" | "timer_3_select" | "timer_3" | "time_to_leave" | "thumbs_up_down" | "thumb_up" | "thumb_down" | "thermostat_auto" | "theaters" | "theater_comedy" | "texture" | "textsms" | "text_snippet" | "text_rotation_none" | "text_rotation_down" | "text_rotation_angleup" | "text_rotation_angledown" | "text_rotate_vertical" | "text_rotate_up" | "text_format" | "text_fields" | "taxi_alert" | "task_alt" | "task" | "tapas" | "tap_and_play" | "takeout_dining" | "tag_faces" | "tablet_mac" | "tablet_android" | "table_view" | "table_rows" | "table_chart" | "tab_unselected" | "system_update_alt" | "system_update" | "system_security_update_warning" | "system_security_update" | "sync_problem" | "sync_disabled" | "sync_alt" | "switch_video" | "switch_right" | "switch_left" | "switch_camera" | "switch_account" | "swipe" | "swap_vertical_circle" | "swap_vert" | "swap_horizontal_circle" | "swap_horiz" | "swap_calls" | "surround_sound" | "surfing" | "support_agent" | "supervisor_account" | "supervised_user_circle" | "summarize" | "subway" | "subtitles_off" | "subtitles" | "subscriptions" | "subject" | "subdirectory_arrow_right" | "subdirectory_arrow_left" | "strikethrough_s" | "streetview" | "stream" | "straighten" | "storm" | "storefront" | "store" | "storage" | "stop_screen_share" | "stop_circle" | "stay_current_portrait" | "stay_current_landscape" | "star_half" | "stacked_line_chart" | "stacked_bar_chart" | "square_foot" | "sports_volleyball" | "sports_tennis" | "sports_soccer" | "sports_score" | "sports_rugby" | "sports_motorsports" | "sports_mma" | "sports_kabaddi" | "sports_hockey" | "sports_handball" | "sports_golf" | "sports_football" | "sports_esports" | "sports_cricket" | "sports_basketball" | "sports_baseball" | "sports_bar" | "sports" | "splitscreen" | "speed" | "speaker_phone" | "speaker_notes_off" | "speaker_notes" | "speaker_group" | "space_bar" | "spa" | "south_west" | "south_east" | "south" | "source" | "sort_by_alpha" | "sort" | "social_distance" | "snowshoeing" | "snowmobile" | "snowboarding" | "snooze" | "snippet_folder" | "sms_failed" | "sms" | "smoking_rooms" | "smoke_free" | "smart_toy" | "smart_screen" | "smart_display" | "smart_button" | "slow_motion_video" | "sledding" | "skip_previous" | "skip_next" | "sip" | "single_bed" | "sim_card_download" | "sim_card_alert" | "sim_card" | "signal_wifi_statusbar_null" | "signal_wifi_statusbar_connected_no_internet_4" | "signal_wifi_statusbar_4_bar" | "signal_wifi_off" | "signal_wifi_bad" | "signal_cellular_off" | "signal_cellular_null" | "signal_cellular_nodata" | "signal_cellular_no_sim" | "signal_cellular_alt" | "sick" | "shutter_speed" | "shuffle_on" | "show_chart" | "short_text" | "shopping_cart" | "shopping_basket" | "shopping_bag" | "shop_two" | "share_location" | "settings_voice" | "settings_system_daydream" | "settings_suggest" | "settings_remote" | "settings_power" | "settings_phone" | "settings_overscan" | "settings_input_svideo" | "settings_input_hdmi" | "settings_input_component" | "settings_input_antenna" | "settings_ethernet" | "settings_cell" | "settings_brightness" | "settings_bluetooth" | "settings_backup_restore" | "settings_applications" | "settings_accessibility" | "set_meal" | "sentiment_very_satisfied" | "sentiment_very_dissatisfied" | "sentiment_satisfied" | "sentiment_neutral" | "sentiment_dissatisfied" | "sensors_off" | "sensors" | "sensor_window" | "sensor_door" | "send_to_mobile" | "send_and_archive" | "sell" | "self_improvement" | "select_all" | "segment" | "security_update_warning" | "security_update_good" | "security_update" | "security" | "search_off" | "sd_card" | "screenshot" | "screen_share" | "screen_search_desktop" | "screen_rotation" | "screen_lock_rotation" | "screen_lock_portrait" | "screen_lock_landscape" | "score" | "science" | "schema" | "schedule_send" | "schedule" | "scatter_plot" | "scanner" | "savings" | "saved_search" | "save_alt" | "sanitizer" | "sailing" | "safety_divider" | "rv_hookup" | "running_with_errors" | "run_circle" | "rule_folder" | "rule" | "rtt" | "rsvp" | "rss_feed" | "rowing" | "rounded_corner" | "rotate_right" | "rotate_left" | "rotate_90_degrees_ccw" | "room_service" | "room_preferences" | "roofing" | "ring_volume" | "rice_bowl" | "reviews" | "restore_page" | "restore_from_trash" | "restore" | "restaurant_menu" | "restaurant" | "restart_alt" | "reset_tv" | "request_quote" | "report_off" | "reply_all" | "replay_30" | "replay_10" | "replay_5" | "replay" | "repeat_one_on" | "repeat_one" | "repeat_on" | "remove_shopping_cart" | "remove_red_eye" | "remove_moderator" | "remove_from_queue" | "remove_done" | "remove_circle" | "remember_me" | "reduce_capacity" | "recycling" | "record_voice_over" | "recommend" | "recent_actors" | "receipt_long" | "read_more" | "raw_on" | "raw_off" | "rate_review" | "ramen_dining" | "railway_alert" | "radio_button_unchecked" | "radio_button_checked" | "r_mobiledata" | "quiz" | "quickreply" | "queue_play_next" | "queue_music" | "question_answer" | "query_stats" | "qr_code_scanner" | "qr_code" | "push_pin" | "published_with_changes" | "publish" | "public_off" | "public" | "psychology" | "production_quantity_limits" | "private_connectivity" | "privacy_tip" | "priority_high" | "print_disabled" | "price_check" | "price_change" | "preview" | "present_to_all" | "pregnant_woman" | "precision_manufacturing" | "power_settings_new" | "power_off" | "power_input" | "post_add" | "portrait" | "portable_wifi_off" | "polymer" | "policy" | "point_of_sale" | "podcasts" | "plumbing" | "playlist_play" | "playlist_add_check" | "playlist_add" | "play_lesson" | "play_for_work" | "play_disabled" | "play_circle" | "play_arrow" | "plagiarism" | "pivot_table_chart" | "pin_invoke" | "pin_end" | "pin_drop" | "pie_chart" | "picture_in_picture_alt" | "picture_in_picture" | "picture_as_pdf" | "piano_off" | "photo_size_select_small" | "photo_size_select_large" | "photo_size_select_actual" | "photo_library" | "photo_filter" | "photo_camera_front" | "photo_camera_back" | "photo_album" | "phonelink_setup" | "phonelink_ring" | "phonelink_off" | "phonelink_lock" | "phonelink_erase" | "phonelink" | "phone_paused" | "phone_missed" | "phone_locked" | "phone_iphone" | "phone_in_talk" | "phone_forwarded" | "phone_enabled" | "phone_disabled" | "phone_callback" | "phone_bluetooth_speaker" | "phone_android" | "pets" | "pest_control_rodent" | "pest_control" | "person_search" | "person_remove" | "person_pin_circle" | "person_pin" | "person_off" | "person_add_disabled" | "person_add_alt" | "person_add" | "perm_scan_wifi" | "perm_phone_msg" | "perm_media" | "perm_device_information" | "perm_data_setting" | "perm_contact_calendar" | "perm_camera_mic" | "pending_actions" | "pending" | "pedal_bike" | "payments" | "pause_presentation" | "pause_circle" | "pattern" | "party_mode" | "paragliding" | "panorama_wide_angle" | "panorama_vertical" | "panorama_photosphere" | "panorama_horizontal" | "panorama" | "pan_tool" | "paid" | "pageview" | "pages" | "padding" | "outdoor_grill" | "outbox" | "outbound" | "other_houses" | "open_with" | "open_in_new_off" | "open_in_new" | "open_in_full" | "open_in_browser" | "opacity" | "online_prediction" | "ondemand_video" | "offline_share" | "offline_pin" | "offline_bolt" | "notifications_paused" | "notifications_off" | "notifications_none" | "notifications_active" | "notification_important" | "notification_add" | "note_alt" | "note_add" | "not_started" | "not_listed_location" | "not_interested" | "not_accessible" | "north_west" | "north_east" | "north" | "nordic_walking" | "no_transfer" | "no_stroller" | "no_sim" | "no_photography" | "no_meeting_room" | "no_meals" | "no_luggage" | "no_food" | "no_flash" | "no_encryption" | "no_drinks" | "no_cell" | "no_backpack" | "no_accounts" | "nights_stay" | "nightlight_round" | "nightlight" | "nightlife" | "night_shelter" | "next_week" | "next_plan" | "new_releases" | "new_label" | "network_wifi" | "network_locked" | "network_check" | "network_cell" | "nearby_off" | "nearby_error" | "near_me_disabled" | "near_me" | "nature_people" | "nature" | "nat" | "music_video" | "music_off" | "music_note" | "museum" | "multiple_stop" | "multiline_chart" | "moving" | "movie_filter" | "move_to_inbox" | "motion_photos_pause" | "motion_photos_on" | "motion_photos_off" | "motion_photos_auto" | "more_vert" | "more_time" | "more_horiz" | "mood_bad" | "mood" | "monochrome_photos" | "monitor_weight" | "money_off" | "money" | "monetization_on" | "model_training" | "mode_standby" | "mode_night" | "mode_edit" | "mode_comment" | "mobiledata_off" | "mobile_screen_share" | "mobile_off" | "mobile_friendly" | "mms" | "missed_video_call" | "miscellaneous_services" | "military_tech" | "microwave" | "mic_off" | "mic_none" | "mic_external_on" | "mic_external_off" | "merge_type" | "merge" | "menu_open" | "menu_book" | "meeting_room" | "medication" | "medical_services" | "mediation" | "media_bluetooth_on" | "media_bluetooth_off" | "masks" | "markunread_mailbox" | "mark_email_unread" | "mark_email_read" | "mark_chat_unread" | "mark_chat_read" | "mark_as_unread" | "margin" | "maps_ugc" | "manage_search" | "manage_accounts" | "lunch_dining" | "lte_plus_mobiledata" | "lte_mobiledata" | "loyalty" | "low_priority" | "looks_two" | "looks_one" | "looks_6" | "looks_5" | "looks_4" | "looks_3" | "looks" | "lock_open" | "lock_clock" | "location_on" | "location_off" | "location_city" | "local_taxi" | "local_shipping" | "local_see" | "local_printshop" | "local_post_office" | "local_police" | "local_play" | "local_pizza" | "local_phone" | "local_pharmacy" | "local_parking" | "local_mall" | "local_library" | "local_laundry_service" | "local_hospital" | "local_gas_station" | "local_florist" | "local_fire_department" | "local_drink" | "local_dining" | "local_convenience_store" | "local_car_wash" | "local_cafe" | "local_bar" | "local_atm" | "local_activity" | "living" | "live_tv" | "live_help" | "list_alt" | "liquor" | "linked_camera" | "link_off" | "linear_scale" | "line_weight" | "line_style" | "light_mode" | "library_music" | "library_books" | "library_add_check" | "library_add" | "lens_blur" | "legend_toggle" | "leak_remove" | "leak_add" | "layers_clear" | "launch" | "last_page" | "laptop_windows" | "laptop_mac" | "laptop_chromebook" | "landscape" | "label_off" | "label_important" | "kitesurfing" | "kitchen" | "king_bed" | "keyboard_voice" | "keyboard_tab" | "keyboard_return" | "keyboard_hide" | "keyboard_capslock" | "keyboard_backspace" | "keyboard_arrow_up" | "keyboard_arrow_right" | "keyboard_arrow_left" | "keyboard_arrow_down" | "keyboard_alt" | "kayaking" | "iso" | "iron" | "ios_share" | "invert_colors_off" | "invert_colors" | "inventory" | "integration_instructions" | "insert_photo" | "insert_link" | "insert_invitation" | "insert_emoticon" | "insert_drive_file" | "insert_comment" | "insert_chart" | "input" | "indeterminate_check_box" | "incomplete_circle" | "important_devices" | "import_export" | "import_contacts" | "imagesearch_roller" | "image_search" | "image_not_supported" | "image_aspect_ratio" | "ice_skating" | "hvac" | "http" | "how_to_vote" | "how_to_reg" | "houseboat" | "house_siding" | "hourglass_top" | "hourglass_full" | "hourglass_empty" | "hourglass_disabled" | "hourglass_bottom" | "hotel_class" | "hot_tub" | "horizontal_split" | "horizontal_rule" | "horizontal_distribute" | "home_work" | "home_repair_service" | "home_mini" | "home_max" | "holiday_village" | "history_toggle_off" | "history_edu" | "hiking" | "highlight_off" | "highlight_alt" | "high_quality" | "hide_source" | "hide_image" | "hevc" | "help_center" | "height" | "hearing_disabled" | "hearing" | "health_and_safety" | "healing" | "headset_off" | "headset_mic" | "headphones_battery" | "hdr_weak" | "hdr_strong" | "hdr_plus" | "hdr_on_select" | "hdr_on" | "hdr_off_select" | "hdr_off" | "hdr_enhanced_select" | "hdr_auto_select" | "hdr_auto" | "hardware" | "handyman" | "hail" | "h_plus_mobiledata" | "h_mobiledata" | "groups" | "group_work" | "group_off" | "group_add" | "grid_view" | "grid_on" | "grid_off" | "grid_goldenratio" | "grid_4x4" | "grid_3x3" | "grass" | "graphic_eq" | "grading" | "gradient" | "grade" | "gps_off" | "gps_not_fixed" | "gps_fixed" | "gpp_maybe" | "gpp_good" | "gpp_bad" | "golf_course" | "gite" | "gif" | "gesture" | "generating_tokens" | "g_translate" | "g_mobiledata" | "functions" | "fullscreen_exit" | "front_hand" | "free_cancellation" | "free_breakfast" | "foundation" | "forward_to_inbox" | "forward_30" | "forward_10" | "forward_5" | "forum" | "format_underlined" | "format_textdirection_r_to_l" | "format_textdirection_l_to_r" | "format_strikethrough" | "format_size" | "format_shapes" | "format_quote" | "format_paint" | "format_list_numbered_rtl" | "format_list_numbered" | "format_list_bulleted" | "format_line_spacing" | "format_italic" | "format_indent_increase" | "format_indent_decrease" | "format_color_text" | "format_color_reset" | "format_color_fill" | "format_clear" | "format_bold" | "format_align_right" | "format_align_left" | "format_align_justify" | "format_align_center" | "food_bank" | "font_download_off" | "font_download" | "follow_the_signs" | "folder_special" | "folder_shared" | "folder_open" | "fmd_good" | "fmd_bad" | "flutter_dash" | "flourescent" | "flip_to_front" | "flip_to_back" | "flip_camera_ios" | "flip_camera_android" | "flight_takeoff" | "flight_land" | "flatware" | "flashlight_on" | "flashlight_off" | "flash_on" | "flash_off" | "flash_auto" | "flaky" | "fitness_center" | "fit_screen" | "first_page" | "fireplace" | "fire_extinguisher" | "find_replace" | "find_in_page" | "filter_vintage" | "filter_tilt_shift" | "filter_none" | "filter_list" | "filter_hdr" | "filter_frames" | "filter_drama" | "filter_center_focus" | "filter_b_and_w" | "filter_alt" | "filter_9_plus" | "filter_9" | "filter_8" | "filter_7" | "filter_6" | "filter_5" | "filter_4" | "filter_3" | "filter_2" | "filter_1" | "file_present" | "file_download_off" | "file_download_done" | "file_copy" | "fiber_smart_record" | "fiber_pin" | "fiber_new" | "fiber_manual_record" | "fiber_dvr" | "festival" | "feedback" | "featured_video" | "featured_play_list" | "favorite" | "fastfood" | "fast_rewind" | "fast_forward" | "family_restroom" | "fact_check" | "face_retouching_off" | "face_retouching_natural" | "face" | "extension_off" | "exposure_zero" | "exposure_plus_2" | "exposure_plus_1" | "exposure_neg_2" | "exposure_neg_1" | "explore_off" | "explore" | "exit_to_app" | "event_seat" | "event_note" | "event_busy" | "event_available" | "event" | "ev_station" | "escalator_warning" | "escalator" | "error" | "equalizer" | "enhanced_encryption" | "engineering" | "emoji_transportation" | "emoji_symbols" | "emoji_people" | "emoji_objects" | "emoji_nature" | "emoji_food_beverage" | "emoji_flags" | "emoji_events" | "emoji_emotions" | "emergency" | "electrical_services" | "electric_scooter" | "electric_rickshaw" | "electric_moped" | "electric_car" | "electric_bike" | "elderly" | "edit_road" | "edit_off" | "edit_notifications" | "edit_note" | "edit_location_alt" | "edit_location" | "edit_calendar" | "edit_attributes" | "edgesensor_low" | "edgesensor_high" | "eco" | "earbuds_battery" | "e_mobiledata" | "dynamic_form" | "dynamic_feed" | "dvr" | "duo" | "dry_cleaning" | "dry" | "drive_folder_upload" | "drive_file_move_rtl" | "drive_file_move" | "drive_eta" | "draw" | "drag_indicator" | "drag_handle" | "drafts" | "downloading" | "download_for_offline" | "download_done" | "downhill_skiing" | "double_arrow" | "doorbell" | "door_sliding" | "door_front" | "door_back" | "donut_small" | "donut_large" | "done_all" | "done" | "domain_verification" | "domain_disabled" | "domain" | "document_scanner" | "dock" | "do_not_touch" | "do_not_step" | "do_not_disturb_on_total_silence" | "do_not_disturb_on" | "do_not_disturb_off" | "do_not_disturb_alt" | "do_not_disturb" | "dns" | "disc_full" | "disabled_visible" | "disabled_by_default" | "dirty_lens" | "directions_walk" | "directions_subway" | "directions_run" | "directions_railway" | "directions_off" | "directions_car" | "directions_bus" | "directions_boat" | "directions_bike" | "dinner_dining" | "dining" | "dialer_sip" | "devices_other" | "device_unknown" | "device_thermostat" | "device_hub" | "developer_mode" | "developer_board_off" | "developer_board" | "desktop_windows" | "desktop_mac" | "desktop_access_disabled" | "design_services" | "description" | "departure_board" | "delivery_dining" | "delete_sweep" | "delete_forever" | "dehaze" | "deck" | "date_range" | "data_usage" | "data_saver_on" | "data_exploration" | "dashboard_customize" | "dark_mode" | "dangerous" | "cruelty_free" | "crop_square" | "crop_rotate" | "crop_portrait" | "crop_original" | "crop_landscape" | "crop_free" | "crop_din" | "crop_16_9" | "crop_7_5" | "crop_5_4" | "crop_3_2" | "crib" | "credit_score" | "credit_card_off" | "credit_card" | "create_new_folder" | "countertops" | "cottage" | "corporate_fare" | "coronavirus" | "copy_all" | "control_point_duplicate" | "control_camera" | "content_paste_off" | "content_paste" | "content_cut" | "content_copy" | "contacts" | "contactless" | "contact_support" | "contact_phone" | "contact_page" | "contact_mail" | "connected_tv" | "connect_without_contact" | "confirmation_number" | "compost" | "compass_calibration" | "compare_arrows" | "compare" | "commute" | "commit" | "comment_bank" | "colorize" | "color_lens" | "collections_bookmark" | "collections" | "coffee_maker" | "code_off" | "cloud_upload" | "cloud_off" | "cloud_download" | "cloud_done" | "cloud_circle" | "closed_caption_off" | "closed_caption_disabled" | "closed_caption" | "close_fullscreen" | "clear_all" | "cleaning_services" | "clean_hands" | "circle_notifications" | "chrome_reader_mode" | "child_friendly" | "child_care" | "checkroom" | "checklist_rtl" | "checklist" | "check_circle" | "check_box" | "chat_bubble" | "charging_station" | "change_history" | "change_circle" | "chalet" | "chair_alt" | "chair" | "center_focus_weak" | "center_focus_strong" | "cell_wifi" | "celebration" | "category" | "catching_pokemon" | "cast_for_education" | "cast_connected" | "casino" | "cases" | "carpenter" | "card_travel" | "card_membership" | "card_giftcard" | "car_repair" | "car_rental" | "cancel_schedule_send" | "cancel_presentation" | "campaign" | "cameraswitch" | "camera_roll" | "camera_rear" | "camera_outdoor" | "camera_indoor" | "camera_front" | "camera_enhance" | "camera_alt" | "call_to_action" | "call_split" | "call_received" | "call_missed_outgoing" | "call_missed" | "call_merge" | "call_made" | "call_end" | "call" | "calendar_view_week" | "calendar_view_month" | "calendar_view_day" | "calendar_today" | "calculate" | "cached" | "cable" | "cabin" | "business_center" | "business" | "bus_alert" | "burst_mode" | "bungalow" | "build_circle" | "build" | "bug_report" | "bubble_chart" | "brunch_dining" | "browser_not_supported" | "broken_image" | "brightness_medium" | "brightness_low" | "brightness_high" | "brightness_auto" | "brightness_4" | "brightness_3" | "brightness_2" | "breakfast_dining" | "branding_watermark" | "border_vertical" | "border_top" | "border_style" | "border_right" | "border_outer" | "border_left" | "border_inner" | "border_horizontal" | "border_color" | "border_clear" | "border_bottom" | "border_all" | "bookmark_remove" | "bookmark_added" | "bookmark_add" | "book_online" | "blur_on" | "blur_off" | "blur_linear" | "blur_circular" | "bluetooth_searching" | "bluetooth_drive" | "bluetooth_disabled" | "bluetooth_connected" | "bloodtype" | "blender" | "biotech" | "bike_scooter" | "beenhere" | "bedtime" | "bedroom_parent" | "bedroom_child" | "bedroom_baby" | "beach_access" | "battery_unknown" | "battery_saver" | "battery_full" | "battery_charging_full" | "battery_alert" | "bathroom" | "batch_prediction" | "bar_chart" | "ballot" | "balcony" | "bakery_dining" | "backup_table" | "back_hand" | "baby_changing_station" | "av_timer" | "autorenew" | "autofps_select" | "auto_stories" | "auto_graph" | "auto_fix_off" | "auto_fix_normal" | "auto_fix_high" | "auto_delete" | "auto_awesome_motion" | "auto_awesome_mosaic" | "auto_awesome" | "audiotrack" | "attractions" | "attach_money" | "attach_file" | "attach_email" | "assistant_photo" | "assistant_direction" | "assistant" | "assignment_turned_in" | "assignment_returned" | "assignment_return" | "assignment_late" | "assignment_ind" | "assignment" | "aspect_ratio" | "article" | "art_track" | "arrow_upward" | "arrow_right_alt" | "arrow_right" | "arrow_left" | "arrow_forward_ios" | "arrow_forward" | "arrow_drop_up" | "arrow_drop_down_circle" | "arrow_drop_down" | "arrow_downward" | "arrow_circle_up" | "arrow_circle_down" | "arrow_back_ios" | "arrow_back" | "area_chart" | "architecture" | "approval" | "app_settings_alt" | "app_registration" | "app_blocking" | "apartment" | "aod" | "announcement" | "animation" | "analytics" | "alternate_email" | "alt_route" | "all_out" | "all_inclusive" | "all_inbox" | "align_vertical_top" | "align_vertical_center" | "align_vertical_bottom" | "align_horizontal_right" | "align_horizontal_left" | "align_horizontal_center" | "alarm_on" | "alarm_off" | "airport_shuttle" | "airplanemode_inactive" | "airplane_ticket" | "airline_seat_recline_normal" | "airline_seat_recline_extra" | "airline_seat_legroom_reduced" | "airline_seat_legroom_normal" | "airline_seat_legroom_extra" | "airline_seat_individual_suite" | "airline_seat_flat_angled" | "airline_seat_flat" | "air" | "agriculture" | "ads_click" | "admin_panel_settings" | "adjust" | "addchart" | "add_to_queue" | "add_to_home_screen" | "add_to_drive" | "add_task" | "add_shopping_cart" | "add_road" | "add_reaction" | "add_photo_alternate" | "add_moderator" | "add_location_alt" | "add_location" | "add_link" | "add_ic_call" | "add_comment" | "add_circle" | "add_chart" | "add_business" | "add_box" | "add_alert" | "add_alarm" | "add_a_photo" | "adb" | "ad_units" | "account_tree" | "account_circle" | "account_box" | "account_balance_wallet" | "account_balance" | "accessible_forward" | "accessibility_new" | "access_alarm" | "ac_unit" | "360" | "60fps_select" | "60fps" | "30fps_select" | "30fps" | "24mp" | "23mp" | "22mp" | "21mp" | "20mp" | "19mp" | "18mp" | "17mp" | "16mp" | "15mp" | "14mp" | "13mp" | "12mp" | "11mp" | "10mp" | "10k" | "9mp" | "9k_plus" | "9k" | "8mp" | "8k_plus" | "8k" | "7mp" | "7k_plus" | "7k" | "6mp" | "6k_plus" | "6k" | "6_ft_apart" | "5mp" | "5k_plus" | "5k" | "5g" | "4mp" | "4k_plus" | "4k" | "4g_plus_mobiledata" | "4g_mobiledata" | "3p" | "3mp" | "3k_plus" | "3k" | "3g_mobiledata" | "3d_rotation" | "2mp" | "2k_plus" | "2k" | "1x_mobiledata" | "1k_plus" | "1k" | "fork" | "abstract_instance" | "action_chains" | "activate_subscriptions" | "admin" | "ai_healing" | "api_alt" | "application" | "application_incomplete" | "application_instance" | "application_window" | "bootstrapping" | "branch" | "check_box_blank" | "compare_states" | "configuration_file" | "critical_bug" | "daemon" | "daemon_set" | "data_scientist" | "diff_modified" | "drive_file_rename" | "file_system" | "init_container" | "ip" | "kubelet" | "machine_learning" | "master" | "miscellaneous" | "modified_date" | "molecules" | "network_file_system" | "network_policy" | "node" | "organisms" | "organization" | "package_upgrade" | "packages" | "patch_fixes" | "patterns" | "pin_number" | "pipeline" | "pod" | "pod_autoscaler" | "pod_security" | "product_classes" | "product_subscriptions" | "products" | "project" | "proxy" | "pull_request" | "quota" | "replay_circle" | "role_binding" | "sandbox" | "scientist" | "secure_data" | "service" | "service_instance" | "service_plan" | "software" | "stateful_set" | "sticky_note" | "storage_class" | "subscriptions_created" | "symlink" | "system_image" | "system_ok" | "templates" | "virtual_reality" | "volume_binding" | "abstract_incomplete" | "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" | "endpoints" | "endpoints_connected" | "endpoints_disconnected" | "enhancement" | "inbound" | "ingress" | "job" | "monitoring" | "multistate" | "namespace" | "neural_network" | "persistent_volume" | "primitive" | "replica" | "replica_set" | "repositories" | "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

    src/types.ts#L16

      "feather" | "bold" | "search" | "repeat" | "anchor" | "link" | "type" | "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" | "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" | "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" | "umbrella" | "unlock" | "upload" | "voicemail" | "watch" | "wifi" | "wifi-off" | "wind" | "x" | "x-circle" | "x-octagon" | "x-square" | "youtube" | "zoom-in" | "zoom-out" | "edit" | "home" | "mail" | "menu" | "minus" | "move" | "music" | "settings" | "user" | "video" | "volume" | "align-left" | "align-right" | "coffee" | "copy" | "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" | "figma" | "framer" | "git-branch" | "git-commit" | "log-in" | "log-out" | "maximize" | "minimize" | "more-vertical" | "pocket" | "shopping-bag" | "shopping-cart" | "sidebar" | "smartphone" | "smile" | "trello" | "trending-down" | "package" | "radio" | "rewind" | "zap" | "airplay" | "alert-circle" | "alert-octagon" | "alert-triangle" | "align-justify" | "aperture" | "at-sign" | "bar-chart-2" | "bell-off" | "book-open" | "camera-off" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "chrome" | "cloud-off" | "codepen" | "codesandbox" | "crosshair" | "delete" | "divide" | "divide-circle" | "divide-square" | "dollar-sign" | "download-cloud" | "edit-2" | "edit-3" | "external-link" | "eye-off" | "fast-forward" | "frown" | "git-merge" | "git-pull-request" | "gitlab" | "hard-drive" | "help-circle" | "italic" | "layout" | "life-buoy" | "link-2" | "loader" | "map-pin" | "maximize-2" | "meh" | "message-circle" | "message-square" | "mic-off" | "minimize-2" | "minus-circle" | "minus-square" | "monitor" | "more-horizontal" | "mouse-pointer" | "navigation" | "navigation-2" | "pen-tool" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "refresh-ccw" | "refresh-cw" | "rotate-ccw" | "rotate-cw" | "share-2" | "shield-off" | "skip-back" | "target" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "tool" | "trash-2" | "trending-up" | "underline" | "upload-cloud" | "user-check" | "user-minus" | "user-plus" | "user-x" | "users" | "video-off" | "volume-1" | "volume-2" | "volume-x" | "zap-off"

    # flags

    src/types.ts#L17

      "at" | "hr" | "tv" | "cd" | "cl" | "id" | "ng" | "sa" | "tm" | "ad" | "ae" | "af" | "ag" | "ai" | "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" | "mp" | "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" | "sd" | "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

    src/types.ts#L18

      {

      # brands

      src/types.ts#L21

        "bootstrap" | "apple" | "behance" | "bluetooth" | "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" | "bitbucket" | "figma" | "gitter" | "npm" | "patreon" | "product-hunt" | "readme" | "sketch" | "trello" | "unsplash" | "chrome" | "codepen" | "gitlab" | "chromecast" | "creative-commons" | "css3" | "google-drive" | "html5" | "linux" | "safari" | "unity" | "airbnb" | "amazon" | "android" | "angellist" | "angular" | "bandcamp" | "bitcoin" | "blogger" | "buffer" | "centos" | "cloudflare" | "deezer" | "delicious" | "docker" | "dropbox" | "drupal" | "ebay" | "edge" | "ethereum" | "evernote" | "firefox" | "flickr" | "goodreads" | "imdb" | "java" | "kaggle" | "keybase" | "kickstarter" | "laravel" | "mailchimp" | "meetup" | "opera" | "orcid" | "php" | "python" | "qq" | "react" | "redhat" | "researchgate" | "rust" | "sass" | "slideshare" | "soundcloud" | "stumbleupon" | "teamspeak" | "tumblr" | "uber" | "ubuntu" | "untappd" | "viber" | "vk" | "xing" | "yahoo" | "yammer" | "yarn" | "yelp" | "gg" | "shopify" | "hive" | "500px" | "algolia" | "audible" | "aws" | "dailymotion" | "deviantart" | "digg" | "discourse" | "etsy" | "facebook-square" | "foursquare" | "google-plus" | "internet-explorer" | "invision" | "joomla" | "jsfiddle" | "less" | "magento" | "periscope" | "squarespace" | "stripe" | "vuejs" | "whatsapp-square" | "wix" | "node" | "font-awesome-logo-full" | "accessible-icon" | "accusoft" | "acquisitions-incorporated" | "adn" | "adversal" | "affiliatetheme" | "alipay" | "amazon-pay" | "amilia" | "angrycreative" | "app-store" | "app-store-ios" | "apper" | "apple-pay" | "artstation" | "asymmetrik" | "atlassian" | "autoprefixer" | "avianex" | "aviato" | "battle-net" | "behance-square" | "bimobject" | "bity" | "black-tie" | "blackberry" | "blogger-b" | "bluetooth-b" | "btc" | "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" | "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" | "deploydog" | "deskpro" | "dev" | "dhl" | "diaspora" | "digital-ocean" | "dochub" | "draft2digital" | "dribbble-square" | "dyalog" | "earlybirds" | "edge-legacy" | "elementor" | "ello" | "ember" | "empire" | "envira" | "erlang" | "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-g" | "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" | "keycdn" | "kickstarter-k" | "korvue" | "lastfm" | "lastfm-square" | "leanpub" | "linkedin-in" | "linode" | "lyft" | "mandalorian" | "maxcdn" | "mdb" | "medapps" | "medium-m" | "medrt" | "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" | "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" | "quinscape" | "r-project" | "raspberry-pi" | "ravelry" | "reacteurope" | "rebel" | "red-river" | "reddit-alien" | "reddit-square" | "renren" | "replyd" | "resolving" | "rev" | "rocketchat" | "rockrms" | "salesforce" | "schlix" | "scribd" | "searchengin" | "sellcast" | "sellsy" | "servicestack" | "shirtsinbulk" | "shopware" | "simplybuilt" | "sistrix" | "sith" | "skyatlas" | "slack-hash" | "snapchat-ghost" | "snapchat-square" | "sourcetree" | "speakap" | "speaker-deck" | "stack-exchange" | "stackpath" | "staylinked" | "steam-square" | "steam-symbol" | "sticker-mule" | "stripe-s" | "studiovinari" | "stumbleupon-circle" | "superpowers" | "supple" | "suse" | "swift" | "symfony" | "telegram-plane" | "tencent-weibo" | "the-red-yeti" | "themeco" | "themeisle" | "think-peaks" | "trade-federation" | "tumblr-square" | "twitter-square" | "typo3" | "uikit" | "umbraco" | "uncharted" | "uniregistry" | "ups" | "usps" | "ussunnah" | "vaadin" | "viacoin" | "viadeo" | "viadeo-square" | "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" | "yandex" | "yandex-international" | "yoast" | "youtube-square" | "zhihu"

      # regular

      src/types.ts#L20

        "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" | "edit" | "folder-open" | "user" | "comment" | "copy" | "copyright" | "smile" | "angry" | "dizzy" | "flushed" | "grin" | "handshake" | "kiss" | "lemon" | "registered" | "snowflake" | "frown" | "meh" | "minus-square" | "thumbs-down" | "thumbs-up" | "address-book" | "chart-bar" | "hand-rock" | "id-badge" | "user-circle" | "calendar-alt" | "comment-dots" | "file-archive" | "id-card" | "laugh" | "meh-blank" | "paper-plane" | "tired" | "trash-alt" | "window-close" | "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" | "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-scissors" | "hand-spock" | "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

      src/types.ts#L19

        "feather" | "fill" | "bold" | "search" | "anchor" | "link" | "at" | "running" | "align-center" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "asterisk" | "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" | "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" | "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" | "ban" | "desktop" | "edit" | "folder-open" | "home" | "microphone" | "minus" | "mobile" | "music" | "print" | "user" | "video" | "align-left" | "align-right" | "band-aid" | "battery-empty" | "bolt" | "coffee" | "comment" | "compress" | "copy" | "copyright" | "cross" | "crown" | "database" | "expand" | "ghost" | "hashtag" | "poll" | "redo" | "ring" | "ruler" | "shopping-bag" | "shopping-cart" | "smile" | "spinner" | "sync" | "toolbox" | "undo" | "ambulance" | "angry" | "atom" | "baby" | "bacon" | "bath" | "bed" | "beer" | "biohazard" | "bomb" | "bus" | "carrot" | "cat" | "cheese" | "church" | "cocktail" | "cookie" | "couch" | "dizzy" | "dog" | "dove" | "dragon" | "drum" | "fax" | "fire" | "fish" | "flushed" | "frog" | "grin" | "guitar" | "hamburger" | "handshake" | "heartbeat" | "helicopter" | "horse" | "hotdog" | "hotel" | "kaaba" | "kiss" | "lemon" | "medal" | "menorah" | "microscope" | "mosque" | "motorcycle" | "mountain" | "pager" | "parking" | "poop" | "pray" | "registered" | "restroom" | "ribbon" | "rocket" | "satellite" | "school" | "scroll" | "seedling" | "ship" | "shower" | "skull" | "smoking" | "snowflake" | "snowman" | "spider" | "swimmer" | "synagogue" | "syringe" | "taxi" | "toilet" | "tractor" | "train" | "tram" | "walking" | "wheelchair" | "align-justify" | "book-open" | "divide" | "dollar-sign" | "fast-forward" | "frown" | "italic" | "map-pin" | "meh" | "minus-circle" | "minus-square" | "mouse-pointer" | "thumbs-down" | "thumbs-up" | "underline" | "user-check" | "user-minus" | "user-plus" | "users" | "bowling-ball" | "city" | "compact-disc" | "cut" | "donate" | "female" | "flask" | "football-ball" | "glasses" | "industry" | "language" | "male" | "percentage" | "pizza-slice" | "shield-alt" | "soap" | "trademark" | "weight" | "ad" | "address-book" | "baby-carriage" | "barcode" | "bible" | "bone" | "border-none" | "car" | "car-crash" | "caravan" | "certificate" | "chart-area" | "chart-bar" | "chart-line" | "chart-pie" | "clipboard-list" | "dice" | "directions" | "dna" | "file-download" | "file-export" | "file-import" | "file-invoice" | "file-upload" | "gavel" | "hand-middle-finger" | "hand-rock" | "heading" | "heart-broken" | "history" | "ice-cream" | "id-badge" | "leaf" | "lock-open" | "lungs" | "mars" | "paw" | "pills" | "plane" | "plane-arrival" | "plane-departure" | "prescription" | "qrcode" | "road" | "route" | "signature" | "sitemap" | "sleigh" | "stethoscope" | "strikethrough" | "subscript" | "superscript" | "toilet-paper" | "unlink" | "user-circle" | "venus" | "virus" | "wave-square" | "om" | "th" | "warehouse" | "tty" | "transgender" | "subway" | "stream" | "store" | "spa" | "sort" | "snowboarding" | "sms" | "portrait" | "hiking" | "gamepad" | "equals" | "chair" | "blender" | "adjust" | "bong" | "book-reader" | "brain" | "calendar-alt" | "car-battery" | "chalkboard" | "chess" | "cog" | "comment-dots" | "cube" | "file-archive" | "first-aid" | "flag-checkered" | "gas-pump" | "hard-hat" | "id-card" | "landmark" | "laugh" | "low-vision" | "meh-blank" | "meteor" | "microchip" | "microphone-alt" | "paper-plane" | "paste" | "quote-left" | "quote-right" | "radiation" | "shapes" | "share-alt" | "spray-can" | "store-alt" | "tired" | "trash-alt" | "vial" | "braille" | "check-double" | "dumbbell" | "expand-alt" | "font" | "mobile-alt" | "podcast" | "power-off" | "street-view" | "window-close" | "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" | "caret-square-down" | "caret-square-left" | "caret-square-right" | "caret-square-up" | "cart-arrow-down" | "cash-register" | "chalkboard-teacher" | "charging-station" | "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" | "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" | "compress-alt" | "compress-arrows-alt" | "concierge-bell" | "cookie-bite" | "crop-alt" | "crosshairs" | "crow" | "crutch" | "cubes" | "deaf" | "democrat" | "dharmachakra" | "diagnoses" | "dice-d6" | "dice-d20" | "dice-five" | "dice-four" | "dice-one" | "dice-six" | "dice-three" | "dice-two" | "digital-tachograph" | "disease" | "dolly" | "dolly-flatbed" | "dot-circle" | "drafting-compass" | "draw-polygon" | "drum-steelpan" | "drumstick-bite" | "dumpster" | "dumpster-fire" | "dungeon" | "ellipsis-h" | "ellipsis-v" | "envelope-open-text" | "envelope-square" | "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-invoice-dollar" | "file-medical-alt" | "file-powerpoint" | "file-prescription" | "file-signature" | "file-video" | "fill-drip" | "fire-alt" | "fire-extinguisher" | "fist-raised" | "flag-usa" | "font-awesome-logo-full" | "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-paper" | "hand-peace" | "hand-point-down" | "hand-point-left" | "hand-point-right" | "hand-point-up" | "hand-pointer" | "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" | "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" | "icicles" | "icons" | "id-card-alt" | "igloo" | "indent" | "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-virus" | "mail-bulk" | "map-marked" | "map-marked-alt" | "map-marker" | "map-marker-alt" | "map-signs" | "marker" | "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" | "pen-alt" | "pen-fancy" | "pen-nib" | "pen-square" | "pencil-alt" | "pencil-ruler" | "people-arrows" | "people-carry" | "pepper-hot" | "person-booth" | "phone-alt" | "phone-slash" | "phone-square" | "phone-square-alt" | "phone-volume" | "photo-video" | "place-of-worship" | "plane-slash" | "poll-h" | "poo" | "poo-storm" | "pound-sign" | "praying-hands" | "prescription-bottle" | "prescription-bottle-alt" | "procedures" | "project-diagram" | "pump-medical" | "pump-soap" | "puzzle-piece" | "quidditch" | "quran" | "radiation-alt" | "random" | "record-vinyl" | "redo-alt" | "remove-format" | "republican" | "retweet" | "rss-square" | "ruble-sign" | "ruler-combined" | "ruler-horizontal" | "ruler-vertical" | "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" | "sim-card" | "sink" | "skating" | "skiing" | "skiing-nordic" | "skull-crossbones" | "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" | "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-slash" | "tooth" | "torah" | "torii-gate" | "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-double" | "venus-mars" | "vest" | "vest-patches" | "vials" | "video-slash" | "vihara" | "virus-slash" | "viruses" | "volleyball-ball" | "vote-yea" | "vr-cardboard" | "weight-hanging" | "window-maximize" | "window-minimize" | "window-restore" | "wine-bottle" | "wine-glass" | "wine-glass-alt" | "won-sign" | "x-ray" | "yen-sign"

      }

    # iconoir

    src/types.ts#L23

      "iconoir" | "bold" | "search" | "repeat" | "link" | "type" | "running" | "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" | "linkedin" | "list" | "lock" | "magnet" | "map" | "medium" | "megaphone" | "mic" | "mic-mute" | "octagon" | "palette" | "pentagon" | "phone" | "piggy-bank" | "pin" | "plus" | "printer" | "qr-code" | "server" | "shield" | "shield-check" | "shield-minus" | "shop" | "shuffle" | "snapchat" | "snow" | "sort-down" | "sort-up" | "square" | "table" | "telegram" | "tiktok" | "translate" | "trash" | "triangle" | "trophy" | "tv" | "twitter" | "union" | "upload" | "usb" | "wallet" | "wifi" | "wifi-off" | "wind" | "windows" | "youtube" | "zoom-in" | "zoom-out" | "edit" | "home" | "import" | "mail" | "menu" | "message" | "minus" | "settings" | "user" | "airplane" | "album" | "align-left" | "align-right" | "attachment" | "battery-empty" | "color-picker" | "compress" | "copy" | "copyright" | "dialpad" | "dollar" | "euro" | "expand" | "eye-alt" | "figma" | "git-branch" | "git-commit" | "gym" | "home-alt" | "linear" | "log-in" | "log-out" | "maximize" | "move-down" | "move-left" | "move-right" | "move-up" | "notes" | "pin-alt" | "pocket" | "redo" | "ruler" | "shopping-bag" | "timer" | "trello" | "undo" | "view-grid" | "atom" | "church" | "computer" | "cookie" | "fog" | "football" | "golf" | "medal" | "metro" | "parking" | "pound" | "smoking" | "tram" | "walking" | "yen" | "airplay" | "align-justify" | "bell-off" | "codepen" | "eye-off" | "git-merge" | "hard-drive" | "italic" | "minus-square" | "underline" | "1st-medal" | "4k-display" | "4x4-cell" | "360-view" | "accessibility" | "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" | "bowling-ball" | "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" | "cancel" | "car-outline" | "carbon" | "card-wallet" | "cart-alt" | "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" | "chromecast-active" | "church-alt" | "cinema-old" | "city" | "clock-outline" | "closet" | "cloud-book-alt" | "cloud-desync" | "cloud-error" | "cloud-sunny" | "cloud-sync" | "code-brackets" | "code-brackets-square" | "collage-frame" | "collapse" | "color-filter" | "color-picker-empty" | "combine" | "compact-disc" | "compress-lines" | "control-slider" | "corner-bottom-left" | "corner-bottom-right" | "corner-top-left" | "corner-top-right" | "cpu-warning" | "cracked-egg" | "creative-commons" | "credit-card-2" | "crop-rotate-bl" | "crop-rotate-br" | "crop-rotate-tl" | "crop-rotate-tr" | "css3" | "cursor-pointer" | "cut" | "cut-alt" | "cycling" | "dash-flag" | "dashboard" | "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" | "donate" | "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" | "ev-station" | "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" | "female" | "file-not-found" | "filter-alt" | "finder" | "fingerprint-circled" | "fingerprint-circled-error" | "fingerprint-circled-lock" | "fingerprint-circled-ok" | "fingerprint-phone" | "fingerprint-scan" | "fingerprint-squared" | "fire-flame" | "Fishing" | "flare" | "flash" | "flash-off" | "flask" | "flip" | "flip-reverse" | "flower" | "fluorine" | "folder-alert" | "font-size" | "football-ball" | "forward-15-seconds" | "forward-outline" | "frame" | "frame-alt" | "frame-alt-empty" | "frame-select" | "frame-simple" | "frame-tool" | "fridge" | "fx" | "fx-rounded" | "garage" | "gas" | "gas-tank" | "gas-tank-drop" | "github-outline" | "gitlab-full" | "glass-empty" | "glass-half" | "glass-half-alt" | "glasses" | "google-circled" | "google-docs" | "google-drive" | "google-drive-check" | "google-drive-sync" | "google-drive-warning" | "google-home" | "google-one" | "gps" | "grid-add" | "grid-minus" | "grid-remove" | "group" | "half-cookie" | "half-moon" | "hand-brake" | "hat" | "hd" | "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" | "html5" | "hydrogen" | "industry" | "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" | "language" | "laptop-charging" | "laptop-fix" | "laptop-issue" | "large-suitcase" | "layout-left" | "layout-right" | "leaderboard" | "leaderboard-star" | "left-round-arrow" | "lens" | "lifebelt" | "light-bulb" | "light-bulb-off" | "light-bulb-on" | "line-space" | "linux" | "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" | "male" | "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" | "movie" | "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" | "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" | "percentage-round" | "percentage-square" | "pharmacy-circled-cross" | "pharmacy-squared-cross" | "phone-add" | "phone-delete" | "phone-disabled" | "phone-income" | "phone-outcome" | "phone-paused" | "phone-remove" | "pizza-slice" | "planet" | "planet-alt" | "planet-sat" | "play-outline" | "playlist" | "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" | "question-mark-circle" | "question-square-outline" | "rain" | "receive-dollars" | "receive-euros" | "receive-pounds" | "receive-yens" | "redo-action" | "redo-circle" | "reduce" | "reduce-round-arrow" | "refresh" | "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" | "safari" | "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" | "selection" | "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-alt" | "shield-broken" | "shield-cross" | "shield-download" | "shield-eye" | "shield-loading" | "shield-question" | "shield-search" | "shield-upload" | "shop-alt" | "shopping-bag-add" | "shopping-bag-alt" | "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" | "skateboarding" | "skip-next-outline" | "skip-prev-outline" | "small-shop" | "small-shop-alt" | "smartphone-device" | "snow-flake" | "soap" | "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" | "stroller" | "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" | "tennis-ball-alt" | "terminal-outline" | "terminal-simple" | "test-tube" | "text" | "text-alt" | "text-size" | "three-stars" | "thunderstorm" | "timer-off" | "tower" | "tower-check" | "tower-no-access" | "tower-warning" | "trademark" | "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" | "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" | "weight-alt" | "white-flag" | "wifi-issue" | "wifi-rounded" | "wifi-signal-none" | "wrap-text" | "wristwatch" | "yen-square" | "yoga"

    # iconpark

    src/types.ts#L24

      {

      # Abstract

      src/types.ts#L37

        "asterisk" | "cone" | "display" | "export" | "sync" | "api-app" | "badge" | "texture" | "outbound" | "cube" | "cylinder" | "ad-product" | "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

      src/types.ts#L36

        "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "download" | "send" | "shuffle" | "upload" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "redo" | "trending-down" | "undo" | "up" | "trending-up" | "login" | "logout" | "rotate" | "switch" | "sort" | "recycling" | "to-top" | "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" | "rotation-horizontal" | "rotation-vertical" | "send-one" | "shuffle-one" | "sort-four" | "sort-one" | "sort-three" | "sort-two" | "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

      src/types.ts#L35

        "search" | "link" | "alarm" | "bluetooth" | "bookmark" | "box" | "broadcast" | "bug" | "camera" | "compass" | "filter" | "folder" | "gift" | "inbox" | "key" | "laptop" | "lightning" | "lock" | "mouse" | "pause" | "play" | "projector" | "puzzle" | "rss" | "save" | "share" | "shield" | "tag" | "terminal" | "trophy" | "umbrella" | "unlock" | "zoom-in" | "zoom-out" | "home" | "mail" | "video" | "browser" | "mail-open" | "ruler" | "scan" | "shopping-bag" | "sleep" | "flashlight" | "parking" | "pound" | "rocket" | "telescope" | "airplay" | "delete" | "monitor" | "phone-call" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "tool" | "female" | "glasses" | "male" | "movie" | "page" | "refresh" | "shield-add" | "test-tube" | "drone" | "api" | "devices" | "parachute" | "radar" | "report" | "windmill" | "screenshot" | "equalizer" | "clear" | "coupon" | "dislike" | "like" | "radiation" | "loading" | "fire-extinguisher" | "accept-email" | "aiming" | "balance-two" | "bill" | "bookmark-one" | "broadcast-radio" | "carousel-video" | "caution" | "click-tap" | "color-card" | "config" | "consume" | "cuvette" | "delete-one" | "delete-two" | "dislike-two" | "document-folder" | "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" | "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"

      # Books

      src/types.ts#L34

        "book" | "bookshelf" | "clipboard" | "envelope" | "folder-minus" | "folder-plus" | "table" | "view-list" | "folder-open" | "notes" | "notebook" | "book-open" | "doc-search" | "notepad" | "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

      src/types.ts#L33

        "apple" | "behance" | "facebook" | "github" | "google" | "instagram" | "paypal" | "telegram" | "tiktok" | "twitter" | "windows" | "youtube" | "figma" | "sketch" | "gitlab" | "facetime" | "android" | "dropbox" | "tumblr" | "wechat" | "messages" | "cc" | "health" | "foursquare" | "alipay" | "app-store" | "weibo" | "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-one" | "mitsubishi" | "oceanengine" | "orange-station" | "pangle" | "phone-two" | "qingniao-clue" | "qiyehao" | "renault" | "star-one" | "taobao" | "tencent-qq" | "topbuzz" | "tuchong" | "ulikecam" | "vigo" | "volkswagen" | "xigua" | "xingfuli" | "xingtu" | "youtobe" | "zijinyunying"

      # Build

      src/types.ts#L32

        "shop" | "hotel" | "school" | "city" | "garage" | "tower" | "elevator" | "prison" | "pyramid" | "castle" | "application" | "arc-de-triomphe" | "booth" | "brdige-three" | "bridge-one" | "bridge-two" | "building-four" | "building-one" | "building-three" | "building-two" | "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" | "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

      src/types.ts#L31

        "symbol" | "check" | "info" | "plus" | "close" | "minus" | "add" | "copyright" | "at-sign" | "percentage" | "reduce" | "trademark" | "bitcoin" | "ad" | "forbid" | "help" | "error" | "add-one" | "attention" | "big-x" | "ce-marking" | "check-one" | "check-small" | "close-one" | "close-small" | "correct" | "division" | "font-size-two" | "more-three" | "plus-cross" | "reduce-one" | "vip"

      # Charts

      src/types.ts#L30

        "data" | "chart-line" | "chart-pie" | "timeline" | "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

      src/types.ts#L29

        "boy" | "girl" | "family" | "crib" | "chair" | "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

      src/types.ts#L28

        "briefcase" | "handbag" | "bow" | "diamonds" | "necktie" | "hat" | "backpack" | "t-shirt" | "socks" | "vest" | "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

      src/types.ts#L27

        "message" | "comment" | "topic" | "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-discussion"

      # Connect

      src/types.ts#L26

        "anchor" | "command" | "ring" | "sum" | "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" | "tree-diagram" | "u-turn-down" | "u-turn-left" | "u-turn-right" | "u-turn-up" | "whole-site-accelerator"

      # Datas

      src/types.ts#L25

        "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

      src/types.ts#L38

        "fill" | "split" | "align-bottom" | "align-top" | "back" | "calendar" | "code" | "dot" | "file-excel" | "file-pdf" | "file-word" | "list" | "quote" | "star" | "edit" | "align-left" | "align-right" | "block" | "components" | "copy" | "more" | "code-brackets" | "font-size" | "group" | "scanning" | "stretching" | "text" | "brightness" | "direction" | "focus" | "list-numbers" | "perspective" | "scale" | "strikethrough" | "unlink" | "merge" | "margin" | "file-gif" | "file-jpg" | "file-txt" | "magic-wand" | "pound-sign" | "sort-amount-down" | "sort-amount-up" | "stamp" | "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-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" | "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-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" | "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" | "scanning-two" | "scatter-alignment" | "screenshot-one" | "screenshot-two" | "selected" | "selected-focus" | "send-backward" | "sent-to-back" | "share-three" | "share-two" | "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

      src/types.ts#L39

        "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

      src/types.ts#L40

        "egg" | "nut" | "bowl" | "icecream" | "avocado" | "banana" | "beer" | "bread" | "cake" | "candy" | "carrot" | "cheese" | "chicken" | "cooking" | "crab" | "croissant" | "doughnut" | "eggplant" | "fish" | "hamburger" | "lemon" | "lollipop" | "milk" | "peach" | "pear" | "pineapple" | "popcorn" | "rice" | "shrimp" | "spoon" | "tea" | "tomato" | "turkey" | "watermelon" | "bone" | "drink" | "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

      src/types.ts#L41

        "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

      src/types.ts#L42

        "fingerprint" | "move" | "reload" | "clap" | "cool" | "fist" | "five" | "four" | "one" | "six" | "three" | "two" | "thumbs-down" | "thumbs-up" | "zoom" | "point" | "hand-down" | "hand-left" | "hand-right" | "hand-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-out" | "press" | "respect" | "rock" | "rock-gesture" | "spider-man" | "swing" | "three-three" | "turn-on" | "two-fingers" | "two-hands" | "two-two" | "yep"

      # Hardware

      src/types.ts#L43

        "calculator" | "cpu" | "cup" | "hdd" | "keyboard" | "lamp" | "memory" | "phone" | "printer" | "robot" | "router" | "sd-card" | "server" | "speaker" | "thunderbolt" | "truck" | "tv" | "webcam" | "microphone" | "timer" | "bike" | "bus" | "cd" | "computer" | "iphone" | "radio" | "sound" | "toilet" | "trumpet" | "car" | "sd" | "subway" | "chip" | "memory-card" | "master" | "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

      src/types.ts#L44

        "heart" | "hospital" | "mask" | "eyes" | "microscope" | "weight" | "bottle" | "cell" | "pills" | "prescription" | "brain" | "injection" | "teeth" | "abdominal" | "anti-corrosion" | "cardioelectric" | "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

      src/types.ts#L45

        "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

      src/types.ts#L46

        "hanger" | "iron" | "beach-umbrella" | "bedside" | "bedside-two" | "door-handle" | "double-bed" | "hair-dryer" | "hanger-two" | "hotel-do-not-clean" | "hotel-please-clean" | "iron-disable" | "iron-three" | "iron-two" | "shower-head" | "single-bed" | "sofa-two"

      # Makeups

      src/types.ts#L47

        "scissors" | "lipstick" | "paint" | "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

      src/types.ts#L48

        "bank" | "wallet" | "dollar" | "shopping-cart" | "currency" | "exchange" | "swipe" | "add-subtract" | "bank-card" | "bank-card-one" | "bank-transfer" | "blockchain" | "commodity" | "credit" | "deposit" | "discovery-index" | "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

      src/types.ts#L49

        "headset" | "record" | "voicemail" | "volume-down" | "volume-mute" | "volume-up" | "music" | "mute" | "performance" | "piano" | "voice" | "fm" | "bell-ring" | "tape" | "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

      src/types.ts#L50

        "file-code" | "file-lock" | "file-music" | "file-ppt" | "file-text" | "file-zip" | "hourglass" | "paperclip" | "ticket" | "compression" | "label" | "file-search" | "file-settings" | "transform" | "security" | "schedule" | "file-doc" | "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-one" | "file-search-two" | "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

      src/types.ts#L51

        "magnet" | "pin" | "textarea" | "dark-mode" | "erase" | "color-filter" | "checkbox" | "click" | "contrast" | "viewfinder" | "add-mode" | "add-pic" | "aperture-priority" | "application-menu" | "beauty" | "bytedance-mini-app" | "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"

      # Others

      src/types.ts#L52

        "material" | "light" | "battery-full" | "diamond" | "fan" | "flag" | "globe" | "joystick" | "layers" | "magic" | "nintendo-switch" | "plug" | "power" | "signal" | "sim" | "thermometer" | "translate" | "tree" | "usb" | "water" | "wifi" | "battery-empty" | "carousel" | "crown" | "ghost" | "keyhole" | "baseball" | "basketball" | "fire" | "fireworks" | "football" | "leaves" | "ship" | "skull" | "taxi" | "tent" | "wheelchair" | "navigation" | "target" | "flask" | "gps" | "planet" | "certificate" | "christmas-tree" | "leaf" | "lifebuoy" | "panorama-horizontal" | "pennant" | "ripple" | "road" | "road-sign" | "sofa" | "steering-wheel" | "stethoscope" | "world" | "waves" | "coronavirus" | "checklist" | "balance" | "car-battery" | "game" | "id-card" | "vial" | "fork" | "branch" | "all-application" | "anchor-two" | "applet-closed" | "arithmetic-buttons" | "arrow-keys" | "audit" | "baby-bottle" | "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" | "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" | "light-member" | "local" | "local-pin" | "local-two" | "luminous" | "mac-finder" | "manual-gear" | "map-draw" | "map-road" | "map-road-two" | "map-two" | "mark" | "more-app" | "mouth" | "movie-board" | "multi-function-knife" | "outdoor" | "page-template" | "paper-money" | "parabola" | "pay-code" | "pinwheel" | "poker" | "ppt" | "pull-requests" | "radar-chart" | "ranking" | "ranking-list" | "receiver" | "red-envelopes" | "road-cone" | "rugby" | "sapling" | "shake" | "share-sys" | "signal-one" | "sinusoid" | "sleaves" | "slide-two" | "sliding-horizontal" | "sliding-vertical" | "snacks" | "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

      src/types.ts#L53

        "people" | "user" | "baby" | "woman" | "add-user" | "address-book" | "me" | "hands" | "passport" | "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

      src/types.ts#L54

        "thin" | "tennis" | "badminton" | "bowling" | "heartbeat" | "hockey" | "muscle" | "sailboat" | "soccer" | "volleyball" | "rings" | "treadmill" | "curling" | "helmet" | "scoreboard" | "rowing" | "chess" | "torch" | "dumbbell" | "skating" | "skiing-nordic" | "swimming-pool" | "archers-bow" | "arena" | "badge-two" | "balance-one" | "baokemeng" | "basketball-one" | "basketball-stand" | "black-eight" | "bottom-bar-one" | "boxing" | "boxing-one" | "checkerboard" | "chess-one" | "court" | "diving-bottle" | "diving-suit" | "five-star-badge" | "gold-medal" | "gold-medal-two" | "golf-course" | "gymnastics" | "gymnastics-one" | "kungfu" | "play-basketball" | "play-volleyball" | "riding" | "rollerskates" | "rope-skipping" | "rope-skipping-one" | "rugby-one" | "skate" | "soccer-one" | "softball" | "spikedshoes" | "spinning-top" | "sport" | "swimming-ring" | "tabletennis" | "target-one" | "target-two" | "towel" | "treadmill-one" | "waterpolo" | "waterpolo-one" | "weightlifting" | "whistling" | "wingsuit-flying"

      # Time

      src/types.ts#L55

        "stopwatch" | "watch" | "time" | "dashboard" | "history" | "speed" | "alarm-clock" | "big-clock" | "calendar-dot" | "calendar-thirty" | "calendar-thirty-two" | "calendar-three" | "iwatch" | "radar-two" | "speed-one"

      # Travel

      src/types.ts#L56

        "sunrise" | "cocktail" | "selfie" | "sandals" | "luggage" | "sailing" | "landscape" | "cable-car" | "transfer" | "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

      src/types.ts#L57

        "cloudy" | "moon" | "snow" | "sun" | "wind" | "fog" | "snowflake" | "sunny" | "heavy-rain" | "thunderstorm" | "cloudy-night" | "heavy-wind" | "light-rain" | "sandstorm" | "sun-one" | "thunderstorm-one"

      }

    # material

    src/types.ts#L59

      "light" | "search" | "repeat" | "anchor" | "link" | "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" | "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" | "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" | "close" | "edit" | "feed" | "home" | "mail" | "menu" | "message" | "minus" | "photo" | "print" | "settings" | "start" | "work" | "add" | "album" | "attachment" | "attribution" | "block" | "bolt" | "boy" | "coffee" | "comment" | "compress" | "copyright" | "dialpad" | "euro" | "expand" | "extension" | "games" | "girl" | "icecream" | "insights" | "loupe" | "maximize" | "minimize" | "more" | "notes" | "notifications" | "password" | "piano" | "poll" | "redo" | "remove" | "reorder" | "shortcut" | "smartphone" | "style" | "support" | "sync" | "tab" | "terrain" | "thermostat" | "timelapse" | "timer" | "today" | "undo" | "abc" | "atm" | "bathtub" | "bed" | "bento" | "cake" | "church" | "computer" | "construction" | "cookie" | "cyclone" | "factory" | "fax" | "handshake" | "hotel" | "label" | "loop" | "man" | "mosque" | "motorcycle" | "park" | "radio" | "rocket" | "satellite" | "school" | "shower" | "sos" | "stadium" | "synagogue" | "train" | "tram" | "volcano" | "warning" | "wc" | "woman" | "airplay" | "delete" | "divide" | "monitor" | "navigation" | "accessibility" | "cancel" | "dashboard" | "female" | "flare" | "flip" | "garage" | "group" | "hd" | "language" | "leaderboard" | "lens" | "male" | "movie" | "percentage" | "refresh" | "skateboarding" | "soap" | "stroller" | "thunderstorm" | "adobe" | "android" | "email" | "javascript" | "php" | "wechat" | "accessible" | "api" | "apps" | "backpack" | "badge" | "barcode" | "contrast" | "details" | "devices" | "directions" | "discount" | "elevator" | "exposure" | "fence" | "gavel" | "grain" | "help" | "highlight" | "history" | "login" | "logout" | "luggage" | "moped" | "nfc" | "note" | "numbers" | "pool" | "qrcode" | "radar" | "rectangle" | "report" | "route" | "scale" | "slideshow" | "stairs" | "subscript" | "superscript" | "timeline" | "wallpaper" | "webhook" | "mp" | "sd" | "zoom_out_map" | "zoom_out" | "zoom_in_map" | "zoom_in" | "youtube_searched_for" | "yard" | "wysiwyg" | "wrong_location" | "wrap_text" | "workspaces" | "workspace_premium" | "work_outline" | "work_off" | "work_history" | "woo_commerce" | "wine_bar" | "wind_power" | "wifi_tethering_off" | "wifi_tethering_error_rounded" | "wifi_tethering_error" | "wifi_tethering" | "wifi_protected_setup" | "wifi_password" | "wifi_off" | "wifi_lock" | "wifi_find" | "wifi_channel" | "wifi_calling_3" | "wifi_calling" | "wifi_2_bar" | "wifi_1_bar" | "width_wide" | "width_normal" | "width_full" | "widgets" | "where_to_vote" | "wheelchair_pickup" | "whatshot" | "west" | "weekend" | "web_asset_off" | "web_asset" | "web" | "wb_twilight" | "wb_sunny" | "wb_shade" | "wb_iridescent" | "wb_incandescent" | "wb_cloudy" | "wb_auto" | "waving_hand" | "waves" | "waterfall_chart" | "water_drop" | "water_damage" | "watch_off" | "watch_later" | "wash" | "warning_amber" | "warehouse" | "vrpano" | "vpn_lock" | "vpn_key_off" | "vpn_key" | "volunteer_activism" | "volume_up" | "volume_off" | "volume_mute" | "volume_down" | "voice_over_off" | "voice_chat" | "visibility_off" | "visibility" | "villa" | "vignette" | "view_week" | "view_timeline" | "view_stream" | "view_sidebar" | "view_quilt" | "view_module" | "view_list" | "view_kanban" | "view_in_ar" | "view_headline" | "view_day" | "view_cozy" | "view_compact_alt" | "view_compact" | "view_comfy_alt" | "view_comfy" | "view_column" | "view_carousel" | "view_array" | "view_agenda" | "videogame_asset_off" | "videogame_asset" | "videocam_off" | "videocam" | "video_stable" | "video_settings" | "video_library" | "video_label" | "video_file" | "video_camera_front" | "video_camera_back" | "video_call" | "vibration" | "vertical_split" | "vertical_shades_closed" | "vertical_shades" | "vertical_distribute" | "vertical_align_top" | "vertical_align_center" | "vertical_align_bottom" | "verified_user" | "verified" | "vaping_rooms" | "vape_free" | "vaccines" | "usb_off" | "upload_file" | "upgrade" | "update_disabled" | "update" | "upcoming" | "unsubscribe" | "unpublished" | "unfold_more" | "unfold_less" | "unarchive" | "u_turn_right" | "u_turn_left" | "two_wheeler" | "tv_off" | "turned_in_not" | "turned_in" | "turn_slight_right" | "turn_slight_left" | "turn_sharp_right" | "turn_sharp_left" | "turn_right" | "turn_left" | "tungsten" | "tune" | "tty" | "try" | "trip_origin" | "trending_up" | "trending_flat" | "trending_down" | "travel_explore" | "transit_enterexit" | "transgender" | "transform" | "transfer_within_a_station" | "traffic" | "track_changes" | "toys" | "tour" | "touch_app" | "topic" | "tonality" | "toll" | "token" | "toggle_on" | "toggle_off" | "toc" | "title" | "tire_repair" | "tips_and_updates" | "timer_off" | "timer_10_select" | "timer_10" | "timer_3_select" | "timer_3" | "time_to_leave" | "thumbs_up_down" | "thumb_up_off_alt" | "thumb_up_alt" | "thumb_up" | "thumb_down_off_alt" | "thumb_down_alt" | "thumb_down" | "thermostat_auto" | "theaters" | "theater_comedy" | "texture" | "textsms" | "text_snippet" | "text_rotation_none" | "text_rotation_down" | "text_rotation_angleup" | "text_rotation_angledown" | "text_rotate_vertical" | "text_rotate_up" | "text_increase" | "text_format" | "text_fields" | "text_decrease" | "temple_hindu" | "temple_buddhist" | "taxi_alert" | "task_alt" | "task" | "tapas" | "tap_and_play" | "takeout_dining" | "tag_faces" | "tablet_mac" | "tablet_android" | "table_view" | "table_rows" | "table_restaurant" | "table_chart" | "table_bar" | "tab_unselected" | "system_update_alt" | "system_update" | "system_security_update_warning" | "system_security_update_good" | "system_security_update" | "sync_problem" | "sync_lock" | "sync_disabled" | "sync_alt" | "switch_video" | "switch_right" | "switch_left" | "switch_camera" | "switch_account" | "switch_access_shortcut_add" | "switch_access_shortcut" | "swipe_vertical" | "swipe_up_alt" | "swipe_up" | "swipe_right_alt" | "swipe_right" | "swipe_left_alt" | "swipe_left" | "swipe_down_alt" | "swipe_down" | "swipe" | "swap_vertical_circle" | "swap_vert" | "swap_horizontal_circle" | "swap_horiz" | "swap_calls" | "surround_sound" | "surfing" | "support_agent" | "supervisor_account" | "supervised_user_circle" | "summarize" | "subway" | "subtitles_off" | "subtitles" | "subscriptions" | "subject" | "subdirectory_arrow_right" | "subdirectory_arrow_left" | "strikethrough_s" | "streetview" | "stream" | "straighten" | "straight" | "storm" | "storefront" | "store_mall_directory" | "store" | "storage" | "stop_screen_share" | "stop_circle" | "sticky_note_2" | "stay_primary_portrait" | "stay_primary_landscape" | "stay_current_portrait" | "stay_current_landscape" | "star_rate" | "star_purple500" | "star_outline" | "star_half" | "star_border_purple500" | "star_border" | "stacked_line_chart" | "stacked_bar_chart" | "ssid_chart" | "square_foot" | "sports_volleyball" | "sports_tennis" | "sports_soccer" | "sports_score" | "sports_rugby" | "sports_motorsports" | "sports_mma" | "sports_martial_arts" | "sports_kabaddi" | "sports_hockey" | "sports_handball" | "sports_gymnastics" | "sports_golf" | "sports_football" | "sports_esports" | "sports_cricket" | "sports_basketball" | "sports_baseball" | "sports_bar" | "sports" | "spoke" | "splitscreen" | "speed" | "speaker_phone" | "speaker_notes_off" | "speaker_notes" | "speaker_group" | "spatial_tracking" | "spatial_audio_off" | "spatial_audio" | "space_dashboard" | "space_bar" | "spa" | "south_west" | "south_east" | "south_america" | "south" | "source" | "soup_kitchen" | "sort_by_alpha" | "sort" | "solar_power" | "social_distance" | "snowshoeing" | "snowmobile" | "snowboarding" | "snooze" | "snippet_folder" | "sms_failed" | "sms" | "smoking_rooms" | "smoke_free" | "smart_toy" | "smart_screen" | "smart_display" | "smart_button" | "slow_motion_video" | "sledding" | "skip_previous" | "skip_next" | "sip" | "single_bed" | "sim_card_download" | "sim_card_alert" | "sim_card" | "signal_wifi_statusbar_null" | "signal_wifi_statusbar_connected_no_internet_4" | "signal_wifi_statusbar_4_bar" | "signal_wifi_off" | "signal_wifi_connected_no_internet_4" | "signal_wifi_bad" | "signal_wifi_4_bar_lock" | "signal_wifi_4_bar" | "signal_wifi_3_bar_lock" | "signal_wifi_3_bar" | "signal_wifi_2_bar_lock" | "signal_wifi_2_bar" | "signal_wifi_1_bar_lock" | "signal_wifi_1_bar" | "signal_wifi_0_bar" | "signal_cellular_off" | "signal_cellular_null" | "signal_cellular_nodata" | "signal_cellular_no_sim" | "signal_cellular_connected_no_internet_4_bar" | "signal_cellular_connected_no_internet_3_bar" | "signal_cellular_connected_no_internet_2_bar" | "signal_cellular_connected_no_internet_1_bar" | "signal_cellular_connected_no_internet_0_bar" | "signal_cellular_alt_2_bar" | "signal_cellular_alt_1_bar" | "signal_cellular_alt" | "signal_cellular_4_bar" | "signal_cellular_3_bar" | "signal_cellular_2_bar" | "signal_cellular_1_bar" | "signal_cellular_0_bar" | "sign_language" | "sick" | "shutter_speed" | "shuffle_on" | "show_chart" | "short_text" | "shopping_cart_checkout" | "shopping_cart" | "shopping_basket" | "shopping_bag" | "shopify" | "shop_two" | "shop_2" | "shield_moon" | "share_location" | "share_arrival_time" | "severe_cold" | "settings_voice" | "settings_system_daydream" | "settings_suggest" | "settings_remote" | "settings_power" | "settings_phone" | "settings_overscan" | "settings_input_svideo" | "settings_input_hdmi" | "settings_input_composite" | "settings_input_component" | "settings_input_antenna" | "settings_ethernet" | "settings_cell" | "settings_brightness" | "settings_bluetooth" | "settings_backup_restore" | "settings_applications" | "settings_accessibility" | "set_meal" | "sentiment_very_satisfied" | "sentiment_very_dissatisfied" | "sentiment_slightly_dissatisfied" | "sentiment_satisfied_alt" | "sentiment_satisfied" | "sentiment_neutral" | "sentiment_dissatisfied" | "sensors_off" | "sensors" | "sensor_window" | "sensor_occupied" | "sensor_door" | "send_to_mobile" | "send_time_extension" | "send_and_archive" | "sell" | "self_improvement" | "select_all" | "segment" | "security_update_warning" | "security_update_good" | "security_update" | "security" | "search_off" | "sd_storage" | "sd_card_alert" | "sd_card" | "scuba_diving" | "screenshot_monitor" | "screenshot" | "screen_share" | "screen_search_desktop" | "screen_rotation_alt" | "screen_rotation" | "screen_lock_rotation" | "screen_lock_portrait" | "screen_lock_landscape" | "scoreboard" | "score" | "science" | "schema" | "schedule_send" | "schedule" | "scatter_plot" | "scanner" | "savings" | "saved_search" | "save_as" | "save_alt" | "save_all" | "satellite_alt" | "sanitizer" | "sailing" | "safety_divider" | "safety_check" | "rv_hookup" | "running_with_errors" | "run_circle" | "rule_folder" | "rule" | "rtt" | "rsvp" | "rss_feed" | "rowing" | "rounded_corner" | "roundabout_right" | "roundabout_left" | "rotate_right" | "rotate_left" | "rotate_90_degrees_cw" | "rotate_90_degrees_ccw" | "room_service" | "room_preferences" | "room" | "roofing" | "roller_skating" | "roller_shades_closed" | "roller_shades" | "rocket_launch" | "ring_volume" | "rice_bowl" | "reviews" | "restore_page" | "restore_from_trash" | "restore" | "restaurant_menu" | "restaurant" | "restart_alt" | "reset_tv" | "request_quote" | "request_page" | "report_problem" | "report_off" | "report_gmailerrorred" | "reply_all" | "replay_circle_filled" | "replay_30" | "replay_10" | "replay_5" | "replay" | "repeat_one_on" | "repeat_one" | "repeat_on" | "remove_shopping_cart" | "remove_road" | "remove_red_eye" | "remove_moderator" | "remove_from_queue" | "remove_done" | "remove_circle_outline" | "remove_circle" | "remember_me" | "reduce_capacity" | "redeem" | "recycling" | "record_voice_over" | "recommend" | "recent_actors" | "receipt_long" | "real_estate_agent" | "read_more" | "raw_on" | "raw_off" | "rate_review" | "ramp_right" | "ramp_left" | "ramen_dining" | "railway_alert" | "radio_button_unchecked" | "radio_button_checked" | "r_mobiledata" | "quiz" | "quickreply" | "queue_play_next" | "queue_music" | "queue" | "question_mark" | "question_answer" | "query_stats" | "query_builder" | "qr_code_scanner" | "qr_code_2" | "qr_code" | "push_pin" | "punch_clock" | "published_with_changes" | "publish" | "public_off" | "public" | "psychology" | "propane_tank" | "propane" | "production_quantity_limits" | "private_connectivity" | "privacy_tip" | "priority_high" | "print_disabled" | "price_check" | "price_change" | "preview" | "present_to_all" | "pregnant_woman" | "precision_manufacturing" | "power_settings_new" | "power_off" | "power_input" | "post_add" | "portrait" | "portable_wifi_off" | "polymer" | "polyline" | "policy" | "point_of_sale" | "podcasts" | "plus_one" | "plus_minus_alt" | "plus_minus" | "plumbing" | "playlist_remove" | "playlist_play" | "playlist_add_circle" | "playlist_add_check_circle" | "playlist_add_check" | "playlist_add" | "play_lesson" | "play_for_work" | "play_disabled" | "play_circle_outline" | "play_circle_filled_white" | "play_circle_filled" | "play_circle" | "play_arrow" | "plagiarism" | "place" | "pix" | "pivot_table_chart" | "pinch" | "pin_off" | "pin_invoke" | "pin_end" | "pin_drop" | "pie_chart_outline" | "pie_chart" | "picture_in_picture_alt" | "picture_in_picture" | "picture_as_pdf" | "piano_off" | "photo_size_select_small" | "photo_size_select_large" | "photo_size_select_actual" | "photo_library" | "photo_filter" | "photo_camera_front" | "photo_camera_back" | "photo_camera" | "photo_album" | "phonelink_setup" | "phonelink_ring" | "phonelink_off" | "phonelink_lock" | "phonelink_erase" | "phonelink" | "phone_paused" | "phone_missed" | "phone_locked" | "phone_iphone" | "phone_in_talk" | "phone_forwarded" | "phone_enabled" | "phone_disabled" | "phone_callback" | "phone_bluetooth_speaker" | "phone_android" | "phishing" | "pets" | "pest_control_rodent" | "pest_control" | "personal_video" | "personal_injury" | "person_search" | "person_remove_alt_1" | "person_remove" | "person_pin_circle" | "person_pin" | "person_outline" | "person_off" | "person_add_disabled" | "person_add_alt_1" | "person_add_alt" | "person_add" | "perm_scan_wifi" | "perm_phone_msg" | "perm_media" | "perm_identity" | "perm_device_information" | "perm_data_setting" | "perm_contact_calendar" | "perm_camera_mic" | "people_outline" | "people_alt" | "pending_actions" | "pending" | "pedal_bike" | "payments" | "payment" | "pause_presentation" | "pause_circle_outline" | "pause_circle_filled" | "pause_circle" | "pattern" | "party_mode" | "paragliding" | "panorama_wide_angle_select" | "panorama_wide_angle" | "panorama_vertical_select" | "panorama_vertical" | "panorama_photosphere_select" | "panorama_photosphere" | "panorama_horizontal_select" | "panorama_horizontal" | "panorama_fish_eye" | "panorama" | "pan_tool_alt" | "pan_tool" | "paid" | "pageview" | "pages" | "padding" | "output" | "outlined_flag" | "outdoor_grill" | "outbox" | "outbound" | "outbond" | "other_houses" | "open_with" | "open_in_new_off" | "open_in_new" | "open_in_full" | "open_in_browser" | "opacity" | "online_prediction" | "ondemand_video" | "on_device_training" | "oil_barrel" | "offline_share" | "offline_pin" | "offline_bolt" | "notifications_paused" | "notifications_off" | "notifications_none" | "notifications_active" | "notification_important" | "notification_add" | "note_alt" | "note_add" | "not_started" | "not_listed_location" | "not_interested" | "not_equal" | "not_accessible" | "north_west" | "north_east" | "north" | "nordic_walking" | "noise_control_off" | "noise_aware" | "no_transfer" | "no_stroller" | "no_sim" | "no_photography" | "no_meeting_room" | "no_meals" | "no_luggage" | "no_food" | "no_flash" | "no_encryption_gmailerrorred" | "no_encryption" | "no_drinks" | "no_crash" | "no_cell" | "no_backpack" | "no_adult_content" | "no_accounts" | "nights_stay" | "nightlight_round" | "nightlight" | "nightlife" | "night_shelter" | "next_week" | "next_plan" | "new_releases" | "new_label" | "network_wifi_3_bar" | "network_wifi_2_bar" | "network_wifi_1_bar" | "network_wifi" | "network_ping" | "network_locked" | "network_check" | "network_cell" | "nest_cam_wired_stand" | "nearby_off" | "nearby_error" | "near_me_disabled" | "near_me" | "navigate_next" | "navigate_before" | "nature_people" | "nature" | "nat" | "my_location" | "music_video" | "music_off" | "music_note" | "museum" | "multiple_stop" | "multiline_chart" | "moving" | "movie_filter" | "movie_creation" | "move_up" | "move_to_inbox" | "move_down" | "motion_photos_paused" | "motion_photos_pause" | "motion_photos_on" | "motion_photos_off" | "motion_photos_auto" | "more_vert" | "more_time" | "more_horiz" | "mood_bad" | "mood" | "monochrome_photos" | "monitor_weight" | "monitor_heart" | "money_off_csred" | "money_off" | "money" | "monetization_on" | "model_training" | "mode_standby" | "mode_of_travel" | "mode_night" | "mode_fan_off" | "mode_edit_outline" | "mode_edit" | "mode_comment" | "mode" | "mobiledata_off" | "mobile_screen_share" | "mobile_off" | "mobile_friendly" | "mms" | "missed_video_call" | "miscellaneous_services" | "minor_crash" | "military_tech" | "microwave" | "mic_off" | "mic_none" | "mic_external_on" | "mic_external_off" | "merge_type" | "merge" | "menu_open" | "menu_book" | "meeting_room" | "medication_liquid" | "medication" | "medical_services" | "medical_information" | "mediation" | "media_bluetooth_on" | "media_bluetooth_off" | "masks" | "markunread_mailbox" | "markunread" | "mark_unread_chat_alt" | "mark_email_unread" | "mark_email_read" | "mark_chat_unread" | "mark_chat_read" | "mark_as_unread" | "margin" | "maps_ugc" | "maps_home_work" | "manage_search" | "manage_history" | "manage_accounts" | "mail_outline" | "mail_lock" | "lyrics" | "lunch_dining" | "lte_plus_mobiledata" | "lte_mobiledata" | "loyalty" | "low_priority" | "looks_two" | "looks_one" | "looks_6" | "looks_5" | "looks_4" | "looks_3" | "looks" | "logo_dev" | "log_out" | "log_in" | "lock_reset" | "lock_person" | "lock_open" | "lock_clock" | "location_searching" | "location_on" | "location_off" | "location_disabled" | "location_city" | "local_taxi" | "local_shipping" | "local_see" | "local_printshop" | "local_post_office" | "local_police" | "local_play" | "local_pizza" | "local_phone" | "local_pharmacy" | "local_parking" | "local_offer" | "local_movies" | "local_mall" | "local_library" | "local_laundry_service" | "local_hotel" | "local_hospital" | "local_grocery_store" | "local_gas_station" | "local_florist" | "local_fire_department" | "local_drink" | "local_dining" | "local_convenience_store" | "local_car_wash" | "local_cafe" | "local_bar" | "local_atm" | "local_airport" | "local_activity" | "living" | "live_tv" | "live_help" | "list_alt" | "liquor" | "linked_camera" | "link_off" | "linear_scale" | "line_weight" | "line_style" | "line_axis" | "lightbulb_circle" | "light_mode" | "library_music" | "library_books" | "library_add_check" | "library_add" | "less_than_equal" | "less_than" | "lens_blur" | "legend_toggle" | "leave_bags_at_home" | "leak_remove" | "leak_add" | "layers_clear" | "launch" | "last_page" | "laptop_windows" | "laptop_mac" | "laptop_chromebook" | "landslide" | "landscape" | "lan" | "label_off" | "label_important" | "kitesurfing" | "kitchen" | "king_bed" | "keyboard_voice" | "keyboard_tab" | "keyboard_return" | "keyboard_option_key" | "keyboard_hide" | "keyboard_double_arrow_up" | "keyboard_double_arrow_right" | "keyboard_double_arrow_left" | "keyboard_double_arrow_down" | "keyboard_control_key" | "keyboard_command_key" | "keyboard_capslock" | "keyboard_backspace" | "keyboard_arrow_up" | "keyboard_arrow_right" | "keyboard_arrow_left" | "keyboard_arrow_down" | "keyboard_alt" | "key_off" | "kebab_dining" | "kayaking" | "join_right" | "join_left" | "join_inner" | "join_full" | "iso" | "iron" | "ios_share" | "invert_colors_off" | "invert_colors" | "inventory_2" | "inventory" | "interpreter_mode" | "interests" | "integration_instructions" | "install_mobile" | "install_desktop" | "insert_photo" | "insert_page_break" | "insert_link" | "insert_invitation" | "insert_emoticon" | "insert_drive_file" | "insert_comment" | "insert_chart_outlined" | "insert_chart" | "input" | "indeterminate_check_box" | "incomplete_circle" | "important_devices" | "import_export" | "import_contacts" | "imagesearch_roller" | "image_search" | "image_not_supported" | "image_aspect_ratio" | "ice_skating" | "hvac" | "hub" | "https" | "http" | "html" | "how_to_vote" | "how_to_reg" | "houseboat" | "house_siding" | "hourglass_top" | "hourglass_full" | "hourglass_empty" | "hourglass_disabled" | "hourglass_bottom" | "hotel_class" | "hot_tub" | "horizontal_split" | "horizontal_rule" | "horizontal_distribute" | "home_work" | "home_repair_service" | "home_mini" | "home_max" | "holiday_village" | "hls_off" | "hls" | "hive" | "history_toggle_off" | "history_edu" | "hiking" | "highlight_off" | "highlight_alt" | "high_quality" | "hide_source" | "hide_image" | "hevc" | "help_outline" | "help_center" | "height" | "heat_pump" | "heart_broken" | "hearing_disabled" | "hearing" | "health_and_safety" | "healing" | "headset_off" | "headset_mic" | "headphones_battery" | "hdr_weak" | "hdr_strong" | "hdr_plus" | "hdr_on_select" | "hdr_on" | "hdr_off_select" | "hdr_off" | "hdr_enhanced_select" | "hdr_auto_select" | "hdr_auto" | "hardware" | "handyman" | "hail" | "h_plus_mobiledata" | "h_mobiledata" | "groups" | "group_work" | "group_remove" | "group_off" | "group_add" | "grid_view" | "grid_on" | "grid_off" | "grid_goldenratio" | "grid_4x4" | "grid_3x3" | "greater_than_equal" | "greater_than" | "grass" | "graphic_eq" | "grading" | "gradient" | "grade" | "gps_off" | "gps_not_fixed" | "gps_fixed" | "gpp_maybe" | "gpp_good" | "gpp_bad" | "golf_course" | "gite" | "gif_box" | "gif" | "get_app" | "gesture" | "generating_tokens" | "gas_meter" | "gamepad" | "g_translate" | "g_mobiledata" | "functions" | "fullscreen_exit" | "front_hand" | "free_cancellation" | "free_breakfast" | "foundation" | "forward_to_inbox" | "forward_30" | "forward_10" | "forward_5" | "forum" | "fort" | "format_underlined" | "format_textdirection_r_to_l" | "format_textdirection_l_to_r" | "format_strikethrough" | "format_size" | "format_shapes" | "format_quote" | "format_paint" | "format_overline" | "format_list_numbered_rtl" | "format_list_numbered" | "format_list_bulleted" | "format_line_spacing" | "format_italic" | "format_indent_increase" | "format_indent_decrease" | "format_color_text" | "format_color_reset" | "format_color_fill" | "format_clear" | "format_bold" | "format_align_right" | "format_align_left" | "format_align_justify" | "format_align_center" | "fork_right" | "fork_left" | "forest" | "food_bank" | "font_download_off" | "font_download" | "follow_the_signs" | "folder_zip" | "folder_special" | "folder_shared" | "folder_open" | "folder_off" | "folder_delete" | "folder_copy" | "fmd_good" | "fmd_bad" | "flutter_dash" | "flourescent" | "flood" | "flip_to_front" | "flip_to_back" | "flip_camera_ios" | "flip_camera_android" | "flight_takeoff" | "flight_land" | "flight_class" | "flight" | "flatware" | "flashlight_on" | "flashlight_off" | "flash_on" | "flash_off" | "flash_auto" | "flaky" | "flag_circle" | "fitness_center" | "fitbit" | "fit_screen" | "first_page" | "fireplace" | "fire_extinguisher" | "find_replace" | "find_in_page" | "filter_vintage" | "filter_tilt_shift" | "filter_none" | "filter_list_off" | "filter_list" | "filter_hdr" | "filter_frames" | "filter_drama" | "filter_center_focus" | "filter_b_and_w" | "filter_alt_off" | "filter_alt" | "filter_9_plus" | "filter_9" | "filter_8" | "filter_7" | "filter_6" | "filter_5" | "filter_4" | "filter_3" | "filter_2" | "filter_1" | "file_upload" | "file_present" | "file_open" | "file_download_off" | "file_download_done" | "file_download" | "file_copy" | "fiber_smart_record" | "fiber_pin" | "fiber_new" | "fiber_manual_record" | "fiber_dvr" | "festival" | "feedback" | "featured_video" | "featured_play_list" | "favorite_border" | "favorite" | "fastfood" | "fast_rewind" | "fast_forward" | "family_restroom" | "fact_check" | "face_retouching_off" | "face_retouching_natural" | "face" | "extension_off" | "exposure_zero" | "exposure_plus_2" | "exposure_plus_1" | "exposure_neg_2" | "exposure_neg_1" | "explore_off" | "explore" | "expand_more" | "expand_less" | "expand_circle_down" | "exit_to_app" | "event_seat" | "event_repeat" | "event_note" | "event_busy" | "event_available" | "event" | "ev_station" | "euro_symbol" | "escalator_warning" | "escalator" | "error_outline" | "error" | "equals" | "equalizer" | "enhanced_encryption" | "engineering" | "energy_savings_leaf" | "emoji_transportation" | "emoji_symbols" | "emoji_people" | "emoji_objects" | "emoji_nature" | "emoji_food_beverage" | "emoji_flags" | "emoji_events" | "emoji_emotions" | "emergency_share" | "emergency_recording" | "emergency" | "electrical_services" | "electric_scooter" | "electric_rickshaw" | "electric_moped" | "electric_meter" | "electric_car" | "electric_bolt" | "electric_bike" | "elderly_woman" | "elderly" | "egg_alt" | "edit_road" | "edit_off" | "edit_notifications" | "edit_note" | "edit_location_alt" | "edit_location" | "edit_calendar" | "edit_attributes" | "edgesensor_low" | "edgesensor_high" | "eco" | "east" | "earbuds_battery" | "e_mobiledata" | "dynamic_form" | "dynamic_feed" | "dvr" | "duo" | "dry_cleaning" | "dry" | "drive_folder_upload" | "drive_file_rename_outline" | "drive_file_move_rtl" | "drive_file_move" | "drive_eta" | "draw" | "drag_indicator" | "drag_handle" | "drafts" | "downloading" | "download_for_offline" | "download_done" | "downhill_skiing" | "double_arrow" | "doorbell" | "door_sliding" | "door_front" | "door_back" | "donut_small" | "donut_large" | "done_outline" | "done_all" | "done" | "domain_verification" | "domain_disabled" | "domain_add" | "domain" | "document_scanner" | "dock" | "do_not_touch" | "do_not_step" | "do_not_disturb_on_total_silence" | "do_not_disturb_on" | "do_not_disturb_off" | "do_not_disturb_alt" | "do_not_disturb" | "do_disturb_on" | "do_disturb_off" | "do_disturb_alt" | "do_disturb" | "dns" | "display_settings" | "disc_full" | "disabled_visible" | "disabled_by_default" | "dirty_lens" | "directions_walk" | "directions_transit_filled" | "directions_transit" | "directions_subway_filled" | "directions_subway" | "directions_run" | "directions_railway_filled" | "directions_railway" | "directions_off" | "directions_car_filled" | "directions_car" | "directions_bus_filled" | "directions_bus" | "directions_boat_filled" | "directions_boat" | "directions_bike" | "dinner_dining" | "dining" | "difference" | "dialer_sip" | "devices_other" | "devices_fold" | "device_unknown" | "device_thermostat" | "device_hub" | "developer_mode" | "developer_board_off" | "developer_board" | "desktop_windows" | "desktop_mac" | "desktop_access_disabled" | "desk" | "design_services" | "deselect" | "description" | "departure_board" | "density_small" | "density_medium" | "density_large" | "delivery_dining" | "delete_sweep" | "delete_outline" | "delete_forever" | "dehaze" | "deck" | "deblur" | "date_range" | "data_usage" | "data_thresholding" | "data_saver_on" | "data_saver_off" | "data_object" | "data_exploration" | "data_array" | "dashboard_customize" | "dark_mode" | "dangerous" | "curtains_closed" | "curtains" | "currency_yuan" | "currency_yen" | "currency_rupee" | "currency_ruble" | "currency_pound" | "currency_lira" | "currency_franc" | "currency_exchange" | "currency_bitcoin" | "css" | "cruelty_free" | "crop_square" | "crop_rotate" | "crop_portrait" | "crop_original" | "crop_landscape" | "crop_free" | "crop_din" | "crop_16_9" | "crop_7_5" | "crop_5_4" | "crop_3_2" | "crisis_alert" | "crib" | "credit_score" | "credit_card_off" | "credit_card" | "create_new_folder" | "create" | "countertops" | "cottage" | "corporate_fare" | "coronavirus" | "copy_all" | "control_point_duplicate" | "control_point" | "control_camera" | "content_paste_search" | "content_paste_off" | "content_paste_go" | "content_paste" | "content_cut" | "content_copy" | "contacts" | "contactless" | "contact_support" | "contact_phone" | "contact_page" | "contact_mail" | "connecting_airports" | "connected_tv" | "connect_without_contact" | "confirmation_number" | "compost" | "compass_calibration" | "compare_arrows" | "compare" | "commute" | "commit" | "comments_disabled" | "comment_bank" | "colorize" | "color_lens" | "collections_bookmark" | "collections" | "coffee_maker" | "code_off" | "co2" | "co_present" | "cloud_upload" | "cloud_sync" | "cloud_queue" | "cloud_off" | "cloud_download" | "cloud_done" | "cloud_circle" | "closed_caption_off" | "closed_caption_disabled" | "closed_caption" | "close_fullscreen" | "clear_all" | "clear" | "cleaning_services" | "clean_hands" | "class" | "circle_notifications" | "chrome_reader_mode" | "child_friendly" | "child_care" | "chevron_right" | "chevron_left" | "checkroom" | "checklist_rtl" | "checklist" | "check_circle_outline" | "check_circle" | "check_box_outline_blank" | "check_box" | "chat_bubble_outline" | "chat_bubble" | "charging_station" | "change_history" | "change_circle" | "chalet" | "chair_alt" | "chair" | "center_focus_weak" | "center_focus_strong" | "cell_wifi" | "cell_tower" | "celebration" | "category" | "catching_pokemon" | "castle" | "cast_for_education" | "cast_connected" | "casino" | "cases" | "carpenter" | "card_travel" | "card_membership" | "card_giftcard" | "car_repair" | "car_rental" | "car_crash" | "candlestick_chart" | "cancel_schedule_send" | "cancel_presentation" | "campaign" | "cameraswitch" | "camera_roll" | "camera_rear" | "camera_outdoor" | "camera_indoor" | "camera_front" | "camera_enhance" | "camera_alt" | "call_to_action" | "call_split" | "call_received" | "call_missed_outgoing" | "call_missed" | "call_merge" | "call_made" | "call_end" | "call" | "calendar_view_week" | "calendar_view_month" | "calendar_view_day" | "calendar_today" | "calendar_month" | "calculate" | "cached" | "cable" | "cabin" | "business_center" | "business" | "bus_alert" | "burst_mode" | "bungalow" | "build_circle" | "build" | "bug_report" | "bubble_chart" | "brunch_dining" | "browser_updated" | "browser_not_supported" | "browse_gallery" | "broken_image" | "broadcast_on_personal" | "broadcast_on_home" | "brightness_medium" | "brightness_low" | "brightness_high" | "brightness_auto" | "brightness_7" | "brightness_6" | "brightness_5" | "brightness_4" | "brightness_3" | "brightness_2" | "brightness_1" | "breakfast_dining" | "branding_watermark" | "border_vertical" | "border_top" | "border_style" | "border_right" | "border_outer" | "border_left" | "border_inner" | "border_horizontal" | "border_color" | "border_clear" | "border_bottom" | "border_all" | "bookmark_remove" | "bookmark_border" | "bookmark_added" | "bookmark_add" | "book_online" | "blur_on" | "blur_off" | "blur_linear" | "blur_circular" | "bluetooth_searching" | "bluetooth_drive" | "bluetooth_disabled" | "bluetooth_connected" | "bluetooth_audio" | "bloodtype" | "blinds_closed" | "blinds" | "blender" | "biotech" | "bike_scooter" | "beenhere" | "bedtime_off" | "bedtime" | "bedroom_parent" | "bedroom_child" | "bedroom_baby" | "beach_access" | "battery_unknown" | "battery_std" | "battery_saver" | "battery_full" | "battery_charging_fu