diff --git a/config/install/fontawesome.settings.yml b/config/install/fontawesome.settings.yml index 0253ce0..9903958 100644 --- a/config/install/fontawesome.settings.yml +++ b/config/install/fontawesome.settings.yml @@ -10,4 +10,5 @@ use_regular_file: true use_light_file: true use_brands_file: true use_duotone_file: true +use_thin_file: true external_svg_integrity: null diff --git a/config/schema/fontawesome.schema.yml b/config/schema/fontawesome.schema.yml index 894e36b..76e8242 100644 --- a/config/schema/fontawesome.schema.yml +++ b/config/schema/fontawesome.schema.yml @@ -41,6 +41,9 @@ fontawesome.settings: use_duotone_file: type: boolean label: 'Use the Font Awesome duotone icons file' + use_thin_file: + type: boolean + label: 'Use the Font Awesome thin icons file' external_svg_integrity: type: string label: 'Integrity value of the external CDN for Font Awesome' diff --git a/fontawesome.install b/fontawesome.install index 8f7537c..23ed131 100644 --- a/fontawesome.install +++ b/fontawesome.install @@ -16,7 +16,7 @@ function fontawesome_requirements($phase) { // Report the version of Font Awesome. if ($phase == 'runtime') { $requirements['fontawesome'] = [ - 'title' => t('Font Awesome 5'), + 'title' => t('Font Awesome'), ]; // Load the configuration settings. @@ -68,7 +68,7 @@ function fontawesome_requirements($phase) { } $requirements['fontawesome']['severity'] = REQUIREMENT_OK; - $requirements['fontawesome']['value'] = t('Font Awesome 5 library is installed. Using %version version. (@moreInfoLink)', [ + $requirements['fontawesome']['value'] = t('Font Awesome library is installed. Using %version version. (@moreInfoLink)', [ '%version' => $version, '@moreInfoLink' => Link::createFromRoute(t('more information'), 'fontawesome.admin_settings')->toString(), ]); @@ -83,7 +83,7 @@ function fontawesome_requirements($phase) { else { $requirements['fontawesome']['severity'] = REQUIREMENT_ERROR; $requirements['fontawesome']['value'] = t('Not installed'); - $requirements['fontawesome']['description'] = t('The Font Awesome 5 library could not be found. If you want this module to handle loading your FontAwesome assets, please verify Font Awesome 5 is installed correctly or that the CDN has been activated and properly configured. Please see the @adminPage and the Font Awesome module README file for more details.', [ + $requirements['fontawesome']['description'] = t('The Font Awesome library could not be found. If you want this module to handle loading your FontAwesome assets, please verify Font Awesome is installed correctly or that the CDN has been activated and properly configured. Please see the @adminPage and the Font Awesome module README file for more details.', [ '@adminPage' => Link::createFromRoute(t('admin page'), 'fontawesome.admin_settings')->toString(), ]); } diff --git a/fontawesome.libraries.yml b/fontawesome.libraries.yml index f5b9a10..4b07256 100644 --- a/fontawesome.libraries.yml +++ b/fontawesome.libraries.yml @@ -70,6 +70,15 @@ fontawesome.svg.duotone: dependencies: - fontawesome/fontawesome.svg.base +fontawesome.svg.thin: + version: *fontawesome_version + license: *fontawesome_svg_license + header: true + js: + /libraries/fontawesome/js/thin.min.js: { minified: true, attributes: { defer: true } } + dependencies: + - fontawesome/fontawesome.svg.base + fontawesome.webfonts: remote: *fontawesome_remote license: &fontawesome_webfonts_license @@ -133,6 +142,15 @@ fontawesome.webfonts.duotone: dependencies: - fontawesome/fontawesome.webfonts.base +fontawesome.webfonts.thin: + version: *fontawesome_version + license: *fontawesome_webfonts_license + css: + theme: + /libraries/fontawesome/css/thin.min.css: { minified: true } + dependencies: + - fontawesome/fontawesome.webfonts.base + fontawesome.webfonts.shim: version: *fontawesome_version license: *fontawesome_webfonts_license diff --git a/fontawesome.module b/fontawesome.module index d5c5f1a..91d8e56 100644 --- a/fontawesome.module +++ b/fontawesome.module @@ -249,6 +249,7 @@ function fontawesome_page_attachments(array &$page) { 'use_light_file' => is_null($configuration_settings->get('use_light_file')) === TRUE ? TRUE : $configuration_settings->get('use_light_file'), 'use_brands_file' => is_null($configuration_settings->get('use_brands_file')) === TRUE ? TRUE : $configuration_settings->get('use_brands_file'), 'use_duotone_file' => is_null($configuration_settings->get('use_duotone_file')) === TRUE ? TRUE : $configuration_settings->get('use_duotone_file'), + 'use_thin_file' => is_null($configuration_settings->get('use_thin_file')) === TRUE ? TRUE : $configuration_settings->get('use_thin_file'), ]; // First check if we're using everything. @@ -273,6 +274,9 @@ function fontawesome_page_attachments(array &$page) { if ($activeFiles['use_duotone_file']) { $page['#attached']['library'][] = 'fontawesome/fontawesome.' . $configuration_settings->get('method') . '.duotone'; } + if ($activeFiles['use_thin_file']) { + $page['#attached']['library'][] = 'fontawesome/fontawesome.' . $configuration_settings->get('method') . '.thin'; + } } // Attach the shim file if needed. diff --git a/metadata/icons.yml b/metadata/icons.yml index 3923838..65675e9 100644 --- a/metadata/icons.yml +++ b/metadata/icons.yml @@ -1,3 +1,87 @@ +'0': + changes: + - unreleased + label: '0' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'1': + changes: + - unreleased + label: '1' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'2': + changes: + - unreleased + label: '2' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'3': + changes: + - unreleased + label: '3' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'4': + changes: + - unreleased + label: '4' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'5': + changes: + - unreleased + label: '5' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false 500px: changes: - '4.4' @@ -9,9 +93,80 @@ - brands unicode: f26e voted: false +'6': + changes: + - unreleased + label: '6' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'7': + changes: + - unreleased + label: '7' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'8': + changes: + - unreleased + label: '8' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +'9': + changes: + - unreleased + label: '9' + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +a: + changes: + - unreleased + label: A + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false abacus: changes: - 5.3.0 + - unreleased label: Abacus search: terms: @@ -28,6 +183,7 @@ abacus: - regular - light - duotone + - thin unicode: f640 voted: false accessible-icon: @@ -58,6 +214,7 @@ accusoft: acorn: changes: - 5.4.0 + - unreleased label: Acorn search: terms: @@ -74,6 +231,7 @@ acorn: - regular - light - duotone + - thin unicode: f6ae voted: false acquisitions-incorporated: @@ -94,30 +252,15 @@ acquisitions-incorporated: - brands unicode: f6af voted: false -ad: - changes: - - 5.3.0 - - 5.10.2 - label: Ad - search: - terms: - - advertisement - - media - - newspaper - - promotion - - publicity - styles: - - solid - - regular - - light - - duotone - unicode: f641 - voted: false address-book: + aliases: + names: + - contact-book changes: - '4.7' - 5.0.0 - 5.0.3 + - unreleased label: Address Book search: terms: @@ -131,13 +274,19 @@ address-book: - regular - light - duotone + - thin unicode: f2b9 voted: false address-card: + aliases: + names: + - contact-card + - vcard changes: - '4.7' - 5.0.0 - 5.0.3 + - unreleased label: Address Card search: terms: @@ -152,28 +301,9 @@ address-card: - regular - light - duotone + - thin unicode: f2bb voted: false -adjust: - changes: - - '1' - - 5.0.0 - - 5.10.2 - - 5.11.0 - label: adjust - search: - terms: - - contrast - - dark - - light - - saturation - styles: - - solid - - regular - - light - - duotone - unicode: f042 - voted: false adn: changes: - '3.2' @@ -185,23 +315,6 @@ adn: - brands unicode: f170 voted: false -adobe: - changes: - - 5.6.0 - - 5.8.0 - label: Adobe - search: - terms: - - acrobat - - app - - design - - illustrator - - indesign - - photoshop - styles: - - brands - unicode: f778 - voted: false adversal: changes: - 5.0.0 @@ -225,6 +338,7 @@ affiliatetheme: air-conditioner: changes: - 5.12.0 + - unreleased label: Air Conditioner search: terms: @@ -241,11 +355,13 @@ air-conditioner: - regular - light - duotone + - thin unicode: f8f4 voted: false air-freshener: changes: - 5.2.0 + - unreleased label: Air Freshener search: terms: @@ -259,6 +375,7 @@ air-freshener: - regular - light - duotone + - thin unicode: f5d0 voted: false airbnb: @@ -274,6 +391,7 @@ alarm-clock: changes: - 5.0.0 - 5.9.0 + - unreleased label: Alarm Clock search: terms: @@ -290,11 +408,13 @@ alarm-clock: - regular - light - duotone + - thin unicode: f34e voted: false alarm-exclamation: changes: - 5.9.0 + - unreleased label: Alarm Exclamation search: terms: @@ -312,11 +432,13 @@ alarm-exclamation: - regular - light - duotone + - thin unicode: f843 voted: false alarm-plus: changes: - 5.9.0 + - unreleased label: Alarm Plus search: terms: @@ -334,11 +456,13 @@ alarm-plus: - regular - light - duotone + - thin unicode: f844 voted: false alarm-snooze: changes: - 5.9.0 + - unreleased label: Alarm Snooze search: terms: @@ -356,11 +480,13 @@ alarm-snooze: - regular - light - duotone + - thin unicode: f845 voted: true album: changes: - 5.11.0 + - unreleased label: Album search: terms: @@ -374,11 +500,13 @@ album: - regular - light - duotone + - thin unicode: f89f voted: true album-collection: changes: - 5.11.0 + - unreleased label: Album Collection search: terms: @@ -393,6 +521,7 @@ album-collection: - regular - light - duotone + - thin unicode: f8a0 voted: false algolia: @@ -408,6 +537,7 @@ algolia: alicorn: changes: - 5.4.0 + - unreleased label: Alicorn search: terms: @@ -424,11 +554,13 @@ alicorn: - regular - light - duotone + - thin unicode: f6b0 voted: false alien: changes: - 5.12.0 + - unreleased label: Alien search: terms: @@ -444,12 +576,17 @@ alien: - regular - light - duotone + - thin unicode: f8f5 voted: false -alien-monster: +alien-8bit: + aliases: + names: + - alien-monster changes: - 5.12.0 - label: Alien Monster + - unreleased + label: Alien 8bit search: terms: - ET @@ -466,6 +603,7 @@ alien-monster: - regular - light - duotone + - thin unicode: f8f6 voted: false align-center: @@ -473,6 +611,7 @@ align-center: - '1' - 5.0.0 - 5.9.0 + - unreleased label: align-center search: terms: @@ -485,6 +624,7 @@ align-center: - regular - light - duotone + - thin unicode: f037 voted: false align-justify: @@ -492,6 +632,7 @@ align-justify: - '1' - 5.0.0 - 5.9.0 + - unreleased label: align-justify search: terms: @@ -503,6 +644,7 @@ align-justify: - regular - light - duotone + - thin unicode: f039 voted: false align-left: @@ -510,6 +652,7 @@ align-left: - '1' - 5.0.0 - 5.9.0 + - unreleased label: align-left search: terms: @@ -521,6 +664,7 @@ align-left: - regular - light - duotone + - thin unicode: f036 voted: false align-right: @@ -528,6 +672,7 @@ align-right: - '1' - 5.0.0 - 5.9.0 + - unreleased label: align-right search: terms: @@ -539,11 +684,13 @@ align-right: - regular - light - duotone + - thin unicode: f038 voted: false align-slash: changes: - 5.9.0 + - unreleased label: Align Slash search: terms: @@ -556,6 +703,7 @@ align-slash: - regular - light - duotone + - thin unicode: f846 voted: false alipay: @@ -568,25 +716,19 @@ alipay: - brands unicode: f642 voted: false -allergies: +alt: changes: - - 5.0.7 - label: Allergies + - unreleased + label: Alt search: - terms: - - allergy - - freckles - - hand - - hives - - pox - - skin - - spots + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f461 + - thin + unicode: auto voted: false amazon: changes: @@ -610,49 +752,6 @@ amazon-pay: - brands unicode: f42c voted: false -ambulance: - changes: - - '3' - - 5.0.0 - - 5.0.7 - label: ambulance - search: - terms: - - covid-19 - - emergency - - emt - - er - - help - - hospital - - support - - vehicle - styles: - - solid - - regular - - light - - duotone - unicode: f0f9 - voted: false -american-sign-language-interpreting: - changes: - - '4.6' - - 5.0.0 - label: American Sign Language Interpreting - search: - terms: - - asl - - deaf - - finger - - hand - - interpret - - speak - styles: - - solid - - regular - - light - - duotone - unicode: f2a3 - voted: false amilia: changes: - 5.0.0 @@ -666,6 +765,7 @@ amilia: amp-guitar: changes: - 5.11.0 + - unreleased label: Guitar Amplifier search: terms: @@ -680,31 +780,29 @@ amp-guitar: - regular - solid - duotone + - thin unicode: f8a1 voted: false -analytics: +ampersand: changes: - - 5.3.0 - label: Analytics + - unreleased + label: Ampersand search: - terms: - - chart - - measure - - roi - - tracking - - trend + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f643 + unicode: auto voted: false anchor: changes: - '3.1' - 5.0.0 - 5.11.0 + - unreleased label: Anchor search: terms: @@ -721,6 +819,7 @@ anchor: - regular - light - duotone + - thin unicode: f13d voted: false android: @@ -740,6 +839,7 @@ angel: changes: - 5.6.0 - 5.10.1 + - unreleased label: Angel search: terms: @@ -756,6 +856,7 @@ angel: - regular - light - duotone + - thin unicode: f779 angellist: changes: @@ -768,87 +869,11 @@ angellist: - brands unicode: f209 voted: false -angle-double-down: - changes: - - '3' - - 5.0.0 - label: Angle Double Down - search: - terms: - - arrows - - caret - - download - - expand - styles: - - solid - - regular - - light - - duotone - unicode: f103 - voted: false -angle-double-left: - changes: - - '3' - - 5.0.0 - label: Angle Double Left - search: - terms: - - arrows - - back - - caret - - laquo - - previous - - quote - styles: - - solid - - regular - - light - - duotone - unicode: f100 - voted: false -angle-double-right: - changes: - - '3' - - 5.0.0 - label: Angle Double Right - search: - terms: - - arrows - - caret - - forward - - more - - next - - quote - - raquo - styles: - - solid - - regular - - light - - duotone - unicode: f101 - voted: false -angle-double-up: - changes: - - '3' - - 5.0.0 - label: Angle Double Up - search: - terms: - - arrows - - caret - - collapse - - upload - styles: - - solid - - regular - - light - - duotone - unicode: f102 - voted: false angle-down: changes: - '3' - 5.0.0 + - unreleased label: angle-down search: terms: @@ -861,6 +886,7 @@ angle-down: - regular - light - duotone + - thin unicode: f107 voted: false angle-left: @@ -868,6 +894,7 @@ angle-left: - '3' - 5.0.0 - 5.11.0 + - unreleased label: angle-left search: terms: @@ -881,6 +908,7 @@ angle-left: - regular - light - duotone + - thin unicode: f104 voted: false angle-right: @@ -888,6 +916,7 @@ angle-right: - '3' - 5.0.0 - 5.11.0 + - unreleased label: angle-right search: terms: @@ -901,12 +930,14 @@ angle-right: - regular - light - duotone + - thin unicode: f105 voted: false angle-up: changes: - '3' - 5.0.0 + - unreleased label: angle-up search: terms: @@ -919,27 +950,105 @@ angle-up: - regular - light - duotone + - thin unicode: f106 voted: false -angry: +angles-down: + aliases: + names: + - angles-down changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Angry Face + - '3' + - 5.0.0 + - unreleased + label: Angles down search: terms: - - disapprove - - emoticon - - face - - mad - - upset + - arrows + - caret + - download + - expand styles: - solid - regular - light - duotone - unicode: f556 + - thin + unicode: f103 + voted: false +angles-left: + aliases: + names: + - angles-left + changes: + - '3' + - 5.0.0 + - unreleased + label: Angles left + search: + terms: + - arrows + - back + - caret + - laquo + - previous + - quote + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f100 + voted: false +angles-right: + aliases: + names: + - angles-right + changes: + - '3' + - 5.0.0 + - unreleased + label: Angles right + search: + terms: + - arrows + - caret + - forward + - more + - next + - quote + - raquo + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f101 + voted: false +angles-up: + aliases: + names: + - angles-up + changes: + - '3' + - 5.0.0 + - unreleased + label: Angles up + search: + terms: + - arrows + - caret + - collapse + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f102 voted: false angrycreative: changes: @@ -965,6 +1074,7 @@ angular: ankh: changes: - 5.3.0 + - unreleased label: Ankh search: terms: @@ -980,6 +1090,7 @@ ankh: - regular - light - duotone + - thin unicode: f644 voted: false app-store: @@ -1031,29 +1142,10 @@ apple: - brands unicode: f179 voted: false -apple-alt: - changes: - - 5.2.0 - label: Fruit Apple - search: - terms: - - fall - - fruit - - fuji - - macintosh - - orchard - - seasonal - - vegan - styles: - - solid - - regular - - light - - duotone - unicode: f5d1 - voted: false apple-crate: changes: - 5.4.0 + - unreleased label: Apple Crate search: terms: @@ -1071,6 +1163,7 @@ apple-crate: - regular - light - duotone + - thin unicode: f6b1 voted: false apple-pay: @@ -1083,28 +1176,35 @@ apple-pay: - brands unicode: f415 voted: true -archive: +apple-whole: + aliases: + names: + - apple-alt changes: - - '3.2' - - 5.0.0 - - 5.0.9 - label: Archive + - 5.2.0 + - unreleased + label: Apple whole search: terms: - - box - - package - - save - - storage + - fall + - fruit + - fuji + - macintosh + - orchard + - seasonal + - vegan styles: - solid - regular - light - duotone - unicode: f187 + - thin + unicode: f5d1 voted: false archway: changes: - 5.1.0 + - unreleased label: Archway search: terms: @@ -1118,329 +1218,477 @@ archway: - regular - light - duotone + - thin unicode: f557 voted: false -arrow-alt-circle-down: +arrow-down: changes: + - '1' - 5.0.0 - label: Alternate Arrow Circle Down + - unreleased + label: arrow-down search: terms: - - arrow-circle-o-down - download styles: - solid - regular - light - duotone - unicode: f358 + - thin + unicode: f063 voted: false -arrow-alt-circle-left: +arrow-down-1-9: + aliases: + names: + - sort-numeric-down + - sort-numeric-asc changes: + - '3.2' - 5.0.0 - label: Alternate Arrow Circle Left + - 5.9.0 + - unreleased + label: Arrow down 1 9 search: terms: - - arrow-circle-o-left - - back - - previous + - arrange + - filter + - numbers + - order + - sort-numeric-asc styles: - solid - regular - light - duotone - unicode: f359 + - thin + unicode: f162 voted: false -arrow-alt-circle-right: +arrow-down-9-1: + aliases: + names: + - sort-numeric-down-alt + - sort-numeric-desc changes: - - 5.0.0 - label: Alternate Arrow Circle Right + - 5.9.0 + - unreleased + label: Arrow down 9 1 search: terms: - - arrow-circle-o-right - - forward - - next + - arrange + - filter + - numbers + - order + - sort-numeric-asc styles: - solid - regular - light - duotone - unicode: f35a + - thin + unicode: f886 voted: false -arrow-alt-circle-up: +arrow-down-a-z: + aliases: + names: + - sort-alpha-down + - sort-alpha-asc changes: + - '3.2' - 5.0.0 - label: Alternate Arrow Circle Up + - 5.9.0 + - unreleased + label: Arrow down a z search: terms: - - arrow-circle-o-up + - alphabetical + - arrange + - filter + - order + - sort-alpha-asc styles: - solid - regular - light - duotone - unicode: f35b + - thin + unicode: f15d voted: false -arrow-alt-down: +arrow-down-arrow-up: + aliases: + names: + - sort-alt changes: - - 5.0.0 - - 5.10.1 - - 5.11.0 - - 5.11.1 - label: Alternate Arrow Down + - 5.9.0 + - unreleased + label: Arrow down arrow up search: terms: - - download + - arrange + - arrows + - exchange + - filter + - order + - transfer styles: - solid - regular - light - duotone - unicode: f354 + - thin + unicode: f883 voted: false -arrow-alt-from-bottom: +arrow-down-big-small: + aliases: + names: + - sort-size-down changes: - - 5.0.0 - label: Alternate Arrow from Bottom + - 5.9.0 + - unreleased + label: Arrow down big small search: terms: - - download + - arrange + - filter + - order + - rectangle styles: - solid - regular - light - duotone - unicode: f346 + - thin + unicode: f88c voted: false -arrow-alt-from-left: +arrow-down-from-line: + aliases: + names: + - arrow-from-top changes: - 5.0.0 - label: Alternate Arrow from Left + - unreleased + label: Arrow down from line search: terms: - - back - - previous + - upload styles: - solid - regular - light - duotone - unicode: f347 + - thin + unicode: f345 voted: false -arrow-alt-from-right: +arrow-down-left-and-arrow-up-right-to-center: changes: - - 5.0.0 - label: Alternate Arrow from Right + - unreleased + label: Arrow Down-left-and-arrow-up-right-to-center search: - terms: - - forward - - next + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f348 + - thin + unicode: auto voted: false -arrow-alt-from-top: +arrow-down-long: + aliases: + names: + - long-arrow-down changes: + - '3.2' - 5.0.0 - label: Alternate Arrow from Top + - unreleased + label: Arrow down long search: terms: - - upload + - download + - long-arrow-down styles: - solid - regular - light - duotone - unicode: f349 + - thin + unicode: f175 voted: false -arrow-alt-left: +arrow-down-short-wide: + aliases: + names: + - sort-amount-down-alt + - sort-amount-desc changes: - - 5.0.0 - label: Alternate Arrow Left + - 5.9.0 + - unreleased + label: Arrow down short wide search: terms: - - back - - previous + - arrange + - filter + - order + - sort-amount-asc styles: - solid - regular - light - duotone - unicode: f355 + - thin + unicode: f884 voted: false -arrow-alt-right: +arrow-down-small-big: + aliases: + names: + - sort-size-down-alt changes: - - 5.0.0 - - 5.8.0 - label: Alternate Arrow Right + - 5.9.0 + - unreleased + label: Arrow down small big search: terms: - - forward - - next + - arrange + - filter + - order + - rectangle styles: - solid - regular - light - duotone - unicode: f356 + - thin + unicode: f88d voted: false -arrow-alt-square-down: +arrow-down-square-triangle: + aliases: + names: + - sort-shapes-down-alt changes: - - 5.0.0 - label: Alternate Arrow Square Down + - 5.9.0 + - unreleased + label: Arrow down square triangle search: terms: - - download + - arrange + - filter + - order + - shapes + - square + - triangle styles: - solid - regular - light - duotone - unicode: f350 + - thin + unicode: f889 voted: false -arrow-alt-square-left: +arrow-down-to-line: + aliases: + names: + - arrow-to-bottom changes: - 5.0.0 - label: Alternate Arrow Square Left + - 5.11.0 + - unreleased + label: Arrow down to line search: terms: - - back - - previous + - download styles: - solid - regular - light - duotone - unicode: f351 + - thin + unicode: f33d voted: false -arrow-alt-square-right: +arrow-down-to-square: + aliases: + names: + - arrow-down-to-square changes: - - 5.0.0 - label: Alternate Arrow Square Right + - unreleased + label: Arrow down to square search: - terms: - - forward - - next + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f352 + - thin + unicode: auto voted: false -arrow-alt-square-up: +arrow-down-triangle-square: + aliases: + names: + - sort-shapes-down changes: - - 5.0.0 - label: Alternate Arrow Square Up + - 5.9.0 + - unreleased + label: Arrow down triangle square search: terms: - - upload + - arrange + - filter + - order + - shapes + - square + - triangle styles: - solid - regular - light - duotone - unicode: f353 + - thin + unicode: f888 voted: false -arrow-alt-to-bottom: +arrow-down-wide-short: + aliases: + names: + - sort-amount-down + - sort-amount-asc changes: + - '3.2' - 5.0.0 - label: Alternate Arrow to Bottom + - 5.9.0 + - unreleased + label: Arrow down wide short search: terms: - - download + - arrange + - filter + - number + - order + - sort-amount-asc styles: - solid - regular - light - duotone - unicode: f34a + - thin + unicode: f160 voted: false -arrow-alt-to-left: +arrow-down-z-a: + aliases: + names: + - sort-alpha-down-alt + - sort-alpha-desc changes: - - 5.0.0 - label: Alternate Arrow to Left + - 5.9.0 + - unreleased + label: Arrow down z a search: terms: - - back - - previous + - alphabetical + - arrange + - filter + - order + - sort-alpha-asc styles: - solid - regular - light - duotone - unicode: f34b + - thin + unicode: f881 voted: false -arrow-alt-to-right: +arrow-left: changes: + - '1' - 5.0.0 - label: Alternate Arrow to Right + - unreleased + label: arrow-left search: terms: - - forward - - next + - back + - previous styles: - solid - regular - light - duotone - unicode: f34c + - thin + unicode: f060 voted: false -arrow-alt-to-top: +arrow-left-from-line: + aliases: + names: + - arrow-from-right changes: - 5.0.0 - - 5.10.1 - label: Alternate Arrow to Top + - unreleased + label: Arrow left from line search: terms: - - upload + - forward + - next styles: - solid - regular - light - duotone - unicode: f34d + - thin + unicode: f344 voted: false -arrow-alt-up: +arrow-left-long: + aliases: + names: + - long-arrow-left changes: + - '3.2' - 5.0.0 - - 5.10.1 - - 5.11.0 - - 5.11.1 - label: Alternate Arrow Up + - unreleased + label: Arrow left long search: terms: - - upload + - back + - long-arrow-left + - previous styles: - solid - regular - light - duotone - unicode: f357 + - thin + unicode: f177 voted: false -arrow-circle-down: +arrow-left-rotate: + aliases: + names: + - undo + - arrow-rotate-left changes: - '2' - 5.0.0 - label: Arrow Circle Down + - unreleased + label: Arrow left rotate search: terms: - - download + - back + - control z + - exchange + - oops + - return + - rotate + - swap styles: - solid - regular - light - duotone - unicode: f0ab + - thin + unicode: f0e2 voted: false -arrow-circle-left: +arrow-left-to-line: + aliases: + names: + - arrow-to-left changes: - - '2' - 5.0.0 - label: Arrow Circle Left + - unreleased + label: Arrow left to line search: terms: - back @@ -1450,72 +1698,107 @@ arrow-circle-left: - regular - light - duotone - unicode: f0a8 + - thin + unicode: f33e voted: false -arrow-circle-right: +arrow-pointer: + aliases: + names: + - mouse-pointer changes: - - '2' + - '4.4' - 5.0.0 - label: Arrow Circle Right + - 5.0.3 + - unreleased + label: Arrow pointer search: terms: - - forward - - next + - arrow + - cursor + - select styles: - solid - regular - light - duotone - unicode: f0a9 + - thin + unicode: f245 voted: false -arrow-circle-up: +arrow-right: changes: - - '2' + - '1' - 5.0.0 - label: Arrow Circle Up + - unreleased + label: arrow-right search: terms: - - upload + - forward + - next styles: - solid - regular - light - duotone - unicode: f0aa + - thin + unicode: f061 voted: false -arrow-down: +arrow-right-arrow-left: + aliases: + names: + - exchange changes: - - '1' + - '3' - 5.0.0 - label: arrow-down + - unreleased + label: Arrow right arrow left search: terms: - - download + - arrow + - arrows + - reciprocate + - return + - swap + - transfer styles: - solid - regular - light - duotone - unicode: f063 + - thin + unicode: f0ec voted: false -arrow-from-bottom: +arrow-right-from-bracket: + aliases: + names: + - sign-out changes: + - '1' - 5.0.0 - label: Arrow from Bottom + - unreleased + label: Arrow right from bracket search: terms: - - download + - arrow + - exit + - leave + - log out + - logout styles: - solid - regular - light - duotone - unicode: f342 + - thin + unicode: f08b voted: false -arrow-from-left: +arrow-right-from-line: + aliases: + names: + - arrow-from-left changes: - 5.0.0 - label: Arrow from Left + - unreleased + label: Arrow right from line search: terms: - back @@ -1525,294 +1808,538 @@ arrow-from-left: - regular - light - duotone + - thin unicode: f343 voted: false -arrow-from-right: +arrow-right-long: + aliases: + names: + - long-arrow-right changes: + - '3.2' - 5.0.0 - label: Arrow from Right + - unreleased + label: Arrow right long search: terms: - forward + - long-arrow-right - next styles: - solid - regular - light - duotone - unicode: f344 + - thin + unicode: f178 voted: false -arrow-from-top: +arrow-right-to-bracket: + aliases: + names: + - sign-in changes: + - '1' - 5.0.0 - label: Arrow from Top + - unreleased + label: Arrow right to bracket search: terms: - - upload + - arrow + - enter + - join + - log in + - login + - sign in + - sign up + - sign-in + - signin + - signup styles: - solid - regular - light - duotone - unicode: f345 + - thin + unicode: f090 voted: false -arrow-left: +arrow-right-to-line: + aliases: + names: + - arrow-to-right changes: - - '1' - 5.0.0 - label: arrow-left + - unreleased + label: Arrow right to line search: terms: - - back - - previous + - forward + - next styles: - solid - regular - light - duotone - unicode: f060 + - thin + unicode: f340 voted: false -arrow-right: +arrow-rotate-forward: + aliases: + names: + - redo + - repeat + - rotate-right changes: - '1' - 5.0.0 - label: arrow-right + - 5.8.0 + - unreleased + label: Arrow rotate forward search: terms: - forward - - next + - refresh + - reload + - repeat styles: - solid - regular - light - duotone - unicode: f061 + - thin + unicode: f01e voted: false -arrow-square-down: +arrow-turn-down: + aliases: + names: + - level-down changes: + - '3.1' - 5.0.0 - label: Arrow Square Down + - 5.11.0 + - unreleased + label: Arrow turn down search: terms: - - download + - arrow styles: - solid - regular - light - duotone - unicode: f339 + - thin + unicode: f149 voted: false -arrow-square-left: +arrow-turn-up: + aliases: + names: + - level-up changes: + - '3.1' - 5.0.0 - label: Arrow Square Left + - 5.11.0 + - 5.11.1 + - unreleased + label: Arrow turn up search: terms: - - back - - previous + - arrow styles: - solid - regular - light - duotone - unicode: f33a + - thin + unicode: f148 voted: false -arrow-square-right: +arrow-up: changes: + - '1' - 5.0.0 - label: Arrow Square Right + - unreleased + label: arrow-up search: terms: - forward - - next + - upload styles: - solid - regular - light - duotone - unicode: f33b + - thin + unicode: f062 voted: false -arrow-square-up: +arrow-up-1-9: + aliases: + names: + - sort-numeric-up changes: + - '3.2' - 5.0.0 - label: Arrow Square Up + - 5.9.0 + - unreleased + label: Arrow up 1 9 search: terms: - - upload + - arrange + - filter + - numbers + - order + - sort-numeric-desc styles: - solid - regular - light - duotone - unicode: f33c + - thin + unicode: f163 voted: false -arrow-to-bottom: +arrow-up-9-1: + aliases: + names: + - sort-numeric-up-alt changes: - - 5.0.0 - - 5.11.0 - label: Arrow to Bottom + - 5.9.0 + - unreleased + label: Arrow up 9 1 search: terms: - - download + - arrange + - filter + - numbers + - order + - sort-numeric-desc styles: - solid - regular - light - duotone - unicode: f33d + - thin + unicode: f887 voted: false -arrow-to-left: +arrow-up-a-z: + aliases: + names: + - sort-alpha-up changes: + - '3.2' - 5.0.0 - label: Arrow to Left + - 5.9.0 + - unreleased + label: Arrow up a z search: terms: - - back - - previous + - alphabetical + - arrange + - filter + - order + - sort-alpha-desc styles: - solid - regular - light - duotone - unicode: f33e + - thin + unicode: f15e voted: false -arrow-to-right: +arrow-up-arrow-down: + aliases: + names: + - sort-up-down changes: - - 5.0.0 - label: Arrow to Right + - unreleased + label: Arrow up arrow down search: - terms: - - forward - - next + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f340 + - thin + unicode: auto voted: false -arrow-to-top: +arrow-up-big-small: + aliases: + names: + - sort-size-up changes: - - 5.0.0 - label: Arrow to Top + - 5.9.0 + - unreleased + label: Arrow up big small search: terms: - - upload + - arrange + - filter + - order + - rectangle styles: - solid - regular - light - duotone - unicode: f341 + - thin + unicode: f88e voted: false -arrow-up: +arrow-up-from-line: + aliases: + names: + - arrow-from-bottom changes: - - '1' - 5.0.0 - label: arrow-up + - unreleased + label: Arrow up from line search: terms: - - forward - - upload + - download styles: - solid - regular - light - duotone - unicode: f062 + - thin + unicode: f342 voted: false -arrows: +arrow-up-from-square: changes: - - '1' - - 5.0.0 - label: Arrows + - unreleased + label: Arrow Up-from-square search: - terms: - - arrow - - arrows - - bigger - - enlarge - - expand - - fullscreen - - move - - position - - reorder - - resize + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f047 + - thin + unicode: auto voted: false -arrows-alt: +arrow-up-long: + aliases: + names: + - long-arrow-up changes: - - '2' + - '3.2' - 5.0.0 - label: Alternate Arrows + - unreleased + label: Arrow up long search: terms: - - arrow - - arrows - - bigger - - enlarge - - expand - - fullscreen - - move - - position - - reorder - - resize + - long-arrow-up + - upload styles: - solid - regular - light - duotone - unicode: f0b2 + - thin + unicode: f176 voted: false -arrows-alt-h: +arrow-up-right-and-arrow-down-left-from-center: changes: - - 5.0.0 - label: Alternate Arrows Horizontal + - unreleased + label: Arrow Up-right-and-arrow-down-left-from-center search: - terms: - - arrows-h - - expand - - horizontal - - landscape - - resize - - wide + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f337 + - thin + unicode: auto voted: false -arrows-alt-v: +arrow-up-right-from-square: + aliases: + names: + - external-link changes: + - '1' - 5.0.0 - 5.11.0 - label: Alternate Arrows Vertical + - unreleased + label: Arrow up right from square search: terms: - - arrows-v - - expand - - portrait - - resize - - tall - - vertical + - new + - open + - send + - share styles: - solid - regular - light - duotone - unicode: f338 + - thin + unicode: f08e + voted: false +arrow-up-short-wide: + aliases: + names: + - sort-amount-up-alt + changes: + - 5.9.0 + - unreleased + label: Arrow up short wide + search: + terms: + - arrange + - filter + - order + - sort-amount-desc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f885 + voted: false +arrow-up-small-big: + aliases: + names: + - sort-size-up-alt + changes: + - 5.9.0 + - unreleased + label: Arrow up small big + search: + terms: + - arrange + - filter + - order + - rectangle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f88f + voted: false +arrow-up-square-triangle: + aliases: + names: + - sort-shapes-up-alt + changes: + - 5.9.0 + - unreleased + label: Arrow up square triangle + search: + terms: + - arrange + - filter + - order + - shapes + - square + - triangle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f88b + voted: false +arrow-up-to-line: + aliases: + names: + - arrow-to-top + changes: + - 5.0.0 + - unreleased + label: Arrow up to line + search: + terms: + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f341 + voted: false +arrow-up-triangle-square: + aliases: + names: + - sort-shapes-up + changes: + - 5.9.0 + - unreleased + label: Arrow up triangle square + search: + terms: + - arrange + - filter + - order + - shapes + - square + - triangle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f88a + voted: false +arrow-up-wide-short: + aliases: + names: + - sort-amount-up + changes: + - '3.2' + - 5.0.0 + - 5.9.0 + - unreleased + label: Arrow up wide short + search: + terms: + - arrange + - filter + - order + - sort-amount-desc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f161 + voted: false +arrow-up-z-a: + aliases: + names: + - sort-alpha-up-alt + changes: + - 5.9.0 + - unreleased + label: Arrow up z a + search: + terms: + - alphabetical + - arrange + - filter + - order + - sort-alpha-desc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f882 voted: false -arrows-h: +arrows-left-right: + aliases: + names: + - arrows-h changes: - '1' - 5.0.0 - label: Arrows Horizontal + - unreleased + label: Arrows left right search: terms: - expand @@ -1825,13 +2352,150 @@ arrows-h: - regular - light - duotone + - thin unicode: f07e voted: false -arrows-v: +arrows-maximize: + aliases: + names: + - expand-arrows + changes: + - 5.0.0 + - unreleased + label: Arrows maximize + search: + terms: + - bigger + - enlarge + - fullscreen + - move + - resize + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f31d + voted: false +arrows-minimize: + aliases: + names: + - compress-arrows + changes: + - unreleased + label: Arrows minimize + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +arrows-repeat: + aliases: + names: + - repeat-alt + changes: + - 5.0.0 + - unreleased + label: Arrows repeat + search: + terms: + - flip + - reload + - rewind + - switch + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f364 + voted: false +arrows-repeat-1: + aliases: + names: + - repeat-1-alt + changes: + - 5.0.0 + - unreleased + label: Arrows repeat 1 + search: + terms: + - flip + - reload + - rewind + - switch + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f366 + voted: false +arrows-retweet: + aliases: + names: + - retweet-alt + changes: + - 5.0.0 + - unreleased + label: Arrows retweet + search: + terms: + - refresh + - reload + - share + - swap + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f361 + voted: false +arrows-rotate: + aliases: + names: + - sync + - refresh + changes: + - '1' + - 5.0.0 + - 5.8.0 + - unreleased + label: Arrows rotate + search: + terms: + - exchange + - refresh + - reload + - rotate + - swap + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f021 + voted: false +arrows-up-down: + aliases: + names: + - arrows-v changes: - '1' - 5.0.0 - label: Arrows Vertical + - unreleased + label: Arrows up down search: terms: - expand @@ -1844,8 +2508,38 @@ arrows-v: - regular - light - duotone + - thin unicode: f07d voted: false +arrows-up-down-left-right: + aliases: + names: + - arrows + changes: + - '1' + - 5.0.0 + - unreleased + label: Arrows up down left right + search: + terms: + - arrow + - arrows + - bigger + - enlarge + - expand + - fullscreen + - move + - position + - reorder + - resize + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f047 + voted: false artstation: changes: - 5.6.0 @@ -1857,31 +2551,11 @@ artstation: - brands unicode: f77a voted: true -assistive-listening-systems: - changes: - - '4.6' - - 5.0.0 - label: Assistive Listening Systems - search: - terms: - - amplify - - audio - - deaf - - ear - - headset - - hearing - - sound - styles: - - solid - - regular - - light - - duotone - unicode: f2a2 - voted: false asterisk: changes: - '1' - 5.0.0 + - unreleased label: asterisk search: terms: @@ -1894,6 +2568,7 @@ asterisk: - regular - light - duotone + - thin unicode: f069 voted: false asymmetrik: @@ -1910,6 +2585,7 @@ at: changes: - '4.2' - 5.0.0 + - unreleased label: At search: terms: @@ -1923,28 +2599,9 @@ at: - regular - light - duotone + - thin unicode: f1fa voted: false -atlas: - changes: - - 5.1.0 - label: Atlas - search: - terms: - - book - - directions - - geography - - globe - - map - - travel - - wayfinding - styles: - - solid - - regular - - light - - duotone - unicode: f558 - voted: false atlassian: changes: - 5.6.0 @@ -1959,6 +2616,7 @@ atom: changes: - 5.2.0 - 5.12.0 + - unreleased label: Atom search: terms: @@ -1976,13 +2634,18 @@ atom: - regular - light - duotone + - thin unicode: f5d2 voted: false -atom-alt: +atom-simple: + aliases: + names: + - atom-alt changes: - 5.2.0 - 5.12.0 - label: Atom Alt + - unreleased + label: Atom simple search: terms: - atheism @@ -2000,6 +2663,7 @@ atom-alt: - regular - light - duotone + - thin unicode: f5d3 voted: false audible: @@ -2012,24 +2676,19 @@ audible: - brands unicode: f373 voted: false -audio-description: +austral-sign: changes: - - '4.6' - - 5.0.0 - - 5.10.2 - label: Audio Description + - unreleased + label: Austral Sign search: - terms: - - blind - - narration - - video - - visual + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f29e + - thin + unicode: auto voted: false autoprefixer: changes: @@ -2066,6 +2725,7 @@ award: - 5.1.0 - 5.2.0 - 5.10.2 + - unreleased label: Award search: terms: @@ -2080,6 +2740,7 @@ award: - regular - light - duotone + - thin unicode: f559 voted: true aws: @@ -2096,6 +2757,7 @@ aws: axe: changes: - 5.4.0 + - unreleased label: Axe search: terms: @@ -2113,11 +2775,13 @@ axe: - regular - light - duotone + - thin unicode: f6b2 voted: false axe-battle: changes: - 5.4.0 + - unreleased label: Axe Battle search: terms: @@ -2134,12 +2798,28 @@ axe-battle: - regular - light - duotone + - thin unicode: f6b3 voted: false +b: + changes: + - unreleased + label: B + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false baby: changes: - 5.6.0 - 5.10.1 + - unreleased label: Baby search: terms: @@ -2157,11 +2837,16 @@ baby: - regular - light - duotone + - thin unicode: f77c voted: true baby-carriage: + aliases: + names: + - carriage-baby changes: - 5.6.0 + - unreleased label: Baby Carriage search: terms: @@ -2178,11 +2863,13 @@ baby-carriage: - regular - light - duotone + - thin unicode: f77d voted: true backpack: changes: - 5.2.0 + - unreleased label: Backpack search: terms: @@ -2197,45 +2884,82 @@ backpack: - regular - light - duotone + - thin unicode: f5d4 voted: false -backspace: +backward: changes: - - 5.1.0 - label: Backspace + - '1' + - 5.0.0 + - unreleased + label: backward search: terms: - - command - - delete - - erase - - keyboard - - undo + - previous + - rewind styles: - solid - regular - light - duotone - unicode: f55a - voted: true -backward: + - thin + unicode: f04a + voted: false +backward-fast: + aliases: + names: + - fast-backward changes: - '1' - 5.0.0 - label: backward + - unreleased + label: Backward fast search: terms: + - beginning + - first - previous - rewind + - start styles: - solid - regular - light - duotone - unicode: f04a + - thin + unicode: f049 + voted: false +backward-step: + aliases: + names: + - step-backward + changes: + - '1' + - 5.0.0 + - 5.10.2 + - 5.11.0 + - 5.11.1 + - unreleased + label: Backward step + search: + terms: + - beginning + - first + - previous + - rewind + - start + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f048 voted: false bacon: changes: - 5.7.0 + - unreleased label: Bacon search: terms: @@ -2252,12 +2976,15 @@ bacon: - regular - light - duotone + - thin unicode: f7e5 voted: false bacteria: changes: - 5.13.0 - 5.13.1 + - 5.14.0 + - unreleased label: Bacteria search: terms: @@ -2272,12 +2999,15 @@ bacteria: - regular - solid - duotone - unicode: f959 + - thin + unicode: e059 voted: false bacterium: changes: - 5.13.0 - 5.13.1 + - 5.14.0 + - unreleased label: Bacterium search: terms: @@ -2292,12 +3022,14 @@ bacterium: - regular - solid - duotone - unicode: f95a + - thin + unicode: e05a voted: false badge: changes: - 5.0.0 - 5.10.2 + - unreleased label: Badge search: terms: @@ -2310,11 +3042,13 @@ badge: - regular - light - duotone + - thin unicode: f335 voted: false badge-check: changes: - 5.0.0 + - unreleased label: Check Badge search: terms: @@ -2338,11 +3072,13 @@ badge-check: - regular - light - duotone + - thin unicode: f336 voted: false badge-dollar: changes: - 5.3.0 + - unreleased label: Badge Dollar search: terms: @@ -2356,11 +3092,13 @@ badge-dollar: - regular - light - duotone + - thin unicode: f645 voted: false badge-percent: changes: - 5.3.0 + - unreleased label: Badge Percent search: terms: @@ -2374,11 +3112,13 @@ badge-percent: - regular - light - duotone + - thin unicode: f646 voted: false badge-sheriff: changes: - 5.11.0 + - unreleased label: Sheriff Badge search: terms: @@ -2392,12 +3132,14 @@ badge-sheriff: - regular - solid - duotone + - thin unicode: f8a2 voted: false badger-honey: changes: - 5.4.0 - 5.10.2 + - unreleased label: Honey Badger search: terms: @@ -2413,11 +3155,37 @@ badger-honey: - regular - light - duotone + - thin unicode: f6b4 voted: false +bag-shopping: + aliases: + names: + - shopping-bag + changes: + - '4.5' + - 5.0.0 + - unreleased + label: Bag shopping + search: + terms: + - buy + - checkout + - grocery + - payment + - purchase + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f290 + voted: false bags-shopping: changes: - 5.9.0 + - unreleased label: Shopping Bags search: terms: @@ -2431,12 +3199,14 @@ bags-shopping: - regular - light - duotone + - thin unicode: f847 voted: false bahai: changes: - 5.3.0 - 5.12.0 + - unreleased label: Bahá'í search: terms: @@ -2448,72 +3218,28 @@ bahai: - regular - light - duotone + - thin unicode: f666 voted: false -balance-scale: - changes: - - '4.4' - - 5.0.0 - - 5.0.13 - label: Balance Scale - search: - terms: - - balanced - - justice - - legal - - measure - - weight - styles: - - solid - - regular - - light - - duotone - unicode: f24e - voted: false -balance-scale-left: +baht-sign: changes: - - 5.0.13 - - 5.9.0 - - 5.12.0 - label: Balance Scale (Left-Weighted) + - unreleased + label: Baht Sign search: - terms: - - justice - - legal - - measure - - unbalanced - - weight + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f515 - voted: true -balance-scale-right: - changes: - - 5.0.13 - - 5.9.0 - - 5.12.0 - label: Balance Scale (Right-Weighted) - search: - terms: - - justice - - legal - - measure - - unbalanced - - weight - styles: - solid - regular - light - - duotone - unicode: f516 - voted: true + - thin + unicode: auto + voted: false ball-pile: changes: - 5.6.0 - 5.7.0 + - unreleased label: Ball Pile search: terms: @@ -2527,10 +3253,12 @@ ball-pile: - regular - light - duotone + - thin unicode: f77e ballot: changes: - 5.5.0 + - unreleased label: Ballot search: terms: @@ -2544,11 +3272,13 @@ ballot: - regular - light - duotone + - thin unicode: f732 voted: false ballot-check: changes: - 5.5.0 + - unreleased label: Ballot Check search: terms: @@ -2568,12 +3298,17 @@ ballot-check: - regular - light - duotone + - thin unicode: f733 voted: false ban: + aliases: + names: + - cancel changes: - '1' - 5.0.0 + - unreleased label: ban search: terms: @@ -2592,13 +3327,86 @@ ban: - regular - light - duotone + - thin unicode: f05e voted: false -band-aid: +ban-bug: + aliases: + names: + - debug + changes: + - 5.7.0 + - unreleased + label: Ban bug + search: + terms: + - error + - fix + - optimize + - warning + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7f9 + voted: false +ban-parking: + aliases: + names: + - parking-circle-slash + changes: + - 5.2.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Ban parking + search: + terms: + - auto + - car + - garage + - meter + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f616 + voted: false +ban-smoking: + aliases: + names: + - smoking-ban + changes: + - 5.0.13 + - unreleased + label: Ban smoking + search: + terms: + - ban + - cancel + - no smoking + - non-smoking + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f54d + voted: true +bandage: + aliases: + names: + - band-aid changes: - 5.0.7 - 5.10.2 - label: Band-Aid + - unreleased + label: Bandage search: terms: - bandage @@ -2610,6 +3418,7 @@ band-aid: - regular - light - duotone + - thin unicode: f462 voted: false bandcamp: @@ -2627,6 +3436,7 @@ bandcamp: banjo: changes: - 5.11.0 + - unreleased label: Banjo search: terms: @@ -2641,31 +3451,43 @@ banjo: - regular - light - duotone + - thin unicode: f8a3 voted: false -barcode: +bank: + aliases: + names: + - university + - institution changes: - - '1' + - '4.1' - 5.0.0 - label: barcode + - 5.0.3 + - 5.11.0 + - 5.11.1 + - unreleased + label: Bank search: terms: - - info - - laser - - price - - scan - - upc + - bank + - building + - college + - higher education - students + - institution styles: - solid - regular - light - duotone - unicode: f02a + - thin + unicode: f19c voted: false -barcode-alt: +barcode: changes: - - 5.0.7 - label: Alternate Barcode + - '1' + - 5.0.0 + - unreleased + label: barcode search: terms: - info @@ -2678,11 +3500,13 @@ barcode-alt: - regular - light - duotone - unicode: f463 + - thin + unicode: f02a voted: false barcode-read: changes: - 5.0.7 + - unreleased label: Barcode Read search: terms: @@ -2696,11 +3520,13 @@ barcode-read: - regular - light - duotone + - thin unicode: f464 voted: false barcode-scan: changes: - 5.0.7 + - unreleased label: Barcode Scan search: terms: @@ -2714,12 +3540,17 @@ barcode-scan: - regular - light - duotone + - thin unicode: f465 voted: false bars: + aliases: + names: + - navicon changes: - '2' - 5.0.0 + - unreleased label: Bars search: terms: @@ -2740,32 +3571,65 @@ bars: - regular - light - duotone + - thin unicode: f0c9 voted: false -baseball: +bars-progress: + aliases: + names: + - tasks-alt changes: - - 5.0.5 - label: Baseball + - 5.7.0 + - 5.10.2 + - unreleased + label: Bars progress search: terms: - - bat - - league - - mlb - - slugger - - softball - - sport + - checklist + - downloading + - downloads + - loading + - poll + - progress + - project management + - settings + - to do styles: - solid - regular - light - duotone - unicode: f432 + - thin + unicode: f828 voted: false -baseball-ball: +bars-staggered: + aliases: + names: + - stream + - reorder changes: - - 5.0.5 - - 5.11.0 + - 5.0.13 + - unreleased + label: Bars staggered + search: + terms: + - flow + - list + - timeline + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f550 + voted: false +baseball-ball: + changes: + - 5.0.5 + - 5.11.0 - 5.11.1 + - unreleased label: Baseball Ball search: terms: @@ -2781,13 +3645,80 @@ baseball-ball: - regular - light - duotone + - thin unicode: f433 voted: false +baseball-bat-ball: + aliases: + names: + - baseball + changes: + - 5.0.5 + - unreleased + label: Baseball bat ball + search: + terms: + - bat + - league + - mlb + - slugger + - softball + - sport + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f432 + voted: false +basket-shopping: + aliases: + names: + - shopping-basket + changes: + - '4.5' + - 5.0.0 + - unreleased + label: Basket shopping + search: + terms: + - buy + - checkout + - grocery + - payment + - purchase + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f291 + voted: false +basket-shopping-simple: + aliases: + names: + - shopping-basket-alt + changes: + - unreleased + label: Basket shopping simple + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false basketball-ball: changes: - 5.0.5 - 5.11.0 - 5.11.1 + - unreleased label: Basketball Ball search: terms: @@ -2800,12 +3731,14 @@ basketball-ball: - regular - light - duotone + - thin unicode: f434 voted: false basketball-hoop: changes: - 5.0.5 - 5.10.1 + - unreleased label: Basketball Hoop search: terms: @@ -2818,11 +3751,13 @@ basketball-hoop: - regular - light - duotone + - thin unicode: f435 voted: false bat: changes: - 5.4.0 + - unreleased label: Bat search: terms: @@ -2840,13 +3775,18 @@ bat: - regular - light - duotone + - thin unicode: f6b5 voted: false bath: + aliases: + names: + - bathtub changes: - '4.7' - 5.0.0 - 5.12.0 + - unreleased label: Bath search: terms: @@ -2859,11 +3799,13 @@ bath: - regular - light - duotone + - thin unicode: f2cd voted: false battery-bolt: changes: - 5.0.0 + - unreleased label: Battery Bolt search: terms: @@ -2875,12 +3817,17 @@ battery-bolt: - regular - light - duotone + - thin unicode: f376 voted: false battery-empty: + aliases: + names: + - battery-0 changes: - '4.4' - 5.0.0 + - unreleased label: Battery Empty search: terms: @@ -2893,12 +3840,32 @@ battery-empty: - regular - light - duotone + - thin unicode: f244 voted: false +battery-exclamation: + changes: + - unreleased + label: Battery Exclamation + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false battery-full: + aliases: + names: + - battery + - battery-5 changes: - '4.4' - 5.0.0 + - unreleased label: Battery Full search: terms: @@ -2910,12 +3877,17 @@ battery-full: - regular - light - duotone + - thin unicode: f240 voted: false battery-half: + aliases: + names: + - battery-3 changes: - '4.4' - 5.0.0 + - unreleased label: Battery 1/2 Full search: terms: @@ -2927,12 +3899,34 @@ battery-half: - regular - light - duotone + - thin unicode: f242 voted: false +battery-low: + aliases: + names: + - battery-1 + changes: + - unreleased + label: Battery Low + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false battery-quarter: + aliases: + names: + - battery-2 changes: - '4.4' - 5.0.0 + - unreleased label: Battery 1/4 Full search: terms: @@ -2945,12 +3939,14 @@ battery-quarter: - regular - light - duotone + - thin unicode: f243 voted: false battery-slash: changes: - 5.0.0 - 5.7.0 + - unreleased label: Battery Slash search: terms: @@ -2963,12 +3959,17 @@ battery-slash: - regular - light - duotone + - thin unicode: f377 voted: false battery-three-quarters: + aliases: + names: + - battery-4 changes: - '4.4' - 5.0.0 + - unreleased label: Battery 3/4 Full search: terms: @@ -2980,6 +3981,7 @@ battery-three-quarters: - regular - light - duotone + - thin unicode: f241 voted: false battle-net: @@ -2996,6 +3998,7 @@ bed: - '4.3' - 5.0.0 - 5.1.0 + - unreleased label: Bed search: terms: @@ -3009,58 +4012,67 @@ bed: - regular - light - duotone + - thin unicode: f236 voted: false -bed-alt: +bed-bunk: changes: - 5.12.0 - label: Alternate Bed + - unreleased + label: Bunkbed search: terms: - - double - - king - lodging - mattress - - pillows - - queen - rest + - siblings - sleep + - sleepover - travel styles: - solid - regular - light - duotone - unicode: f8f7 + - thin + unicode: f8f8 voted: false -bed-bunk: +bed-empty: changes: - 5.12.0 - label: Bunkbed + - unreleased + label: Bed Empty search: terms: - lodging - mattress - rest - - siblings - sleep - - sleepover - travel styles: - solid - regular - light - duotone - unicode: f8f8 + - thin + unicode: f8f9 voted: false -bed-empty: +bed-front: + aliases: + names: + - bed-alt changes: - 5.12.0 - label: Bed Empty + - unreleased + label: Bed front search: terms: + - double + - king - lodging - mattress + - pillows + - queen - rest - sleep - travel @@ -3069,13 +4081,75 @@ bed-empty: - regular - light - duotone - unicode: f8f9 + - thin + unicode: f8f7 + voted: false +bed-pulse: + aliases: + names: + - procedures + changes: + - 5.0.7 + - unreleased + label: Bed pulse + search: + terms: + - EKG + - bed + - electrocardiogram + - health + - hospital + - life + - patient + - vital + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f487 voted: false -beer: +bee: + changes: + - unreleased + label: Bee + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +beer-mug: + aliases: + names: + - beer-foam + changes: + - unreleased + label: Beer mug + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +beer-mug-empty: + aliases: + names: + - beer changes: - '3' - 5.0.0 - label: beer + - unreleased + label: Beer mug empty search: terms: - alcohol @@ -3093,6 +4167,7 @@ beer: - regular - light - duotone + - thin unicode: f0fc voted: false behance: @@ -3124,6 +4199,7 @@ bell: - 5.0.0 - 5.2.0 - 5.11.0 + - unreleased label: bell search: terms: @@ -3137,11 +4213,36 @@ bell: - regular - light - duotone + - thin unicode: f0f3 voted: false +bell-concierge: + aliases: + names: + - concierge-bell + changes: + - 5.1.0 + - unreleased + label: Bell concierge + search: + terms: + - attention + - hotel + - receptionist + - service + - support + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f562 + voted: false bell-exclamation: changes: - 5.9.0 + - unreleased label: Bell Exclamation search: terms: @@ -3155,11 +4256,13 @@ bell-exclamation: - regular - light - duotone + - thin unicode: f848 voted: false bell-on: changes: - 5.12.0 + - unreleased label: Bell On search: terms: @@ -3173,11 +4276,13 @@ bell-on: - regular - light - duotone + - thin unicode: f8fa voted: false bell-plus: changes: - 5.9.0 + - unreleased label: Bell Plus search: terms: @@ -3191,11 +4296,13 @@ bell-plus: - regular - light - duotone + - thin unicode: f849 voted: false bell-school: changes: - 5.2.0 + - unreleased label: Bell School search: terms: @@ -3209,11 +4316,13 @@ bell-school: - regular - light - duotone + - thin unicode: f5d5 voted: false bell-school-slash: changes: - 5.2.0 + - unreleased label: Bell School Slash search: terms: @@ -3229,6 +4338,7 @@ bell-school-slash: - regular - light - duotone + - thin unicode: f5d6 voted: false bell-slash: @@ -3236,6 +4346,7 @@ bell-slash: - '4.2' - 5.0.0 - 5.2.0 + - unreleased label: Bell Slash search: terms: @@ -3250,11 +4361,13 @@ bell-slash: - regular - light - duotone + - thin unicode: f1f6 voted: false bells: changes: - 5.6.0 + - unreleased label: Bells search: terms: @@ -3269,30 +4382,12 @@ bells: - regular - light - duotone + - thin unicode: f77f -betamax: - changes: - - 5.11.0 - label: Betamax - search: - terms: - - cassette - - rental - - retro - - tape - - vhs - - video - - vintage - styles: - - solid - - regular - - light - - duotone - unicode: f8a4 - voted: false bezier-curve: changes: - 5.1.0 + - unreleased label: Bezier Curve search: terms: @@ -3306,30 +4401,14 @@ bezier-curve: - regular - light - duotone + - thin unicode: f55b voted: false -bible: - changes: - - 5.3.0 - label: Bible - search: - terms: - - book - - catholicism - - christianity - - god - - holy - styles: - - solid - - regular - - light - - duotone - unicode: f647 - voted: false bicycle: changes: - '4.2' - 5.0.0 + - unreleased label: Bicycle search: terms: @@ -3343,48 +4422,9 @@ bicycle: - regular - light - duotone + - thin unicode: f206 voted: false -biking: - changes: - - 5.9.0 - label: Biking - search: - terms: - - bicycle - - bike - - cycle - - cycling - - ride - - wheel - styles: - - solid - - regular - - light - - duotone - unicode: f84a - voted: false -biking-mountain: - changes: - - 5.9.0 - label: Biking Mountain - search: - terms: - - bicycle - - bike - - cycle - - cycling - - offroad - - ride - - trail - - wheel - styles: - - solid - - regular - - light - - duotone - unicode: f84b - voted: false bimobject: changes: - 5.0.0 @@ -3400,6 +4440,7 @@ binoculars: - '4.2' - 5.0.0 - 5.2.0 + - unreleased label: Binoculars search: terms: @@ -3413,12 +4454,14 @@ binoculars: - regular - light - duotone + - thin unicode: f1e5 voted: false biohazard: changes: - 5.6.0 - 5.7.0 + - unreleased label: Biohazard search: terms: @@ -3436,31 +4479,9 @@ biohazard: - regular - light - duotone + - thin unicode: f780 voted: true -birthday-cake: - changes: - - '4.2' - - 5.0.0 - label: Birthday Cake - search: - terms: - - anniversary - - bakery - - candles - - celebration - - dessert - - frosting - - holiday - - party - - pastry - styles: - - solid - - regular - - light - - duotone - unicode: f1fd - voted: false bitbucket: changes: - '3.2' @@ -3487,6 +4508,20 @@ bitcoin: - brands unicode: f379 voted: false +bitcoin-sign: + changes: + - unreleased + label: Bitcoin Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false bity: changes: - 5.0.0 @@ -3521,6 +4556,7 @@ blackberry: blanket: changes: - 5.0.9 + - unreleased label: Blanket search: terms: @@ -3534,11 +4570,13 @@ blanket: - regular - light - duotone + - thin unicode: f498 voted: false blender: changes: - 5.0.13 + - unreleased label: Blender search: terms: @@ -3552,11 +4590,13 @@ blender: - regular - light - duotone + - thin unicode: f517 voted: false blender-phone: changes: - 5.4.0 + - unreleased label: Blender Phone search: terms: @@ -3574,30 +4614,13 @@ blender-phone: - regular - light - duotone + - thin unicode: f6b6 voted: false -blind: - changes: - - '4.6' - - 5.0.0 - - 5.11.0 - label: Blind - search: - terms: - - cane - - disability - - person - - sight - styles: - - solid - - regular - - light - - duotone - unicode: f29d - voted: false blinds: changes: - 5.12.0 + - unreleased label: Blinds search: terms: @@ -3609,11 +4632,13 @@ blinds: - regular - light - duotone + - thin unicode: f8fb voted: false blinds-open: changes: - 5.12.0 + - unreleased label: Blinds Open search: terms: @@ -3625,11 +4650,13 @@ blinds-open: - regular - light - duotone + - thin unicode: f8fc voted: false blinds-raised: changes: - 5.12.0 + - unreleased label: Blinds Raised search: terms: @@ -3641,11 +4668,13 @@ blinds-raised: - regular - light - duotone + - thin unicode: f8fd voted: false blog: changes: - 5.6.0 + - unreleased label: Blog search: terms: @@ -3662,6 +4691,7 @@ blog: - regular - light - duotone + - thin unicode: f781 voted: true blogger: @@ -3712,6 +4742,7 @@ bold: - 5.0.0 - 5.9.0 - 5.10.2 + - unreleased label: bold search: terms: @@ -3723,13 +4754,18 @@ bold: - regular - light - duotone + - thin unicode: f032 voted: false bolt: + aliases: + names: + - flash changes: - '2' - 5.0.0 - 5.5.0 + - unreleased label: Lightning Bolt search: terms: @@ -3742,12 +4778,14 @@ bolt: - regular - light - duotone + - thin unicode: f0e7 voted: false bomb: changes: - '4.1' - 5.0.0 + - unreleased label: Bomb search: terms: @@ -3761,11 +4799,13 @@ bomb: - regular - light - duotone + - thin unicode: f1e2 voted: false bone: changes: - 5.2.0 + - unreleased label: Bone search: terms: @@ -3779,11 +4819,13 @@ bone: - regular - light - duotone + - thin unicode: f5d7 voted: false bone-break: changes: - 5.2.0 + - unreleased label: Bone Break search: terms: @@ -3799,11 +4841,13 @@ bone-break: - regular - light - duotone + - thin unicode: f5d8 voted: false bong: changes: - 5.1.0 + - unreleased label: Bong search: terms: @@ -3818,12 +4862,14 @@ bong: - regular - light - duotone + - thin unicode: f55c voted: false book: changes: - '1' - 5.0.0 + - unreleased label: book search: terms: @@ -3837,12 +4883,65 @@ book: - regular - light - duotone + - thin unicode: f02d voted: false -book-alt: +book-atlas: + aliases: + names: + - atlas + changes: + - 5.1.0 + - unreleased + label: Book atlas + search: + terms: + - book + - directions + - geography + - globe + - map + - travel + - wayfinding + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f558 + voted: false +book-bible: + aliases: + names: + - bible + changes: + - 5.3.0 + - unreleased + label: Book bible + search: + terms: + - book + - catholicism + - christianity + - god + - holy + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f647 + voted: false +book-blank: + aliases: + names: + - book-alt changes: - 5.2.0 - label: Alternate Book + - unreleased + label: Book blank search: terms: - diary @@ -3855,40 +4954,28 @@ book-alt: - regular - light - duotone + - thin unicode: f5d9 voted: false -book-dead: +book-font: changes: - - 5.4.0 - label: Book of the Dead + - unreleased + label: Book Font search: - terms: - - Dungeons & Dragons - - crossbones - - d&d - - dark arts - - death - - dnd - - documentation - - evil - - fantasy - - halloween - - holiday - - necronomicon - - read - - skull - - spell + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6b7 + - thin + unicode: auto voted: false book-heart: changes: - 5.0.9 - 5.4.0 + - unreleased label: Book with Heart search: terms: @@ -3906,11 +4993,38 @@ book-heart: - regular - light - duotone + - thin unicode: f499 voted: false +book-journal-whills: + aliases: + names: + - journal-whills + changes: + - 5.3.0 + - 5.11.0 + - unreleased + label: Book journal whills + search: + terms: + - book + - force + - jedi + - sith + - star wars + - yoda + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66a + voted: false book-medical: changes: - 5.7.0 + - unreleased label: Medical Book search: terms: @@ -3927,6 +5041,7 @@ book-medical: - regular - light - duotone + - thin unicode: f7e6 voted: false book-open: @@ -3934,6 +5049,7 @@ book-open: - 5.0.13 - 5.1.0 - 5.2.0 + - unreleased label: Book Open search: terms: @@ -3948,12 +5064,34 @@ book-open: - regular - light - duotone + - thin unicode: f518 voted: true -book-reader: +book-open-cover: + aliases: + names: + - book-open-alt + changes: + - unreleased + label: Book open cover + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +book-open-reader: + aliases: + names: + - book-reader changes: - 5.2.0 - label: Book Reader + - unreleased + label: Book open reader search: terms: - flyer @@ -3967,12 +5105,72 @@ book-reader: - regular - light - duotone + - thin unicode: f5da voted: false -book-spells: +book-quran: + aliases: + names: + - quran + changes: + - 5.3.0 + - unreleased + label: Book quran + search: + terms: + - book + - islam + - muslim + - religion + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f687 + voted: false +book-skull: + aliases: + names: + - book-dead + changes: + - 5.4.0 + - unreleased + label: Book skull + search: + terms: + - Dungeons & Dragons + - crossbones + - d&d + - dark arts + - death + - dnd + - documentation + - evil + - fantasy + - halloween + - holiday + - necronomicon + - read + - skull + - spell + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6b7 + voted: false +book-sparkles: + aliases: + names: + - book-spells changes: - 5.4.0 - label: Book of Spells + - unreleased + label: Book sparkles search: terms: - Dungeons & Dragons @@ -3996,11 +5194,35 @@ book-spells: - regular - light - duotone + - thin unicode: f6b8 voted: false +book-tanakh: + aliases: + names: + - tanakh + changes: + - 5.7.0 + - unreleased + label: Book tanakh + search: + terms: + - book + - jewish + - judaism + - religion + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f827 + voted: false book-user: changes: - 5.7.0 + - unreleased label: Book with User search: terms: @@ -4016,6 +5238,7 @@ book-user: - regular - light - duotone + - thin unicode: f7e7 voted: false bookmark: @@ -4023,6 +5246,7 @@ bookmark: - '1' - 5.0.0 - 5.10.2 + - unreleased label: bookmark search: terms: @@ -4036,12 +5260,28 @@ bookmark: - regular - light - duotone + - thin unicode: f02e voted: false +bookmark-slash: + changes: + - unreleased + label: Bookmark Slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false books: changes: - 5.2.0 - 5.10.1 + - unreleased label: Books search: terms: @@ -4055,12 +5295,14 @@ books: - regular - light - duotone + - thin unicode: f5db voted: false books-medical: changes: - 5.7.0 - 5.10.1 + - unreleased label: Medical Books search: terms: @@ -4077,11 +5319,13 @@ books-medical: - regular - light - duotone + - thin unicode: f7e8 voted: false boombox: changes: - 5.11.0 + - unreleased label: Boombox search: terms: @@ -4096,11 +5340,13 @@ boombox: - regular - light - duotone + - thin unicode: f8a5 voted: false boot: changes: - 5.6.0 + - unreleased label: Boot search: terms: @@ -4114,10 +5360,12 @@ boot: - regular - light - duotone + - thin unicode: f782 booth-curtain: changes: - 5.5.0 + - unreleased label: Booth with Curtain search: terms: @@ -4131,6 +5379,7 @@ booth-curtain: - regular - light - duotone + - thin unicode: f734 voted: false bootstrap: @@ -4145,6 +5394,7 @@ bootstrap: border-all: changes: - 5.9.0 + - unreleased label: Border All search: terms: @@ -4158,11 +5408,13 @@ border-all: - regular - light - duotone + - thin unicode: f84c voted: false border-bottom: changes: - 5.9.0 + - unreleased label: Border Bottom search: terms: @@ -4176,12 +5428,37 @@ border-bottom: - regular - light - duotone + - thin unicode: f84d voted: false +border-bottom-right: + aliases: + names: + - border-style-alt + changes: + - 5.9.0 + - unreleased + label: Border bottom right + search: + terms: + - cell + - grid + - outline + - stroke + - table + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f854 + voted: false border-center-h: changes: - 5.10.0 - 5.10.1 + - unreleased label: Border Center - Horizontal search: terms: @@ -4195,12 +5472,14 @@ border-center-h: - regular - light - duotone + - thin unicode: f89c voted: false border-center-v: changes: - 5.10.0 - 5.10.1 + - unreleased label: Border Center - Vertical search: terms: @@ -4214,11 +5493,13 @@ border-center-v: - regular - light - duotone + - thin unicode: f89d voted: false border-inner: changes: - 5.9.0 + - unreleased label: Border Inner search: terms: @@ -4232,11 +5513,13 @@ border-inner: - regular - light - duotone + - thin unicode: f84e voted: false border-left: changes: - 5.9.0 + - unreleased label: Border Left search: terms: @@ -4250,11 +5533,13 @@ border-left: - regular - light - duotone + - thin unicode: f84f voted: false border-none: changes: - 5.9.0 + - unreleased label: Border None search: terms: @@ -4268,11 +5553,13 @@ border-none: - regular - light - duotone + - thin unicode: f850 voted: false border-outer: changes: - 5.9.0 + - unreleased label: Border Outer search: terms: @@ -4286,11 +5573,13 @@ border-outer: - regular - light - duotone + - thin unicode: f851 voted: false border-right: changes: - 5.9.0 + - unreleased label: Border Right search: terms: @@ -4304,25 +5593,14 @@ border-right: - regular - light - duotone + - thin unicode: f852 voted: false -border-style: - changes: - - 5.9.0 - label: Border Style - search: - terms: [] - styles: - - solid - - regular - - light - - duotone - unicode: f853 - voted: false -border-style-alt: +border-top: changes: - 5.9.0 - label: Border Style-alt + - unreleased + label: Border Top search: terms: - cell @@ -4335,29 +5613,31 @@ border-style-alt: - regular - light - duotone - unicode: f854 + - thin + unicode: f855 voted: false -border-top: +border-top-left: + aliases: + names: + - border-style changes: - 5.9.0 - label: Border Top + - unreleased + label: Border top left search: - terms: - - cell - - grid - - outline - - stroke - - table + terms: [] styles: - solid - regular - light - duotone - unicode: f855 + - thin + unicode: f853 voted: false bow-arrow: changes: - 5.4.0 + - unreleased label: Bow Arrow search: terms: @@ -4375,13 +5655,42 @@ bow-arrow: - regular - light - duotone + - thin unicode: f6b9 voted: false +bowl-hot: + aliases: + names: + - soup + changes: + - 5.7.0 + - unreleased + label: Bowl hot + search: + terms: + - bisque + - bouillon + - bowl + - broth + - chicken + - chowder + - gazpacho + - ramen + - stew + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f823 + voted: false bowling-ball: changes: - 5.0.5 - 5.11.0 - 5.11.1 + - unreleased label: Bowling Ball search: terms: @@ -4396,11 +5705,27 @@ bowling-ball: - regular - light - duotone + - thin unicode: f436 voted: false +bowling-ball-pin: + changes: + - unreleased + label: Bowling Ball-pin + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false bowling-pins: changes: - 5.0.5 + - unreleased label: Bowling Pins search: terms: @@ -4415,11 +5740,13 @@ bowling-pins: - regular - light - duotone + - thin unicode: f437 voted: false box: changes: - 5.0.7 + - unreleased label: Box search: terms: @@ -4432,28 +5759,37 @@ box: - regular - light - duotone + - thin unicode: f466 voted: false -box-alt: +box-archive: + aliases: + names: + - archive changes: + - '3.2' + - 5.0.0 - 5.0.9 - label: Alternate Box + - unreleased + label: Box archive search: terms: - - archive - - container + - box - package + - save - storage styles: - solid - regular - light - duotone - unicode: f49a + - thin + unicode: f187 voted: false box-ballot: changes: - 5.5.0 + - unreleased label: Box Ballot search: terms: @@ -4466,11 +5802,13 @@ box-ballot: - regular - light - duotone + - thin unicode: f735 voted: false box-check: changes: - 5.0.7 + - unreleased label: Box Check search: terms: @@ -4491,46 +5829,50 @@ box-check: - regular - light - duotone + - thin unicode: f467 voted: false -box-fragile: +box-circle-check: changes: - - 5.0.9 - label: Box Fragile + - unreleased + label: Box Circle-check search: - terms: - - broken - - careful - - glass - - package + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f49b + - thin + unicode: auto voted: false -box-full: +box-dollar: + aliases: + names: + - box-usd changes: - 5.0.9 - - 5.7.0 - label: Box Full + - unreleased + label: Box dollar search: terms: - - attic - - package - - packed - - storage + - $ + - dollar-sign + - donation + - money + - usd styles: - solid - regular - light - duotone - unicode: f49c + - thin + unicode: f4a0 voted: false box-heart: changes: - 5.0.9 + - unreleased label: Box with Heart search: terms: @@ -4543,12 +5885,14 @@ box-heart: - regular - light - duotone + - thin unicode: f49d voted: false box-open: changes: - 5.0.9 - 5.7.0 + - unreleased label: Box Open search: terms: @@ -4562,68 +5906,88 @@ box-open: - regular - light - duotone + - thin unicode: f49e voted: false -box-tissue: +box-open-full: + aliases: + names: + - box-full changes: - - 5.13.0 - label: Tissue Box + - 5.0.9 + - 5.7.0 + - unreleased + label: Box open full search: terms: - - cough - - covid-19 - - kleenex - - mucus - - nose - - sneeze - - snot + - attic + - package + - packed + - storage styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f95b + - thin + unicode: f49c voted: false -box-up: +box-taped: + aliases: + names: + - box-alt changes: - 5.0.9 - label: Box Up + - unreleased + label: Box taped search: terms: - archive - container - package - - shipping - storage styles: - solid - regular - light - duotone - unicode: f49f + - thin + unicode: f49a voted: false -box-usd: +box-tissue: changes: - - 5.0.9 - label: Box with US Dollar + - 5.13.0 + - 5.14.0 + - unreleased + label: Tissue Box search: terms: - - $ - - dollar-sign - - donation - - money - - usd + - cough + - covid-19 + - kleenex + - mucus + - nose + - sneeze + - snot styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f4a0 + - thin + unicode: e05b voted: false -boxes: +boxes-stacked: + aliases: + names: + - boxes + - boxes-alt + unicodes: + - f4a1 changes: - 5.0.7 - label: Boxes + - unreleased + label: Boxes stacked search: terms: - archives @@ -4635,28 +5999,16 @@ boxes: - regular - light - duotone + - thin unicode: f468 voted: false -boxes-alt: - changes: - - 5.0.9 - label: Alternate Boxes - search: - terms: - - archives - - inventory - - storage - - warehouse - styles: - - solid - - regular - - light - - duotone - unicode: f4a1 - voted: false boxing-glove: + aliases: + names: + - glove-boxing changes: - 5.0.5 + - unreleased label: Boxing Glove search: terms: @@ -4669,12 +6021,66 @@ boxing-glove: - regular - light - duotone + - thin unicode: f438 voted: false -brackets: +bracket-curly: + aliases: + names: + - bracket-curly-left + changes: + - unreleased + label: Bracket curly + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +bracket-round: + aliases: + names: + - parenthesis + changes: + - unreleased + label: Bracket Round + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +bracket-square: + aliases: + names: + - bracket + - bracket-left + changes: + - unreleased + label: Bracket square + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +brackets-curly: changes: - 5.7.0 - label: Brackets + - unreleased + label: Curly Brackets search: terms: - code @@ -4686,12 +6092,34 @@ brackets: - regular - light - duotone - unicode: f7e9 + - thin + unicode: f7ea + voted: true +brackets-round: + aliases: + names: + - parentheses + changes: + - unreleased + label: Brackets Round + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -brackets-curly: +brackets-square: + aliases: + names: + - brackets changes: - 5.7.0 - label: Curly Brackets + - unreleased + label: Brackets square search: terms: - code @@ -4703,12 +6131,14 @@ brackets-curly: - regular - light - duotone - unicode: f7ea - voted: true + - thin + unicode: f7e9 + voted: false braille: changes: - '4.6' - 5.0.0 + - unreleased label: Braille search: terms: @@ -4722,6 +6152,7 @@ braille: - regular - light - duotone + - thin unicode: f2a1 voted: false brain: @@ -4729,6 +6160,7 @@ brain: - 5.2.0 - 5.9.0 - 5.11.0 + - unreleased label: Brain search: terms: @@ -4744,11 +6176,50 @@ brain: - regular - light - duotone + - thin unicode: f5dc voted: false +brain-arrow-curved-right: + aliases: + names: + - mind-share + changes: + - 5.3.0 + - 5.9.0 + - unreleased + label: Brain arrow curved right + search: + terms: + - brain + - brainstorming + - meeting + - planning + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f677 + voted: false +brake-warning: + changes: + - unreleased + label: Brake Warning + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false bread-loaf: changes: - 5.7.0 + - unreleased label: Loaf of Bread search: terms: @@ -4769,11 +6240,13 @@ bread-loaf: - regular - light - duotone + - thin unicode: f7eb voted: false bread-slice: changes: - 5.7.0 + - unreleased label: Bread Slice search: terms: @@ -4794,6 +6267,7 @@ bread-slice: - regular - light - duotone + - thin unicode: f7ec voted: false briefcase: @@ -4801,6 +6275,7 @@ briefcase: - '2' - 5.0.0 - 5.3.0 + - unreleased label: Briefcase search: terms: @@ -4814,11 +6289,38 @@ briefcase: - regular - light - duotone + - thin unicode: f0b1 voted: false +briefcase-clock: + aliases: + names: + - business-time + changes: + - 5.3.0 + - unreleased + label: Briefcase clock + search: + terms: + - alarm + - briefcase + - business socks + - clock + - flight of the conchords + - reminder + - wednesday + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f64a + voted: false briefcase-medical: changes: - 5.0.7 + - unreleased label: Medical Briefcase search: terms: @@ -4831,12 +6333,14 @@ briefcase-medical: - regular - light - duotone + - thin unicode: f469 voted: false bring-forward: changes: - 5.9.0 - 5.10.2 + - unreleased label: Bring Forward search: terms: @@ -4850,12 +6354,14 @@ bring-forward: - regular - light - duotone + - thin unicode: f856 voted: true bring-front: changes: - 5.9.0 - 5.10.2 + - unreleased label: Bring Front search: terms: @@ -4869,29 +6375,13 @@ bring-front: - regular - light - duotone + - thin unicode: f857 voted: true -broadcast-tower: - changes: - - 5.0.13 - label: Broadcast Tower - search: - terms: - - airwaves - - antenna - - radio - - reception - - waves - styles: - - solid - - regular - - light - - duotone - unicode: f519 - voted: true broom: changes: - 5.0.13 + - unreleased label: Broom search: terms: @@ -4908,11 +6398,13 @@ broom: - regular - light - duotone + - thin unicode: f51a voted: true browser: changes: - 5.0.0 + - unreleased label: Browser search: terms: @@ -4928,11 +6420,27 @@ browser: - regular - light - duotone + - thin unicode: f37e voted: false +browsers: + changes: + - unreleased + label: Browsers + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false brush: changes: - 5.1.0 + - unreleased label: Brush search: terms: @@ -4946,6 +6454,7 @@ brush: - regular - light - duotone + - thin unicode: f55d voted: false btc: @@ -4972,6 +6481,7 @@ bug: changes: - '3.2' - 5.0.0 + - unreleased label: Bug search: terms: @@ -4984,12 +6494,14 @@ bug: - regular - light - duotone + - thin unicode: f188 voted: false building: changes: - '4.1' - 5.0.0 + - unreleased label: Building search: terms: @@ -5004,6 +6516,7 @@ building: - regular - light - duotone + - thin unicode: f1ad voted: false bullhorn: @@ -5011,6 +6524,7 @@ bullhorn: - '2' - 5.0.0 - 5.3.0 + - unreleased label: bullhorn search: terms: @@ -5024,6 +6538,7 @@ bullhorn: - regular - light - duotone + - thin unicode: f0a1 voted: false bullseye: @@ -5032,6 +6547,7 @@ bullseye: - 5.0.0 - 5.3.0 - 5.10.1 + - unreleased label: Bullseye search: terms: @@ -5044,6 +6560,7 @@ bullseye: - regular - light - duotone + - thin unicode: f140 voted: false bullseye-arrow: @@ -5051,6 +6568,7 @@ bullseye-arrow: - 5.3.0 - 5.11.0 - 5.11.1 + - unreleased label: Bullseye Arrow search: terms: @@ -5065,6 +6583,7 @@ bullseye-arrow: - regular - light - duotone + - thin unicode: f648 voted: false bullseye-pointer: @@ -5072,6 +6591,7 @@ bullseye-pointer: - 5.3.0 - 5.11.0 - 5.11.1 + - unreleased label: Bullseye Pointer search: terms: @@ -5084,51 +6604,122 @@ bullseye-pointer: - regular - light - duotone + - thin unicode: f649 voted: false -burger-soda: +burger: + aliases: + names: + - hamburger changes: - - 5.9.0 - label: Burger and Soda + - 5.7.0 + - unreleased + label: Burger search: terms: - bacon - beef + - burger + - burger king + - cheeseburger + - fast food + - grill + - ground beef + - mcdonalds + - sandwich + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f805 + voted: false +burger-cheese: + aliases: + names: - cheeseburger + changes: + - 5.7.0 + - 5.7.1 + - unreleased + label: Burger cheese + search: + terms: + - bacon + - beef + - burger + - burger king - fast food - grill - ground beef - hamburger - - junk food - - pop + - mcdonalds - sandwich - slider + - wendys + - white castle styles: - solid - regular - light - duotone - unicode: f858 + - thin + unicode: f7f1 voted: false -burn: +burger-fries: changes: - - 5.0.7 - label: Burn + - unreleased + label: Burger Fries + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +burger-glass: + changes: + - unreleased + label: Burger Glass + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +burger-soda: + changes: + - 5.9.0 + - unreleased + label: Burger and Soda search: terms: - - caliente - - energy - - fire - - flame - - gas - - heat - - hot + - bacon + - beef + - cheeseburger + - fast food + - grill + - ground beef + - hamburger + - junk food + - pop + - sandwich + - slider styles: - solid - regular - light - duotone - unicode: f46a + - thin + unicode: f858 voted: false buromobelexperte: changes: @@ -5143,6 +6734,7 @@ buromobelexperte: burrito: changes: - 5.7.0 + - unreleased label: Burrito search: terms: @@ -5158,6 +6750,7 @@ burrito: - regular - light - duotone + - thin unicode: f7ed voted: false bus: @@ -5165,6 +6758,7 @@ bus: - '4.2' - 5.0.0 - 5.1.0 + - unreleased label: Bus search: terms: @@ -5177,29 +6771,13 @@ bus: - regular - light - duotone + - thin unicode: f207 voted: false -bus-alt: - changes: - - 5.1.0 - label: Bus Alt - search: - terms: - - mta - - public transportation - - transportation - - travel - - vehicle - styles: - - solid - - regular - - light - - duotone - unicode: f55e - voted: false bus-school: changes: - 5.2.0 + - unreleased label: Bus School search: terms: @@ -5212,27 +6790,31 @@ bus-school: - regular - light - duotone + - thin unicode: f5dd voted: false -business-time: +bus-simple: + aliases: + names: + - bus-alt changes: - - 5.3.0 - label: Business Time + - 5.1.0 + - unreleased + label: Bus simple search: terms: - - alarm - - briefcase - - business socks - - clock - - flight of the conchords - - reminder - - wednesday + - mta + - public transportation + - transportation + - travel + - vehicle styles: - solid - regular - light - duotone - unicode: f64a + - thin + unicode: f55e voted: false buy-n-large: changes: @@ -5254,9 +6836,24 @@ buysellads: - brands unicode: f20d voted: false +c: + changes: + - unreleased + label: C + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false cabinet-filing: changes: - 5.3.0 + - unreleased label: Filing Cabinet search: terms: @@ -5270,11 +6867,27 @@ cabinet-filing: - regular - light - duotone + - thin unicode: f64b voted: false +cable-car: + changes: + - unreleased + label: Cable Car + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false cactus: changes: - 5.11.0 + - unreleased label: Cactus search: terms: @@ -5290,14 +6903,44 @@ cactus: - regular - solid - duotone + - thin unicode: f8a7 voted: false +cake-candles: + aliases: + names: + - birthday-cake + changes: + - '4.2' + - 5.0.0 + - unreleased + label: Cake candles + search: + terms: + - anniversary + - bakery + - candles + - celebration + - dessert + - frosting + - holiday + - party + - pastry + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1fd + voted: false calculator: changes: - '4.2' - 5.0.0 - 5.3.0 - 5.11.0 + - unreleased label: Calculator search: terms: @@ -5313,13 +6956,18 @@ calculator: - regular - light - duotone + - thin unicode: f1ec voted: false -calculator-alt: +calculator-simple: + aliases: + names: + - calculator-alt changes: - 5.3.0 - 5.11.0 - label: Alternate Calculator + - unreleased + label: Calculator simple search: terms: - abacus @@ -5334,6 +6982,7 @@ calculator-alt: - regular - light - duotone + - thin unicode: f64c voted: false calendar: @@ -5341,6 +6990,7 @@ calendar: - '3.1' - 5.0.0 - 5.10.2 + - unreleased label: Calendar search: terms: @@ -5355,36 +7005,49 @@ calendar: - regular - light - duotone + - thin unicode: f133 voted: false -calendar-alt: +calendar-arrow-down: + aliases: + names: + - calendar-download changes: - - '1' - - 5.0.0 - - 5.6.0 - - 5.7.0 - - 5.10.2 - label: Alternate Calendar + - unreleased + label: Calendar arrow down search: - terms: - - calendar - - date - - event - - schedule - - time - - when + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +calendar-arrow-up: + aliases: + names: + - calendar-upload + changes: + - unreleased + label: Calendar arrow up + search: + terms: [] + styles: - duotone - unicode: f073 + - solid + - regular + - light + - thin + unicode: auto voted: false calendar-check: changes: - '4.4' - 5.0.0 - 5.10.2 + - unreleased label: Calendar Check search: terms: @@ -5409,12 +7072,31 @@ calendar-check: - regular - light - duotone + - thin unicode: f274 voted: false +calendar-clock: + aliases: + names: + - calendar-time + changes: + - unreleased + label: Calendar clock + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false calendar-day: changes: - 5.6.0 - 5.10.2 + - unreleased label: Calendar with Day Focus search: terms: @@ -5432,36 +7114,42 @@ calendar-day: - regular - light - duotone + - thin unicode: f783 voted: true -calendar-edit: +calendar-days: + aliases: + names: + - calendar-alt changes: + - '1' - 5.0.0 + - 5.6.0 + - 5.7.0 - 5.10.2 - label: Calendar Edit + - unreleased + label: Calendar days search: terms: + - calendar - date - - edit - event - - pen - - pencil - schedule - time - - update - when - - write styles: - solid - regular - light - duotone - unicode: f333 + - thin + unicode: f073 voted: false calendar-exclamation: changes: - 5.0.0 - 5.10.2 + - unreleased label: Calendar Exclamation search: terms: @@ -5477,13 +7165,60 @@ calendar-exclamation: - regular - light - duotone + - thin unicode: f334 voted: false +calendar-heart: + changes: + - unreleased + label: Calendar Heart + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +calendar-image: + changes: + - unreleased + label: Calendar Image + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +calendar-lines: + aliases: + names: + - calendar-note + changes: + - unreleased + label: Calendar lines + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false calendar-minus: changes: - '4.4' - 5.0.0 - 5.10.2 + - unreleased label: Calendar Minus search: terms: @@ -5501,13 +7236,44 @@ calendar-minus: - regular - light - duotone + - thin unicode: f272 voted: false +calendar-pen: + aliases: + names: + - calendar-edit + changes: + - 5.0.0 + - 5.10.2 + - unreleased + label: Calendar pen + search: + terms: + - date + - edit + - event + - pen + - pencil + - schedule + - time + - update + - when + - write + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f333 + voted: false calendar-plus: changes: - '4.4' - 5.0.0 - 5.10.2 + - unreleased label: Calendar Plus search: terms: @@ -5526,12 +7292,28 @@ calendar-plus: - regular - light - duotone + - thin unicode: f271 voted: false +calendar-range: + changes: + - unreleased + label: Calendar Range + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false calendar-star: changes: - 5.5.0 - 5.10.2 + - unreleased label: Calendar Star search: terms: @@ -5548,14 +7330,44 @@ calendar-star: - regular - light - duotone + - thin unicode: f736 voted: false -calendar-times: +calendar-week: + changes: + - 5.6.0 + - 5.10.2 + - unreleased + label: Calendar with Week Focus + search: + terms: + - date + - detail + - event + - focus + - schedule + - single week + - time + - today + - when + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f784 + voted: true +calendar-xmark: + aliases: + names: + - calendar-times changes: - '4.4' - 5.0.0 - 5.10.2 - label: Calendar Times + - unreleased + label: Calendar xmark search: terms: - archive @@ -5573,34 +7385,30 @@ calendar-times: - regular - light - duotone + - thin unicode: f273 voted: false -calendar-week: +calendars: changes: - - 5.6.0 - - 5.10.2 - label: Calendar with Week Focus + - unreleased + label: Calendars search: - terms: - - date - - detail - - event - - focus - - schedule - - single week - - time - - today - - when + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f784 - voted: true + - thin + unicode: auto + voted: false camcorder: + aliases: + names: + - video-handheld changes: - 5.11.0 + - unreleased label: Camcorder search: terms: @@ -5618,12 +7426,19 @@ camcorder: - regular - light - duotone + - thin unicode: f8a8 voted: false camera: + aliases: + names: + - camera-alt + unicodes: + - f332 changes: - '1' - 5.0.0 + - unreleased label: camera search: terms: @@ -5639,52 +7454,38 @@ camera: - regular - light - duotone + - thin unicode: f030 voted: false -camera-alt: +camera-cctv: + aliases: + names: + - cctv changes: - - 5.0.0 - label: Alternate Camera - search: - terms: - - image - - lens - - photo - - picture - - record - - shutter - - video - styles: - - solid - - regular - - light - - duotone - unicode: f332 - voted: false -camera-home: - changes: - - 5.12.0 - label: Camera Home + - 5.11.0 + - unreleased + label: Camera cctv search: terms: - - chat - - conference call - - facetime - - podcast + - 1984 + - Big Brother + - George Orwell + - camera - security + - surveillance - video - - videoconferencing - - youtube styles: - solid - regular - light - duotone - unicode: f8fe + - thin + unicode: f8ac voted: false camera-movie: changes: - 5.11.0 + - unreleased label: Movie Camera search: terms: @@ -5699,11 +7500,13 @@ camera-movie: - regular - light - duotone + - thin unicode: f8a9 voted: false camera-polaroid: changes: - 5.11.0 + - unreleased label: Polaroid Camera search: terms: @@ -5721,6 +7524,7 @@ camera-polaroid: - regular - light - duotone + - thin unicode: f8aa voted: false camera-retro: @@ -5728,6 +7532,7 @@ camera-retro: - '1' - 5.0.0 - 5.10.1 + - unreleased label: Retro Camera search: terms: @@ -5743,11 +7548,103 @@ camera-retro: - regular - light - duotone + - thin unicode: f083 voted: false +camera-security: + aliases: + names: + - camera-home + changes: + - 5.12.0 + - unreleased + label: Camera security + search: + terms: + - chat + - conference call + - facetime + - podcast + - security + - video + - videoconferencing + - youtube + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f8fe + voted: false +camera-viewfinder: + changes: + - unreleased + label: Camera Viewfinder + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +camera-web: + aliases: + names: + - webcam + changes: + - 5.7.0 + - unreleased + label: Camera web + search: + terms: + - chat + - conference call + - facetime + - podcast + - video + - videoconferencing + - youtube + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f832 + voted: true +camera-web-slash: + aliases: + names: + - webcam-slash + changes: + - 5.7.0 + - unreleased + label: Camera web slash + search: + terms: + - chat + - conference call + - facetime + - podcast + - video + - videoconferencing + - youtube + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f833 + voted: true campfire: changes: - 5.4.0 + - unreleased label: Campfire search: terms: @@ -5773,11 +7670,13 @@ campfire: - regular - light - duotone + - thin unicode: f6ba voted: false campground: changes: - 5.4.0 + - unreleased label: Campground search: terms: @@ -5792,6 +7691,7 @@ campground: - regular - light - duotone + - thin unicode: f6bb voted: false canadian-maple-leaf: @@ -5812,6 +7712,7 @@ canadian-maple-leaf: candle-holder: changes: - 5.4.0 + - unreleased label: Candle Holder search: terms: @@ -5828,12 +7729,14 @@ candle-holder: - regular - light - duotone + - thin unicode: f6bc voted: false candy-cane: changes: - 5.6.0 - 5.10.1 + - unreleased label: Candy Cane search: terms: @@ -5849,12 +7752,14 @@ candy-cane: - regular - light - duotone + - thin unicode: f786 candy-corn: changes: - 5.4.0 - 5.10.1 - 5.10.2 + - unreleased label: Candy Corn search: terms: @@ -5867,11 +7772,13 @@ candy-corn: - regular - light - duotone + - thin unicode: f6bd voted: false cannabis: changes: - 5.1.0 + - unreleased label: Cannabis search: terms: @@ -5894,11 +7801,13 @@ cannabis: - regular - light - duotone + - thin unicode: f55f voted: false capsules: changes: - 5.0.7 + - unreleased label: Capsules search: terms: @@ -5911,13 +7820,18 @@ capsules: - regular - light - duotone + - thin unicode: f46b voted: false car: + aliases: + names: + - automobile changes: - '4.1' - 5.0.0 - 5.2.0 + - unreleased label: Car search: terms: @@ -5932,32 +7846,16 @@ car: - regular - light - duotone + - thin unicode: f1b9 voted: false -car-alt: - changes: - - 5.2.0 - - 5.11.0 - - 5.11.1 - label: Alternate Car - search: - terms: - - auto - - automobile - - sedan - - transportation - - travel - - vehicle - styles: - - solid - - regular - - light - - duotone - unicode: f5de - voted: false car-battery: + aliases: + names: + - battery-car changes: - 5.2.0 + - unreleased label: Car Battery search: terms: @@ -5970,11 +7868,13 @@ car-battery: - regular - light - duotone + - thin unicode: f5df voted: false car-building: changes: - 5.9.0 + - unreleased label: Car and Building search: terms: @@ -5988,11 +7888,13 @@ car-building: - regular - light - duotone + - thin unicode: f859 voted: false car-bump: changes: - 5.2.0 + - unreleased label: Car Bump search: terms: @@ -6007,11 +7909,13 @@ car-bump: - regular - light - duotone + - thin unicode: f5e0 voted: false car-bus: changes: - 5.9.0 + - unreleased label: Car and Bus search: terms: @@ -6025,11 +7929,13 @@ car-bus: - regular - light - duotone + - thin unicode: f85a voted: false car-crash: changes: - 5.2.0 + - unreleased label: Car Crash search: terms: @@ -6046,11 +7952,13 @@ car-crash: - regular - light - duotone + - thin unicode: f5e1 voted: false car-garage: changes: - 5.2.0 + - unreleased label: Car Garage search: terms: @@ -6065,31 +7973,39 @@ car-garage: - regular - light - duotone + - thin unicode: f5e2 voted: false -car-mechanic: +car-rear: + aliases: + names: + - car-alt changes: - 5.2.0 - label: Car Mechanic + - 5.11.0 + - 5.11.1 + - unreleased + label: Car rear search: terms: - auto - automobile - - mechanic - - repair - sedan - transportation + - travel - vehicle styles: - solid - regular - light - duotone - unicode: f5e3 + - thin + unicode: f5de voted: false car-side: changes: - 5.2.0 + - unreleased label: Car Side search: terms: @@ -6104,11 +8020,13 @@ car-side: - regular - light - duotone + - thin unicode: f5e4 voted: false car-tilt: changes: - 5.2.0 + - unreleased label: Car Tilt search: terms: @@ -6125,6 +8043,7 @@ car-tilt: - regular - light - duotone + - thin unicode: f5e5 voted: false car-wash: @@ -6132,6 +8051,7 @@ car-wash: - 5.2.0 - 5.11.0 - 5.11.1 + - unreleased label: Car Wash search: terms: @@ -6146,11 +8066,38 @@ car-wash: - regular - light - duotone + - thin unicode: f5e6 voted: false +car-wrench: + aliases: + names: + - car-mechanic + changes: + - 5.2.0 + - unreleased + label: Car wrench + search: + terms: + - auto + - automobile + - mechanic + - repair + - sedan + - transportation + - vehicle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5e3 + voted: false caravan: changes: - 5.12.0 + - unreleased label: Caravan search: terms: @@ -6164,12 +8111,18 @@ caravan: - regular - light - duotone + - thin unicode: f8ff voted: true -caravan-alt: +caravan-simple: + aliases: + names: + - caravan-alt changes: - 5.12.0 - label: Caravan Alternate + - 5.14.0 + - unreleased + label: Caravan simple search: terms: - camper @@ -6182,12 +8135,15 @@ caravan-alt: - regular - light - duotone - unicode: f900 + - thin + unicode: e000 voted: false -caret-circle-down: +caret-down: changes: + - '2' - 5.0.0 - label: Caret Circle Down + - unreleased + label: Caret Down search: terms: - arrow @@ -6201,12 +8157,15 @@ caret-circle-down: - regular - light - duotone - unicode: f32d + - thin + unicode: f0d7 voted: false -caret-circle-left: +caret-left: changes: + - '2' - 5.0.0 - label: Caret Circle Left + - unreleased + label: Caret Left search: terms: - arrow @@ -6218,12 +8177,15 @@ caret-circle-left: - regular - light - duotone - unicode: f32e + - thin + unicode: f0d9 voted: false -caret-circle-right: +caret-right: changes: + - '2' - 5.0.0 - label: Caret Circle Right + - unreleased + label: Caret Right search: terms: - arrow @@ -6235,249 +8197,273 @@ caret-circle-right: - regular - light - duotone - unicode: f330 + - thin + unicode: f0da voted: false -caret-circle-up: +caret-up: changes: + - '2' - 5.0.0 - label: Caret Circle Up + - unreleased + label: Caret Up search: terms: - arrow - collapse - triangle - - upload styles: - solid - regular - light - duotone - unicode: f331 + - thin + unicode: f0d8 voted: false -caret-down: +carrot: changes: - - '2' - - 5.0.0 - label: Caret Down + - 5.6.0 + - 5.10.1 + - unreleased + label: Carrot search: terms: - - arrow - - dropdown - - expand - - menu - - more - - triangle + - bugs bunny + - orange + - vegan + - vegetable styles: - solid - regular - light - duotone - unicode: f0d7 - voted: false -caret-left: + - thin + unicode: f787 +cars: changes: - - '2' - - 5.0.0 - label: Caret Left + - 5.9.0 + - unreleased + label: Cars search: terms: - - arrow - - back - - previous - - triangle + - automobiles + - autos + - transportation + - travel styles: - solid - regular - light - duotone - unicode: f0d9 + - thin + unicode: f85b voted: false -caret-right: +cart-arrow-down: changes: - - '2' + - '4.3' - 5.0.0 - label: Caret Right + - unreleased + label: Shopping Cart Arrow Down search: terms: - - arrow - - forward - - next - - triangle + - download + - save + - shopping styles: - solid - regular - light - duotone - unicode: f0da + - thin + unicode: f218 voted: false -caret-square-down: +cart-flatbed: + aliases: + names: + - dolly-flatbed changes: - - '3.2' - - 5.0.0 - label: Caret Square Down + - 5.0.7 + - unreleased + label: Cart flatbed search: terms: - - arrow - - caret-square-o-down - - dropdown - - expand - - menu - - more - - triangle + - carry + - inventory + - shipping + - transport styles: - solid - regular - light - duotone - unicode: f150 + - thin + unicode: f474 voted: false -caret-square-left: +cart-flatbed-boxes: + aliases: + names: + - dolly-flatbed-alt changes: - - '4' - - 5.0.0 - label: Caret Square Left + - 5.0.7 + - unreleased + label: Cart flatbed boxes search: terms: - - arrow - - back - - caret-square-o-left - - previous - - triangle + - carry + - inventory + - shipping + - transport styles: - solid - regular - light - duotone - unicode: f191 + - thin + unicode: f475 voted: false -caret-square-right: +cart-flatbed-empty: + aliases: + names: + - dolly-flatbed-empty changes: - - '3.2' - - 5.0.0 - label: Caret Square Right + - 5.0.7 + - 5.10.1 + - unreleased + label: Cart flatbed empty search: terms: - - arrow - - caret-square-o-right - - forward - - next - - triangle + - carry + - inventory + - shipping + - transport styles: - solid - regular - light - duotone - unicode: f152 + - thin + unicode: f476 voted: false -caret-square-up: +cart-flatbed-suitcase: + aliases: + names: + - luggage-cart changes: - - '3.2' - - 5.0.0 - label: Caret Square Up + - 5.1.0 + - unreleased + label: Cart flatbed suitcase search: terms: - - arrow - - caret-square-o-up - - collapse - - triangle - - upload + - bag + - baggage + - suitcase + - travel styles: - solid - regular - light - duotone - unicode: f151 + - thin + unicode: f59d voted: false -caret-up: +cart-plus: changes: - - '2' + - '4.3' - 5.0.0 - label: Caret Up + - unreleased + label: Add to Shopping Cart search: terms: - - arrow - - collapse - - triangle + - add + - create + - new + - positive + - shopping styles: - solid - regular - light - duotone - unicode: f0d8 + - thin + unicode: f217 voted: false -carrot: - changes: - - 5.6.0 - - 5.10.1 - label: Carrot - search: - terms: - - bugs bunny - - orange - - vegan - - vegetable - styles: - - solid - - regular - - light - - duotone - unicode: f787 -cars: +cart-shopping: + aliases: + names: + - shopping-cart changes: - - 5.9.0 - label: Cars + - '1' + - 5.0.0 + - unreleased + label: Cart shopping search: terms: - - automobiles - - autos - - transportation - - travel + - buy + - checkout + - grocery + - payment + - purchase styles: - solid - regular - light - duotone - unicode: f85b + - thin + unicode: f07a voted: false -cart-arrow-down: +casette-betamax: + aliases: + names: + - betamax changes: - - '4.3' - - 5.0.0 - label: Shopping Cart Arrow Down + - 5.11.0 + - unreleased + label: Casette betamax search: terms: - - download - - save - - shopping + - cassette + - rental + - retro + - tape + - vhs + - video + - vintage styles: - solid - regular - light - duotone - unicode: f218 + - thin + unicode: f8a4 voted: false -cart-plus: +casette-vhs: + aliases: + names: + - vhs changes: - - '4.3' - - 5.0.0 - label: Add to Shopping Cart + - 5.11.0 + - unreleased + label: Casette vhs search: terms: - - add - - create - - new - - positive - - shopping + - betamax + - cassette + - rental + - retro + - tape + - video + - vintage styles: - solid - regular - light - duotone - unicode: f217 + - thin + unicode: f8ec voted: false cash-register: changes: - 5.6.0 + - unreleased label: Cash Register search: terms: @@ -6497,11 +8483,13 @@ cash-register: - regular - light - duotone + - thin unicode: f788 voted: true cassette-tape: changes: - 5.11.0 + - unreleased label: Cassette Tape search: terms: @@ -6515,12 +8503,14 @@ cassette-tape: - regular - light - duotone + - thin unicode: f8ab voted: false cat: changes: - 5.4.0 - 5.10.1 + - unreleased label: Cat search: terms: @@ -6536,11 +8526,14 @@ cat: - regular - light - duotone + - thin unicode: f6be voted: true cat-space: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Space Cat search: terms: @@ -6555,11 +8548,13 @@ cat-space: - regular - light - duotone - unicode: f901 + - thin + unicode: e001 voted: false cauldron: changes: - 5.4.0 + - unreleased label: Cauldron search: terms: @@ -6580,6 +8575,7 @@ cauldron: - regular - light - duotone + - thin unicode: f6bf voted: false cc-amazon-pay: @@ -6692,25 +8688,33 @@ cc-visa: - brands unicode: f1f0 voted: false -cctv: +cedi-sign: changes: - - 5.11.0 - label: CCTV + - unreleased + label: Cedi Sign search: - terms: - - 1984 - - Big Brother - - George Orwell - - camera - - security - - surveillance - - video + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +cent-sign: + changes: + - unreleased + label: Cent Sign + search: + terms: [] + styles: - duotone - unicode: f8ac + - solid + - regular + - light + - thin + unicode: auto voted: false centercode: changes: @@ -6742,6 +8746,7 @@ certificate: - 5.0.0 - 5.10.1 - 5.10.2 + - unreleased label: certificate search: terms: @@ -6753,12 +8758,14 @@ certificate: - regular - light - duotone + - thin unicode: f0a3 voted: false chair: changes: - 5.4.0 - 5.11.0 + - unreleased label: Chair search: terms: @@ -6770,12 +8777,14 @@ chair: - regular - light - duotone + - thin unicode: f6c0 voted: true chair-office: changes: - 5.4.0 - 5.11.0 + - unreleased label: Office Chair search: terms: @@ -6787,11 +8796,16 @@ chair-office: - regular - light - duotone + - thin unicode: f6c1 voted: true chalkboard: + aliases: + names: + - blackboard changes: - 5.0.13 + - unreleased label: Chalkboard search: terms: @@ -6806,12 +8820,17 @@ chalkboard: - regular - light - duotone + - thin unicode: f51b voted: false -chalkboard-teacher: +chalkboard-user: + aliases: + names: + - chalkboard-teacher changes: - 5.0.13 - label: Chalkboard Teacher + - unreleased + label: Chalkboard user search: terms: - blackboard @@ -6826,12 +8845,67 @@ chalkboard-teacher: - regular - light - duotone + - thin unicode: f51c voted: false +champagne-glass: + aliases: + names: + - glass-champagne + changes: + - 5.6.0 + - unreleased + label: Champagne glass + search: + terms: + - alcohol + - bar + - beverage + - celebration + - champagne + - drink + - holiday + - party + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f79e +champagne-glasses: + aliases: + names: + - glass-cheers + changes: + - 5.6.0 + - unreleased + label: Champagne glasses + search: + terms: + - alcohol + - bar + - beverage + - celebration + - champagne + - clink + - drink + - holiday + - new year's eve + - party + - toast + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f79f charging-station: changes: - 5.2.0 - 5.10.1 + - unreleased label: Charging Station search: terms: @@ -6844,12 +8918,17 @@ charging-station: - regular - light - duotone + - thin unicode: f5e7 voted: false chart-area: + aliases: + names: + - area-chart changes: - '4.2' - 5.0.0 + - unreleased label: Area Chart search: terms: @@ -6862,13 +8941,18 @@ chart-area: - regular - light - duotone + - thin unicode: f1fe voted: false chart-bar: + aliases: + names: + - bar-chart changes: - '1' - 5.0.0 - 5.3.0 + - unreleased label: Bar Chart search: terms: @@ -6881,13 +8965,74 @@ chart-bar: - regular - light - duotone + - thin unicode: f080 voted: false +chart-bullet: + changes: + - unreleased + label: Chart Bullet + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-candlestick: + changes: + - unreleased + label: Chart Candlestick + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-column: + changes: + - unreleased + label: Chart Column + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-gantt: + changes: + - unreleased + label: Chart Gantt + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false chart-line: + aliases: + names: + - line-chart changes: - '4.2' - 5.0.0 - 5.3.0 + - unreleased label: Line Chart search: terms: @@ -6904,11 +9049,13 @@ chart-line: - regular - light - duotone + - thin unicode: f201 voted: false chart-line-down: changes: - 5.3.0 + - unreleased label: Line Chart in Down Direction search: terms: @@ -6924,11 +9071,50 @@ chart-line-down: - regular - light - duotone + - thin unicode: f64d voted: false +chart-line-up: + changes: + - unreleased + label: Chart Line-up + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-mixed: + aliases: + names: + - analytics + changes: + - 5.3.0 + - unreleased + label: Chart mixed + search: + terms: + - chart + - measure + - roi + - tracking + - trend + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f643 + voted: false chart-network: changes: - 5.6.0 + - unreleased label: Network Chart search: terms: @@ -6945,13 +9131,18 @@ chart-network: - regular - light - duotone + - thin unicode: f78a voted: true chart-pie: + aliases: + names: + - pie-chart changes: - '4.2' - 5.0.0 - 5.3.0 + - unreleased label: Pie Chart search: terms: @@ -6965,12 +9156,17 @@ chart-pie: - regular - light - duotone + - thin unicode: f200 voted: false -chart-pie-alt: +chart-pie-simple: + aliases: + names: + - chart-pie-alt changes: - 5.3.0 - label: Alternate Pie Chart + - unreleased + label: Chart pie simple search: terms: - analytics @@ -6983,11 +9179,41 @@ chart-pie-alt: - regular - light - duotone + - thin unicode: f64e voted: false +chart-pyramid: + changes: + - unreleased + label: Chart Pyramid + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-radar: + changes: + - unreleased + label: Chart Radar + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false chart-scatter: changes: - 5.7.0 + - unreleased label: Scatter Chart search: terms: @@ -7001,49 +9227,104 @@ chart-scatter: - regular - light - duotone + - thin unicode: f7ee voted: true -check: +chart-scatter-3d: changes: - - '1' - - 5.0.0 - label: Check + - unreleased + label: Chart Scatter-3d + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-scatter-bubble: + changes: + - unreleased + label: Chart Scatter-bubble + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-tree-map: + changes: + - unreleased + label: Chart Tree-map + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +chart-user: + aliases: + names: + - user-chart + changes: + - 5.3.0 + - unreleased + label: Chart user search: terms: - - accept - - agree - - checkmark - - confirm - - correct - - done - - notice - - notification - - notify - - ok - - select - - success - - tick - - todo - - 'yes' + - chart + - person + - presentation + - teacher styles: - solid - regular - light - duotone - unicode: f00c + - thin + unicode: f6a3 voted: false -check-circle: +chart-waterfall: + changes: + - unreleased + label: Chart Waterfall + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +check: changes: - '1' - 5.0.0 - label: Check Circle + - unreleased + label: Check search: terms: - accept - agree + - checkmark - confirm - correct - done + - notice + - notification + - notify - ok - select - success @@ -7055,12 +9336,14 @@ check-circle: - regular - light - duotone - unicode: f058 + - thin + unicode: f00c voted: false check-double: changes: - 5.1.0 - 5.8.2 + - unreleased label: Double Check search: terms: @@ -7083,37 +9366,13 @@ check-double: - regular - light - duotone + - thin unicode: f560 voted: true -check-square: - changes: - - '3.1' - - 5.0.0 - label: Check Square - search: - terms: - - accept - - agree - - checkmark - - confirm - - correct - - done - - ok - - select - - success - - tick - - todo - - 'yes' - styles: - - solid - - regular - - light - - duotone - unicode: f14a - voted: false cheese: changes: - 5.7.0 + - unreleased label: Cheese search: terms: @@ -7130,11 +9389,13 @@ cheese: - regular - light - duotone + - thin unicode: f7ef voted: false cheese-swiss: changes: - 5.7.0 + - unreleased label: Swiss Cheese search: terms: @@ -7151,39 +9412,14 @@ cheese-swiss: - regular - light - duotone + - thin unicode: f7f0 voted: false -cheeseburger: - changes: - - 5.7.0 - - 5.7.1 - label: Cheeseburger - search: - terms: - - bacon - - beef - - burger - - burger king - - fast food - - grill - - ground beef - - hamburger - - mcdonalds - - sandwich - - slider - - wendys - - white castle - styles: - - solid - - regular - - light - - duotone - unicode: f7f1 - voted: false chess: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess search: terms: @@ -7200,12 +9436,14 @@ chess: - regular - light - duotone + - thin unicode: f439 voted: false chess-bishop: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Bishop search: terms: @@ -7218,13 +9456,18 @@ chess-bishop: - regular - light - duotone + - thin unicode: f43a voted: false -chess-bishop-alt: +chess-bishop-piece: + aliases: + names: + - chess-bishop-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Bishop + - unreleased + label: Chess bishop piece search: terms: - board @@ -7236,6 +9479,7 @@ chess-bishop-alt: - regular - light - duotone + - thin unicode: f43b voted: false chess-board: @@ -7243,6 +9487,7 @@ chess-board: - 5.0.5 - 5.7.0 - 5.9.0 + - unreleased label: Chess Board search: terms: @@ -7255,12 +9500,14 @@ chess-board: - regular - light - duotone + - thin unicode: f43c voted: false chess-clock: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Clock search: terms: @@ -7275,13 +9522,18 @@ chess-clock: - regular - light - duotone + - thin unicode: f43d voted: false -chess-clock-alt: +chess-clock-flip: + aliases: + names: + - chess-clock-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Clock + - unreleased + label: Chess clock flip search: terms: - board @@ -7295,12 +9547,14 @@ chess-clock-alt: - regular - light - duotone + - thin unicode: f43e voted: false chess-king: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess King search: terms: @@ -7313,13 +9567,18 @@ chess-king: - regular - light - duotone + - thin unicode: f43f voted: false -chess-king-alt: +chess-king-piece: + aliases: + names: + - chess-king-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess King + - unreleased + label: Chess king piece search: terms: - board @@ -7331,12 +9590,14 @@ chess-king-alt: - regular - light - duotone + - thin unicode: f440 voted: false chess-knight: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Knight search: terms: @@ -7350,13 +9611,18 @@ chess-knight: - regular - light - duotone + - thin unicode: f441 voted: false -chess-knight-alt: +chess-knight-piece: + aliases: + names: + - chess-knight-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Knight + - unreleased + label: Chess knight piece search: terms: - board @@ -7369,12 +9635,14 @@ chess-knight-alt: - regular - light - duotone + - thin unicode: f442 voted: false chess-pawn: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Pawn search: terms: @@ -7387,13 +9655,18 @@ chess-pawn: - regular - light - duotone + - thin unicode: f443 voted: false -chess-pawn-alt: +chess-pawn-piece: + aliases: + names: + - chess-pawn-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Pawn + - unreleased + label: Chess pawn piece search: terms: - board @@ -7405,12 +9678,14 @@ chess-pawn-alt: - regular - light - duotone + - thin unicode: f444 voted: false chess-queen: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Queen search: terms: @@ -7423,13 +9698,18 @@ chess-queen: - regular - light - duotone + - thin unicode: f445 voted: false -chess-queen-alt: +chess-queen-piece: + aliases: + names: + - chess-queen-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Queen + - unreleased + label: Chess queen piece search: terms: - board @@ -7441,12 +9721,14 @@ chess-queen-alt: - regular - light - duotone + - thin unicode: f446 voted: false chess-rook: changes: - 5.0.5 - 5.9.0 + - unreleased label: Chess Rook search: terms: @@ -7460,13 +9742,18 @@ chess-rook: - regular - light - duotone + - thin unicode: f447 voted: false -chess-rook-alt: +chess-rook-piece: + aliases: + names: + - chess-rook-alt changes: - 5.0.5 - 5.9.0 - label: Alternate Chess Rook + - unreleased + label: Chess rook piece search: terms: - board @@ -7479,52 +9766,58 @@ chess-rook-alt: - regular - light - duotone + - thin unicode: f448 voted: false -chevron-circle-down: +chevron-down: changes: - - '3.1' + - '1' - 5.0.0 - label: Chevron Circle Down + - unreleased + label: chevron-down search: terms: - arrow - download - - dropdown - - menu - - more + - expand styles: - solid - regular - light - duotone - unicode: f13a + - thin + unicode: f078 voted: false -chevron-circle-left: +chevron-left: changes: - - '3.1' + - '1' - 5.0.0 - label: Chevron Circle Left + - unreleased + label: chevron-left search: terms: - arrow - back + - bracket - previous styles: - solid - regular - light - duotone - unicode: f137 + - thin + unicode: f053 voted: false -chevron-circle-right: +chevron-right: changes: - - '3.1' + - '1' - 5.0.0 - label: Chevron Circle Right + - unreleased + label: chevron-right search: terms: - arrow + - bracket - forward - next styles: @@ -7532,13 +9825,15 @@ chevron-circle-right: - regular - light - duotone - unicode: f138 + - thin + unicode: f054 voted: false -chevron-circle-up: +chevron-up: changes: - - '3.1' + - '1' - 5.0.0 - label: Chevron Circle Up + - unreleased + label: chevron-up search: terms: - arrow @@ -7549,12 +9844,17 @@ chevron-circle-up: - regular - light - duotone - unicode: f139 + - thin + unicode: f077 voted: false -chevron-double-down: +chevrons-down: + aliases: + names: + - chevron-double-down changes: - 5.0.0 - label: Chevron Double Down + - unreleased + label: Chevrons down search: terms: - arrow @@ -7565,13 +9865,18 @@ chevron-double-down: - regular - light - duotone + - thin unicode: f322 voted: false -chevron-double-left: +chevrons-left: + aliases: + names: + - chevron-double-left changes: - 5.0.0 - 5.11.0 - label: Chevron Double Left + - unreleased + label: Chevrons left search: terms: - arrow @@ -7583,13 +9888,18 @@ chevron-double-left: - regular - light - duotone + - thin unicode: f323 voted: false -chevron-double-right: +chevrons-right: + aliases: + names: + - chevron-double-right changes: - 5.0.0 - 5.11.0 - label: Chevron Double Right + - unreleased + label: Chevrons right search: terms: - arrow @@ -7601,12 +9911,17 @@ chevron-double-right: - regular - light - duotone + - thin unicode: f324 voted: false -chevron-double-up: +chevrons-up: + aliases: + names: + - chevron-double-up changes: - 5.0.0 - label: Chevron Double Up + - unreleased + label: Chevrons up search: terms: - arrow @@ -7617,149 +9932,14 @@ chevron-double-up: - regular - light - duotone + - thin unicode: f325 voted: false -chevron-down: - changes: - - '1' - - 5.0.0 - label: chevron-down - search: - terms: - - arrow - - download - - expand - styles: - - solid - - regular - - light - - duotone - unicode: f078 - voted: false -chevron-left: - changes: - - '1' - - 5.0.0 - label: chevron-left - search: - terms: - - arrow - - back - - bracket - - previous - styles: - - solid - - regular - - light - - duotone - unicode: f053 - voted: false -chevron-right: - changes: - - '1' - - 5.0.0 - label: chevron-right - search: - terms: - - arrow - - bracket - - forward - - next - styles: - - solid - - regular - - light - - duotone - unicode: f054 - voted: false -chevron-square-down: - changes: - - 5.0.0 - label: Chevron Square Down - search: - terms: - - arrow - - download - - dropdown - - expand - - menu - - more - styles: - - solid - - regular - - light - - duotone - unicode: f329 - voted: false -chevron-square-left: - changes: - - 5.0.0 - label: Chevron Square Left - search: - terms: - - arrow - - back - - previous - styles: - - solid - - regular - - light - - duotone - unicode: f32a - voted: false -chevron-square-right: - changes: - - 5.0.0 - label: Chevron Square Right - search: - terms: - - arrow - - forward - - next - styles: - - solid - - regular - - light - - duotone - unicode: f32b - voted: false -chevron-square-up: - changes: - - 5.0.0 - label: Chevron Square Up - search: - terms: - - arrow - - collapse - - upload - styles: - - solid - - regular - - light - - duotone - unicode: f32c - voted: false -chevron-up: - changes: - - '1' - - 5.0.0 - label: chevron-up - search: - terms: - - arrow - - collapse - - upload - styles: - - solid - - regular - - light - - duotone - unicode: f077 - voted: false child: changes: - '4.1' - 5.0.0 + - unreleased label: Child search: terms: @@ -7773,11 +9953,13 @@ child: - regular - light - duotone + - thin unicode: f1ae voted: false chimney: changes: - 5.6.0 + - unreleased label: Chimney search: terms: @@ -7792,6 +9974,7 @@ chimney: - regular - light - duotone + - thin unicode: f78b chrome: changes: @@ -7817,6 +10000,7 @@ chromecast: church: changes: - 5.0.13 + - unreleased label: Church search: terms: @@ -7830,6 +10014,7 @@ church: - regular - light - duotone + - thin unicode: f51d voted: true circle: @@ -7838,6 +10023,7 @@ circle: - 5.0.0 - 5.10.1 - 5.10.2 + - unreleased label: Circle search: terms: @@ -7852,7957 +10038,7937 @@ circle: - regular - light - duotone + - thin unicode: f111 voted: false -circle-notch: +circle-0: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Circle Notched + - unreleased + label: Circle 0 search: - terms: - - circle-o-notch - - diameter - - dot - - ellipse - - round - - spinner + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f1ce + unicode: auto voted: false -city: +circle-1: changes: - - 5.3.0 - label: City + - unreleased + label: Circle 1 search: - terms: - - buildings - - busy - - skyscrapers - - urban - - windows + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f64f + unicode: auto voted: false -clarinet: +circle-2: changes: - - 5.11.0 - label: Clarinet + - unreleased + label: Circle 2 search: - terms: - - instrument - - jazz - - music - - woodwind + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f8ad + unicode: auto voted: false -claw-marks: +circle-3: changes: - - 5.4.0 - label: Claw Marks + - unreleased + label: Circle 3 search: - terms: - - attack - - damage - - halloween - - rip - - scratch - - snikt - - tear - - torn - - wolverine + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f6c2 + unicode: auto voted: false -clinic-medical: +circle-4: changes: - - 5.7.0 - label: Medical Clinic + - unreleased + label: Circle 4 search: - terms: - - covid-19 - - doctor - - general practitioner - - hospital - - infirmary - - medicine - - office - - outpatient + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7f2 + unicode: auto voted: false -clipboard: +circle-5: changes: - - 5.0.0 - label: Clipboard + - unreleased + label: Circle 5 search: - terms: - - copy - - notes - - paste - - record + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f328 + unicode: auto voted: false -clipboard-check: +circle-6: changes: - - 5.0.7 - label: Clipboard with Check + - unreleased + label: Circle 6 search: - terms: - - accept - - agree - - confirm - - done - - ok - - select - - success - - tick - - todo - - 'yes' + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f46c + unicode: auto voted: false -clipboard-list: +circle-7: changes: - - 5.0.7 - label: Clipboard List + - unreleased + label: Circle 7 search: - terms: - - checklist - - completed - - done - - finished - - intinerary - - ol - - schedule - - tick - - todo - - ul + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f46d + unicode: auto voted: false -clipboard-list-check: +circle-8: changes: - - 5.5.0 - label: Clipboard List with Check + - unreleased + label: Circle 8 search: - terms: - - checklist - - completed - - done - - election - - finished - - intinerary - - ol - - schedule - - tick - - todo - - ul - - vote - - voting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f737 + unicode: auto voted: false -clipboard-prescription: +circle-9: changes: - - 5.2.0 - label: Clipboard Prescription + - unreleased + label: Circle 9 search: - terms: - - copy - - history - - medical - - notes - - paste - - record + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f5e8 + unicode: auto voted: false -clipboard-user: +circle-a: changes: - - 5.7.0 - label: Clipboard with User + - unreleased + label: Circle A search: - terms: - - attendance - - record - - roster - - staff + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7f3 + unicode: auto voted: false -clock: +circle-ampersand: changes: - - '1' - - 5.0.0 - - 5.12.1 - label: Clock + - unreleased + label: Circle Ampersand search: - terms: - - date - - late - - schedule - - time - - timer - - timestamp - - watch + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f017 + unicode: auto voted: false -clone: +circle-arrow-down: + aliases: + names: + - arrow-circle-down changes: - - '4.4' + - '2' - 5.0.0 - - 5.11.0 - label: Clone + - unreleased + label: Circle arrow down search: terms: - - arrange - - copy - - duplicate - - paste + - download styles: - solid - regular - light - duotone - unicode: f24d + - thin + unicode: f0ab voted: false -closed-captioning: +circle-arrow-left: + aliases: + names: + - arrow-circle-left changes: - - '4.2' + - '2' - 5.0.0 - - 5.10.1 - label: Closed Captioning + - unreleased + label: Circle arrow left search: terms: - - cc - - deaf - - hearing - - subtitle - - subtitling - - text - - video + - back + - previous styles: - solid - regular - light - duotone - unicode: f20a + - thin + unicode: f0a8 voted: false -cloud: +circle-arrow-right: + aliases: + names: + - arrow-circle-right changes: - '2' - 5.0.0 - - 5.0.11 - label: Cloud + - unreleased + label: Circle arrow right search: terms: - - atmosphere - - fog - - overcast - - save - - upload - - weather + - forward + - next styles: - solid - regular - light - duotone - unicode: f0c2 + - thin + unicode: f0a9 voted: false -cloud-download: +circle-arrow-up: + aliases: + names: + - arrow-circle-up changes: - - '3' + - '2' - 5.0.0 - - 5.0.11 - label: Cloud Download + - unreleased + label: Circle arrow up search: terms: - - download - - export - - save + - upload styles: - solid - regular - light - duotone - unicode: f0ed + - thin + unicode: f0aa voted: false -cloud-download-alt: +circle-b: changes: - - 5.0.0 - - 5.0.11 - label: Alternate Cloud Download + - unreleased + label: Circle B search: - terms: - - download - - export - - save + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f381 + unicode: auto voted: false -cloud-drizzle: +circle-book-open: + aliases: + names: + - book-circle changes: - - 5.5.0 - label: Cloud with Drizzle + - unreleased + label: Circle book open search: - terms: - - precipitation - - rain - - sprinkle + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f738 + - thin + unicode: auto voted: false -cloud-hail: +circle-bookmark: + aliases: + names: + - bookmark-circle changes: - - 5.5.0 - label: Cloud with Hail + - unreleased + label: Circle bookmark search: - terms: - - golf balls - - ice - - precipitation - - sleet - - snow - - storm + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f739 + - thin + unicode: auto voted: false -cloud-hail-mixed: +circle-c: changes: - - 5.5.0 - label: Cloud with Mixed Hail + - unreleased + label: Circle C search: - terms: - - freezing - - ice - - precipitation - - rain - - sleet - - snow - - storm + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f73a + unicode: auto voted: false -cloud-meatball: +circle-calendar: + aliases: + names: + - calendar-circle changes: - - 5.5.0 - label: Cloud with (a chance of) Meatball + - unreleased + label: Circle calendar search: - terms: - - FLDSMDFR - - food - - spaghetti - - storm + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f73b + - thin + unicode: auto voted: false -cloud-moon: +circle-camera: + aliases: + names: + - camera-circle changes: - - 5.4.0 - - 5.5.0 - label: Cloud with Moon + - unreleased + label: Circle camera search: - terms: - - crescent - - evening - - lunar - - night - - partly cloudy - - sky + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6c3 + - thin + unicode: auto voted: false -cloud-moon-rain: +circle-caret-down: + aliases: + names: + - caret-circle-down changes: - - 5.5.0 - label: Cloud with Moon and Rain + - 5.0.0 + - unreleased + label: Circle caret down search: terms: - - crescent - - evening - - lunar - - night - - partly cloudy - - precipitation - - rain - - sky - - storm + - arrow + - dropdown + - expand + - menu + - more + - triangle styles: - solid - regular - light - duotone - unicode: f73c + - thin + unicode: f32d voted: false -cloud-music: +circle-caret-left: + aliases: + names: + - caret-circle-left changes: - - 5.11.0 - label: Cloud Music + - 5.0.0 + - unreleased + label: Circle caret left search: terms: - - download - - music - - spotify - - streaming + - arrow + - back + - previous + - triangle styles: - solid - regular - light - duotone - unicode: f8ae + - thin + unicode: f32e voted: false -cloud-rain: +circle-caret-right: + aliases: + names: + - caret-circle-right changes: - - 5.5.0 - label: Cloud with Rain + - 5.0.0 + - unreleased + label: Circle caret right search: terms: - - precipitation - - rain - - sky - - storm + - arrow + - forward + - next + - triangle styles: - solid - regular - light - duotone - unicode: f73d + - thin + unicode: f330 voted: false -cloud-rainbow: +circle-caret-up: + aliases: + names: + - caret-circle-up changes: - - 5.5.0 - label: Cloud with Rainbow + - 5.0.0 + - unreleased + label: Circle caret up search: terms: - - gold - - leprechaun - - prism - - rain - - sky + - arrow + - collapse + - triangle + - upload styles: - solid - regular - light - duotone - unicode: f73e + - thin + unicode: f331 voted: false -cloud-showers: +circle-check: + aliases: + names: + - check-circle changes: - - 5.5.0 - label: Cloud with Showers + - '1' + - 5.0.0 + - unreleased + label: Circle check search: terms: - - precipitation - - rain - - sky - - storm + - accept + - agree + - confirm + - correct + - done + - ok + - select + - success + - tick + - todo + - 'yes' styles: - solid - regular - light - duotone - unicode: f73f + - thin + unicode: f058 voted: false -cloud-showers-heavy: +circle-chevron-down: + aliases: + names: + - chevron-circle-down changes: - - 5.5.0 - label: Cloud with Heavy Showers + - '3.1' + - 5.0.0 + - unreleased + label: Circle chevron down search: terms: - - precipitation - - rain - - sky - - storm + - arrow + - download + - dropdown + - menu + - more styles: - solid - regular - light - duotone - unicode: f740 + - thin + unicode: f13a voted: false -cloud-sleet: +circle-chevron-left: + aliases: + names: + - chevron-circle-left changes: - - 5.5.0 - label: Cloud with Sleet + - '3.1' + - 5.0.0 + - unreleased + label: Circle chevron left search: terms: - - freezing - - hail - - precipitation - - rain - - winter - - wintry mix + - arrow + - back + - previous styles: - solid - regular - light - duotone - unicode: f741 + - thin + unicode: f137 voted: false -cloud-snow: +circle-chevron-right: + aliases: + names: + - chevron-circle-right changes: - - 5.5.0 - label: Cloud with Snow + - '3.1' + - 5.0.0 + - unreleased + label: Circle chevron right search: terms: - - blizzard - - noreaster - - precipitation - - winter + - arrow + - forward + - next styles: - solid - regular - light - duotone - unicode: f742 + - thin + unicode: f138 voted: false -cloud-sun: +circle-chevron-up: + aliases: + names: + - chevron-circle-up changes: - - 5.4.0 - - 5.5.0 - label: Cloud with Sun + - '3.1' + - 5.0.0 + - unreleased + label: Circle chevron up search: terms: - - clear - - day - - daytime - - fall - - outdoors - - overcast - - partly cloudy + - arrow + - collapse + - upload styles: - solid - regular - light - duotone - unicode: f6c4 + - thin + unicode: f139 voted: false -cloud-sun-rain: +circle-d: changes: - - 5.5.0 - label: Cloud with Sun and Rain + - unreleased + label: Circle D search: - terms: - - day - - overcast - - precipitation - - storm - - summer - - sunshower + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f743 + unicode: auto voted: false -cloud-upload: +circle-dashed: changes: - - '3' - - 5.0.0 - - 5.0.11 - label: Cloud Upload + - unreleased + label: Circle Dashed search: - terms: - - import - - save - - upload + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f0ee + - thin + unicode: auto voted: false -cloud-upload-alt: +circle-dollar: + aliases: + names: + - usd-circle + - dollar-circle changes: - 5.0.0 - - 5.0.11 - label: Alternate Cloud Upload + - 5.0.9 + - 5.11.0 + - 5.11.1 + label: Circle dollar search: terms: - - cloud-upload - - import - - save - - upload + - $ + - currency + - dollar-sign + - money + - price + - usd styles: - solid - regular - light - duotone - unicode: f382 + - thin + unicode: f2e8 voted: false -clouds: +circle-dollar-to-slot: + aliases: + names: + - donate changes: - - 5.5.0 - label: Clouds + - 5.0.9 + - unreleased + label: Circle dollar to slot search: terms: - - cloudy - - fog - - haze - - overcast - - smoke - - storm - - weather + - contribute + - generosity + - gift + - give styles: - solid - regular - light - duotone - unicode: f744 + - thin + unicode: f4b9 voted: false -clouds-moon: +circle-dot: + aliases: + names: + - dot-circle changes: - - 5.5.0 - label: Clouds with Moon + - '4' + - 5.0.0 + - unreleased + label: Circle dot search: terms: - - cloudy - - moonlight - - night - - overcast - - sky + - bullseye + - notification + - target styles: - solid - regular - light - duotone - unicode: f745 + - thin + unicode: f192 voted: false -clouds-sun: +circle-down: + aliases: + names: + - arrow-alt-circle-down changes: - - 5.5.0 - label: Clouds with Sun + - 5.0.0 + - unreleased + label: Circle down search: terms: - - cloudy - - day - - moonlight - - overcast - - sky - - summer + - arrow-circle-o-down + - download styles: - solid - regular - light - duotone - unicode: f746 + - thin + unicode: f358 voted: false -cloudscale: +circle-e: changes: - - 5.0.0 - label: cloudscale.ch + - unreleased + label: Circle E search: terms: [] styles: - - brands - unicode: f383 + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -cloudsmith: +circle-envelope: + aliases: + names: + - envelope-circle changes: - - 5.0.0 - label: Cloudsmith + - unreleased + label: Circle envelope search: terms: [] styles: - - brands - unicode: f384 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -cloudversify: +circle-exclamation: + aliases: + names: + - exclamation-circle changes: + - '1' - 5.0.0 - label: cloudversify + - unreleased + label: Circle exclamation search: - terms: [] + terms: + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning styles: - - brands - unicode: f385 + - solid + - regular + - light + - duotone + - thin + unicode: f06a voted: false -club: +circle-f: changes: - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Club + - unreleased + label: Circle F search: - terms: - - card - - game - - poker - - suit + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f327 + unicode: auto voted: false -cocktail: +circle-g: changes: - - 5.1.0 - - 5.10.1 - label: Cocktail + - unreleased + label: Circle G search: - terms: - - alcohol - - beverage - - drink - - gin - - glass - - margarita - - martini - - vodka + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f561 + unicode: auto voted: false -code: +circle-h: + aliases: + names: + - hospital-symbol changes: - - '3.1' - - 5.0.0 - label: Code + - 5.0.7 + - unreleased + label: Circle h search: terms: - - brackets - - code - - development - - html + - clinic + - covid-19 + - emergency + - map styles: - solid - regular - light - duotone - unicode: f121 + - thin + unicode: f47e voted: false -code-branch: +circle-half: changes: - - 5.0.0 - label: Code Branch + - unreleased + label: Circle Half search: - terms: - - branch - - code-fork - - fork - - git - - github - - rebase - - svn - - vcs - - version + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f126 + - thin + unicode: auto voted: false -code-commit: +circle-half-stroke: + aliases: + names: + - adjust changes: + - '1' - 5.0.0 - - 5.1.1 - label: Code Commit + - 5.10.2 + - 5.11.0 + - unreleased + label: Circle half stroke search: terms: - - commit - - git - - github - - hash - - rebase - - svn - - vcs - - version + - contrast + - dark + - light + - saturation styles: - solid - regular - light - duotone - unicode: f386 + - thin + unicode: f042 voted: false -code-merge: +circle-heart: + aliases: + names: + - heart-circle changes: - - 5.0.0 - label: Code Merge + - 5.0.9 + - 5.11.0 + - 5.11.1 + - unreleased + label: Circle heart search: terms: - - git - - github - - merge - - pr - - rebase - - svn - - vcs - - version + - favorite + - like + - love styles: - solid - regular - light - duotone - unicode: f387 + - thin + unicode: f4c7 voted: false -codepen: +circle-i: changes: - - '4.1' - - 5.0.0 - label: Codepen + - unreleased + label: Circle I search: terms: [] styles: - - brands - unicode: f1cb + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -codiepie: +circle-info: + aliases: + names: + - info-circle changes: - - '4.5' + - '1' - 5.0.0 - label: Codie Pie + - unreleased + label: Circle info search: - terms: [] + terms: + - details + - help + - information + - more + - support styles: - - brands - unicode: f284 + - solid + - regular + - light + - duotone + - thin + unicode: f05a voted: false -coffee: +circle-j: changes: - - '3' - - 5.0.0 - label: Coffee + - unreleased + label: Circle J search: - terms: - - beverage - - breakfast - - cafe - - drink - - fall - - morning - - mug - - seasonal - - tea + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f0f4 + unicode: auto voted: false -coffee-pot: +circle-k: changes: - - 5.12.0 - label: Coffee Pot + - unreleased + label: Circle K search: - terms: - - beverage - - breakfast - - brew - - cafe - - carafe - - drink - - morning + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f902 + unicode: auto voted: false -coffee-togo: +circle-l: changes: - - 5.4.0 - label: To-Go Coffee + - unreleased + label: Circle L search: - terms: - - beverage - - breakfast - - cafe - - drink - - latte - - morning - - mug - - starbucks - - takeout - - tea - - travel + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f6c5 + unicode: auto voted: false -coffin: +circle-left: + aliases: + names: + - arrow-alt-circle-left changes: - - 5.4.0 - - 5.12.1 - label: Coffin + - 5.0.0 + - unreleased + label: Circle left search: terms: - - box - - burial - - casket - - cemetery - - death - - eulogy - - funeral - - halloween - - vampire + - arrow-circle-o-left + - back + - previous styles: - solid - regular - light - duotone - unicode: f6c6 + - thin + unicode: f359 voted: false -coffin-cross: +circle-location-arrow: + aliases: + names: + - location-circle changes: - - 5.12.1 - label: Coffin with Cross + - 5.2.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Circle location arrow search: terms: - - box - - burial - - casket - - catholicism - - cemetery - - christianity - - death - - eulogy - - funeral - - halloween - - vampire + - address + - compass + - coordinate + - direction + - gps + - map + - navigation + - place styles: - solid - regular - light - duotone - unicode: f951 + - thin + unicode: f602 voted: false -cog: +circle-m: changes: - - '1' - - 5.0.0 - label: cog + - unreleased + label: Circle M search: - terms: - - gear - - mechanical - - settings - - sprocket - - wheel + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f013 + unicode: auto voted: false -cogs: +circle-microphone: + aliases: + names: + - microphone-circle changes: - - '1' - - 5.0.0 - label: cogs + - unreleased + label: Circle microphone search: - terms: - - gears - - mechanical - - settings - - sprocket - - wheel + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +circle-microphone-lines: + aliases: + names: + - microphone-circle-alt + changes: + - unreleased + label: Circle microphone lines + search: + terms: [] + styles: - duotone - unicode: f085 + - solid + - regular + - light + - thin + unicode: auto voted: false -coin: +circle-minus: + aliases: + names: + - minus-circle changes: - - 5.9.0 - label: Coin + - '1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Circle minus search: terms: - - dime - - money - - nickel - - penny - - quarter + - delete + - hide + - negative + - remove + - shape + - trash styles: - solid - regular - light - duotone - unicode: f85c - voted: true -coins: + - thin + unicode: f056 + voted: false +circle-n: changes: - - 5.0.13 - label: Coins + - unreleased + label: Circle N search: - terms: - - currency - - dime - - financial - - gold - - money - - penny + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f51e - voted: true -columns: + unicode: auto + voted: false +circle-notch: changes: - - '2' + - '4.1' - 5.0.0 - label: Columns + - 5.10.2 + - unreleased + label: Circle Notched search: terms: - - browser - - dashboard - - organize - - panes - - split + - circle-o-notch + - diameter + - dot + - ellipse + - round + - spinner styles: - solid - regular - light - duotone - unicode: f0db + - thin + unicode: f1ce voted: false -comet: +circle-o: changes: - - 5.12.0 - label: Comet + - unreleased + label: Circle O search: - terms: - - asteroid - - dust - - ice - - meteor - - orbit - - rock - - shooting star - - solar system - - space + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f903 + unicode: auto voted: false -comment: +circle-p: changes: - - '1' - - 5.0.0 - - 5.0.9 - - 5.10.1 - label: comment + - unreleased + label: Circle P search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f075 + unicode: auto voted: false -comment-alt: +circle-parking: + aliases: + names: + - parking-circle changes: - - '4.4' - - 5.0.0 + - 5.2.0 - 5.10.1 - label: Alternate Comment + - 5.11.0 + - 5.11.1 + - unreleased + label: Circle parking search: terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - sms - - speech - - texting + - auto + - car + - garage + - meter styles: - solid - regular - light - duotone - unicode: f27a + - thin + unicode: f615 voted: false -comment-alt-check: +circle-pause: + aliases: + names: + - pause-circle changes: - - 5.0.9 - label: Alternate Comment Check + - '4.5' + - 5.0.0 + - unreleased + label: Circle pause search: terms: - - accept - - agree - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - select - - sms - - speech - - success - - synced - - texting - - tick - - todo + - hold + - wait styles: - solid - regular - light - duotone - unicode: f4a2 + - thin + unicode: f28b voted: false -comment-alt-dollar: +circle-phone: + aliases: + names: + - phone-circle changes: - - 5.3.0 - label: Comment Alt-dollar + - unreleased + label: Circle phone search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - money - - note - - notification - - pay - - sms - - speech - - spend - - texting - - transfer + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f650 + - thin + unicode: auto voted: false -comment-alt-dots: +circle-phone-flip: + aliases: + names: + - phone-circle-alt changes: - - 5.0.9 - label: Alternate Comment Dots + - unreleased + label: Circle phone flip search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - more - - note - - notification - - reply - - sms - - speech - - texting + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +circle-phone-hangup: + aliases: + names: + - phone-circle-down + changes: + - unreleased + label: Circle phone hangup + search: + terms: [] + styles: - duotone - unicode: f4a3 + - solid + - regular + - light + - thin + unicode: auto voted: false -comment-alt-edit: +circle-play: + aliases: + names: + - play-circle changes: - - 5.0.9 - label: Alternate Comment Edit + - '3.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Circle play search: terms: - - bubble - - chat - - commenting - - conversation - - edit - - feedback - - message - - note - - notification - - pen - - pencil - - sms - - speech - - texting - - update - - write + - audio + - music + - playing + - sound + - start + - video styles: - solid - regular - light - duotone - unicode: f4a4 + - thin + unicode: f144 voted: false -comment-alt-exclamation: +circle-plus: + aliases: + names: + - plus-circle changes: - - 5.0.9 - label: Alternate Comment Exclamation + - '1' + - 5.0.0 + - unreleased + label: Circle plus search: terms: - - alert - - bubble - - chat - - commenting - - conversation - - exclaim - - feedback - - important - - message - - note - - notification - - sms - - speech - - surprise - - texting + - add + - create + - expand + - new + - positive + - shape styles: - solid - regular - light - duotone - unicode: f4a5 + - thin + unicode: f055 voted: false -comment-alt-lines: +circle-q: changes: - - 5.0.9 - label: Alternate Comment Lines + - unreleased + label: Circle Q search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4a6 + unicode: auto voted: false -comment-alt-medical: +circle-quarter: changes: - - 5.7.0 - label: Medical Chat + - unreleased + label: Circle Quarter + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +circle-question: + aliases: + names: + - question-circle + changes: + - '1' + - 5.0.0 + - unreleased + label: Circle question search: terms: - - advice - - bubble - - chat - - commenting - - conversation - - diagnose - - feedback - - message - - note - - notification - - prescription - - sms - - speech - - texting + - help + - information + - support + - unknown styles: - solid - regular - light - duotone - unicode: f7f4 + - thin + unicode: f059 voted: false -comment-alt-minus: +circle-r: changes: - - 5.0.9 - label: Alternate Comment Minus + - unreleased + label: Circle R search: - terms: - - bubble - - chat - - commenting - - conversation - - delete - - feedback - - message - - negative - - note - - notification - - remove - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4a7 + unicode: auto voted: false -comment-alt-music: +circle-radiation: + aliases: + names: + - radiation-alt changes: + - 5.6.0 + - 5.8.2 - 5.11.0 - label: Alternate Comment Music + - 5.11.1 + - unreleased + label: Circle radiation search: terms: - - chat - - commenting - - conversation - - create - - message - - music - - note - - notification - - sing - - sms - - song - - texting + - danger + - dangerous + - deadly + - hazard + - nuclear + - radioactive + - warning styles: - solid - regular - light - duotone - unicode: f8af - voted: false -comment-alt-plus: + - thin + unicode: f7ba + voted: true +circle-right: + aliases: + names: + - arrow-alt-circle-right changes: - - 5.0.9 - label: Alternate Comment Plus + - 5.0.0 + - unreleased + label: Circle right search: terms: - - add - - bubble - - chat - - commenting - - conversation - - create - - feedback - - message - - new - - note - - notification - - positive - - sms - - speech - - texting + - arrow-circle-o-right + - forward + - next styles: - solid - regular - light - duotone - unicode: f4a8 + - thin + unicode: f35a voted: false -comment-alt-slash: +circle-s: changes: - - 5.0.9 - label: Alternate Comment Slash + - unreleased + label: Circle S search: - terms: - - bubble - - cancel - - chat - - commenting - - conversation - - feedback - - message - - mute - - note - - notification - - quiet - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4a9 + unicode: auto voted: false -comment-alt-smile: +circle-sort: + aliases: + names: + - sort-circle changes: - - 5.0.9 - label: Alternate Comment Smile + - 5.12.0 + - 5.14.0 + - unreleased + label: Circle sort search: terms: - - bubble - - chat - - commenting - - conversation - - emoji - - feedback - - happy - - message - - note - - notification - - sms - - speech - - texting + - down + - elevator + - lower + - raise + - temperature + - thermostat + - up styles: - solid - regular - light - duotone - unicode: f4aa + - thin + unicode: e030 voted: false -comment-alt-times: +circle-sort-down: + aliases: + names: + - sort-circle-down changes: - - 5.0.9 - label: Alternate Comment Times + - 5.12.0 + - 5.14.0 + - unreleased + label: Circle sort down search: terms: - - archive - - bubble - - chat - - commenting - - conversation - - delete - - feedback - - message - - note - - notification - - remove - - sms - - speech - - texting - - x + - down + - elevator + - lower + - raise + - temperature + - thermostat + - up styles: - solid - regular - light - duotone - unicode: f4ab + - thin + unicode: e031 voted: false -comment-check: +circle-sort-up: + aliases: + names: + - sort-circle-up changes: - - 5.0.9 - label: Comment Check + - 5.12.0 + - 5.14.0 + - unreleased + label: Circle sort up search: terms: - - accept - - agree - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - select - - sms - - speech - - success - - synced - - texting - - tick - - todo + - down + - elevator + - lower + - raise + - temperature + - thermostat + - up styles: - solid - regular - light - duotone - unicode: f4ac + - thin + unicode: e032 voted: false -comment-dollar: +circle-star: + aliases: + names: + - star-circle changes: - - 5.3.0 - label: Comment Dollar + - unreleased + label: Circle star search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - money - - note - - notification - - pay - - sms - - speech - - spend - - texting - - transfer + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f651 + - thin + unicode: auto voted: false -comment-dots: +circle-stop: + aliases: + names: + - stop-circle changes: - - 5.0.9 - label: Comment Dots + - '4.5' + - 5.0.0 + - unreleased + label: Circle stop search: terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - more - - note - - notification - - reply - - sms - - speech - - texting + - block + - box + - circle + - square styles: - solid - regular - light - duotone - unicode: f4ad + - thin + unicode: f28d voted: false -comment-edit: +circle-t: changes: - - 5.0.9 - label: Comment Edit + - unreleased + label: Circle T search: - terms: - - bubble - - chat - - commenting - - conversation - - edit - - feedback - - message - - note - - notification - - pen - - pencil - - sms - - speech - - texting - - update - - write + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4ae + unicode: auto voted: false -comment-exclamation: +circle-three-quarters: changes: - - 5.0.9 - label: Comment Exclamation + - unreleased + label: Circle Three-quarters search: - terms: - - alert - - bubble - - chat - - commenting - - conversation - - exclaim - - feedback - - important - - message - - note - - notification - - sms - - speech - - surprise - - texting + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +circle-trash: + aliases: + names: + - trash-circle + changes: + - unreleased + label: Circle trash + search: + terms: [] + styles: - duotone - unicode: f4af + - solid + - regular + - light + - thin + unicode: auto voted: false -comment-lines: +circle-u: changes: - - 5.0.9 - label: Comment Lines + - unreleased + label: Circle U search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4b0 + unicode: auto voted: false -comment-medical: +circle-up: + aliases: + names: + - arrow-alt-circle-up changes: - - 5.7.0 - label: Alternate Medical Chat + - 5.0.0 + - unreleased + label: Circle up search: terms: - - advice - - bubble - - chat - - commenting - - conversation - - diagnose - - feedback - - message - - note - - notification - - prescription - - sms - - speech - - texting + - arrow-circle-o-up styles: - solid - regular - light - duotone - unicode: f7f5 + - thin + unicode: f35b voted: false -comment-minus: +circle-user: + aliases: + names: + - user-circle changes: - - 5.0.9 - label: Comment Minus + - '4.7' + - 5.0.0 + - 5.0.3 + - 5.0.11 + - 5.11.0 + - 5.11.1 + - unreleased + label: Circle user search: terms: - - bubble - - chat - - commenting - - conversation - - delete - - feedback - - message - - negative - - note - - notification - - remove - - sms - - speech - - texting + - account + - avatar + - head + - human + - man + - person + - profile styles: - solid - regular - light - duotone - unicode: f4b1 + - thin + unicode: f2bd voted: false -comment-music: +circle-v: changes: - - 5.11.0 - label: Comment Music + - unreleased + label: Circle V search: - terms: - - chat - - commenting - - conversation - - create - - message - - music - - note - - notification - - sing - - sms - - song - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f8b0 + unicode: auto voted: false -comment-plus: +circle-video: + aliases: + names: + - video-circle changes: - - 5.0.9 - label: Comment Plus + - unreleased + label: Circle video search: - terms: - - add - - bubble - - chat - - commenting - - conversation - - create - - feedback - - message - - new - - note - - notification - - positive - - sms - - speech - - texting + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f4b2 + - thin + unicode: auto voted: false -comment-slash: +circle-w: changes: - - 5.0.9 - label: Comment Slash + - unreleased + label: Circle W search: - terms: - - bubble - - cancel - - chat - - commenting - - conversation - - feedback - - message - - mute - - note - - notification - - quiet - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4b3 + unicode: auto voted: false -comment-smile: +circle-waveform-lines: + aliases: + names: + - waveform-circle changes: - - 5.0.9 - label: Comment Smile + - unreleased + label: Circle waveform lines search: - terms: - - bubble - - chat - - commenting - - conversation - - emoji - - feedback - - happy - - message - - note - - notification - - sms - - speech - - texting + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f4b4 + - thin + unicode: auto voted: false -comment-times: +circle-x: changes: - - 5.0.9 - label: Comment Times + - unreleased + label: Circle X search: - terms: - - archive - - bubble - - chat - - commenting - - conversation - - delete - - feedback - - message - - note - - notification - - remove - - sms - - speech - - texting - - x + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4b5 + unicode: auto voted: false -comments: +circle-xmark: + aliases: + names: + - times-circle + - xmark-circle changes: - '1' - 5.0.0 - - 5.0.9 - label: comments + - unreleased + label: Circle xmark search: terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note + - close + - cross + - exit + - incorrect + - notice - notification - - sms - - speech - - texting + - notify + - problem + - wrong + - x styles: - solid - regular - light - duotone - unicode: f086 + - thin + unicode: f057 voted: false -comments-alt: +circle-y: changes: - - 5.0.9 - label: Alternate Comments + - unreleased + label: Circle Y search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - note - - notification - - sms - - speech - - texting + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f4b6 + unicode: auto voted: false -comments-alt-dollar: +circle-z: changes: - - 5.3.0 - label: Alternate Comments Dollar + - unreleased + label: Circle Z search: - terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - money - - note - - notification - - pay - - sms - - speech - - spend - - texting - - transfer + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f652 + unicode: auto voted: false -comments-dollar: +city: changes: - 5.3.0 - label: Comments Dollar + - unreleased + label: City search: terms: - - bubble - - chat - - commenting - - conversation - - feedback - - message - - money - - note - - notification - - pay - - sms - - speech - - spend - - texting - - transfer + - buildings + - busy + - skyscrapers + - urban + - windows styles: - solid - regular - light - duotone - unicode: f653 + - thin + unicode: f64f voted: false -compact-disc: +clarinet: changes: - - 5.0.13 - - 5.10.1 - 5.11.0 - - 5.11.1 - label: Compact Disc + - unreleased + label: Clarinet search: terms: - - album - - bluray - - cd - - disc - - dvd - - media - - movie + - instrument + - jazz - music - - record - - video - - vinyl + - woodwind styles: - solid - regular - light - duotone - unicode: f51f - voted: true -compass: + - thin + unicode: f8ad + voted: false +claw-marks: changes: - - '3.2' - - 5.0.0 - - 5.2.0 - - 5.11.0 - - 5.11.1 - label: Compass + - 5.4.0 + - unreleased + label: Claw Marks search: terms: - - directions - - directory - - location - - menu - - navigation - - safari - - travel + - attack + - damage + - halloween + - rip + - scratch + - snikt + - tear + - torn + - wolverine styles: - solid - regular - light - duotone - unicode: f14e + - thin + unicode: f6c2 voted: false -compass-slash: +clipboard: changes: - - 5.2.0 - label: Compass Slash + - 5.0.0 + - unreleased + label: Clipboard search: terms: - - directions - - directory - - location - - lost - - menu - - navigation - - safari - - travel + - copy + - notes + - paste + - record styles: - solid - regular - light - duotone - unicode: f5e9 + - thin + unicode: f328 voted: false -compress: +clipboard-check: changes: - - 5.0.0 - label: Compress + - 5.0.7 + - unreleased + label: Clipboard with Check search: terms: - - collapse - - fullscreen - - minimize - - move - - resize - - shrink - - smaller + - accept + - agree + - confirm + - done + - ok + - select + - success + - tick + - todo + - 'yes' styles: - solid - regular - light - duotone - unicode: f066 + - thin + unicode: f46c voted: false -compress-alt: +clipboard-list: changes: - - '1' - - 5.0.0 - - 5.12.0 - label: Alternate Compress + - 5.0.7 + - unreleased + label: Clipboard List search: terms: - - collapse - - fullscreen - - minimize - - move - - resize - - shrink - - smaller + - checklist + - completed + - done + - finished + - intinerary + - ol + - schedule + - tick + - todo + - ul styles: - solid - regular - light - duotone - unicode: f422 + - thin + unicode: f46d voted: false -compress-arrows-alt: +clipboard-list-check: changes: - - 5.6.0 - label: Alternate Compress Arrows + - 5.5.0 + - unreleased + label: Clipboard List with Check search: terms: - - collapse - - fullscreen - - minimize - - move - - resize - - shrink - - smaller + - checklist + - completed + - done + - election + - finished + - intinerary + - ol + - schedule + - tick + - todo + - ul + - vote + - voting styles: - solid - regular - light - duotone - unicode: f78c - voted: true -compress-wide: + - thin + unicode: f737 + voted: false +clipboard-medical: changes: - - 5.0.0 - label: Compress Wide + - unreleased + label: Clipboard Medical search: - terms: - - collapse - - fullscreen - - minimize - - move - - resize - - shrink - - smaller + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f326 + - thin + unicode: auto voted: false -computer-classic: +clipboard-prescription: changes: - - 5.11.0 - label: Classic Computer + - 5.2.0 + - unreleased + label: Clipboard Prescription search: terms: - - apple II - - hardware - - machine - - macintosh - - programming - - retro - - vintage + - copy + - history + - medical + - notes + - paste + - record styles: - solid - regular - light - duotone - unicode: f8b1 + - thin + unicode: f5e8 voted: false -computer-speaker: +clipboard-user: changes: - - 5.11.0 - label: Computer Speaker + - 5.7.0 + - unreleased + label: Clipboard with User search: terms: - - airplay - - bluetooth - - devices - - music - - output - - pair - - sound - - sync + - attendance + - record + - roster + - staff styles: - solid - regular - light - duotone - unicode: f8b2 + - thin + unicode: f7f3 voted: false -concierge-bell: +clock: changes: - - 5.1.0 - label: Concierge Bell + - '1' + - 5.0.0 + - 5.12.1 + - unreleased + label: Clock search: terms: - - attention - - hotel - - receptionist - - service - - support + - date + - late + - schedule + - time + - timer + - timestamp + - watch styles: - solid - regular - light - duotone - unicode: f562 + - thin + unicode: f017 voted: false -confluence: - changes: - - 5.6.0 - label: Confluence - search: - terms: - - atlassian - styles: - - brands - unicode: f78d - voted: true -connectdevelop: +clock-desk: changes: - - '4.3' - - 5.0.0 - label: Connect Develop + - unreleased + label: Clock Desk search: terms: [] styles: - - brands - unicode: f20e + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -construction: +clock-rotate-left: + aliases: + names: + - history changes: - - 5.9.0 - label: Construction + - '4.1' + - 5.0.0 + - unreleased + label: Clock rotate left search: terms: - - building - - digging - - project - - structure + - Rewind + - clock + - reverse + - time + - time machine styles: - solid - regular - light - duotone - unicode: f85d - voted: true -container-storage: + - thin + unicode: f1da + voted: false +clone: changes: - - 5.0.9 - label: Container Storage + - '4.4' + - 5.0.0 + - 5.11.0 + - unreleased + label: Clone search: terms: - - archive - - box - - inventory - - shipping - - warehouse + - arrange + - copy + - duplicate + - paste styles: - solid - regular - light - duotone - unicode: f4b7 + - thin + unicode: f24d voted: false -contao: +closed-captioning: changes: - - '4.4' + - '4.2' - 5.0.0 - label: Contao - search: - terms: [] - styles: - - brands - unicode: f26d - voted: false -conveyor-belt: - changes: - - 5.0.7 - label: Conveyor Belt + - 5.10.1 + - unreleased + label: Closed Captioning search: terms: - - carousel - - inventory - - manufacture - - packaging - - shipping + - cc + - deaf + - hearing + - subtitle + - subtitling + - text + - video styles: - solid - regular - light - duotone - unicode: f46e + - thin + unicode: f20a voted: false -conveyor-belt-alt: +cloud: changes: - - 5.0.7 - label: Alternate Conveyor Belt + - '2' + - 5.0.0 + - 5.0.11 + - unreleased + label: Cloud search: terms: - - carousel - - inventory - - manufacture - - packaging - - shipping + - atmosphere + - fog + - overcast + - save + - upload + - weather styles: - solid - regular - light - duotone - unicode: f46f + - thin + unicode: f0c2 voted: false -cookie: +cloud-arrow-down: + aliases: + names: + - cloud-download + - cloud-download-alt + unicodes: + - f381 changes: - - 5.1.0 - label: Cookie + - '3' + - 5.0.0 + - 5.0.11 + - unreleased + label: Cloud arrow down search: terms: - - baked good - - chips - - chocolate - - eat - - snack - - sweet - - treat + - download + - export + - save styles: - solid - regular - light - duotone - unicode: f563 - voted: true -cookie-bite: + - thin + unicode: f0ed + voted: false +cloud-arrow-up: + aliases: + names: + - cloud-upload + - cloud-upload-alt + unicodes: + - f382 changes: - - 5.1.0 - label: Cookie Bite + - '3' + - 5.0.0 + - 5.0.11 + - unreleased + label: Cloud arrow up search: terms: - - baked good - - bitten - - chips - - chocolate - - eat - - snack - - sweet - - treat + - import + - save + - upload styles: - solid - regular - light - duotone - unicode: f564 - voted: true -copy: + - thin + unicode: f0ee + voted: false +cloud-bolt: + aliases: + names: + - thunderstorm changes: - - '2' - - 5.0.0 - - 5.10.2 - label: Copy + - 5.5.0 + - unreleased + label: Cloud bolt search: terms: - - clone - - duplicate - - file - - files-o - - paper - - paste + - bolt + - lightning + - precipitation + - rain + - storm + - weather styles: - solid - regular - light - duotone - unicode: f0c5 + - thin + unicode: f76c voted: false -copyright: +cloud-bolt-moon: + aliases: + names: + - thunderstorm-moon changes: - - '4.2' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Copyright + - 5.5.0 + - unreleased + label: Cloud bolt moon search: terms: - - brand - - mark - - register - - trademark + - bolt + - lightning + - lunar + - moon + - precipitation + - rain + - storm + - weather styles: - solid - regular - light - duotone - unicode: f1f9 + - thin + unicode: f76d voted: false -corn: +cloud-bolt-sun: + aliases: + names: + - thunderstorm-sun changes: - - 5.4.0 - label: Corn + - 5.5.0 + - unreleased + label: Cloud bolt sun search: terms: - - cob - - ear - - fall - - grain - - kernel - - maize - - popcorn + - bolt + - lightning + - precipitation + - rain + - solar + - storm + - sun + - weather styles: - solid - regular - light - duotone - unicode: f6c7 + - thin + unicode: f76e voted: false -cotton-bureau: +cloud-drizzle: changes: - - 5.10.0 - label: Cotton Bureau + - 5.5.0 + - unreleased + label: Cloud with Drizzle search: terms: - - clothing - - t-shirts - - tshirts + - precipitation + - rain + - sprinkle styles: - - brands - unicode: f89e -couch: + - solid + - regular + - light + - duotone + - thin + unicode: f738 + voted: false +cloud-fog: + aliases: + names: + - fog changes: - - 5.0.9 - label: Couch + - 5.5.0 + - unreleased + label: Cloud fog search: terms: - - chair - - cushion - - furniture - - relax - - sofa + - haze + - karl + - mist + - opaque + - san francisco + - visibility + - weather styles: - solid - regular - light - duotone - unicode: f4b8 + - thin + unicode: f74e voted: false -cow: +cloud-hail: changes: - - 5.4.0 - label: Cow + - 5.5.0 + - unreleased + label: Cloud with Hail search: terms: - - agriculture - - animal - - beef - - bovine - - farm - - fauna - - mammal - - milk - - moo + - golf balls + - ice + - precipitation + - sleet + - snow + - storm styles: - solid - regular - light - duotone - unicode: f6c8 + - thin + unicode: f739 voted: false -cowbell: +cloud-hail-mixed: changes: - - 5.11.0 - label: Cowbell + - 5.5.0 + - unreleased + label: Cloud with Mixed Hail search: terms: - - Blue Öyster Cult - - Christopher Walken - - SNL - - The Bruce Dickinson - - Will Ferrell - - music + - freezing + - ice + - precipitation + - rain + - sleet + - snow + - storm styles: - solid - regular - light - duotone - unicode: f8b3 + - thin + unicode: f73a voted: false -cowbell-more: +cloud-meatball: changes: - - 5.11.0 - label: Cowbell More + - 5.5.0 + - unreleased + label: Cloud with (a chance of) Meatball search: terms: - - Blue Öyster Cult - - Christopher Walken - - SNL - - The Bruce Dickinson - - Will Ferrell - - music + - FLDSMDFR + - food + - spaghetti + - storm styles: - solid - regular - light - duotone - unicode: f8b4 + - thin + unicode: f73b voted: false -cpanel: +cloud-moon: changes: - - 5.0.0 - label: cPanel + - 5.4.0 + - 5.5.0 + - unreleased + label: Cloud with Moon search: - terms: [] + terms: + - crescent + - evening + - lunar + - night + - partly cloudy + - sky styles: - - brands - unicode: f388 + - solid + - regular + - light + - duotone + - thin + unicode: f6c3 voted: false -creative-commons: +cloud-moon-rain: changes: - - '4.4' - - 5.0.0 - - 5.0.11 - - 5.1.0 - label: Creative Commons + - 5.5.0 + - unreleased + label: Cloud with Moon and Rain search: - terms: [] + terms: + - crescent + - evening + - lunar + - night + - partly cloudy + - precipitation + - rain + - sky + - storm styles: - - brands - unicode: f25e + - solid + - regular + - light + - duotone + - thin + unicode: f73c voted: false -creative-commons-by: +cloud-music: changes: - - 5.0.11 - label: Creative Commons Attribution + - 5.11.0 + - unreleased + label: Cloud Music search: - terms: [] + terms: + - download + - music + - spotify + - streaming styles: - - brands - unicode: f4e7 + - solid + - regular + - light + - duotone + - thin + unicode: f8ae voted: false -creative-commons-nc: +cloud-rain: changes: - - 5.0.11 - label: Creative Commons Noncommercial + - 5.5.0 + - unreleased + label: Cloud with Rain search: - terms: [] + terms: + - precipitation + - rain + - sky + - storm styles: - - brands - unicode: f4e8 + - solid + - regular + - light + - duotone + - thin + unicode: f73d voted: false -creative-commons-nc-eu: +cloud-rainbow: changes: - - 5.0.11 - label: Creative Commons Noncommercial (Euro Sign) + - 5.5.0 + - unreleased + label: Cloud with Rainbow search: - terms: [] + terms: + - gold + - leprechaun + - prism + - rain + - sky styles: - - brands - unicode: f4e9 + - solid + - regular + - light + - duotone + - thin + unicode: f73e voted: false -creative-commons-nc-jp: +cloud-showers: changes: - - 5.0.11 - label: Creative Commons Noncommercial (Yen Sign) + - 5.5.0 + - unreleased + label: Cloud with Showers search: - terms: [] + terms: + - precipitation + - rain + - sky + - storm styles: - - brands - unicode: f4ea + - solid + - regular + - light + - duotone + - thin + unicode: f73f voted: false -creative-commons-nd: +cloud-showers-heavy: changes: - - 5.0.11 - label: Creative Commons No Derivative Works + - 5.5.0 + - unreleased + label: Cloud with Heavy Showers search: - terms: [] + terms: + - precipitation + - rain + - sky + - storm styles: - - brands - unicode: f4eb + - solid + - regular + - light + - duotone + - thin + unicode: f740 voted: false -creative-commons-pd: +cloud-sleet: changes: - - 5.0.11 - label: Creative Commons Public Domain + - 5.5.0 + - unreleased + label: Cloud with Sleet search: - terms: [] + terms: + - freezing + - hail + - precipitation + - rain + - winter + - wintry mix styles: - - brands - unicode: f4ec + - solid + - regular + - light + - duotone + - thin + unicode: f741 voted: false -creative-commons-pd-alt: +cloud-snow: changes: - - 5.0.11 - label: Alternate Creative Commons Public Domain + - 5.5.0 + - unreleased + label: Cloud with Snow search: - terms: [] + terms: + - blizzard + - noreaster + - precipitation + - winter styles: - - brands - unicode: f4ed + - solid + - regular + - light + - duotone + - thin + unicode: f742 voted: false -creative-commons-remix: +cloud-sun: changes: - - 5.0.11 - label: Creative Commons Remix + - 5.4.0 + - 5.5.0 + - unreleased + label: Cloud with Sun search: - terms: [] + terms: + - clear + - day + - daytime + - fall + - outdoors + - overcast + - partly cloudy styles: - - brands - unicode: f4ee + - solid + - regular + - light + - duotone + - thin + unicode: f6c4 voted: false -creative-commons-sa: +cloud-sun-rain: changes: - - 5.0.11 - label: Creative Commons Share Alike + - 5.5.0 + - unreleased + label: Cloud with Sun and Rain search: - terms: [] + terms: + - day + - overcast + - precipitation + - storm + - summer + - sunshower styles: - - brands - unicode: f4ef + - solid + - regular + - light + - duotone + - thin + unicode: f743 voted: false -creative-commons-sampling: +cloud-word: changes: - - 5.0.11 - label: Creative Commons Sampling + - unreleased + label: Cloud Word search: terms: [] styles: - - brands - unicode: f4f0 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -creative-commons-sampling-plus: +cloudflare: changes: - - 5.0.11 - label: Creative Commons Sampling + + - 5.15.0 + label: Cloudflare search: terms: [] styles: - brands - unicode: f4f1 + unicode: e07d voted: false -creative-commons-share: +clouds: changes: - - 5.0.11 - label: Creative Commons Share + - 5.5.0 + - unreleased + label: Clouds search: - terms: [] + terms: + - cloudy + - fog + - haze + - overcast + - smoke + - storm + - weather styles: - - brands - unicode: f4f2 + - solid + - regular + - light + - duotone + - thin + unicode: f744 voted: false -creative-commons-zero: +clouds-moon: changes: - - 5.0.11 - - 5.4.0 - label: Creative Commons CC0 - search: - terms: [] - styles: - - brands - unicode: f4f3 - voted: false -credit-card: - changes: - - '2' - - 5.0.0 - label: Credit Card + - 5.5.0 + - unreleased + label: Clouds with Moon search: terms: - - buy - - checkout - - credit-card-alt - - debit - - money - - payment - - purchase + - cloudy + - moonlight + - night + - overcast + - sky styles: - solid - regular - light - duotone - unicode: f09d + - thin + unicode: f745 voted: false -credit-card-blank: +clouds-sun: changes: - - 5.0.0 - label: Credit Card Blank + - 5.5.0 + - unreleased + label: Clouds with Sun search: terms: - - buy - - checkout - - debit - - money - - payment - - purchase + - cloudy + - day + - moonlight + - overcast + - sky + - summer styles: - solid - regular - light - duotone - unicode: f389 + - thin + unicode: f746 voted: false -credit-card-front: +cloudscale: changes: - 5.0.0 - label: Credit Card Front + label: cloudscale.ch search: - terms: - - buy - - checkout - - chip - - debit - - money - - payment - - purchase + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f38a + - brands + unicode: f383 voted: false -cricket: +cloudsmith: changes: - - 5.0.5 - label: Cricket + - 5.0.0 + label: Cloudsmith search: - terms: - - ball - - bat - - bowling - - wicket + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f449 + - brands + unicode: f384 voted: false -critical-role: +cloudversify: changes: - - 5.4.0 - - 5.8.0 - label: Critical Role + - 5.0.0 + label: cloudversify search: - terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - game - - gaming - - tabletop + terms: [] styles: - brands - unicode: f6c9 + unicode: f385 voted: false -croissant: +club: changes: - - 5.7.0 - label: Croissant + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Club search: terms: - - bakery - - breakfast - - brioche - - butter - - crescent - - dough - - gluten - - pastry - - roll + - card + - game + - poker + - suit styles: - solid - regular - light - duotone - unicode: f7f6 + - thin + unicode: f327 voted: false -crop: +code: changes: - '3.1' - 5.0.0 - - 5.1.0 - label: crop + - unreleased + label: Code search: terms: - - design - - frame - - mask - - resize - - shrink + - brackets + - code + - development + - html styles: - solid - regular - light - duotone - unicode: f125 + - thin + unicode: f121 voted: false -crop-alt: +code-branch: changes: - - 5.1.0 - label: Alternate Crop + - 5.0.0 + - unreleased + label: Code Branch search: terms: - - design - - frame - - mask - - resize - - shrink + - branch + - code-fork + - fork + - git + - github + - rebase + - svn + - vcs + - version styles: - solid - regular - light - duotone - unicode: f565 + - thin + unicode: f126 voted: false -cross: +code-commit: changes: - - 5.3.0 - - 5.10.1 - label: Cross + - 5.0.0 + - 5.1.1 + - unreleased + label: Code Commit search: terms: - - catholicism - - christianity - - church - - jesus + - commit + - git + - github + - hash + - rebase + - svn + - vcs + - version styles: - solid - regular - light - duotone - unicode: f654 + - thin + unicode: f386 voted: false -crosshairs: +code-merge: changes: - - '1' - 5.0.0 - label: Crosshairs + - unreleased + label: Code Merge search: terms: - - aim - - bullseye - - gpd - - picker - - position + - git + - github + - merge + - pr + - rebase + - svn + - vcs + - version styles: - solid - regular - light - duotone - unicode: f05b + - thin + unicode: f387 voted: false -crow: +codepen: changes: - - 5.0.13 - label: Crow + - '4.1' + - 5.0.0 + label: Codepen search: - terms: - - bird - - bullfrog - - fauna - - halloween - - holiday - - toad + terms: [] + styles: + - brands + unicode: f1cb + voted: false +codiepie: + changes: + - '4.5' + - 5.0.0 + label: Codie Pie + search: + terms: [] + styles: + - brands + unicode: f284 + voted: false +coffee-bean: + changes: + - unreleased + label: Coffee Bean + search: + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f520 + - thin + unicode: auto voted: false -crown: +coffee-beans: changes: - - 5.0.13 - label: Crown + - unreleased + label: Coffee Beans search: - terms: - - award - - favorite - - king - - queen - - royal - - tiara + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f521 - voted: true -crutch: + - thin + unicode: auto + voted: false +coffee-pot: changes: - - 5.7.0 - label: Crutch + - 5.12.0 + - 5.14.0 + - unreleased + label: Coffee Pot search: terms: - - cane - - injury - - mobility - - wheelchair + - beverage + - breakfast + - brew + - cafe + - carafe + - drink + - morning styles: - solid - regular - light - duotone - unicode: f7f7 + - thin + unicode: e002 voted: false -crutches: +coffin: changes: - - 5.7.0 - label: Crutches + - 5.4.0 + - 5.12.1 + - unreleased + label: Coffin search: terms: - - cane - - injury - - mobility - - wheelchair + - box + - burial + - casket + - cemetery + - death + - eulogy + - funeral + - halloween + - vampire styles: - solid - regular - light - duotone - unicode: f7f8 + - thin + unicode: f6c6 voted: false -css3: +coffin-cross: changes: - - '3.1' - - 5.0.0 - label: CSS 3 Logo + - 5.12.1 + - 5.14.0 + - unreleased + label: Coffin with Cross search: terms: - - code - styles: - - brands - unicode: f13c - voted: false -css3-alt: - changes: - - 5.0.0 - label: Alternate CSS3 Logo - search: - terms: [] + - box + - burial + - casket + - catholicism + - cemetery + - christianity + - death + - eulogy + - funeral + - halloween + - vampire styles: - - brands - unicode: f38b + - solid + - regular + - light + - duotone + - thin + unicode: e051 voted: false -cube: +coin: changes: - - '4.1' - - 5.0.0 - label: Cube + - 5.9.0 + - unreleased + label: Coin search: terms: - - 3d - - block - - dice - - package - - square - - tesseract + - dime + - money + - nickel + - penny + - quarter styles: - solid - regular - light - duotone - unicode: f1b2 - voted: false -cubes: + - thin + unicode: f85c + voted: true +coins: changes: - - '4.1' - - 5.0.0 - label: Cubes + - 5.0.13 + - unreleased + label: Coins search: terms: - - 3d - - block - - dice - - package - - pyramid - - square - - stack - - tesseract + - currency + - dime + - financial + - gold + - money + - penny styles: - solid - regular - light - duotone - unicode: f1b3 - voted: false -curling: + - thin + unicode: f51e + voted: true +colon-sign: changes: - - 5.0.5 - label: Curling + - unreleased + label: Colon Sign search: - terms: - - ice - - olympics - - sport - - stone + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f44a + - thin + unicode: auto voted: false -cut: +comet: changes: - - '2' - - 5.0.0 - - 5.1.0 - label: Cut + - 5.12.0 + - 5.14.0 + - unreleased + label: Comet search: terms: - - clip - - scissors - - snip + - asteroid + - dust + - ice + - meteor + - orbit + - rock + - shooting star + - solar system + - space styles: - solid - regular - light - duotone - unicode: f0c4 + - thin + unicode: e003 voted: false -cuttlefish: +command: changes: - - 5.0.0 - label: Cuttlefish + - unreleased + label: Command search: terms: [] styles: - - brands - unicode: f38c + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -d-and-d: +comment: changes: + - '1' - 5.0.0 - label: Dungeons & Dragons - search: - terms: [] - styles: - - brands - unicode: f38d - voted: false -d-and-d-beyond: - changes: - - 5.4.0 - label: D&D Beyond - search: - terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - gaming - - tabletop - styles: - - brands - unicode: f6ca - voted: false -dagger: - changes: - - 5.4.0 - label: Dagger + - 5.0.9 + - 5.10.1 + - unreleased + label: comment search: terms: - - Dungeons & Dragons - - blade - - d&d - - dnd - - fantasy - - melee attack - - rogue - - sting - - weapon + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f6cb + - thin + unicode: f075 voted: false -dailymotion: - changes: - - 5.12.1 - label: dailymotion - search: - terms: [] - styles: - - brands - unicode: f952 - voted: true -dashcube: +comment-arrow-down: changes: - - '4.3' - - 5.0.0 - - 5.0.3 - label: DashCube + - unreleased + label: Comment Arrow-down search: terms: [] styles: - - brands - unicode: f210 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -database: +comment-arrow-up: changes: - - '4.1' - - 5.0.0 - label: Database + - unreleased + label: Comment Arrow-up search: - terms: - - computer - - development - - directory - - memory - - storage + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f1c0 + - thin + unicode: auto voted: false -deaf: +comment-captions: changes: - - '4.6' - - 5.0.0 - label: Deaf + - unreleased + label: Comment Captions search: - terms: - - ear - - hearing - - sign language + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f2a4 + - thin + unicode: auto voted: false -debug: +comment-check: changes: - - 5.7.0 - label: Debug + - 5.0.9 + - unreleased + label: Comment Check search: terms: - - error - - fix - - optimize - - warning + - accept + - agree + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - select + - sms + - speech + - success + - synced + - texting + - tick + - todo styles: - solid - regular - light - duotone - unicode: f7f9 + - thin + unicode: f4ac voted: false -deer: +comment-dollar: changes: - - 5.6.0 - label: Deer + - 5.3.0 + - unreleased + label: Comment Dollar search: terms: - - animal - - antlers - - blitzen - - comet - - cupid - - dancer - - dasher - - donner - - fauna - - mammal - - prancer - - reindeer - - vixen + - bubble + - chat + - commenting + - conversation + - feedback + - message + - money + - note + - notification + - pay + - sms + - speech + - spend + - texting + - transfer styles: - solid - regular - light - duotone - unicode: f78e -deer-rudolph: + - thin + unicode: f651 + voted: false +comment-dots: + aliases: + names: + - commenting changes: - - 5.6.0 - label: Deer Rudolph + - 5.0.9 + - unreleased + label: Comment Dots search: terms: - - animal - - antlers - - fauna - - mammal - - reindeer + - bubble + - chat + - commenting + - conversation + - feedback + - message + - more + - note + - notification + - reply + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f78f -deezer: - changes: - - 5.13.1 - label: Deezer - search: - terms: [] - styles: - - brands - unicode: f977 - voted: true -delicious: - changes: - - '4.1' - - 5.0.0 - - 5.7.0 - label: Delicious - search: - terms: [] - styles: - - brands - unicode: f1a5 + - thin + unicode: f4ad voted: false -democrat: +comment-exclamation: changes: - - 5.5.0 - label: Democrat + - 5.0.9 + - unreleased + label: Comment Exclamation search: terms: - - american - - democratic party - - donkey - - election - - left - - left-wing - - liberal - - politics - - usa + - alert + - bubble + - chat + - commenting + - conversation + - exclaim + - feedback + - important + - message + - note + - notification + - sms + - speech + - surprise + - texting styles: - solid - regular - light - duotone - unicode: f747 - voted: false -deploydog: - changes: - - 5.0.0 - label: deploy.dog - search: - terms: [] - styles: - - brands - unicode: f38e + - thin + unicode: f4af voted: false -deskpro: +comment-image: changes: - - 5.0.0 - label: Deskpro + - unreleased + label: Comment Image search: terms: [] styles: - - brands - unicode: f38f + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -desktop: +comment-lines: changes: - - '3' - - 5.0.0 - label: Desktop + - 5.0.9 + - unreleased + label: Comment Lines search: terms: - - computer - - cpu - - demo - - desktop - - device - - imac - - machine - - monitor - - pc - - screen + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f108 + - thin + unicode: f4b0 voted: false -desktop-alt: +comment-medical: changes: - - 5.0.0 - label: Alternate Desktop + - 5.7.0 + - unreleased + label: Alternate Medical Chat search: terms: - - apple - - computer - - cpu - - demo - - desktop - - device - - imac - - machine - - monitor - - screen + - advice + - bubble + - chat + - commenting + - conversation + - diagnose + - feedback + - message + - note + - notification + - prescription + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f390 + - thin + unicode: f7f5 voted: false -dev: +comment-middle: changes: - - 5.4.0 - label: DEV + - unreleased + label: Comment Middle search: terms: [] styles: - - brands - unicode: f6cc - voted: true -deviantart: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +comment-middle-top: changes: - - '4.1' - - 5.0.0 - label: deviantART + - unreleased + label: Comment Middle-top search: terms: [] styles: - - brands - unicode: f1bd + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -dewpoint: +comment-minus: changes: - - 5.5.0 - label: Dewpoint + - 5.0.9 + - unreleased + label: Comment Minus search: terms: - - air - - fog - - humidity - - temperature - - water + - bubble + - chat + - commenting + - conversation + - delete + - feedback + - message + - negative + - note + - notification + - remove + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f748 + - thin + unicode: f4b1 voted: false -dharmachakra: +comment-music: changes: - - 5.3.0 - label: Dharmachakra + - 5.11.0 + - unreleased + label: Comment Music search: terms: - - buddhism - - buddhist - - wheel of dharma + - chat + - commenting + - conversation + - create + - message + - music + - note + - notification + - sing + - sms + - song + - texting styles: - solid - regular - light - duotone - unicode: f655 + - thin + unicode: f8b0 voted: false -dhl: - changes: - - 5.6.0 - label: DHL - search: - terms: - - Dalsey - - Hillblom and Lynn - - german - - package - - shipping - styles: - - brands - unicode: f790 -diagnoses: +comment-pen: + aliases: + names: + - comment-edit changes: - - 5.0.7 - - 5.7.0 - label: Diagnoses + - 5.0.9 + - unreleased + label: Comment pen search: terms: - - analyze - - detect - - diagnosis - - examine - - medicine + - bubble + - chat + - commenting + - conversation + - edit + - feedback + - message + - note + - notification + - pen + - pencil + - sms + - speech + - texting + - update + - write styles: - solid - regular - light - duotone - unicode: f470 + - thin + unicode: f4ae voted: false -diamond: +comment-plus: changes: - - '4.3' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Diamond + - 5.0.9 + - unreleased + label: Comment Plus search: terms: - - cards - - gem - - gemstone - - poker - - suit + - add + - bubble + - chat + - commenting + - conversation + - create + - feedback + - message + - new + - note + - notification + - positive + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f219 + - thin + unicode: f4b2 voted: false -diaspora: +comment-quote: changes: - - 5.6.0 - - 5.8.0 - label: Diaspora + - unreleased + label: Comment Quote search: terms: [] styles: - - brands - unicode: f791 - voted: true -dice: - changes: - - 5.0.13 - label: Dice - search: - terms: - - chance - - gambling - - game - - roll - styles: + - duotone - solid - regular - light - - duotone - unicode: f522 - voted: true -dice-d10: + - thin + unicode: auto + voted: false +comment-slash: changes: - - 5.4.0 - label: Dice D10 + - 5.0.9 + - unreleased + label: Comment Slash search: terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + - bubble + - cancel + - chat + - commenting + - conversation + - feedback + - message + - mute + - note + - notification + - quiet + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f6cd + - thin + unicode: f4b3 voted: false -dice-d12: +comment-smile: changes: - - 5.4.0 - label: Dice D12 + - 5.0.9 + - unreleased + label: Comment Smile search: terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + - bubble + - chat + - commenting + - conversation + - emoji + - feedback + - happy + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f6ce + - thin + unicode: f4b4 voted: false -dice-d20: +comment-sms: + aliases: + names: + - sms changes: - - 5.4.0 - label: Dice D20 + - 5.6.0 + - unreleased + label: Comment sms search: terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + - chat + - conversation + - message + - mobile + - notification + - phone + - sms + - texting styles: - solid - regular - light - duotone - unicode: f6cf + - thin + unicode: f7cd voted: true -dice-d4: +comment-text: changes: - - 5.4.0 - label: Dice D4 + - unreleased + label: Comment Text search: - terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6d0 + - thin + unicode: auto voted: false -dice-d6: +comment-xmark: + aliases: + names: + - comment-times changes: - - 5.4.0 - label: Dice D6 + - 5.0.9 + - unreleased + label: Comment xmark search: terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + - archive + - bubble + - chat + - commenting + - conversation + - delete + - feedback + - message + - note + - notification + - remove + - sms + - speech + - texting + - x styles: - solid - regular - light - duotone - unicode: f6d1 + - thin + unicode: f4b5 voted: false -dice-d8: +comments: changes: - - 5.4.0 - label: Dice D8 + - '1' + - 5.0.0 + - 5.0.9 + - unreleased + label: comments search: terms: - - Dungeons & Dragons - - chance - - d&d - - dnd - - fantasy - - gambling - - game - - roll + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f6d2 + - thin + unicode: f086 voted: false -dice-five: +comments-dollar: changes: - - 5.0.13 - label: Dice Five + - 5.3.0 + - unreleased + label: Comments Dollar search: terms: - - chance - - gambling - - game - - roll + - bubble + - chat + - commenting + - conversation + - feedback + - message + - money + - note + - notification + - pay + - sms + - speech + - spend + - texting + - transfer styles: - solid - regular - light - duotone - unicode: f523 - voted: true -dice-four: + - thin + unicode: f653 + voted: false +compact-disc: changes: - 5.0.13 - label: Dice Four + - 5.10.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Compact Disc search: terms: - - chance - - gambling - - game - - roll + - album + - bluray + - cd + - disc + - dvd + - media + - movie + - music + - record + - video + - vinyl styles: - solid - regular - light - duotone - unicode: f524 + - thin + unicode: f51f voted: true -dice-one: +compass: changes: - - 5.0.13 - label: Dice One + - '3.2' + - 5.0.0 + - 5.2.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Compass search: terms: - - chance - - gambling - - game - - roll + - directions + - directory + - location + - menu + - navigation + - safari + - travel styles: - solid - regular - light - duotone - unicode: f525 - voted: true -dice-six: + - thin + unicode: f14e + voted: false +compass-drafting: + aliases: + names: + - drafting-compass changes: - - 5.0.13 - label: Dice Six + - 5.1.0 + - unreleased + label: Compass drafting search: terms: - - chance - - gambling - - game - - roll + - design + - map + - mechanical drawing + - plot + - plotting styles: - solid - regular - light - duotone - unicode: f526 - voted: true -dice-three: + - thin + unicode: f568 + voted: false +compass-slash: changes: - - 5.0.13 - label: Dice Three + - 5.2.0 + - unreleased + label: Compass Slash search: terms: - - chance - - gambling - - game - - roll + - directions + - directory + - location + - lost + - menu + - navigation + - safari + - travel styles: - solid - regular - light - duotone - unicode: f527 - voted: true -dice-two: + - thin + unicode: f5e9 + voted: false +compress: changes: - - 5.0.13 - label: Dice Two + - 5.0.0 + - unreleased + label: Compress search: terms: - - chance - - gambling - - game - - roll + - collapse + - fullscreen + - minimize + - move + - resize + - shrink + - smaller styles: - solid - regular - light - duotone - unicode: f528 - voted: true -digg: - changes: - - '4.1' - - 5.0.0 - label: Digg Logo - search: - terms: [] - styles: - - brands - unicode: f1a6 + - thin + unicode: f066 voted: false -digging: +compress-wide: changes: - - 5.9.0 - label: Digging + - 5.0.0 + - unreleased + label: Compress Wide search: terms: - - building - - construction - - labor - - shovel + - collapse + - fullscreen + - minimize + - move + - resize + - shrink + - smaller styles: - solid - regular - light - duotone - unicode: f85e - voted: false -digital-ocean: - changes: - - 5.0.0 - - 5.7.0 - label: Digital Ocean - search: - terms: [] - styles: - - brands - unicode: f391 + - thin + unicode: f326 voted: false -digital-tachograph: +computer-classic: changes: - - 5.1.0 - label: Digital Tachograph + - 5.11.0 + - unreleased + label: Classic Computer search: terms: - - data - - distance - - speed - - tachometer + - apple II + - hardware + - machine + - macintosh + - programming + - retro + - vintage styles: - solid - regular - light - duotone - unicode: f566 - voted: true -diploma: + - thin + unicode: f8b1 + voted: false +computer-mouse: + aliases: + names: + - mouse changes: - - 5.2.0 - label: Diploma + - 5.11.0 + - unreleased + label: Computer mouse search: terms: - - award - - certificate - - college - - education - - graduate - - graduation - - university + - click + - computer + - cursor + - input + - peripheral styles: - solid - regular - light - duotone - unicode: f5ea - voted: false -directions: + - thin + unicode: f8cc + voted: true +computer-mouse-scrollwheel: + aliases: + names: + - mouse-alt changes: - - 5.2.0 - 5.11.0 - label: Directions + - unreleased + label: Computer mouse scrollwheel search: terms: - - map - - navigation - - sign - - turn + - click + - computer + - cursor + - input + - peripheral styles: - solid - regular - light - duotone - unicode: f5eb + - thin + unicode: f8cd voted: false -disc-drive: +computer-speaker: changes: - 5.11.0 - label: Disc Drive + - unreleased + label: Computer Speaker search: terms: - - blu-ray - - cd - - cd-rom - - computer - - dvd - - load + - airplay + - bluetooth + - devices - music - - optical drive - - peripheral - - tray - - video + - output + - pair + - sound + - sync styles: - solid - regular - light - duotone - unicode: f8b5 + - thin + unicode: f8b2 voted: false -discord: +confluence: changes: - - 5.0.0 - label: Discord + - 5.6.0 + label: Confluence search: - terms: [] + terms: + - atlassian styles: - brands - unicode: f392 - voted: false -discourse: + unicode: f78d + voted: true +connectdevelop: changes: + - '4.3' - 5.0.0 - - 5.0.3 - label: Discourse + label: Connect Develop search: terms: [] styles: - brands - unicode: f393 + unicode: f20e voted: false -disease: +container-storage: changes: - - 5.7.0 - label: Disease + - 5.0.9 + - unreleased + label: Container Storage search: terms: - - bacteria - - cancer - - covid-19 - - illness - - infection - - sickness - - virus + - archive + - box + - inventory + - shipping + - warehouse styles: - solid - regular - light - duotone - unicode: f7fa + - thin + unicode: f4b7 voted: false -divide: +contao: changes: - - 5.0.13 - label: Divide + - '4.4' + - 5.0.0 + label: Contao search: - terms: - - arithmetic - - calculus - - division - - math + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f529 + - brands + unicode: f26d voted: false -dizzy: +conveyor-belt: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Dizzy Face + - 5.0.7 + - unreleased + label: Conveyor Belt search: terms: - - dazed - - dead - - disapprove - - emoticon - - face + - carousel + - inventory + - manufacture + - packaging + - shipping styles: - solid - regular - light - duotone - unicode: f567 + - thin + unicode: f46e voted: false -dna: +conveyor-belt-boxes: + aliases: + names: + - conveyor-belt-alt changes: - 5.0.7 - - 5.0.10 - label: DNA + - unreleased + label: Conveyor belt boxes search: terms: - - double helix - - genetic - - helix - - molecule - - protein + - carousel + - inventory + - manufacture + - packaging + - shipping styles: - solid - regular - light - duotone - unicode: f471 + - thin + unicode: f46f voted: false -do-not-enter: +conveyor-belt-empty: changes: - - 5.2.0 - - 5.11.0 - - 5.11.1 - label: Do Not-enter + - unreleased + label: Conveyor Belt-empty search: - terms: - - closed - - traffic - - warning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f5ec - voted: false -dochub: - changes: - - 5.0.0 - label: DocHub - search: - terms: [] - styles: - - brands - unicode: f394 + - thin + unicode: auto voted: false -docker: +cookie: changes: - - 5.0.0 - label: Docker + - 5.1.0 + - unreleased + label: Cookie search: - terms: [] + terms: + - baked good + - chips + - chocolate + - eat + - snack + - sweet + - treat styles: - - brands - unicode: f395 - voted: false -dog: + - solid + - regular + - light + - duotone + - thin + unicode: f563 + voted: true +cookie-bite: changes: - - 5.4.0 - - 5.12.0 - label: Dog + - 5.1.0 + - unreleased + label: Cookie Bite search: terms: - - animal - - canine - - fauna - - mammal - - pet - - pooch - - puppy - - woof + - baked good + - bitten + - chips + - chocolate + - eat + - snack + - sweet + - treat styles: - solid - regular - light - duotone - unicode: f6d3 - voted: false -dog-leashed: + - thin + unicode: f564 + voted: true +copy: changes: - - 5.4.0 - - 5.12.0 - label: Leashed Dog + - '2' + - 5.0.0 + - 5.10.2 + - unreleased + label: Copy search: terms: - - animal - - canine - - fauna - - mammal - - pet - - pooch - - puppy - - walk - - woof + - clone + - duplicate + - file + - files-o + - paper + - paste styles: - solid - regular - light - duotone - unicode: f6d4 + - thin + unicode: f0c5 voted: false -dollar-sign: +copyright: changes: - - '3.2' + - '4.2' - 5.0.0 - - 5.0.9 - - 5.11.0 - - 5.11.1 - label: Dollar Sign + - 5.10.1 + - 5.10.2 + - unreleased + label: Copyright search: terms: - - $ - - cost - - dollar-sign - - money - - price - - usd + - brand + - mark + - register + - trademark styles: - solid - regular - light - duotone - unicode: f155 + - thin + unicode: f1f9 voted: false -dolly: +corn: changes: - - 5.0.7 - label: Dolly + - 5.4.0 + - unreleased + label: Corn search: terms: - - carry - - shipping - - transport + - cob + - ear + - fall + - grain + - kernel + - maize + - popcorn styles: - solid - regular - light - duotone - unicode: f472 + - thin + unicode: f6c7 voted: false -dolly-empty: +cotton-bureau: changes: - - 5.0.7 - label: Dolly Empty + - 5.10.0 + label: Cotton Bureau search: terms: - - carry - - inventory - - shipping - - transport + - clothing + - t-shirts + - tshirts styles: - - solid - - regular - - light - - duotone - unicode: f473 - voted: false -dolly-flatbed: + - brands + unicode: f89e +couch: changes: - - 5.0.7 - label: Dolly Flatbed + - 5.0.9 + - unreleased + label: Couch search: terms: - - carry - - inventory - - shipping - - transport + - chair + - cushion + - furniture + - relax + - sofa styles: - solid - regular - light - duotone - unicode: f474 + - thin + unicode: f4b8 voted: false -dolly-flatbed-alt: +cow: changes: - - 5.0.7 - label: Alternate Dolly Flatbed + - 5.4.0 + - unreleased + label: Cow search: terms: - - carry - - inventory - - shipping - - transport + - agriculture + - animal + - beef + - bovine + - farm + - fauna + - mammal + - milk + - moo styles: - solid - regular - light - duotone - unicode: f475 + - thin + unicode: f6c8 voted: false -dolly-flatbed-empty: +cowbell: changes: - - 5.0.7 - - 5.10.1 - label: Dolly Flatbed-empty + - 5.11.0 + - unreleased + label: Cowbell search: terms: - - carry - - inventory - - shipping - - transport + - Blue Öyster Cult + - Christopher Walken + - SNL + - The Bruce Dickinson + - Will Ferrell + - music styles: - solid - regular - light - duotone - unicode: f476 + - thin + unicode: f8b3 voted: false -donate: +cowbell-circle-plus: + aliases: + names: + - cowbell-more changes: - - 5.0.9 - label: Donate + - 5.11.0 + - unreleased + label: Cowbell circle plus search: terms: - - contribute - - generosity - - gift - - give + - Blue Öyster Cult + - Christopher Walken + - SNL + - The Bruce Dickinson + - Will Ferrell + - music styles: - solid - regular - light - duotone - unicode: f4b9 + - thin + unicode: f8b4 voted: false -door-closed: - changes: - - 5.0.13 - label: Door Closed - search: - terms: - - enter - - exit - - locked - styles: - - solid - - regular - - light - - duotone - unicode: f52a - voted: true -door-open: - changes: - - 5.0.13 - label: Door Open - search: - terms: - - enter - - exit - - welcome - styles: - - solid - - regular - - light - - duotone - unicode: f52b - voted: true -dot-circle: +cpanel: changes: - - '4' - 5.0.0 - label: Dot Circle + label: cPanel search: - terms: - - bullseye - - notification - - target + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f192 + - brands + unicode: f388 voted: false -dove: +creative-commons: changes: - - 5.0.9 - - 5.10.1 - - 5.10.2 - label: Dove + - '4.4' + - 5.0.0 + - 5.0.11 + - 5.1.0 + label: Creative Commons search: - terms: - - bird - - fauna - - flying - - peace - - war + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f4ba + - brands + unicode: f25e voted: false -download: +creative-commons-by: changes: - - '1' - - 5.0.0 - label: Download + - 5.0.11 + label: Creative Commons Attribution search: - terms: - - export - - hard drive - - save - - transfer + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f019 + - brands + unicode: f4e7 voted: false -draft2digital: +creative-commons-nc: changes: - - 5.0.0 - label: Draft2digital + - 5.0.11 + label: Creative Commons Noncommercial search: terms: [] styles: - brands - unicode: f396 + unicode: f4e8 voted: false -drafting-compass: +creative-commons-nc-eu: changes: - - 5.1.0 - label: Drafting Compass + - 5.0.11 + label: Creative Commons Noncommercial (Euro Sign) search: - terms: - - design - - map - - mechanical drawing - - plot - - plotting + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f568 + - brands + unicode: f4e9 voted: false -dragon: +creative-commons-nc-jp: changes: - - 5.4.0 - label: Dragon + - 5.0.11 + label: Creative Commons Noncommercial (Yen Sign) search: - terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - fire - - lizard - - serpent + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f6d5 + - brands + unicode: f4ea voted: false -draw-circle: +creative-commons-nd: changes: - - 5.2.0 - label: Draw Circle + - 5.0.11 + label: Creative Commons No Derivative Works search: - terms: - - anchors - - lines - - object - - render - - shape + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f5ed + - brands + unicode: f4eb voted: false -draw-polygon: +creative-commons-pd: changes: - - 5.2.0 - label: Draw Polygon + - 5.0.11 + label: Creative Commons Public Domain search: - terms: - - anchors - - lines - - object - - render - - shape + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f5ee + - brands + unicode: f4ec voted: false -draw-square: +creative-commons-pd-alt: changes: - - 5.2.0 - label: Draw Square + - 5.0.11 + label: Alternate Creative Commons Public Domain search: - terms: - - anchors - - lines - - object - - render - - shape + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f5ef + - brands + unicode: f4ed voted: false -dreidel: +creative-commons-remix: changes: - - 5.6.0 - label: Dreidel + - 5.0.11 + label: Creative Commons Remix search: - terms: - - clay - - hanukkah - - holiday - - jewish - - judaism - - toy + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f792 -dribbble: + - brands + unicode: f4ee + voted: false +creative-commons-sa: changes: - - 5.0.0 - label: Dribbble + - 5.0.11 + label: Creative Commons Share Alike search: terms: [] styles: - brands - unicode: f17d + unicode: f4ef voted: false -dribbble-square: +creative-commons-sampling: changes: - - 5.0.0 - label: Dribbble Square + - 5.0.11 + label: Creative Commons Sampling search: terms: [] styles: - brands - unicode: f397 + unicode: f4f0 voted: false -drone: +creative-commons-sampling-plus: changes: - - 5.9.0 - - 5.10.1 - label: Drone + - 5.0.11 + label: Creative Commons Sampling + search: - terms: - - aerial - - big brother - - surveillance - - uav - - unmanned - - vehicle + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f85f - voted: true -drone-alt: + - brands + unicode: f4f1 + voted: false +creative-commons-share: changes: - - 5.9.0 - label: Alternate Drone + - 5.0.11 + label: Creative Commons Share search: - terms: - - aerial - - big brother - - surveillance - - uav - - unmanned - - vehicle + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f860 + - brands + unicode: f4f2 voted: false -dropbox: +creative-commons-zero: changes: - - '3.2' - - 5.0.0 - - 5.0.1 - label: Dropbox + - 5.0.11 + - 5.4.0 + label: Creative Commons CC0 search: terms: [] styles: - brands - unicode: f16b + unicode: f4f3 voted: false -drum: +credit-card: + aliases: + names: + - credit-card-alt changes: - - 5.1.0 - - 5.11.0 - label: Drum + - '2' + - 5.0.0 + - unreleased + label: Credit Card search: terms: - - instrument - - music - - percussion - - snare - - sound + - buy + - checkout + - credit-card-alt + - debit + - money + - payment + - purchase styles: - solid - regular - light - duotone - unicode: f569 - voted: true -drum-steelpan: + - thin + unicode: f09d + voted: false +credit-card-blank: changes: - - 5.1.0 - label: Drum Steelpan + - 5.0.0 + - unreleased + label: Credit Card Blank search: terms: - - calypso - - instrument - - music - - percussion - - reggae - - snare - - sound - - steel - - tropical + - buy + - checkout + - debit + - money + - payment + - purchase styles: - solid - regular - light - duotone - unicode: f56a + - thin + unicode: f389 voted: false -drumstick: +credit-card-front: changes: - - 5.4.0 - - 5.7.0 - label: Drumstick + - 5.0.0 + - unreleased + label: Credit Card Front search: terms: - - bone - - chicken - - leg - - meat - - poultry - - turkey + - buy + - checkout + - chip + - debit + - money + - payment + - purchase styles: - solid - regular - light - duotone - unicode: f6d6 + - thin + unicode: f38a voted: false -drumstick-bite: +cricket-bat-ball: + aliases: + names: + - cricket changes: - - 5.4.0 - - 5.7.0 - label: Drumstick with Bite Taken Out + - 5.0.5 + - unreleased + label: Cricket bat ball search: terms: - - bone - - chicken - - leg - - meat - - poultry - - turkey + - ball + - bat + - bowling + - wicket styles: - solid - regular - light - duotone - unicode: f6d7 + - thin + unicode: f449 voted: false -drupal: +critical-role: changes: - - '4.1' - - 5.0.0 - label: Drupal Logo + - 5.4.0 + - 5.8.0 + label: Critical Role search: - terms: [] + terms: + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - game + - gaming + - tabletop styles: - brands - unicode: f1a9 + unicode: f6c9 voted: false -dryer: +croissant: changes: - - 5.9.0 - label: Dryer + - 5.7.0 + - unreleased + label: Croissant search: terms: - - clean - - clothes - - laundromat - - laundry - - washing machine + - bakery + - breakfast + - brioche + - butter + - crescent + - dough + - gluten + - pastry + - roll styles: - solid - regular - light - duotone - unicode: f861 + - thin + unicode: f7f6 voted: false -dryer-alt: +crop: changes: - - 5.9.0 - label: Alternate Dryer + - '3.1' + - 5.0.0 + - 5.1.0 + - unreleased + label: crop search: terms: - - clean - - clothes - - laundromat - - laundry - - washing machine + - design + - frame + - mask + - resize + - shrink styles: - solid - regular - light - duotone - unicode: f862 + - thin + unicode: f125 voted: false -duck: +crop-simple: + aliases: + names: + - crop-alt changes: - - 5.4.0 - label: Duck + - 5.1.0 + - unreleased + label: Crop simple search: terms: - - bath - - bird - - fauna - - quack - - rubber + - design + - frame + - mask + - resize + - shrink styles: - solid - regular - light - duotone - unicode: f6d8 + - thin + unicode: f565 voted: false -dumbbell: +cross: changes: - - 5.0.5 - label: Dumbbell + - 5.3.0 + - 5.10.1 + - unreleased + label: Cross search: terms: - - exercise - - gym - - strength - - weight - - weight-lifting + - catholicism + - christianity + - church + - jesus styles: - solid - regular - light - duotone - unicode: f44b + - thin + unicode: f654 voted: false -dumpster: - changes: - - 5.6.0 - label: Dumpster - search: - terms: - - alley - - bin - - commercial - - trash - - waste - styles: - - solid - - regular - - light - - duotone - unicode: f793 - voted: true -dumpster-fire: +crosshairs: changes: - - 5.6.0 - label: Dumpster Fire + - '1' + - 5.0.0 + - unreleased + label: Crosshairs search: terms: - - alley - - bin - - commercial - - danger - - dangerous - - euphemism - - flame - - heat - - hot - - trash - - waste + - aim + - bullseye + - gpd + - picker + - position styles: - solid - regular - light - duotone - unicode: f794 - voted: true -dungeon: + - thin + unicode: f05b + voted: false +crow: changes: - - 5.4.0 - label: Dungeon + - 5.0.13 + - unreleased + label: Crow search: terms: - - Dungeons & Dragons - - building - - d&d - - dnd - - door - - entrance - - fantasy - - gate + - bird + - bullfrog + - fauna + - halloween + - holiday + - toad styles: - solid - regular - light - duotone - unicode: f6d9 - voted: false -dyalog: - changes: - - 5.0.0 - label: Dyalog - search: - terms: [] - styles: - - brands - unicode: f399 + - thin + unicode: f520 voted: false -ear: +crown: changes: - - 5.2.0 - label: Ear + - 5.0.13 + - unreleased + label: Crown search: terms: - - head - - hearing - - listen - - lobe + - award + - favorite + - king + - queen + - royal + - tiara styles: - solid - regular - light - duotone - unicode: f5f0 - voted: false -ear-muffs: + - thin + unicode: f521 + voted: true +crutch: changes: - - 5.6.0 - label: Ear Muffs + - 5.7.0 + - unreleased + label: Crutch search: terms: - - accessory - - clothing - - cold - - head - - puffy - - soft - - winter + - cane + - injury + - mobility + - wheelchair styles: - solid - regular - light - duotone - unicode: f795 -earlybirds: - changes: - - 5.0.0 - label: Earlybirds - search: - terms: [] - styles: - - brands - unicode: f39a + - thin + unicode: f7f7 voted: false -ebay: +crutches: changes: - - 5.0.11 - 5.7.0 - label: eBay - search: - terms: [] - styles: - - brands - unicode: f4f4 - voted: true -eclipse: - changes: - - 5.5.0 - label: Eclipse + - unreleased + label: Crutches search: terms: - - lunar - - moon - - shadow - - solar - - sun + - cane + - injury + - mobility + - wheelchair styles: - solid - regular - light - duotone - unicode: f749 + - thin + unicode: f7f8 voted: false -eclipse-alt: +cruzeiro-sign: changes: - - 5.5.0 - label: Alternate Eclipse + - unreleased + label: Cruzeiro Sign search: - terms: - - lunar - - moon - - shadow - - solar - - sun + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f74a + - thin + unicode: auto voted: false -edge: +css3: changes: - - '4.5' + - '3.1' - 5.0.0 - - 5.12.1 - label: Edge Browser + label: CSS 3 Logo search: terms: - - browser - - ie + - code styles: - brands - unicode: f282 + unicode: f13c voted: false -edge-legacy: +css3-alt: changes: - - 5.13.1 - label: Edge Legacy Browser + - 5.0.0 + label: Alternate CSS3 Logo search: terms: [] styles: - brands - unicode: f978 + unicode: f38b voted: false -edit: +cube: changes: - - '1' + - '4.1' - 5.0.0 - label: Edit + - unreleased + label: Cube search: terms: - - edit - - pen - - pencil - - update - - write + - 3d + - block + - dice + - package + - square + - tesseract styles: - solid - regular - light - duotone - unicode: f044 + - thin + unicode: f1b2 voted: false -egg: +cubes: changes: - - 5.7.0 - label: Egg + - '4.1' + - 5.0.0 + - unreleased + label: Cubes search: terms: - - breakfast - - chicken - - easter - - shell - - yolk + - 3d + - block + - dice + - package + - pyramid + - square + - stack + - tesseract styles: - solid - regular - light - duotone - unicode: f7fb + - thin + unicode: f1b3 voted: false -egg-fried: +cup-togo: + aliases: + names: + - coffee-togo changes: - - 5.7.0 - label: Fried Egg + - 5.4.0 + - unreleased + label: Cup togo search: terms: + - beverage - breakfast - - chicken - - yolk + - cafe + - drink + - latte + - morning + - mug + - starbucks + - takeout + - tea + - travel styles: - solid - regular - light - duotone - unicode: f7fc + - thin + unicode: f6c5 voted: false -eject: +curling-stone: + aliases: + names: + - curling changes: - - '1' - - 5.0.0 - label: eject + - 5.0.5 + - unreleased + label: Curling stone search: terms: - - abort - - cancel - - cd - - discharge + - ice + - olympics + - sport + - stone styles: - solid - regular - light - duotone - unicode: f052 + - thin + unicode: f44a voted: false -elementor: +cuttlefish: changes: - - 5.0.3 - label: Elementor + - 5.0.0 + label: Cuttlefish search: terms: [] styles: - brands - unicode: f430 - voted: true -elephant: - changes: - - 5.4.0 - - 5.10.1 - label: Elephant - search: - terms: - - animal - - dumbo - - fauna - - mammal - - pachyderm - - trunk - styles: - - solid - - regular - - light - - duotone - unicode: f6da + unicode: f38c voted: false -ellipsis-h: +d: changes: - - '3.1' - - 5.0.0 - label: Horizontal Ellipsis + - unreleased + label: D search: - terms: - - dots - - drag - - kebab - - list - - menu - - nav - - navigation - - ol - - reorder - - settings - - ul + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f141 + - thin + unicode: auto voted: false -ellipsis-h-alt: +d-and-d: changes: - 5.0.0 - label: Alternate Horizontal Ellipsis + label: Dungeons & Dragons search: - terms: - - dots - - drag - - kebab - - list - - menu - - nav - - navigation - - ol - - reorder - - settings - - ul + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f39b + - brands + unicode: f38d voted: false -ellipsis-v: +d-and-d-beyond: changes: - - '3.1' - - 5.0.0 - label: Vertical Ellipsis + - 5.4.0 + label: D&D Beyond search: terms: - - dots - - drag - - kebab - - list - - menu - - nav - - navigation - - ol - - reorder - - settings - - ul + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - gaming + - tabletop styles: - - solid - - regular - - light - - duotone - unicode: f142 + - brands + unicode: f6ca voted: false -ellipsis-v-alt: +dagger: changes: - - 5.0.0 - label: Alternate Vertical Ellipsis + - 5.4.0 + - unreleased + label: Dagger search: terms: - - dots - - drag - - kebab - - list - - menu - - nav - - navigation - - ol - - reorder - - settings - - ul + - Dungeons & Dragons + - blade + - d&d + - dnd + - fantasy + - melee attack + - rogue + - sting + - weapon styles: - solid - regular - light - duotone - unicode: f39c + - thin + unicode: f6cb voted: false -ello: +dailymotion: changes: - - 5.2.0 - label: Ello + - 5.12.1 + - 5.14.0 + label: dailymotion search: terms: [] styles: - brands - unicode: f5f1 + unicode: e052 voted: true -ember: +dashcube: changes: + - '4.3' - 5.0.0 - 5.0.3 - label: Ember + label: DashCube search: terms: [] styles: - brands - unicode: f423 + unicode: f210 voted: false -empire: +database: changes: - '4.1' - 5.0.0 - label: Galactic Empire - search: - terms: [] - styles: - - brands - unicode: f1d1 - voted: false -empty-set: - changes: - - 5.3.0 - label: Empty Set + - unreleased + label: Database search: terms: - - math - - theory + - computer + - development + - directory + - memory + - storage styles: - solid - regular - light - duotone - unicode: f656 + - thin + unicode: f1c0 voted: false -engine-warning: +deer: changes: - - 5.2.0 - label: Engine Warning + - 5.6.0 + - unreleased + label: Deer search: terms: - - alert - - automobile - - car - - mechanic - - warning + - animal + - antlers + - blitzen + - comet + - cupid + - dancer + - dasher + - donner + - fauna + - mammal + - prancer + - reindeer + - vixen styles: - solid - regular - light - duotone - unicode: f5f2 - voted: false -envelope: + - thin + unicode: f78e +deer-rudolph: changes: - - '2' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Envelope + - 5.6.0 + - unreleased + label: Deer Rudolph search: terms: - - e-mail - - email - - letter - - mail - - message - - notification - - support + - animal + - antlers + - fauna + - mammal + - reindeer styles: - solid - regular - light - duotone - unicode: f0e0 - voted: false -envelope-open: + - thin + unicode: f78f +deezer: changes: - - '4.7' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Envelope Open + - 5.13.1 + - 5.14.0 + label: Deezer search: - terms: - - e-mail - - email - - letter - - mail - - message - - notification - - support + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f2b6 - voted: false -envelope-open-dollar: + - brands + unicode: e077 + voted: true +delete-left: + aliases: + names: + - backspace changes: - - 5.3.0 - - 5.10.1 - - 5.12.0 - label: Envelope Open-dollar + - 5.1.0 + - unreleased + label: Delete left search: terms: - - e-mail - - email - - letter - - mail - - message - - money - - notification - - pay - - transfer + - command + - delete + - erase + - keyboard + - undo styles: - solid - regular - light - duotone - unicode: f657 - voted: false -envelope-open-text: + - thin + unicode: f55a + voted: true +delete-right: changes: - - 5.3.0 - - 5.10.1 - - 5.12.0 - label: Envelope Open-text + - unreleased + label: Delete Right search: - terms: - - e-mail - - email - - letter - - mail - - message - - notification - - support + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f658 - voted: false -envelope-square: - changes: - - '4.1' - - 5.0.0 - label: Envelope Square - search: - terms: - - e-mail - - email - - letter - - mail - - message - - notification - - support - styles: - solid - regular - light - - duotone - unicode: f199 + - thin + unicode: auto voted: false -envira: +delicious: changes: - - '4.6' + - '4.1' - 5.0.0 - label: Envira Gallery + - 5.7.0 + label: Delicious search: - terms: - - leaf + terms: [] styles: - brands - unicode: f299 - voted: false -equals: - changes: - - 5.0.13 - label: Equals - search: - terms: - - arithmetic - - even - - match - - math - styles: - - solid - - regular - - light - - duotone - unicode: f52c + unicode: f1a5 voted: false -eraser: +democrat: changes: - - '3.1' - - 5.0.0 - - 5.8.0 - label: eraser + - 5.5.0 + - unreleased + label: Democrat search: terms: - - art - - delete - - remove - - rubber + - american + - democratic party + - donkey + - election + - left + - left-wing + - liberal + - politics + - usa styles: - solid - regular - light - duotone - unicode: f12d + - thin + unicode: f747 voted: false -erlang: +deploydog: changes: - 5.0.0 - - 5.0.3 - - 5.7.0 - label: Erlang + label: deploy.dog search: terms: [] styles: - brands - unicode: f39d + unicode: f38e voted: false -ethereum: +deskpro: changes: - - 5.0.2 - label: Ethereum + - 5.0.0 + label: Deskpro search: terms: [] styles: - brands - unicode: f42e - voted: true -ethernet: + unicode: f38f + voted: false +desktop: + aliases: + names: + - desktop-alt + unicodes: + - f390 changes: - - 5.6.0 - label: Ethernet + - '3' + - 5.0.0 + - unreleased + label: Desktop search: terms: - - cable - - cat 5 - - cat 6 - - connection - - hardware - - internet - - network - - wired + - computer + - cpu + - demo + - desktop + - device + - imac + - machine + - monitor + - pc + - screen styles: - solid - regular - light - duotone - unicode: f796 + - thin + unicode: f108 + voted: false +dev: + changes: + - 5.4.0 + label: DEV + search: + terms: [] + styles: + - brands + unicode: f6cc voted: true -etsy: +deviantart: changes: - - '4.7' + - '4.1' - 5.0.0 - label: Etsy + label: deviantART search: terms: [] styles: - brands - unicode: f2d7 + unicode: f1bd voted: false -euro-sign: +dharmachakra: changes: - - '3.2' - - 5.0.0 - label: Euro Sign + - 5.3.0 + - unreleased + label: Dharmachakra search: terms: - - currency - - dollar - - exchange - - money + - buddhism + - buddhist + - wheel of dharma styles: - solid - regular - light - duotone - unicode: f153 + - thin + unicode: f655 voted: false -evernote: +dhl: changes: - - 5.8.0 - label: Evernote + - 5.6.0 + label: DHL search: - terms: [] + terms: + - Dalsey + - Hillblom and Lynn + - german + - package + - shipping styles: - brands - unicode: f839 -exchange: + unicode: f790 +diagram-stankey: changes: - - '3' - - 5.0.0 - label: Exchange + - unreleased + label: Diagram Stankey search: - terms: - - arrow - - arrows - - reciprocate - - return - - swap - - transfer + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f0ec + - thin + unicode: auto voted: false -exchange-alt: +diagram-venn: changes: - - 5.0.0 - label: Alternate Exchange + - unreleased + label: Diagram Venn search: - terms: - - arrow - - arrows - - exchange - - reciprocate - - return - - swap - - transfer + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f362 + - thin + unicode: auto voted: false -exclamation: +dial: + aliases: + names: + - dial-med-high changes: - - '3.1' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: exclamation + - unreleased + label: Dial search: - terms: - - alert - - danger - - error - - important - - notice - - notification - - notify - - problem - - warning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f12a + - thin + unicode: auto voted: false -exclamation-circle: +dial-high: changes: - - '1' - - 5.0.0 - label: Exclamation Circle + - unreleased + label: Dial High search: - terms: - - alert - - danger - - error - - important - - notice - - notification - - notify - - problem - - warning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f06a + - thin + unicode: auto voted: false -exclamation-square: +dial-low: changes: - - 5.0.0 - label: Exclamation Square + - unreleased + label: Dial Low search: - terms: - - alert - - danger - - error - - important - - notice - - notification - - notify - - problem - - warning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f321 + - thin + unicode: auto voted: false -exclamation-triangle: +dial-max: changes: - - '1' - - 5.0.0 - - 5.6.1 - label: Exclamation Triangle + - unreleased + label: Dial Max search: - terms: - - alert - - danger - - error - - important - - notice - - notification - - notify - - problem - - warning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f071 + - thin + unicode: auto voted: false -expand: +dial-med: changes: - - 5.0.0 - label: Expand + - unreleased + label: Dial Med search: - terms: - - bigger - - enlarge - - fullscreen - - resize + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f065 + - thin + unicode: auto voted: false -expand-alt: +dial-med-low: changes: - - '1' - - 5.0.0 - - 5.12.0 - label: Alternate Expand + - unreleased + label: Dial Med-low search: - terms: - - arrows - - bigger - - enlarge - - fullscreen - - resize + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f424 + - thin + unicode: auto voted: false -expand-arrows: +dial-min: changes: - - 5.0.0 - label: Expand Arrows + - unreleased + label: Dial Min search: - terms: - - bigger - - enlarge - - fullscreen - - move - - resize + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f31d + - thin + unicode: auto voted: false -expand-arrows-alt: +diamond: changes: + - '4.3' - 5.0.0 - - 5.8.0 - label: Alternate Expand Arrows + - 5.10.1 + - 5.10.2 + - unreleased + label: Diamond search: terms: - - bigger - - enlarge - - fullscreen - - move - - resize + - cards + - gem + - gemstone + - poker + - suit styles: - solid - regular - light - duotone - unicode: f31e + - thin + unicode: f219 voted: false -expand-wide: +diamond-turn-right: + aliases: + names: + - directions changes: - - 5.0.0 - label: Expand Wide + - 5.2.0 + - 5.11.0 + - unreleased + label: Diamond turn right search: terms: - - bigger - - enlarge - - fullscreen - - resize + - map + - navigation + - sign + - turn styles: - solid - regular - light - duotone - unicode: f320 + - thin + unicode: f5eb voted: false -expeditedssl: +diaspora: changes: - - '4.4' - - 5.0.0 - label: ExpeditedSSL + - 5.6.0 + - 5.8.0 + label: Diaspora search: terms: [] styles: - brands - unicode: f23e - voted: false -external-link: + unicode: f791 + voted: true +dice: changes: - - '1' - - 5.0.0 - - 5.11.0 - label: External Link + - 5.0.13 + - unreleased + label: Dice search: terms: - - new - - open - - send - - share + - chance + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f08e - voted: false -external-link-alt: + - thin + unicode: f522 + voted: true +dice-d10: changes: - - 5.0.0 - - 5.11.0 - label: Alternate External Link + - 5.4.0 + - unreleased + label: Dice D10 search: terms: - - external-link - - new - - open - - share + - Dungeons & Dragons + - chance + - d&d + - dnd + - fantasy + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f35d + - thin + unicode: f6cd voted: false -external-link-square: +dice-d12: changes: - - '3.1' - - 5.0.0 - label: External Link Square + - 5.4.0 + - unreleased + label: Dice D12 search: terms: - - new - - open - - send - - share + - Dungeons & Dragons + - chance + - d&d + - dnd + - fantasy + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f14c + - thin + unicode: f6ce voted: false -external-link-square-alt: +dice-d20: changes: - - 5.0.0 - label: Alternate External Link Square + - 5.4.0 + - unreleased + label: Dice D20 search: terms: - - external-link-square - - new - - open - - share + - Dungeons & Dragons + - chance + - d&d + - dnd + - fantasy + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f360 - voted: false -eye: + - thin + unicode: f6cf + voted: true +dice-d4: changes: - - '1' - - 5.0.0 - - 5.7.0 - label: Eye + - 5.4.0 + - unreleased + label: Dice D4 search: terms: - - look - - optic - - see - - seen - - show - - sight - - views - - visible + - Dungeons & Dragons + - chance + - d&d + - dnd + - fantasy + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f06e + - thin + unicode: f6d0 voted: false -eye-dropper: +dice-d6: changes: - - '4.2' - - 5.0.0 - - 5.1.0 - label: Eye Dropper - search: + - 5.4.0 + - unreleased + label: Dice D6 + search: terms: - - beaker - - clone - - color - - copy - - eyedropper - - pipette + - Dungeons & Dragons + - chance + - d&d + - dnd + - fantasy + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f1fb + - thin + unicode: f6d1 voted: false -eye-evil: +dice-d8: changes: - 5.4.0 - label: Evil Eye + - unreleased + label: Dice D8 search: terms: - Dungeons & Dragons + - chance - d&d - dnd - fantasy - - sauron - - see - - seen - - show - - sight + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f6db + - thin + unicode: f6d2 voted: false -eye-slash: +dice-five: changes: - - '1' - - 5.0.0 - - 5.7.0 - label: Eye Slash + - 5.0.13 + - unreleased + label: Dice Five search: terms: - - blind - - hide - - show - - toggle - - unseen - - views - - visible - - visiblity + - chance + - gambling + - game + - roll styles: - solid - regular - light - duotone - unicode: f070 - voted: false -facebook: + - thin + unicode: f523 + voted: true +dice-four: changes: - - '2' - - 5.0.0 - - 5.8.2 - label: Facebook + - 5.0.13 + - unreleased + label: Dice Four search: terms: - - facebook-official - - social network + - chance + - gambling + - game + - roll styles: - - brands - unicode: f09a - voted: false -facebook-f: + - solid + - regular + - light + - duotone + - thin + unicode: f524 + voted: true +dice-one: changes: - - 5.0.0 - - 5.8.2 - label: Facebook F + - 5.0.13 + - unreleased + label: Dice One search: terms: - - facebook + - chance + - gambling + - game + - roll styles: - - brands - unicode: f39e - voted: false -facebook-messenger: + - solid + - regular + - light + - duotone + - thin + unicode: f525 + voted: true +dice-six: + changes: + - 5.0.13 + - unreleased + label: Dice Six + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f526 + voted: true +dice-three: + changes: + - 5.0.13 + - unreleased + label: Dice Three + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f527 + voted: true +dice-two: + changes: + - 5.0.13 + - unreleased + label: Dice Two + search: + terms: + - chance + - gambling + - game + - roll + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f528 + voted: true +digg: changes: + - '4.1' - 5.0.0 - - 5.8.2 - - 5.9.0 - label: Facebook Messenger + label: Digg Logo search: terms: [] styles: - brands - unicode: f39f + unicode: f1a6 voted: false -facebook-square: +digital-ocean: changes: - - '1' - 5.0.0 - - 5.8.2 - label: Facebook Square + - 5.7.0 + label: Digital Ocean search: - terms: - - social network + terms: [] styles: - brands - unicode: f082 + unicode: f391 voted: false -fan: +diploma: + aliases: + names: + - scroll-ribbon changes: - - 5.9.0 - - 5.10.1 - label: Fan + - 5.2.0 + - unreleased + label: Diploma search: terms: - - ac - - air conditioning - - blade - - blower - - cool - - hot + - award + - certificate + - college + - education + - graduate + - graduation + - university styles: - solid - regular - light - duotone - unicode: f863 - voted: true -fan-table: + - thin + unicode: f5ea + voted: false +disc-drive: changes: - - 5.12.0 - label: Fan Table + - 5.11.0 + - unreleased + label: Disc Drive search: terms: - - ac - - air conditioning - - blade - - blower - - cool - - hot - - oscillate + - blu-ray + - cd + - cd-rom + - computer + - dvd + - load + - music + - optical drive + - peripheral + - tray + - video styles: - solid - regular - light - duotone - unicode: f904 + - thin + unicode: f8b5 voted: false -fantasy-flight-games: +discord: changes: - - 5.4.0 - label: Fantasy Flight-games + - 5.0.0 + label: Discord search: - terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - game - - gaming - - tabletop + terms: [] styles: - brands - unicode: f6dc + unicode: f392 voted: false -farm: +discourse: changes: - - 5.9.0 - label: Farm + - 5.0.0 + - 5.0.3 + label: Discourse + search: + terms: [] + styles: + - brands + unicode: f393 + voted: false +disease: + changes: + - 5.7.0 + - unreleased + label: Disease search: terms: - - agriculture - - barn - - dairy - - farming - - ranch - - silo + - bacteria + - cancer + - covid-19 + - illness + - infection + - sickness + - virus styles: - solid - regular - light - duotone - unicode: f864 + - thin + unicode: f7fa voted: false -fast-backward: +display: changes: - - '1' - - 5.0.0 - label: fast-backward + - unreleased + label: Display search: - terms: - - beginning - - first - - previous - - rewind - - start + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f049 + - thin + unicode: auto voted: false -fast-forward: +display-code: + aliases: + names: + - desktop-code changes: - - '1' - - 5.0.0 - label: fast-forward + - unreleased + label: Display code search: - terms: - - end - - last - - next + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f050 + - thin + unicode: auto voted: false -faucet: +display-medical: + aliases: + names: + - desktop-medical changes: - - 5.12.0 - label: Faucet + - unreleased + label: Display medical search: - terms: - - covid-19 - - drip - - house - - hygiene - - kitchen - - sink - - water + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f905 + - thin + unicode: auto voted: false -faucet-drip: +display-slash: + aliases: + names: + - desktop-slash changes: - - 5.12.0 - label: Faucet Drip + - unreleased + label: Display slash search: - terms: - - drip - - house - - kitchen - - sink - - water + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f906 + - thin + unicode: auto voted: false -fax: +divide: changes: - - '4.1' - - 5.0.0 - - 5.3.0 - - 5.11.0 - label: Fax + - 5.0.13 + - unreleased + label: Divide search: terms: - - business - - communicate - - copy - - facsimile - - send + - arithmetic + - calculus + - division + - math styles: - solid - regular - light - duotone - unicode: f1ac + - thin + unicode: f529 voted: false -feather: +dna: changes: - - 5.0.13 - - 5.1.0 - label: Feather + - 5.0.7 + - 5.0.10 + - unreleased + label: DNA search: terms: - - bird - - light - - plucked - - quill - - write + - double helix + - genetic + - helix + - molecule + - protein styles: - solid - regular - light - duotone - unicode: f52d - voted: true -feather-alt: + - thin + unicode: f471 + voted: false +do-not-enter: changes: - - 5.1.0 - label: Alternate Feather + - 5.2.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Do Not-enter search: terms: - - bird - - light - - plucked - - quill - - write + - closed + - traffic + - warning styles: - solid - regular - light - duotone - unicode: f56b - voted: true -fedex: + - thin + unicode: f5ec + voted: false +dochub: changes: - - 5.6.0 - label: FedEx + - 5.0.0 + label: DocHub search: - terms: - - Federal Express - - package - - shipping + terms: [] styles: - brands - unicode: f797 -fedora: + unicode: f394 + voted: false +docker: changes: - - 5.6.0 - - 5.6.3 - - 5.8.0 - label: Fedora + - 5.0.0 + label: Docker search: - terms: - - linux - - operating system - - os + terms: [] styles: - brands - unicode: f798 - voted: true -female: + unicode: f395 + voted: false +dog: changes: - - '3.2' - - 5.0.0 - label: Female + - 5.4.0 + - 5.12.0 + - unreleased + label: Dog search: terms: - - human - - person - - profile - - user - - woman + - animal + - canine + - fauna + - mammal + - pet + - pooch + - puppy + - woof styles: - solid - regular - light - duotone - unicode: f182 + - thin + unicode: f6d3 voted: false -field-hockey: +dog-leashed: changes: - - 5.0.5 - label: Field Hockey + - 5.4.0 + - 5.12.0 + - unreleased + label: Leashed Dog search: terms: - - ball - - sport - - stick + - animal + - canine + - fauna + - mammal + - pet + - pooch + - puppy + - walk + - woof styles: - solid - regular - light - duotone - unicode: f44c + - thin + unicode: f6d4 voted: false -fighter-jet: +dollar-sign: + aliases: + names: + - dollar + - usd changes: - - '3' + - '3.2' - 5.0.0 - label: fighter-jet + - 5.0.9 + - 5.11.0 + - 5.11.1 + - unreleased + label: Dollar Sign search: terms: - - airplane - - fast - - fly - - goose - - maverick - - plane - - quick - - top gun - - transportation - - travel + - $ + - cost + - dollar-sign + - money + - price + - usd styles: - solid - regular - light - duotone - unicode: f0fb - voted: false -figma: - changes: - - 5.6.0 - - 5.7.0 - - 5.8.0 - label: Figma - search: - terms: - - app - - design - - interface - styles: - - brands - unicode: f799 + - thin + unicode: f155 voted: false -file: +dolly: + aliases: + names: + - dolly-box changes: - - '3.2' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: File + - 5.0.7 + - unreleased + label: Dolly search: terms: - - document - - new - - page - - pdf - - resume + - carry + - shipping + - transport styles: - solid - regular - light - duotone - unicode: f15b + - thin + unicode: f472 voted: false -file-alt: +dolly-empty: changes: - - '3.2' - - 5.0.0 - - 5.10.2 - label: Alternate File + - 5.0.7 + - unreleased + label: Dolly Empty search: terms: - - document - - file-text - - invoice - - new - - page - - pdf + - carry + - inventory + - shipping + - transport styles: - solid - regular - light - duotone - unicode: f15c + - thin + unicode: f473 voted: false -file-archive: +dolphin: changes: - - '4.1' - - 5.0.0 - - 5.7.0 - - 5.10.2 - label: Archive File + - unreleased + label: Dolphin search: - terms: - - .zip - - bundle - - compress - - compression - - download - - zip + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +dong-sign: + changes: + - unreleased + label: Dong Sign + search: + terms: [] + styles: - duotone - unicode: f1c6 + - solid + - regular + - light + - thin + unicode: auto voted: false -file-audio: +door-closed: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Audio File + - 5.0.13 + - unreleased + label: Door Closed search: terms: - - document - - mp3 - - music - - page - - play - - sound + - enter + - exit + - locked styles: - solid - regular - light - duotone - unicode: f1c7 - voted: false -file-certificate: + - thin + unicode: f52a + voted: true +door-open: changes: - - 5.2.0 - - 5.10.2 - label: File Certificate + - 5.0.13 + - unreleased + label: Door Open search: terms: - - award - - diploma - - document - - license + - enter + - exit + - welcome styles: - solid - regular - light - duotone - unicode: f5f3 - voted: false -file-chart-line: + - thin + unicode: f52b + voted: true +dove: changes: - - 5.3.0 + - 5.0.9 + - 5.10.1 - 5.10.2 - label: Chart Line File + - unreleased + label: Dove search: terms: - - analytics - - data - - document - - projection - - report + - bird + - fauna + - flying + - peace + - war styles: - solid - regular - light - duotone - unicode: f659 + - thin + unicode: f4ba voted: false -file-chart-pie: +down: + aliases: + names: + - arrow-alt-down changes: - - 5.3.0 - - 5.10.2 - label: Pie Chart File + - 5.0.0 + - 5.10.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Down search: terms: - - analytics - - data - - document - - projection - - report + - download styles: - solid - regular - light - duotone - unicode: f65a + - thin + unicode: f354 voted: false -file-check: +down-from-line: + aliases: + names: + - arrow-alt-from-top changes: - 5.0.0 - - 5.10.2 - label: Check File + - unreleased + label: Down from line search: terms: - - accept - - agree - - confirm - - document - - done - - ok - - select - - success - - synced - - tick - - todo + - upload styles: - solid - regular - light - duotone - unicode: f316 + - thin + unicode: f349 voted: false -file-code: +down-left-and-up-right-to-center: + aliases: + names: + - compress-alt changes: - - '4.1' + - '1' - 5.0.0 - - 5.10.2 - label: Code File + - 5.12.0 + - unreleased + label: Down left and up right to center search: terms: - - css - - development - - document - - html + - collapse + - fullscreen + - minimize + - move + - resize + - shrink + - smaller styles: - solid - regular - light - duotone - unicode: f1c9 + - thin + unicode: f422 voted: false -file-contract: +down-long: + aliases: + names: + - long-arrow-alt-down changes: - - 5.1.0 - - 5.10.2 - label: File Contract + - 5.0.0 + - unreleased + label: Down long search: terms: - - agreement - - binding - - document - - legal - - signature + - download + - long-arrow-down styles: - solid - regular - light - duotone - unicode: f56c + - thin + unicode: f309 voted: false -file-csv: +down-to-line: + aliases: + names: + - arrow-alt-to-bottom changes: - - 5.4.0 - - 5.10.2 - label: File CSV + - 5.0.0 + - unreleased + label: Down to line search: terms: - - document - - excel - - numbers - - spreadsheets - - table + - download styles: - solid - regular - light - duotone - unicode: f6dd + - thin + unicode: f34a voted: false -file-download: +download: changes: - - 5.1.0 - - 5.10.2 - label: File Download + - '1' + - 5.0.0 + - unreleased + label: Download search: terms: - - document - export + - hard drive - save + - transfer styles: - solid - regular - light - duotone - unicode: f56d - voted: true -file-edit: + - thin + unicode: f019 + voted: false +draft2digital: changes: - 5.0.0 - - 5.10.2 - label: Edit File + label: Draft2digital + search: + terms: [] + styles: + - brands + unicode: f396 + voted: false +dragon: + changes: + - 5.4.0 + - unreleased + label: Dragon search: terms: - - edit - - pen - - pencil - - update - - write + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - fire + - lizard + - serpent styles: - solid - regular - light - duotone - unicode: f31c + - thin + unicode: f6d5 voted: false -file-excel: +draw-circle: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Excel File + - 5.2.0 + - unreleased + label: Draw Circle search: terms: - - csv - - document - - numbers - - spreadsheets - - table + - anchors + - lines + - object + - render + - shape styles: - solid - regular - light - duotone - unicode: f1c3 + - thin + unicode: f5ed voted: false -file-exclamation: +draw-polygon: changes: - - 5.0.0 - - 5.10.2 - label: Exclamation File + - 5.2.0 + - unreleased + label: Draw Polygon search: terms: - - alert - - document - - important - - page + - anchors + - lines + - object + - render + - shape styles: - solid - regular - light - duotone - unicode: f31a + - thin + unicode: f5ee voted: false -file-export: +draw-square: changes: - - 5.1.0 - - 5.7.0 - - 5.10.2 - label: File Export + - 5.2.0 + - unreleased + label: Draw Square search: terms: - - download - - save + - anchors + - lines + - object + - render + - shape styles: - solid - regular - light - duotone - unicode: f56e - voted: true -file-image: + - thin + unicode: f5ef + voted: false +dreidel: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Image File + - 5.6.0 + - unreleased + label: Dreidel search: terms: - - document - - image - - jpg - - photo - - png + - clay + - hanukkah + - holiday + - jewish + - judaism + - toy styles: - solid - regular - light - duotone - unicode: f1c5 + - thin + unicode: f792 +dribbble: + changes: + - 5.0.0 + label: Dribbble + search: + terms: [] + styles: + - brands + unicode: f17d voted: false -file-import: +dribbble-square: changes: - - 5.1.0 - - 5.7.0 - - 5.10.2 - label: File Import + - 5.0.0 + label: Dribbble Square + search: + terms: [] + styles: + - brands + unicode: f397 + voted: false +drone: + changes: + - 5.9.0 + - 5.10.1 + - unreleased + label: Drone search: terms: - - copy - - document - - send - - upload + - aerial + - big brother + - surveillance + - uav + - unmanned + - vehicle styles: - solid - regular - light - duotone - unicode: f56f + - thin + unicode: f85f voted: true -file-invoice: +drone-front: + aliases: + names: + - drone-alt changes: - - 5.1.0 - - 5.10.2 - label: File Invoice + - 5.9.0 + - unreleased + label: Drone front search: terms: - - account - - bill - - charge - - document - - payment - - receipt + - aerial + - big brother + - surveillance + - uav + - unmanned + - vehicle styles: - solid - regular - light - duotone - unicode: f570 - voted: true -file-invoice-dollar: + - thin + unicode: f860 + voted: false +dropbox: + changes: + - '3.2' + - 5.0.0 + - 5.0.1 + label: Dropbox + search: + terms: [] + styles: + - brands + unicode: f16b + voted: false +droplet: + aliases: + names: + - tint changes: + - '1' + - 5.0.0 - 5.1.0 - - 5.10.2 - label: File Invoice with US Dollar + - unreleased + label: Droplet search: terms: - - $ - - account - - bill - - charge - - document - - dollar-sign - - money - - payment - - receipt - - usd + - color + - drop + - droplet + - raindrop + - waterdrop styles: - solid - regular - light - duotone - unicode: f571 - voted: true -file-medical: + - thin + unicode: f043 + voted: false +droplet-degree: + aliases: + names: + - dewpoint changes: - - 5.0.7 - - 5.10.2 - label: Medical File + - 5.5.0 + - unreleased + label: Droplet degree search: terms: - - document - - health - - history - - prescription - - record + - air + - fog + - humidity + - temperature + - water styles: - solid - regular - light - duotone - unicode: f477 + - thin + unicode: f748 voted: false -file-medical-alt: +droplet-percent: + aliases: + names: + - humidity changes: - - 5.0.7 - - 5.10.2 - label: Alternate Medical File + - 5.5.0 + - unreleased + label: Droplet percent search: terms: - - document - - health - - history - - prescription - - record + - evaporation + - fog + - precipitation + - rain styles: - solid - regular - light - duotone - unicode: f478 + - thin + unicode: f750 voted: false -file-minus: +droplet-slash: + aliases: + names: + - tint-slash changes: - - 5.0.0 - - 5.10.2 - - 5.12.1 - label: Minus File + - 5.1.0 + - unreleased + label: Droplet slash search: terms: - - delete - - document - - negative - - remove + - color + - drop + - droplet + - raindrop + - waterdrop styles: - solid - regular - light - duotone - unicode: f318 + - thin + unicode: f5c7 voted: false -file-music: +drum: changes: + - 5.1.0 - 5.11.0 - label: File Music + - unreleased + label: Drum search: terms: - - aac - - aif - - audio - - midi - - mp3 - - ogg - - sheet music - - wav - - wma + - instrument + - music + - percussion + - snare + - sound styles: - solid - regular - light - duotone - unicode: f8b6 - voted: false -file-pdf: + - thin + unicode: f569 + voted: true +drum-steelpan: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: PDF File + - 5.1.0 + - unreleased + label: Drum Steelpan search: terms: - - acrobat - - document - - preview - - save + - calypso + - instrument + - music + - percussion + - reggae + - snare + - sound + - steel + - tropical styles: - solid - regular - light - duotone - unicode: f1c1 + - thin + unicode: f56a voted: false -file-plus: +drumstick: changes: - - 5.0.0 - - 5.10.2 - - 5.12.1 - label: Plus File + - 5.4.0 + - 5.7.0 + - unreleased + label: Drumstick search: terms: - - add - - create - - document - - medical - - new - - positive + - bone + - chicken + - leg + - meat + - poultry + - turkey styles: - solid - regular - light - duotone - unicode: f319 + - thin + unicode: f6d6 voted: false -file-powerpoint: +drumstick-bite: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Powerpoint File + - 5.4.0 + - 5.7.0 + - unreleased + label: Drumstick with Bite Taken Out search: terms: - - display - - document - - keynote - - presentation + - bone + - chicken + - leg + - meat + - poultry + - turkey styles: - solid - regular - light - duotone - unicode: f1c4 + - thin + unicode: f6d7 voted: false -file-prescription: +drupal: changes: - - 5.1.0 - - 5.10.2 - label: File Prescription + - '4.1' + - 5.0.0 + label: Drupal Logo search: - terms: - - document - - drugs - - medical - - medicine - - rx + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f572 + - brands + unicode: f1a9 voted: false -file-search: +dryer: changes: - 5.9.0 - - 5.10.2 - label: File Search + - unreleased + label: Dryer search: terms: - - document - - find - - look - - scan + - clean + - clothes + - laundromat + - laundry + - washing machine styles: - solid - regular - light - duotone - unicode: f865 - voted: true -file-signature: + - thin + unicode: f861 + voted: false +dryer-heat: + aliases: + names: + - dryer-alt changes: - - 5.1.0 - - 5.10.2 - label: File Signature + - 5.9.0 + - unreleased + label: Dryer heat search: terms: - - John Hancock - - contract - - document - - name + - clean + - clothes + - laundromat + - laundry + - washing machine styles: - solid - regular - light - duotone - unicode: f573 - voted: true -file-spreadsheet: + - thin + unicode: f862 + voted: false +duck: changes: - - 5.3.0 - - 5.10.2 - label: Spreadsheet File + - 5.4.0 + - unreleased + label: Duck search: terms: - - csv - - document - - excel - - numbers - - sheets - - xls + - bath + - bird + - fauna + - quack + - rubber styles: - solid - regular - light - duotone - unicode: f65b + - thin + unicode: f6d8 voted: false -file-times: +dumbbell: changes: - - 5.0.0 - - 5.10.2 - - 5.12.1 - label: Times File + - 5.0.5 + - unreleased + label: Dumbbell search: terms: - - archive - - delete - - document - - remove - - x + - exercise + - gym + - strength + - weight + - weight-lifting styles: - solid - regular - light - duotone - unicode: f317 + - thin + unicode: f44b voted: false -file-upload: +dumpster: changes: - - 5.1.0 - - 5.10.2 - label: File Upload + - 5.6.0 + - unreleased + label: Dumpster search: terms: - - document - - import - - page - - save + - alley + - bin + - commercial + - trash + - waste styles: - solid - regular - light - duotone - unicode: f574 + - thin + unicode: f793 voted: true -file-user: +dumpster-fire: changes: - - 5.3.0 - - 5.10.2 - label: User File + - 5.6.0 + - unreleased + label: Dumpster Fire search: terms: - - account - - document - - page - - personnel - - profile - - resume + - alley + - bin + - commercial + - danger + - dangerous + - euphemism + - flame + - heat + - hot + - trash + - waste styles: - solid - regular - light - duotone - unicode: f65c + - thin + unicode: f794 voted: true -file-video: +dungeon: changes: - - '4.1' - - 5.0.0 - - 5.10.2 - label: Video File + - 5.4.0 + - unreleased + label: Dungeon search: terms: - - document - - m4v - - movie - - mp4 - - play + - Dungeons & Dragons + - building + - d&d + - dnd + - door + - entrance + - fantasy + - gate styles: - solid - regular - light - duotone - unicode: f1c8 + - thin + unicode: f6d9 voted: false -file-word: +dyalog: changes: - - '4.1' - 5.0.0 - - 5.10.2 - label: Word File + label: Dyalog search: - terms: - - document - - edit - - page - - text - - writing + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f1c2 + - brands + unicode: f399 voted: false -files-medical: +e: changes: - - 5.7.0 - - 5.10.2 - label: Medical Files + - unreleased + label: E search: - terms: - - document - - health - - history - - prescription - - record + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f7fd + - thin + unicode: auto voted: false -fill: +ear: changes: - - 5.1.0 - label: Fill + - 5.2.0 + - unreleased + label: Ear search: terms: - - bucket - - color - - paint - - paint bucket + - head + - hearing + - listen + - lobe styles: - solid - regular - light - duotone - unicode: f575 + - thin + unicode: f5f0 voted: false -fill-drip: +ear-deaf: + aliases: + names: + - deaf + - deafness + - hard-of-hearing changes: - - 5.1.0 - label: Fill Drip + - '4.6' + - 5.0.0 + - unreleased + label: Ear deaf search: terms: - - bucket - - color - - drop - - paint - - paint bucket - - spill + - ear + - hearing + - sign language styles: - solid - regular - light - duotone - unicode: f576 + - thin + unicode: f2a4 voted: false -film: +ear-listen: + aliases: + names: + - assistive-listening-systems changes: - - '1' + - '4.6' - 5.0.0 - label: Film + - unreleased + label: Ear listen search: terms: - - cinema - - movie - - strip - - video + - amplify + - audio + - deaf + - ear + - headset + - hearing + - sound styles: - solid - regular - light - duotone - unicode: f008 + - thin + unicode: f2a2 voted: false -film-alt: +ear-muffs: changes: - - 5.0.0 - label: Alternate Film + - 5.6.0 + - unreleased + label: Ear Muffs search: terms: - - cinema - - movie - - strip - - video + - accessory + - clothing + - cold + - head + - puffy + - soft + - winter styles: - solid - regular - light - duotone - unicode: f3a0 - voted: false -film-canister: + - thin + unicode: f795 +earlybirds: changes: - - 5.11.0 - - 5.11.2 - label: Film Canister + - 5.0.0 + label: Earlybirds search: - terms: - - 110 - - 35mm - - darkroom - - develop - - image - - photo - - photography - - retro - - vintage + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f8b7 + - brands + unicode: f39a voted: false -filter: +earth-africa: + aliases: + names: + - globe-africa changes: - - '2' - - 5.0.0 - - 5.10.1 + - 5.1.0 - 5.11.0 - 5.11.1 - label: Filter + - unreleased + label: Earth africa search: terms: - - funnel - - options - - separate - - sort + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world styles: - solid - regular - light - duotone - unicode: f0b0 + - thin + unicode: f57c voted: false -fingerprint: +earth-americas: + aliases: + names: + - earth + - globe-americas changes: - 5.1.0 - label: Fingerprint + - 5.11.0 + - 5.11.1 + - unreleased + label: Earth americas search: terms: - - human - - id - - identification - - lock - - smudge - - touch - - unique - - unlock + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world styles: - solid - regular - light - duotone - unicode: f577 - voted: true -fire: + - thin + unicode: f57d + voted: false +earth-asia: + aliases: + names: + - globe-asia changes: - - '1' - - 5.0.0 - - 5.6.0 - - 5.6.3 - - 5.10.1 - label: fire + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Earth asia search: terms: - - burn - - caliente - - flame - - heat - - hot - - popular + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world styles: - solid - regular - light - duotone - unicode: f06d + - thin + unicode: f57e voted: false -fire-alt: +earth-europa: + aliases: + names: + - globe-europe changes: - - 5.6.3 - label: Alternate Fire + - 5.6.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Earth europa search: terms: - - burn - - caliente - - flame - - heat - - hot - - popular + - all + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world styles: - solid - regular - light - duotone - unicode: f7e4 -fire-extinguisher: + - thin + unicode: f7a2 + voted: true +ebay: changes: - - '3.1' - - 5.0.0 - label: fire-extinguisher + - 5.0.11 + - 5.7.0 + label: eBay search: - terms: - - burn - - caliente - - fire fighter - - flame - - heat - - hot - - rescue + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f134 - voted: false -fire-smoke: + - brands + unicode: f4f4 + voted: true +eclipse: changes: - 5.5.0 - label: Fire and Smoke + - unreleased + label: Eclipse search: terms: - - burn - - caliente - - flame - - fog - - heat - - hot + - lunar + - moon + - shadow + - solar + - sun styles: - solid - regular - light - duotone - unicode: f74b + - thin + unicode: f749 voted: false -firefox: +edge: changes: - - '4.4' + - '4.5' - 5.0.0 - - 5.0.1 - - 5.12.0 - label: Firefox + - 5.12.1 + label: Edge Browser search: terms: - browser + - ie styles: - brands - unicode: f269 + unicode: f282 voted: false -firefox-browser: +edge-legacy: changes: - - 5.12.0 - label: Firefox Browser + - 5.13.1 + - 5.14.0 + label: Edge Legacy Browser search: - terms: - - browser + terms: [] styles: - brands - unicode: f907 + unicode: e078 voted: false -fireplace: +egg: changes: - - 5.6.0 - label: Fireplace + - 5.7.0 + - unreleased + label: Egg search: terms: - - caliente - - flame - - hearth - - heat - - holiday - - mantle - - toasty - - warmth + - breakfast + - chicken + - easter + - shell + - yolk styles: - solid - regular - light - duotone - unicode: f79a -first-aid: + - thin + unicode: f7fb + voted: false +egg-fried: changes: - - 5.0.7 - label: First Aid - search: + - 5.7.0 + - unreleased + label: Fried Egg + search: terms: - - emergency - - emt - - health - - medical - - rescue + - breakfast + - chicken + - yolk styles: - solid - regular - light - duotone - unicode: f479 + - thin + unicode: f7fc voted: false -first-order: +eject: changes: - - '4.6' + - '1' - 5.0.0 - label: First Order - search: - terms: [] - styles: - - brands - unicode: f2b0 - voted: false -first-order-alt: - changes: - - 5.0.12 - label: Alternate First Order + - unreleased + label: eject search: - terms: [] + terms: + - abort + - cancel + - cd + - discharge styles: - - brands - unicode: f50a + - solid + - regular + - light + - duotone + - thin + unicode: f052 voted: false -firstdraft: +elementor: changes: - - 5.0.0 - label: firstdraft + - 5.0.3 + label: Elementor search: terms: [] styles: - brands - unicode: f3a1 - voted: false -fish: + unicode: f430 + voted: true +elephant: changes: - - 5.1.0 + - 5.4.0 - 5.10.1 - label: Fish + - unreleased + label: Elephant search: terms: + - animal + - dumbo - fauna - - gold - - seafood - - swimming - styles: - - solid - - regular - - light - - duotone - unicode: f578 - voted: true -fish-cooked: - changes: - - 5.7.0 - label: Cooked Fish - search: - terms: - - grilled - - health - - salmon - - seafood - - tuna + - mammal + - pachyderm + - trunk styles: - solid - regular - light - duotone - unicode: f7fe + - thin + unicode: f6da voted: false -fist-raised: +ellipsis: + aliases: + names: + - ellipsis-h changes: - - 5.4.0 - label: Raised Fist + - '3.1' + - 5.0.0 + - unreleased + label: Ellipsis search: terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - hand - - ki - - monk - - resist - - strength - - unarmed combat + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul styles: - solid - regular - light - duotone - unicode: f6de + - thin + unicode: f141 voted: false -flag: +ellipsis-stroke: + aliases: + names: + - ellipsis-h-alt changes: - - '1' - 5.0.0 - label: flag + - unreleased + label: Ellipsis stroke search: terms: - - country - - notice - - notification - - notify - - pole - - report - - symbol + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul styles: - solid - regular - light - duotone - unicode: f024 + - thin + unicode: f39b voted: false -flag-alt: +ellipsis-stroke-vertical: + aliases: + names: + - ellipsis-v-alt changes: - - 5.5.0 - label: Alternate Flag + - 5.0.0 + - unreleased + label: Ellipsis stroke vertical search: terms: - - country - - notice - - notification - - notify - - pole - - report - - symbol + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul styles: - solid - regular - light - duotone - unicode: f74c + - thin + unicode: f39c voted: false -flag-checkered: +ellipsis-vertical: + aliases: + names: + - ellipsis-v changes: - '3.1' - 5.0.0 - - 5.7.0 - - 5.10.1 - label: flag-checkered + - unreleased + label: Ellipsis vertical search: terms: - - notice - - notification - - notify - - pole - - racing - - report - - symbol + - dots + - drag + - kebab + - list + - menu + - nav + - navigation + - ol + - reorder + - settings + - ul styles: - solid - regular - light - duotone - unicode: f11e + - thin + unicode: f142 voted: false -flag-usa: +ello: changes: - - 5.5.0 - label: United States of America Flag + - 5.2.0 + label: Ello search: - terms: - - betsy ross - - country - - old glory - - stars - - stripes - - symbol + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f74d - voted: false -flame: + - brands + unicode: f5f1 + voted: true +ember: changes: - - 5.4.0 - - 5.11.0 - label: Flame + - 5.0.0 + - 5.0.3 + label: Ember search: - terms: - - Dungeons & Dragons - - caliente - - d&d - - dnd - - fantasy - - heat - - hot + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f6df + - brands + unicode: f423 voted: false -flashlight: +empire: changes: - - 5.11.0 - label: Flashlight + - '4.1' + - 5.0.0 + label: Galactic Empire search: - terms: - - camping - - hide and seek - - lamp - - light - - torch + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f8b8 + - brands + unicode: f1d1 voted: false -flask: +empty-set: changes: - - '2' - - 5.0.0 - label: Flask + - 5.3.0 + - unreleased + label: Empty Set search: terms: - - beaker - - experimental - - labs - - science + - math + - theory styles: - solid - regular - light - duotone - unicode: f0c3 + - thin + unicode: f656 voted: false -flask-poison: +engine: changes: - - 5.4.0 - - 5.11.0 - label: Flask Poison + - unreleased + label: Engine search: - terms: - - beverage - - container - - drink - - halloween - - health - - holiday - - power + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6e0 + - thin + unicode: auto voted: false -flask-potion: +engine-warning: + aliases: + names: + - engine-exclamation changes: - - 5.4.0 - - 5.11.0 - label: Flask Potion + - 5.2.0 + - unreleased + label: Engine Warning search: terms: - - Dungeons & Dragons - alert - - beaker - - beverage - - container - - d&d - - danger - - dangerous - - deadly - - death - - dnd - - drink - - fantasy - - halloween - - heal - - health - - holiday - - magic - - mana - - science + - automobile + - car + - mechanic + - warning styles: - solid - regular - light - duotone - unicode: f6e1 + - thin + unicode: f5f2 voted: false -flickr: +envelope: changes: - - '3.2' + - '2' - 5.0.0 - label: Flickr + - 5.10.1 + - 5.10.2 + - unreleased + label: Envelope search: - terms: [] + terms: + - e-mail + - email + - letter + - mail + - message + - notification + - support styles: - - brands - unicode: f16e + - solid + - regular + - light + - duotone + - thin + unicode: f0e0 voted: false -flipboard: +envelope-dot: + aliases: + names: + - envelope-badge changes: - - 5.0.5 - - 5.0.9 - label: Flipboard + - unreleased + label: Envelope dot search: terms: [] styles: - - brands - unicode: f44d - voted: true -flower: - changes: - - 5.7.0 - - 5.8.0 - - 5.11.0 - - 5.11.1 - label: Flower - search: - terms: - - daffodil - - nature - - spring - - summer - styles: + - duotone - solid - regular - light - - duotone - unicode: f7ff - voted: true -flower-daffodil: + - thin + unicode: auto + voted: false +envelope-open: changes: - - 5.7.0 - label: Flower Daffodil + - '4.7' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Envelope Open search: terms: - - nature - - spring - - summer + - e-mail + - email + - letter + - mail + - message + - notification + - support styles: - solid - regular - light - duotone - unicode: f800 + - thin + unicode: f2b6 voted: false -flower-tulip: +envelope-open-dollar: changes: - - 5.7.0 - label: Flower Tulip + - 5.3.0 + - 5.10.1 + - 5.12.0 + - unreleased + label: Envelope Open-dollar search: terms: - - nature - - spring - - summer + - e-mail + - email + - letter + - mail + - message + - money + - notification + - pay + - transfer styles: - solid - regular - light - duotone - unicode: f801 + - thin + unicode: f657 voted: false -flushed: +envelope-open-text: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Flushed Face + - 5.3.0 + - 5.10.1 + - 5.12.0 + - unreleased + label: Envelope Open-text search: terms: - - embarrassed - - emoticon - - face + - e-mail + - email + - letter + - mail + - message + - notification + - support styles: - solid - regular - light - duotone - unicode: f579 + - thin + unicode: f658 voted: false -flute: +envelopes: changes: - - 5.11.0 - label: Flute + - unreleased + label: Envelopes search: - terms: - - aerophone - - instrument - - music - - pied piper - - woodwind + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f8b9 + - thin + unicode: auto voted: false -flux-capacitor: +envelopes-bulk: + aliases: + names: + - mail-bulk changes: - - 5.11.0 - - 5.12.0 - label: Flux Capacitor + - 5.3.0 + - unreleased + label: Envelopes bulk search: terms: - - 1.21 gigawatts - - 88 mph - - Emmett Brown - - Marty McFly - - 'Y' - - back to the future - - delorean - - dmc - - time travel + - archive + - envelope + - letter + - post office + - postal + - postcard + - send + - stamp + - usps styles: - solid - regular - light - duotone - unicode: f8ba + - thin + unicode: f674 voted: false -fly: +envira: changes: + - '4.6' - 5.0.0 - label: Fly + label: Envira Gallery search: - terms: [] + terms: + - leaf styles: - brands - unicode: f417 + unicode: f299 voted: false -fog: +equals: changes: - - 5.5.0 - label: Fog + - 5.0.13 + - unreleased + label: Equals search: terms: - - haze - - karl - - mist - - opaque - - san francisco - - visibility - - weather + - arithmetic + - even + - match + - math styles: - solid - regular - light - duotone - unicode: f74e + - thin + unicode: f52c voted: false -folder: +eraser: changes: - - '1' + - '3.1' - 5.0.0 - - 5.3.0 - - 5.10.1 - label: Folder + - 5.8.0 + - unreleased + label: eraser search: terms: - - archive - - directory - - document - - file + - art + - delete + - remove + - rubber styles: - solid - regular - light - duotone - unicode: f07b + - thin + unicode: f12d voted: false -folder-download: +erlang: changes: - - 5.12.1 - label: Folder Download + - 5.0.0 + - 5.0.3 + - 5.7.0 + label: Erlang search: - terms: - - archive - - directory - - document - - download - - file - - save + terms: [] styles: - - light - - regular - - solid - - duotone - unicode: f953 + - brands + unicode: f39d voted: false -folder-minus: +ethereum: changes: - - 5.3.0 - label: Folder Minus + - 5.0.2 + label: Ethereum search: - terms: - - archive - - delete - - directory - - document - - file - - negative - - remove + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f65d - voted: false -folder-open: + - brands + unicode: f42e + voted: true +ethernet: changes: - - '1' - - 5.0.0 - label: Folder Open + - 5.6.0 + - unreleased + label: Ethernet search: terms: - - archive - - directory - - document - - empty - - file - - new + - cable + - cat 5 + - cat 6 + - connection + - hardware + - internet + - network + - wired styles: - solid - regular - light - duotone - unicode: f07c - voted: false -folder-plus: + - thin + unicode: f796 + voted: true +etsy: changes: - - 5.3.0 - - 5.11.0 - - 5.12.1 - label: Folder Plus + - '4.7' + - 5.0.0 + label: Etsy search: - terms: - - add - - archive - - create - - directory - - document - - file - - new - - positive + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f65e + - brands + unicode: f2d7 voted: false -folder-times: +euro-sign: + aliases: + names: + - euro + - eur changes: - - 5.3.0 - label: Folder Times + - '3.2' + - 5.0.0 + - unreleased + label: Euro Sign search: terms: - - archive - - delete - - directory - - document - - file - - remove - - x + - currency + - dollar + - exchange + - money styles: - solid - regular - light - duotone - unicode: f65f + - thin + unicode: f153 voted: false -folder-tree: +evernote: changes: - - 5.7.0 - label: Folder Tree + - 5.8.0 + label: Evernote search: - terms: - - archive - - directory - - document - - file - - search - - structure + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f802 - voted: true -folder-upload: + - brands + unicode: f839 +exclamation: changes: - - 5.12.1 - label: Folder Upload + - '3.1' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: exclamation search: terms: - - archive - - directory - - document - - file - - save - - upload + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f954 + - thin + unicode: f12a voted: false -folders: +expand: changes: - - 5.3.0 - label: Folders + - 5.0.0 + - unreleased + label: Expand search: terms: - - archive - - copy - - directory - - document - - duplicate - - file + - bigger + - enlarge + - fullscreen + - resize styles: - solid - regular - light - duotone - unicode: f660 + - thin + unicode: f065 voted: false -font: +expand-wide: changes: - - '1' - 5.0.0 - - 5.9.0 - - 5.10.2 - label: font + - unreleased + label: Expand Wide search: terms: - - alphabet - - glyph - - text - - type - - typeface + - bigger + - enlarge + - fullscreen + - resize styles: - solid - regular - light - duotone - unicode: f031 - voted: false -font-awesome: - changes: - - '4.6' - - 5.0.0 - label: Font Awesome - search: - terms: - - meanpath - styles: - - brands - unicode: f2b4 + - thin + unicode: f320 voted: false -font-awesome-alt: +expeditedssl: changes: + - '4.4' - 5.0.0 - label: Alternate Font Awesome + label: ExpeditedSSL search: terms: [] styles: - brands - unicode: f35c + unicode: f23e voted: false -font-awesome-flag: +eye: changes: + - '1' - 5.0.0 - - 5.0.1 - label: Font Awesome Flag - search: - terms: [] - styles: - - brands - unicode: f425 - voted: false -font-awesome-logo-full: - changes: - - 5.0.11 - label: Font Awesome Full Logo - ligatures: - - Font Awesome - private: true + - 5.7.0 + - unreleased + label: Eye search: - terms: [] + terms: + - look + - optic + - see + - seen + - show + - sight + - views + - visible styles: - solid - regular - light - - brands - duotone - unicode: f4e6 + - thin + unicode: f06e voted: false -font-case: +eye-dropper: + aliases: + names: + - eye-dropper-empty + - eyedropper changes: - - 5.9.0 - label: Font Case + - '4.2' + - 5.0.0 + - 5.1.0 + - unreleased + label: Eye Dropper search: terms: - - alphabet - - glyph - - lowercase - - text - - type - - typeface - - uppercase + - beaker + - clone + - color + - copy + - eyedropper + - pipette styles: - solid - regular - light - duotone - unicode: f866 + - thin + unicode: f1fb voted: false -fonticons: +eye-dropper-full: changes: - - '4.4' - - 5.0.0 - label: Fonticons + - unreleased + label: Eye Dropper-full search: terms: [] styles: - - brands - unicode: f280 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -fonticons-fi: +eye-dropper-half: changes: - - 5.0.0 - label: Fonticons Fi + - unreleased + label: Eye Dropper-half search: terms: [] styles: - - brands - unicode: f3a2 - voted: false -football-ball: - changes: - - 5.0.5 - - 5.11.0 - - 5.11.1 - label: Football Ball - search: - terms: - - ball - - fall - - nfl - - pigskin - - seasonal - styles: + - duotone - solid - regular - light - - duotone - unicode: f44e + - thin + unicode: auto voted: false -football-helmet: +eye-evil: changes: - - 5.0.5 - label: Football Helmet + - 5.4.0 + - unreleased + label: Evil Eye search: terms: - - ball - - concussion - - fall - - nfl - - pigskin - - protection - - seasonal + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - sauron + - see + - seen + - show + - sight styles: - solid - regular - light - duotone - unicode: f44f + - thin + unicode: f6db voted: false -forklift: +eye-low-vision: + aliases: + names: + - low-vision changes: - - 5.0.7 - label: Forklift + - '4.6' + - 5.0.0 + - unreleased + label: Eye low vision search: terms: - - archive - - inventory - - lorry - - pallet - - shipping - - tractor - - warehouse + - blind + - eye + - sight styles: - solid - regular - light - duotone - unicode: f47a - voted: false -fort-awesome: - changes: - - '4.5' - - 5.0.0 - - 5.0.3 - label: Fort Awesome - search: - terms: - - castle - styles: - - brands - unicode: f286 - voted: false -fort-awesome-alt: - changes: - - 5.0.0 - label: Alternate Fort Awesome - search: - terms: - - castle - styles: - - brands - unicode: f3a3 - voted: false -forumbee: - changes: - - '4.3' - - 5.0.0 - label: Forumbee - search: - terms: [] - styles: - - brands - unicode: f211 + - thin + unicode: f2a8 voted: false -forward: +eye-slash: changes: - '1' - 5.0.0 - label: forward + - 5.7.0 + - unreleased + label: Eye Slash search: terms: - - forward - - next - - skip + - blind + - hide + - show + - toggle + - unseen + - views + - visible + - visiblity styles: - solid - regular - light - duotone - unicode: f04e + - thin + unicode: f070 voted: false -foursquare: +f: changes: - - '3.2' - - 5.0.0 - label: Foursquare + - unreleased + label: F search: terms: [] styles: - - brands - unicode: f180 - voted: false -fragile: - changes: - - 5.0.9 - label: Fragile - search: - terms: - - break - - broken - - delicate - - glass - styles: + - duotone - solid - regular - light - - duotone - unicode: f4bb - voted: false -free-code-camp: - changes: - - '4.7' - - 5.0.0 - - 5.12.0 - label: freeCodeCamp - search: - terms: [] - styles: - - brands - unicode: f2c5 - voted: false -freebsd: - changes: - - 5.0.0 - label: FreeBSD - search: - terms: [] - styles: - - brands - unicode: f3a4 + - thin + unicode: auto voted: false -french-fries: +face-angry: + aliases: + names: + - angry changes: - - 5.7.0 + - 5.1.0 - 5.11.0 - 5.11.1 - label: French Fries + - unreleased + label: Face angry search: terms: - - chips - - fast food - - fried - - ketchup - - potato - - poutine + - disapprove + - emoticon + - face + - mad + - upset styles: - solid - regular - light - duotone - unicode: f803 + - thin + unicode: f556 voted: false -frog: +face-dizzy: + aliases: + names: + - dizzy changes: - - 5.0.13 - label: Frog + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face dizzy search: terms: - - amphibian - - bullfrog - - fauna - - hop - - kermit - - kiss - - prince - - ribbit - - toad - - wart + - dazed + - dead + - disapprove + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f52e + - thin + unicode: f567 voted: false -frosty-head: +face-flushed: + aliases: + names: + - flushed changes: - - 5.6.0 - label: Frosty Head + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face flushed search: terms: - - carrot - - hat - - snowman - - winter + - embarrassed + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f79b -frown: + - thin + unicode: f579 + voted: false +face-frown: + aliases: + names: + - frown changes: - '3.1' - 5.0.0 @@ -15810,7 +17976,8 @@ frown: - 5.1.0 - 5.11.0 - 5.11.1 - label: Frowning Face + - unreleased + label: Face frown search: terms: - disapprove @@ -15823,14 +17990,19 @@ frown: - regular - light - duotone + - thin unicode: f119 voted: false -frown-open: +face-frown-open: + aliases: + names: + - frown-open changes: - 5.1.0 - 5.11.0 - 5.11.1 - label: Frowning Face With Open Mouth + - unreleased + label: Face frown open search: terms: - disapprove @@ -15843,7403 +18015,12054 @@ frown-open: - regular - light - duotone + - thin unicode: f57a voted: false -fulcrum: +face-grimace: + aliases: + names: + - grimace changes: - - 5.0.12 - - 5.8.0 - label: Fulcrum + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grimace search: - terms: [] + terms: + - cringe + - emoticon + - face + - teeth styles: - - brands - unicode: f50b + - solid + - regular + - light + - duotone + - thin + unicode: f57f voted: false -function: +face-grin: + aliases: + names: + - grin changes: - - 5.3.0 - label: Function + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin search: terms: - - math - - mathematics + - emoticon + - face + - laugh + - smile styles: - solid - regular - light - duotone - unicode: f661 + - thin + unicode: f580 voted: false -funnel-dollar: +face-grin-beam: + aliases: + names: + - grin-beam changes: - - 5.3.0 - label: Funnel Dollar + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin beam search: terms: - - filter - - money - - options - - separate - - sort + - emoticon + - face + - laugh + - smile styles: - solid - regular - light - duotone - unicode: f662 + - thin + unicode: f582 voted: false -futbol: +face-grin-beam-sweat: + aliases: + names: + - grin-beam-sweat changes: - - '4.2' - - 5.0.0 - - 5.0.5 - label: Futbol + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin beam sweat search: terms: - - ball - - football - - mls - - soccer + - embarass + - emoticon + - face + - smile styles: - solid - regular - light - duotone - unicode: f1e3 + - thin + unicode: f583 voted: false -galactic-republic: +face-grin-hearts: + aliases: + names: + - grin-hearts changes: - - 5.0.12 - label: Galactic Republic + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin hearts search: terms: - - politics - - star wars + - emoticon + - face + - love + - smile styles: - - brands - unicode: f50c + - solid + - regular + - light + - duotone + - thin + unicode: f584 voted: false -galactic-senate: +face-grin-squint: + aliases: + names: + - grin-squint changes: - - 5.0.12 - label: Galactic Senate + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin squint search: terms: - - star wars + - emoticon + - face + - laugh + - smile styles: - - brands - unicode: f50d + - solid + - regular + - light + - duotone + - thin + unicode: f585 voted: false -galaxy: +face-grin-squint-tears: + aliases: + names: + - grin-squint-tears changes: - - 5.12.0 - label: Galaxy + - 5.1.0 + - unreleased + label: Face grin squint tears search: terms: - - black hole - - cosmic - - nebula - - solar system - - space - - spiral - - universe + - emoticon + - face + - happy + - smile styles: - solid - regular - light - duotone - unicode: f908 + - thin + unicode: f586 voted: false -game-board: +face-grin-stars: + aliases: + names: + - grin-stars changes: - - 5.9.0 - label: Game Board + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin stars search: terms: - - checkers - - chess - - gaming - - grid - - tabletop + - emoticon + - face + - star-struck styles: - solid - regular - light - duotone - unicode: f867 + - thin + unicode: f587 voted: false -game-board-alt: +face-grin-tears: + aliases: + names: + - grin-tears changes: - - 5.9.0 - label: Alternate Game Board + - 5.1.0 + - unreleased + label: Face grin tears search: terms: - - checkers - - chess - - gaming - - grid - - tabletop + - LOL + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f868 + - thin + unicode: f588 voted: false -game-console-handheld: +face-grin-tongue: + aliases: + names: + - grin-tongue changes: + - 5.1.0 - 5.11.0 - label: Handheld Game Console + - 5.11.1 + - unreleased + label: Face grin tongue search: terms: - - cartridge - - gameboy - - nintendo - - retro - - video games - - vintage + - LOL + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f8bb + - thin + unicode: f589 voted: false -gamepad: +face-grin-tongue-squint: + aliases: + names: + - grin-tongue-squint changes: - - '3.1' - - 5.0.0 + - 5.1.0 - 5.11.0 - label: Gamepad + - 5.11.1 + - unreleased + label: Face grin tongue squint search: terms: - - arcade - - controller - - d-pad - - joystick - - video - - video game + - LOL + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f11b + - thin + unicode: f58a voted: false -gamepad-alt: +face-grin-tongue-wink: + aliases: + names: + - grin-tongue-wink changes: + - 5.1.0 - 5.11.0 - label: Alternate Gamepad + - 5.11.1 + - 5.12.0 + - unreleased + label: Face grin tongue wink search: terms: - - arcade - - controller - - d-pad - - joystick - - video - - video game + - LOL + - emoticon + - face styles: - solid - regular - light - duotone - unicode: f8bc + - thin + unicode: f58b voted: false -garage: +face-grin-wide: + aliases: + names: + - grin-alt changes: - - 5.12.0 - label: Garage + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin wide search: terms: - - auto - - car - - door - - storage - - structure - - warehouse + - emoticon + - face + - laugh + - smile styles: - solid - regular - light - duotone - unicode: f909 + - thin + unicode: f581 voted: false -garage-car: +face-grin-wink: + aliases: + names: + - grin-wink changes: - - 5.12.0 - label: Garage Car + - 5.1.0 + - 5.1.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face grin wink search: terms: - - auto - - car - - door - - storage - - structure - - warehouse + - emoticon + - face + - flirt + - laugh + - smile styles: - solid - regular - light - duotone - unicode: f90a + - thin + unicode: f58c voted: false -garage-open: +face-kiss: + aliases: + names: + - kiss changes: - - 5.12.0 - label: Garage Open + - 5.1.0 + - 5.1.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face kiss search: terms: - - auto - - car - - door - - storage - - structure - - warehouse + - beso + - emoticon + - face + - love + - smooch styles: - solid - regular - light - duotone - unicode: f90b + - thin + unicode: f596 voted: false -gas-pump: +face-kiss-beam: + aliases: + names: + - kiss-beam changes: - - 5.0.13 - - 5.10.1 - label: Gas Pump + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face kiss beam search: terms: - - car - - fuel - - gasoline - - petrol + - beso + - emoticon + - face + - love + - smooch styles: - solid - regular - light - duotone - unicode: f52f - voted: true -gas-pump-slash: + - thin + unicode: f597 + voted: false +face-kiss-wink-heart: + aliases: + names: + - kiss-wink-heart changes: - - 5.2.0 - label: Gas Pump Slash + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face kiss wink heart search: terms: - - car - - empty - - fuel - - gasoline - - petrol + - beso + - emoticon + - face + - love + - smooch styles: - solid - regular - light - duotone - unicode: f5f4 - voted: true -gavel: + - thin + unicode: f598 + voted: false +face-laugh: + aliases: + names: + - laugh changes: - - '2' - - 5.0.0 - label: Gavel + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face laugh search: terms: - - hammer - - judge - - law - - lawyer - - opinion + - LOL + - emoticon + - face + - laugh + - smile styles: - solid - regular - light - duotone - unicode: f0e3 + - thin + unicode: f599 voted: false -gem: +face-laugh-beam: + aliases: + names: + - laugh-beam changes: - - 5.0.0 - - 5.10.1 - label: Gem + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face laugh beam search: terms: - - diamond - - jewelry - - sapphire - - stone - - treasure + - LOL + - emoticon + - face + - happy + - smile styles: - solid - regular - light - duotone - unicode: f3a5 + - thin + unicode: f59a voted: false -genderless: +face-laugh-squint: + aliases: + names: + - laugh-squint changes: - - '4.4' - - 5.0.0 + - 5.1.0 - 5.11.0 - 5.11.1 - label: Genderless + - unreleased + label: Face laugh squint search: terms: - - androgynous - - asexual - - sexless + - LOL + - emoticon + - face + - happy + - smile styles: - solid - regular - light - duotone - unicode: f22d + - thin + unicode: f59b voted: false -get-pocket: +face-laugh-wink: + aliases: + names: + - laugh-wink changes: - - '4.4' - - 5.0.0 - label: Get Pocket + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face laugh wink search: - terms: [] + terms: + - LOL + - emoticon + - face + - happy + - smile styles: - - brands - unicode: f265 + - solid + - regular + - light + - duotone + - thin + unicode: f59c voted: false -gg: +face-meh: + aliases: + names: + - meh changes: - - '4.4' + - '3.1' - 5.0.0 - label: GG Currency + - 5.0.9 + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face meh search: - terms: [] + terms: + - emoticon + - face + - neutral + - rating styles: - - brands - unicode: f260 + - solid + - regular + - light + - duotone + - thin + unicode: f11a voted: false -gg-circle: +face-meh-blank: + aliases: + names: + - meh-blank changes: - - '4.4' - - 5.0.0 - label: GG Currency Circle + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face meh blank search: - terms: [] + terms: + - emoticon + - face + - neutral + - rating styles: - - brands - unicode: f261 + - solid + - regular + - light + - duotone + - thin + unicode: f5a4 voted: false -ghost: +face-rolling-eyes: + aliases: + names: + - meh-rolling-eyes changes: - - 5.4.0 - label: Ghost + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face rolling eyes search: terms: - - apparition - - blinky - - clyde - - floating - - halloween - - holiday - - inky - - pinky - - spirit + - emoticon + - face + - neutral + - rating styles: - solid - regular - light - duotone - unicode: f6e2 + - thin + unicode: f5a5 voted: false -gift: +face-sad-cry: + aliases: + names: + - sad-cry changes: - - '1' - - 5.0.0 - - 5.0.9 - - 5.6.0 - label: gift + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face sad cry search: terms: - - christmas - - generosity - - giving - - holiday - - party - - present - - wrapped - - xmas + - emoticon + - face + - tear + - tears styles: - solid - regular - light - duotone - unicode: f06b + - thin + unicode: f5b3 voted: false -gift-card: +face-sad-tear: + aliases: + names: + - sad-tear changes: - - 5.3.0 - label: Gift Card + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face sad tear search: terms: - - christmas - - generosity - - giving - - holiday - - money - - party - - present - - wrapped - - xmas + - emoticon + - face + - tear + - tears styles: - solid - regular - light - duotone - unicode: f663 + - thin + unicode: f5b4 voted: false -gifts: +face-smile: + aliases: + names: + - smile changes: - - 5.6.0 - label: Gifts + - '3.1' + - 5.0.0 + - 5.0.9 + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face smile search: terms: - - christmas - - generosity - - giving - - holiday - - party - - present - - wrapped - - xmas + - approve + - emoticon + - face + - happy + - rating + - satisfied styles: - solid - regular - light - duotone - unicode: f79c -gingerbread-man: + - thin + unicode: f118 + voted: false +face-smile-beam: + aliases: + names: + - smile-beam changes: - - 5.6.0 - label: Gingerbread Man + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face smile beam search: terms: - - cookie - - decoration - - frosting - - holiday + - emoticon + - face + - happy + - positive styles: - solid - regular - light - duotone - unicode: f79d -git: + - thin + unicode: f5b8 + voted: false +face-smile-plus: + aliases: + names: + - smile-plus changes: - - '4.1' - - 5.0.0 - - 5.8.2 - label: Git + - 5.0.9 + - 5.1.0 + - unreleased + label: Face smile plus search: - terms: [] + terms: + - add + - emoticon + - face + - happy + - new styles: - - brands - unicode: f1d3 + - solid + - regular + - light + - duotone + - thin + unicode: f5b9 voted: false -git-alt: +face-smile-wink: + aliases: + names: + - smile-wink changes: - - 5.8.2 - label: Git Alt + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face smile wink search: - terms: [] + terms: + - emoticon + - face + - happy + - hint + - joke styles: - - brands - unicode: f841 -git-square: + - solid + - regular + - light + - duotone + - thin + unicode: f4da + voted: false +face-surprise: + aliases: + names: + - surprise changes: - - '4.1' - - 5.0.0 - - 5.8.2 - label: Git Square + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face surprise search: - terms: [] + terms: + - emoticon + - face + - shocked styles: - - brands - unicode: f1d2 + - solid + - regular + - light + - duotone + - thin + unicode: f5c2 voted: false -github: +face-tired: + aliases: + names: + - tired changes: - - '2' - - 5.0.0 - label: GitHub + - 5.1.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Face tired search: terms: - - octocat + - angry + - emoticon + - face + - grumpy + - upset styles: - - brands - unicode: f09b + - solid + - regular + - light + - duotone + - thin + unicode: f5c8 voted: false -github-alt: +facebook: changes: - - '3' + - '2' - 5.0.0 - label: Alternate GitHub + - 5.8.2 + label: Facebook search: terms: - - octocat + - facebook-official + - social network styles: - brands - unicode: f113 + unicode: f09a voted: false -github-square: +facebook-f: changes: - - '1' - 5.0.0 - label: GitHub Square + - 5.8.2 + label: Facebook F search: terms: - - octocat + - facebook styles: - brands - unicode: f092 + unicode: f39e voted: false -gitkraken: +facebook-messenger: changes: - 5.0.0 - label: GitKraken + - 5.8.2 + - 5.9.0 + label: Facebook Messenger search: terms: [] styles: - brands - unicode: f3a6 + unicode: f39f voted: false -gitlab: +facebook-square: changes: - - '4.6' + - '1' - 5.0.0 - - 5.7.0 - label: GitLab + - 5.8.2 + label: Facebook Square search: terms: - - Axosoft - styles: - - brands - unicode: f296 - voted: false -gitter: - changes: - - 5.0.0 - label: Gitter - search: - terms: [] + - social network styles: - brands - unicode: f426 + unicode: f082 voted: false -glass: +fan: changes: - - 5.7.0 - label: Glass + - 5.9.0 + - 5.10.1 + - unreleased + label: Fan search: terms: - - alcohol - - beverage - - drink - - glass - - water + - ac + - air conditioning + - blade + - blower + - cool + - hot styles: - solid - regular - light - duotone - unicode: f804 + - thin + unicode: f863 voted: true -glass-champagne: +fan-table: changes: - - 5.6.0 - label: Glass Champagne + - 5.12.0 + - 5.14.0 + - unreleased + label: Fan Table search: terms: - - alcohol - - bar - - beverage - - celebration - - champagne - - drink - - holiday - - party + - ac + - air conditioning + - blade + - blower + - cool + - hot + - oscillate styles: - solid - regular - light - duotone - unicode: f79e -glass-cheers: + - thin + unicode: e004 + voted: false +fantasy-flight-games: changes: - - 5.6.0 - label: Glass Cheers + - 5.4.0 + label: Fantasy Flight-games search: terms: - - alcohol - - bar - - beverage - - celebration - - champagne - - clink - - drink - - holiday - - new year's eve - - party - - toast + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - game + - gaming + - tabletop styles: - - solid - - regular - - light - - duotone - unicode: f79f -glass-citrus: + - brands + unicode: f6dc + voted: false +farm: + aliases: + names: + - barn-silo changes: - 5.9.0 - label: Glass Citrus + - unreleased + label: Farm search: terms: - - cocktail - - drink - - lemonade - - refreshing - - water + - agriculture + - barn + - dairy + - farming + - ranch + - silo styles: - solid - regular - light - duotone - unicode: f869 + - thin + unicode: f864 voted: false -glass-martini: +faucet: changes: - - '1' - - 5.0.0 - - 5.1.0 - - 5.10.1 - label: Martini Glass + - 5.12.0 + - 5.14.0 + - unreleased + label: Faucet search: terms: - - alcohol - - bar - - beverage - - drink - - liquor + - covid-19 + - drip + - house + - hygiene + - kitchen + - sink + - water styles: - solid - regular - light - duotone - unicode: f000 + - thin + unicode: e005 voted: false -glass-martini-alt: +faucet-drip: changes: - - 5.1.0 - label: Alternate Glass Martini + - 5.12.0 + - 5.14.0 + - unreleased + label: Faucet Drip search: terms: - - alcohol - - bar - - beverage - - drink - - liquor + - drip + - house + - kitchen + - sink + - water styles: - solid - regular - light - duotone - unicode: f57b + - thin + unicode: e006 voted: false -glass-whiskey: +fax: changes: - - 5.6.0 - label: Glass Whiskey + - '4.1' + - 5.0.0 + - 5.3.0 + - 5.11.0 + - unreleased + label: Fax search: terms: - - alcohol - - bar - - beverage - - bourbon - - drink - - liquor - - neat - - rye - - scotch - - whisky + - business + - communicate + - copy + - facsimile + - send styles: - solid - regular - light - duotone - unicode: f7a0 -glass-whiskey-rocks: + - thin + unicode: f1ac + voted: false +feather: changes: - - 5.6.0 - label: Glass Whiskey-rocks + - 5.0.13 + - 5.1.0 + - unreleased + label: Feather search: terms: - - alcohol - - bar - - beverage - - bourbon - - drink - - ice - - liquor - - rye - - scotch - - whisky + - bird + - light + - plucked + - quill + - write styles: - solid - regular - light - duotone - unicode: f7a1 -glasses: + - thin + unicode: f52d + voted: true +feather-pointed: + aliases: + names: + - feather-alt changes: - - 5.0.13 - label: Glasses + - 5.1.0 + - unreleased + label: Feather pointed search: terms: - - hipster - - nerd - - reading - - sight - - spectacles - - vision + - bird + - light + - plucked + - quill + - write styles: - solid - regular - light - duotone - unicode: f530 + - thin + unicode: f56b voted: true -glasses-alt: +fedex: changes: - - 5.2.0 - label: Alternate Glasses + - 5.6.0 + label: FedEx search: terms: - - hipster - - nerd - - reading - - sight - - spectacles - - vision + - Federal Express + - package + - shipping styles: - - solid - - regular - - light - - duotone - unicode: f5f5 - voted: false -glide: + - brands + unicode: f797 +fedora: changes: - - '4.6' - - 5.0.0 - label: Glide + - 5.6.0 + - 5.6.3 + - 5.8.0 + label: Fedora search: - terms: [] + terms: + - linux + - operating system + - os styles: - brands - unicode: f2a5 + unicode: f798 + voted: true +field-hockey-stick-ball: + aliases: + names: + - field-hockey + changes: + - 5.0.5 + - unreleased + label: Field hockey stick ball + search: + terms: + - ball + - sport + - stick + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f44c voted: false -glide-g: +figma: changes: - - '4.6' - - 5.0.0 - label: Glide G + - 5.6.0 + - 5.7.0 + - 5.8.0 + label: Figma search: - terms: [] + terms: + - app + - design + - interface styles: - brands - unicode: f2a6 + unicode: f799 voted: false -globe: +file: changes: - - '2' + - '3.2' - 5.0.0 - - 5.0.9 - - 5.11.0 - - 5.11.1 - label: Globe + - 5.10.1 + - 5.10.2 + - unreleased + label: File search: terms: - - all - - coordinates - - country - - earth - - global - - gps - - language - - localize - - location - - map - - online - - place - - planet - - translate - - travel - - world + - document + - new + - page + - pdf + - resume styles: - solid - regular - light - duotone - unicode: f0ac + - thin + unicode: f15b voted: false -globe-africa: +file-arrow-down: + aliases: + names: + - file-download changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Globe with Africa shown + - 5.10.2 + - unreleased + label: File arrow down search: terms: - - all - - country - - earth - - global - - gps - - language - - localize - - location - - map - - online - - place - - planet - - translate - - travel - - world + - document + - export + - save styles: - solid - regular - light - duotone - unicode: f57c - voted: false -globe-americas: + - thin + unicode: f56d + voted: true +file-arrow-up: + aliases: + names: + - file-upload changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Globe with Americas shown + - 5.10.2 + - unreleased + label: File arrow up search: terms: - - all - - country - - earth - - global - - gps - - language - - localize - - location - - map - - online - - place - - planet - - translate - - travel - - world + - document + - import + - page + - save styles: - solid - regular - light - duotone - unicode: f57d - voted: false -globe-asia: + - thin + unicode: f574 + voted: true +file-audio: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Globe with Asia shown + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Audio File search: terms: - - all - - country - - earth - - global - - gps - - language - - localize - - location - - map - - online - - place - - planet - - translate - - travel - - world + - document + - mp3 + - music + - page + - play + - sound styles: - solid - regular - light - duotone - unicode: f57e + - thin + unicode: f1c7 voted: false -globe-europe: +file-certificate: + aliases: + names: + - file-award changes: - - 5.6.0 - - 5.11.0 - - 5.11.1 - label: Globe with Europe shown + - 5.2.0 + - 5.10.2 + - unreleased + label: File Certificate search: terms: - - all - - country - - earth - - global - - gps - - language - - localize - - location - - map - - online - - place - - planet - - translate - - travel - - world + - award + - diploma + - document + - license styles: - solid - regular - light - duotone - unicode: f7a2 - voted: true -globe-snow: + - thin + unicode: f5f3 + voted: false +file-chart-column: + aliases: + names: + - file-chart-line changes: - - 5.6.0 - label: Globe Snow + - 5.3.0 + - 5.10.2 + - unreleased + label: File chart column search: terms: - - diorama - - scene - - seasonal - - shake - - souvenir - - winter + - analytics + - data + - document + - projection + - report styles: - solid - regular - light - duotone - unicode: f7a3 -globe-stand: + - thin + unicode: f659 + voted: false +file-chart-pie: changes: - - 5.2.0 - - 5.10.1 - label: Globe Stand + - 5.3.0 + - 5.10.2 + - unreleased + label: Pie Chart File search: terms: - - earth - - geography - - global - - localize - - location - - map - - travel - - world + - analytics + - data + - document + - projection + - report styles: - solid - regular - light - duotone - unicode: f5f6 + - thin + unicode: f65a voted: false -gofore: +file-check: changes: - 5.0.0 - label: Gofore - search: - terms: [] - styles: - - brands - unicode: f3a7 - voted: false -golf-ball: - changes: - - 5.0.5 - label: Golf Ball + - 5.10.2 + - unreleased + label: Check File search: terms: - - caddy - - eagle - - putt - - tee + - accept + - agree + - confirm + - document + - done + - ok + - select + - success + - synced + - tick + - todo styles: - solid - regular - light - duotone - unicode: f450 + - thin + unicode: f316 voted: false -golf-club: +file-code: changes: - - 5.0.5 - label: Golf Club + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Code File search: terms: - - caddy - - eagle - - putt - - tee + - css + - development + - document + - html styles: - solid - regular - light - duotone - unicode: f451 - voted: false -goodreads: - changes: - - 5.0.0 - label: Goodreads - search: - terms: [] - styles: - - brands - unicode: f3a8 - voted: false -goodreads-g: - changes: - - 5.0.0 - label: Goodreads G - search: - terms: [] - styles: - - brands - unicode: f3a9 - voted: false -google: - changes: - - '4.1' - - 5.0.0 - label: Google Logo - search: - terms: [] - styles: - - brands - unicode: f1a0 - voted: false -google-drive: - changes: - - 5.0.0 - label: Google Drive - search: - terms: [] - styles: - - brands - unicode: f3aa - voted: false -google-pay: - changes: - - 5.13.1 - label: Google Pay - search: - terms: [] - styles: - - brands - unicode: f979 - voted: false -google-play: - changes: - - 5.0.0 - label: Google Play - search: - terms: [] - styles: - - brands - unicode: f3ab + - thin + unicode: f1c9 voted: false -google-plus: +file-contract: changes: - - '4.6' - - 5.0.0 - - 5.13.1 - label: Google Plus + - 5.1.0 + - 5.10.2 + - unreleased + label: File Contract search: terms: - - google-plus-circle - - google-plus-official + - agreement + - binding + - document + - legal + - signature styles: - - brands - unicode: f2b3 + - solid + - regular + - light + - duotone + - thin + unicode: f56c voted: false -google-plus-g: +file-csv: changes: - - '2' - - 5.0.0 - label: Google Plus G + - 5.4.0 + - 5.10.2 + - unreleased + label: File CSV search: terms: - - google-plus - - social network + - document + - excel + - numbers + - spreadsheets + - table styles: - - brands - unicode: f0d5 + - solid + - regular + - light + - duotone + - thin + unicode: f6dd voted: false -google-plus-square: +file-dashed-line: + aliases: + names: + - page-break changes: - - '2' - - 5.0.0 - label: Google Plus Square + - 5.9.0 + - unreleased + label: File dashed line search: terms: - - social network + - begin + - divide + - edit + - end + - format + - split styles: - - brands - unicode: f0d4 + - solid + - regular + - light + - duotone + - thin + unicode: f877 voted: false -google-wallet: +file-excel: changes: - - '4.2' + - '4.1' - 5.0.0 - label: Google Wallet - search: - terms: [] - styles: - - brands - unicode: f1ee - voted: false -gopuram: - changes: - - 5.3.0 - - 5.7.0 - - 5.11.0 - label: Gopuram + - 5.10.2 + - unreleased + label: Excel File search: terms: - - building - - entrance - - hinduism - - temple - - tower + - csv + - document + - numbers + - spreadsheets + - table styles: - solid - regular - light - duotone - unicode: f664 + - thin + unicode: f1c3 voted: false -graduation-cap: +file-exclamation: changes: - - '4.1' - 5.0.0 - - 5.2.0 - - 5.10.1 - label: Graduation Cap + - 5.10.2 + - unreleased + label: Exclamation File search: terms: - - ceremony - - college - - graduate - - learning - - school - - student + - alert + - document + - important + - page styles: - solid - regular - light - duotone - unicode: f19d + - thin + unicode: f31a voted: false -gramophone: +file-export: + aliases: + names: + - arrow-right-from-file changes: - - 5.11.0 - label: Gramophone + - 5.1.0 + - 5.7.0 + - 5.10.2 + - unreleased + label: File Export search: terms: - - award - - grammy - - music - - phonograph - - record - - turntable - - victrola + - download + - save styles: - solid - regular - light - duotone - unicode: f8bd - voted: false -gratipay: + - thin + unicode: f56e + voted: true +file-heart: changes: - - '3.2' - - 5.0.0 - label: Gratipay (Gittip) + - unreleased + label: File Heart search: - terms: - - favorite - - heart - - like - - love + terms: [] styles: - - brands - unicode: f184 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -grav: +file-image: changes: - - '4.7' + - '4.1' - 5.0.0 - label: Grav + - 5.10.2 + - unreleased + label: Image File search: - terms: [] + terms: + - document + - image + - jpg + - photo + - png styles: - - brands - unicode: f2d6 + - solid + - regular + - light + - duotone + - thin + unicode: f1c5 voted: false -greater-than: +file-import: + aliases: + names: + - arrow-right-to-file changes: - - 5.0.13 - label: Greater Than + - 5.1.0 + - 5.7.0 + - 5.10.2 + - unreleased + label: File Import search: terms: - - arithmetic - - compare - - math + - copy + - document + - send + - upload styles: - solid - regular - light - duotone - unicode: f531 + - thin + unicode: f56f voted: true -greater-than-equal: +file-invoice: changes: - - 5.0.13 - label: Greater Than Equal To + - 5.1.0 + - 5.10.2 + - unreleased + label: File Invoice search: terms: - - arithmetic - - compare - - math + - account + - bill + - charge + - document + - payment + - receipt styles: - solid - regular - light - duotone - unicode: f532 + - thin + unicode: f570 voted: true -grimace: +file-invoice-dollar: changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grimacing Face + - 5.10.2 + - unreleased + label: File Invoice with US Dollar search: terms: - - cringe - - emoticon - - face - - teeth + - $ + - account + - bill + - charge + - document + - dollar-sign + - money + - payment + - receipt + - usd styles: - solid - regular - light - duotone - unicode: f57f - voted: false -grin: + - thin + unicode: f571 + voted: true +file-lines: + aliases: + names: + - file-alt + - file-text changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grinning Face + - '3.2' + - 5.0.0 + - 5.10.2 + - unreleased + label: File lines search: terms: - - emoticon - - face - - laugh - - smile + - document + - file-text + - invoice + - new + - page + - pdf styles: - solid - regular - light - duotone - unicode: f580 + - thin + unicode: f15c voted: false -grin-alt: +file-magnifying-glass: + aliases: + names: + - file-search changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Alternate Grinning Face + - 5.9.0 + - 5.10.2 + - unreleased + label: File magnifying glass search: terms: - - emoticon - - face - - laugh - - smile + - document + - find + - look + - scan styles: - solid - regular - light - duotone - unicode: f581 - voted: false -grin-beam: + - thin + unicode: f865 + voted: true +file-medical: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grinning Face With Smiling Eyes + - 5.0.7 + - 5.10.2 + - unreleased + label: Medical File search: terms: - - emoticon - - face - - laugh - - smile + - document + - health + - history + - prescription + - record styles: - solid - regular - light - duotone - unicode: f582 + - thin + unicode: f477 voted: false -grin-beam-sweat: +file-minus: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grinning Face With Sweat + - 5.0.0 + - 5.10.2 + - 5.12.1 + - unreleased + label: Minus File search: terms: - - embarass - - emoticon - - face - - smile + - delete + - document + - negative + - remove styles: - solid - regular - light - duotone - unicode: f583 + - thin + unicode: f318 voted: false -grin-hearts: +file-music: changes: - - 5.1.0 - 5.11.0 - - 5.11.1 - label: Smiling Face With Heart-Eyes + - unreleased + label: File Music search: terms: - - emoticon - - face - - love - - smile + - aac + - aif + - audio + - midi + - mp3 + - ogg + - sheet music + - wav + - wma styles: - solid - regular - light - duotone - unicode: f584 + - thin + unicode: f8b6 voted: false -grin-squint: +file-pdf: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grinning Squinting Face + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: PDF File search: terms: - - emoticon - - face - - laugh - - smile + - acrobat + - document + - preview + - save styles: - solid - regular - light - duotone - unicode: f585 + - thin + unicode: f1c1 voted: false -grin-squint-tears: +file-pen: + aliases: + names: + - file-edit changes: - - 5.1.0 - label: Rolling on the Floor Laughing + - 5.0.0 + - 5.10.2 + - unreleased + label: File pen search: terms: - - emoticon - - face - - happy - - smile + - edit + - pen + - pencil + - update + - write styles: - solid - regular - light - duotone - unicode: f586 + - thin + unicode: f31c voted: false -grin-stars: +file-plus: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Star-Struck - search: + - 5.0.0 + - 5.10.2 + - 5.12.1 + - unreleased + label: Plus File + search: terms: - - emoticon - - face - - star-struck + - add + - create + - document + - medical + - new + - positive styles: - solid - regular - light - duotone - unicode: f587 + - thin + unicode: f319 voted: false -grin-tears: +file-powerpoint: changes: - - 5.1.0 - label: Face With Tears of Joy + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Powerpoint File search: terms: - - LOL - - emoticon - - face + - display + - document + - keynote + - presentation styles: - solid - regular - light - duotone - unicode: f588 + - thin + unicode: f1c4 voted: false -grin-tongue: +file-prescription: changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Face With Tongue + - 5.10.2 + - unreleased + label: File Prescription search: terms: - - LOL - - emoticon - - face + - document + - drugs + - medical + - medicine + - rx styles: - solid - regular - light - duotone - unicode: f589 + - thin + unicode: f572 voted: false -grin-tongue-squint: +file-signature: changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Squinting Face With Tongue + - 5.10.2 + - unreleased + label: File Signature search: terms: - - LOL - - emoticon - - face + - John Hancock + - contract + - document + - name styles: - solid - regular - light - duotone - unicode: f58a - voted: false -grin-tongue-wink: + - thin + unicode: f573 + voted: true +file-spreadsheet: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - - 5.12.0 - label: Winking Face With Tongue + - 5.3.0 + - 5.10.2 + - unreleased + label: Spreadsheet File search: terms: - - LOL - - emoticon - - face + - csv + - document + - excel + - numbers + - sheets + - xls styles: - solid - regular - light - duotone - unicode: f58b + - thin + unicode: f65b voted: false -grin-wink: +file-user: changes: - - 5.1.0 - - 5.1.1 - - 5.11.0 - - 5.11.1 - label: Grinning Winking Face + - 5.3.0 + - 5.10.2 + - unreleased + label: User File search: terms: - - emoticon - - face - - flirt - - laugh - - smile + - account + - document + - page + - personnel + - profile + - resume styles: - solid - regular - light - duotone - unicode: f58c - voted: false -grip-horizontal: + - thin + unicode: f65c + voted: true +file-video: changes: - - 5.1.0 - label: Grip Horizontal + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Video File search: terms: - - affordance - - drag - - drop - - grab - - handle + - document + - m4v + - movie + - mp4 + - play styles: - solid - regular - light - duotone - unicode: f58d - voted: true -grip-lines: + - thin + unicode: f1c8 + voted: false +file-waveform: + aliases: + names: + - file-medical-alt changes: - - 5.6.0 - label: Grip Lines + - 5.0.7 + - 5.10.2 + - unreleased + label: File waveform search: terms: - - affordance - - drag - - drop - - grab - - handle + - document + - health + - history + - prescription + - record styles: - solid - regular - light - duotone - unicode: f7a4 - voted: true -grip-lines-vertical: + - thin + unicode: f478 + voted: false +file-word: changes: - - 5.6.0 - - 5.11.0 - - 5.11.1 - label: Grip Lines Vertical + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Word File search: terms: - - affordance - - drag - - drop - - grab - - handle + - document + - edit + - page + - text + - writing styles: - solid - regular - light - duotone - unicode: f7a5 - voted: true -grip-vertical: + - thin + unicode: f1c2 + voted: false +file-xmark: + aliases: + names: + - file-times changes: - - 5.1.0 - label: Grip Vertical + - 5.0.0 + - 5.10.2 + - 5.12.1 + - unreleased + label: File xmark search: terms: - - affordance - - drag - - drop - - grab - - handle + - archive + - delete + - document + - remove + - x styles: - solid - regular - light - duotone - unicode: f58e - voted: true -gripfire: + - thin + unicode: f317 + voted: false +file-zipper: + aliases: + names: + - file-archive changes: + - '4.1' - 5.0.0 - label: 'Gripfire, Inc.' + - 5.7.0 + - 5.10.2 + - unreleased + label: File zipper search: - terms: [] + terms: + - .zip + - bundle + - compress + - compression + - download + - zip styles: - - brands - unicode: f3ac + - solid + - regular + - light + - duotone + - thin + unicode: f1c6 voted: false -grunt: +files: changes: - - 5.0.0 - label: Grunt + - unreleased + label: Files search: terms: [] styles: - - brands - unicode: f3ad + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -guitar: +files-medical: changes: - - 5.6.0 - - 5.11.0 - label: Guitar + - 5.7.0 + - 5.10.2 + - unreleased + label: Medical Files search: terms: - - acoustic - - instrument - - music - - rock - - rock and roll - - song - - strings + - document + - health + - history + - prescription + - record styles: - solid - regular - light - duotone - unicode: f7a6 - voted: true -guitar-electric: + - thin + unicode: f7fd + voted: false +fill: changes: - - 5.11.0 - label: Guitar Electric + - 5.1.0 + - unreleased + label: Fill search: terms: - - axe - - instrument - - music - - rock - - rock and roll - - song - - strings + - bucket + - color + - paint + - paint bucket styles: - solid - regular - light - duotone - unicode: f8be + - thin + unicode: f575 voted: false -guitars: +fill-drip: changes: - - 5.11.0 - label: Guitars + - 5.1.0 + - unreleased + label: Fill Drip search: terms: - - acoustic - - axes - - electric - - instrument - - music - - rock - - rock and roll - - song - - strings + - bucket + - color + - drop + - paint + - paint bucket + - spill styles: - solid - regular - light - duotone - unicode: f8bf - voted: false -gulp: - changes: - - 5.0.0 - label: Gulp - search: - terms: [] - styles: - - brands - unicode: f3ae + - thin + unicode: f576 voted: false -h-square: +film: changes: - - '3' + - '1' - 5.0.0 - label: H Square + - unreleased + label: Film search: terms: - - directions - - emergency - - hospital - - hotel - - map + - cinema + - movie + - strip + - video styles: - solid - regular - light - duotone - unicode: f0fd + - thin + unicode: f008 voted: false -h1: +film-canister: changes: - - 5.0.0 - - 5.9.0 - label: H1 Heading + - 5.11.0 + - 5.11.2 + - unreleased + label: Film Canister search: terms: - - format - - header - - text - - title + - 110 + - 35mm + - darkroom + - develop + - image + - photo + - photography + - retro + - vintage styles: - solid - regular - light - duotone - unicode: f313 + - thin + unicode: f8b7 voted: false -h2: +film-simple: + aliases: + names: + - film-alt changes: - 5.0.0 - - 5.9.0 - label: H2 Heading + - unreleased + label: Film simple search: terms: - - format - - header - - text - - title + - cinema + - movie + - strip + - video styles: - solid - regular - light - duotone - unicode: f314 + - thin + unicode: f3a0 voted: false -h3: +films: changes: - - 5.0.0 - - 5.9.0 - label: H3 Heading + - unreleased + label: Films search: - terms: - - format - - header - - text - - title + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f315 + - thin + unicode: auto voted: false -h4: +filter: changes: - - 5.9.0 - label: H4 + - '2' + - 5.0.0 + - 5.10.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Filter search: terms: - - format - - header - - text - - title + - funnel + - options + - separate + - sort styles: - solid - regular - light - duotone - unicode: f86a + - thin + unicode: f0b0 voted: false -hacker-news: +filter-list: changes: - - '4.1' - - 5.0.0 - label: Hacker News + - unreleased + label: Filter List search: terms: [] styles: - - brands - unicode: f1d4 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -hacker-news-square: +filters: changes: - - 5.0.0 - label: Hacker News Square + - unreleased + label: Filters search: terms: [] styles: - - brands - unicode: f3af + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -hackerrank: +fingerprint: changes: - - 5.2.0 - - 5.8.0 - label: Hackerrank + - 5.1.0 + - unreleased + label: Fingerprint search: - terms: [] + terms: + - human + - id + - identification + - lock + - smudge + - touch + - unique + - unlock styles: - - brands - unicode: f5f7 + - solid + - regular + - light + - duotone + - thin + unicode: f577 voted: true -hamburger: +fire: changes: - - 5.7.0 - label: Hamburger + - '1' + - 5.0.0 + - 5.6.0 + - 5.6.3 + - 5.10.1 + - unreleased + label: fire search: terms: - - bacon - - beef - - burger - - burger king - - cheeseburger - - fast food - - grill - - ground beef - - mcdonalds - - sandwich + - burn + - caliente + - flame + - heat + - hot + - popular styles: - solid - regular - light - duotone - unicode: f805 + - thin + unicode: f06d voted: false -hammer: +fire-extinguisher: changes: - - 5.4.0 - label: Hammer + - '3.1' + - 5.0.0 + - unreleased + label: fire-extinguisher search: terms: - - admin - - fix - - repair - - settings - - tool + - burn + - caliente + - fire fighter + - flame + - heat + - hot + - rescue styles: - solid - regular - light - duotone - unicode: f6e3 - voted: true -hammer-war: + - thin + unicode: f134 + voted: false +fire-flame: + aliases: + names: + - flame changes: - 5.4.0 - - 5.10.1 - label: Hammer War + - 5.11.0 + - unreleased + label: Fire flame search: terms: - Dungeons & Dragons - - cleric + - caliente - d&d - dnd - - dwarf - fantasy - - melee attack - - weapon + - heat + - hot styles: - solid - regular - light - duotone - unicode: f6e4 + - thin + unicode: f6df voted: false -hamsa: +fire-flame-curved: + aliases: + names: + - fire-alt changes: - - 5.3.0 - label: Hamsa + - 5.6.3 + - unreleased + label: Fire flame curved search: terms: - - amulet - - christianity - - islam - - jewish - - judaism - - muslim - - protection + - burn + - caliente + - flame + - heat + - hot + - popular styles: - solid - regular - light - duotone - unicode: f665 - voted: false -hand-heart: + - thin + unicode: f7e4 +fire-flame-simple: + aliases: + names: + - burn changes: - - 5.0.9 - label: Hand with Heart + - 5.0.7 + - unreleased + label: Fire flame simple search: terms: - - care - - charity - - donate - - help - styles: + - caliente + - energy + - fire + - flame + - gas + - heat + - hot + styles: - solid - regular - light - duotone - unicode: f4bc + - thin + unicode: f46a voted: false -hand-holding: +fire-smoke: changes: - - 5.0.9 - label: Hand Holding + - 5.5.0 + - unreleased + label: Fire and Smoke search: terms: - - carry - - lift + - burn + - caliente + - flame + - fog + - heat + - hot styles: - solid - regular - light - duotone - unicode: f4bd + - thin + unicode: f74b voted: false -hand-holding-box: +firefox: changes: - - 5.0.7 - - 5.0.9 - label: Hand Holding Box + - '4.4' + - 5.0.0 + - 5.0.1 + - 5.12.0 + label: Firefox search: terms: - - carry - - gift - - handling - - lift - - package + - browser styles: - - solid - - regular - - light - - duotone - unicode: f47b + - brands + unicode: f269 voted: false -hand-holding-heart: +firefox-browser: changes: - - 5.0.9 - label: Hand Holding Heart + - 5.12.0 + - 5.14.0 + label: Firefox Browser search: terms: - - carry - - charity - - gift - - lift - - package + - browser styles: - - solid - - regular - - light - - duotone - unicode: f4be + - brands + unicode: e007 voted: false -hand-holding-magic: +fireplace: changes: - - 5.4.0 - label: Hand Holding-magic + - 5.6.0 + - unreleased + label: Fireplace search: terms: - - Dungeons & Dragons - - carry - - cast - - d&d - - dnd - - fantasy - - lift - - mage - - spell - - witch - - wizard + - caliente + - flame + - hearth + - heat + - holiday + - mantle + - toasty + - warmth styles: - solid - regular - light - duotone - unicode: f6e5 - voted: false -hand-holding-medical: + - thin + unicode: f79a +first-order: changes: - - 5.13.0 - label: Hand Holding Medical Cross + - '4.6' + - 5.0.0 + label: First Order search: - terms: - - care - - covid-19 - - donate - - help + terms: [] styles: - - light - - regular - - solid - - duotone - unicode: f95c + - brands + unicode: f2b0 voted: false -hand-holding-seedling: +first-order-alt: changes: - - 5.0.9 - label: Hand Holding Seedling + - 5.0.12 + label: Alternate First Order search: - terms: - - carry - - grow - - lift - - plant + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f4bf + - brands + unicode: f50a voted: false -hand-holding-usd: +firstdraft: changes: - - 5.0.9 - - 5.11.0 - label: Hand Holding US Dollar + - 5.0.0 + label: firstdraft search: - terms: - - $ - - carry - - dollar sign - - donation - - giving - - lift - - money - - price + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f4c0 + - brands + unicode: f3a1 voted: false -hand-holding-water: +fish: changes: - - 5.0.9 - - 5.13.0 - label: Hand Holding Water + - 5.1.0 + - 5.10.1 + - unreleased + label: Fish search: terms: - - carry - - covid-19 - - drought - - grow - - lift + - fauna + - gold + - seafood + - swimming styles: - solid - regular - light - duotone - unicode: f4c1 - voted: false -hand-lizard: + - thin + unicode: f578 + voted: true +fish-cooked: changes: - - '4.4' - - 5.0.0 - label: Lizard (Hand) + - 5.7.0 + - unreleased + label: Cooked Fish search: terms: - - game - - roshambo + - grilled + - health + - salmon + - seafood + - tuna styles: - solid - regular - light - duotone - unicode: f258 + - thin + unicode: f7fe voted: false -hand-middle-finger: +fist-raised: changes: - - 5.7.0 - - 5.11.0 - - 5.11.1 - label: Hand with Middle Finger Raised + - 5.4.0 + - unreleased + label: Raised Fist search: terms: - - flip the bird - - gesture - - hate - - rude + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - hand + - ki + - monk + - resist + - strength + - unarmed combat styles: - solid - regular - light - duotone - unicode: f806 - voted: true -hand-paper: + - thin + unicode: f6de + voted: false +flag: changes: - - '4.4' + - '1' - 5.0.0 - label: Paper (Hand) + - unreleased + label: flag search: terms: - - game - - halt - - roshambo - - stop + - country + - notice + - notification + - notify + - pole + - report + - symbol styles: - solid - regular - light - duotone - unicode: f256 + - thin + unicode: f024 voted: false -hand-peace: +flag-checkered: changes: - - '4.4' + - '3.1' - 5.0.0 - label: Peace (Hand) + - 5.7.0 + - 5.10.1 + - unreleased + label: flag-checkered search: terms: - - rest - - truce + - notice + - notification + - notify + - pole + - racing + - report + - symbol styles: - solid - regular - light - duotone - unicode: f25b + - thin + unicode: f11e voted: false -hand-point-down: +flag-pennant: + aliases: + names: + - pennant changes: - - '2' - - 5.0.0 - label: Hand Pointing Down + - 5.0.5 + - 5.10.1 + - unreleased + label: Flag pennant search: terms: - - finger - - hand-o-down - - point + - banner + - flag + - sign + - sports + - win styles: - solid - regular - light - duotone - unicode: f0a7 + - thin + unicode: f456 voted: false -hand-point-left: +flag-swallowtail: + aliases: + names: + - flag-alt changes: - - '2' - - 5.0.0 - label: Hand Pointing Left + - 5.5.0 + - unreleased + label: Flag swallowtail search: terms: - - back - - finger - - hand-o-left - - left - - point - - previous + - country + - notice + - notification + - notify + - pole + - report + - symbol styles: - solid - regular - light - duotone - unicode: f0a5 + - thin + unicode: f74c voted: false -hand-point-right: +flag-usa: changes: - - '2' - - 5.0.0 - label: Hand Pointing Right + - 5.5.0 + - unreleased + label: United States of America Flag search: terms: - - finger - - forward - - hand-o-right - - next - - point - - right + - betsy ross + - country + - old glory + - stars + - stripes + - symbol styles: - solid - regular - light - duotone - unicode: f0a4 + - thin + unicode: f74d voted: false -hand-point-up: +flashlight: changes: - - '2' - - 5.0.0 - label: Hand Pointing Up + - 5.11.0 + - unreleased + label: Flashlight search: terms: - - finger - - hand-o-up - - point + - camping + - hide and seek + - lamp + - light + - torch styles: - solid - regular - light - duotone - unicode: f0a6 + - thin + unicode: f8b8 voted: false -hand-pointer: +flask: changes: - - '4.4' + - '2' - 5.0.0 - label: Pointer (Hand) + - unreleased + label: Flask search: terms: - - arrow - - cursor - - select + - beaker + - experimental + - labs + - science styles: - solid - regular - light - duotone - unicode: f25a + - thin + unicode: f0c3 voted: false -hand-receiving: +flask-round-poison: + aliases: + names: + - flask-poison changes: - - 5.0.7 - - 5.0.9 - label: Hand Receiving + - 5.4.0 + - 5.11.0 + - unreleased + label: Flask round poison search: terms: - - carry - - gift - - handling - - package - - shipping + - beverage + - container + - drink + - halloween + - health + - holiday + - power styles: - solid - regular - light - duotone - unicode: f47c + - thin + unicode: f6e0 voted: false -hand-rock: +flask-round-potion: + aliases: + names: + - flask-potion changes: - - '4.4' - - 5.0.0 - label: Rock (Hand) + - 5.4.0 + - 5.11.0 + - unreleased + label: Flask round potion search: terms: - - fist - - game - - roshambo + - Dungeons & Dragons + - alert + - beaker + - beverage + - container + - d&d + - danger + - dangerous + - deadly + - death + - dnd + - drink + - fantasy + - halloween + - heal + - health + - holiday + - magic + - mana + - science styles: - solid - regular - light - duotone - unicode: f255 + - thin + unicode: f6e1 voted: false -hand-scissors: +flickr: changes: - - '4.4' + - '3.2' - 5.0.0 - label: Scissors (Hand) + label: Flickr search: - terms: - - cut - - game - - roshambo + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f257 + - brands + unicode: f16e voted: false -hand-sparkles: +flipboard: changes: - - 5.13.0 - label: Hand Sparkles + - 5.0.5 + - 5.0.9 + label: Flipboard search: - terms: - - clean - - covid-19 - - hygiene - - magic - - soap - - wash + terms: [] + styles: + - brands + unicode: f44d + voted: true +florin-sign: + changes: + - unreleased + label: Florin Sign + search: + terms: [] styles: - - light - - regular - - solid - duotone - unicode: f95d + - solid + - regular + - light + - thin + unicode: auto voted: false -hand-spock: +flower: changes: - - '4.4' - - 5.0.0 - - 5.12.0 - label: Spock (Hand) + - 5.7.0 + - 5.8.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Flower search: terms: - - live long - - prosper - - salute - - star trek - - vulcan + - daffodil + - nature + - spring + - summer styles: - solid - regular - light - duotone - unicode: f259 - voted: false -hands: + - thin + unicode: f7ff + voted: true +flower-daffodil: changes: - - 5.0.9 - label: Hands + - 5.7.0 + - unreleased + label: Flower Daffodil search: terms: - - carry - - hold - - lift + - nature + - spring + - summer styles: - solid - regular - light - duotone - unicode: f4c2 + - thin + unicode: f800 voted: false -hands-heart: +flower-tulip: changes: - - 5.0.9 - label: Hands Heart + - 5.7.0 + - unreleased + label: Flower Tulip search: terms: - - carry - - gift - - help - - hold - - lift + - nature + - spring + - summer styles: - solid - regular - light - duotone - unicode: f4c3 + - thin + unicode: f801 voted: false -hands-helping: +flute: changes: - - 5.0.9 - label: Helping Hands + - 5.11.0 + - unreleased + label: Flute search: terms: - - aid - - assistance - - handshake - - partnership - - volunteering + - aerophone + - instrument + - music + - pied piper + - woodwind styles: - solid - regular - light - duotone - unicode: f4c4 + - thin + unicode: f8b9 voted: false -hands-usd: +flux-capacitor: changes: - - 5.0.9 - label: Hands with US Dollar + - 5.11.0 + - 5.12.0 + - unreleased + label: Flux Capacitor search: terms: - - $ - - carry - - dollar sign - - donation - - giving - - hold - - money - - price - - usd + - 1.21 gigawatts + - 88 mph + - Emmett Brown + - Marty McFly + - 'Y' + - back to the future + - delorean + - dmc + - time travel styles: - solid - regular - light - duotone - unicode: f4c5 - voted: false -hands-wash: - changes: - - 5.13.0 - label: Hands Wash - search: - terms: - - covid-19 - - hygiene - - soap - - wash - styles: - - light - - regular - - solid - - duotone - unicode: f95e + - thin + unicode: f8ba voted: false -handshake: +fly: changes: - - '4.7' - 5.0.0 - - 5.0.9 - label: Handshake + label: Fly search: - terms: - - agreement - - greeting - - meeting - - partnership + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f2b5 + - brands + unicode: f417 voted: false -handshake-alt: +folder: changes: - - 5.0.9 - label: Alternate Handshake + - '1' + - 5.0.0 + - 5.3.0 + - 5.10.1 + - unreleased + label: Folder search: terms: - - agreement - - greeting - - meeting - - partnership + - archive + - directory + - document + - file styles: - solid - regular - light - duotone - unicode: f4c6 + - thin + unicode: f07b voted: false -handshake-alt-slash: +folder-arrow-down: + aliases: + names: + - folder-download changes: - - 5.13.0 - label: Handshake Alternate Slash + - 5.12.1 + - 5.14.0 + - unreleased + label: Folder arrow down search: terms: - - broken - - covid-19 - - social distance + - archive + - directory + - document + - download + - file + - save styles: - light - regular - solid - duotone - unicode: f95f + - thin + unicode: e053 voted: false -handshake-slash: +folder-arrow-up: + aliases: + names: + - folder-upload changes: - - 5.13.0 - label: Handshake Slash + - 5.12.1 + - 5.14.0 + - unreleased + label: Folder arrow up search: terms: - - broken - - covid-19 - - social distance + - archive + - directory + - document + - file + - save + - upload styles: - light - regular - solid - duotone - unicode: f960 + - thin + unicode: e054 voted: false -hanukiah: +folder-blank: changes: - - 5.4.0 - label: Hanukiah + - unreleased + label: Folder Blank search: - terms: - - candle - - hanukkah - - jewish - - judaism - - light + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6e6 + - thin + unicode: auto voted: false -hard-hat: +folder-bookmark: changes: - - 5.7.0 - label: Hard Hat + - unreleased + label: Folder Bookmark search: - terms: - - construction - - hardhat - - helmet - - safety + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f807 - voted: true -hashtag: + - thin + unicode: auto + voted: false +folder-gear: + aliases: + names: + - folder-cog changes: - - '4.5' - - 5.0.0 - label: Hashtag + - unreleased + label: Folder gear search: - terms: - - Twitter - - instagram - - pound - - social media - - tag + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f292 + - thin + unicode: auto voted: false -hat-chef: +folder-grid: changes: - - 5.9.0 - label: Chef Hat + - unreleased + label: Folder Grid search: - terms: - - cook - - cuisine - - culinary - - dining - - kitchen + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f86b - voted: true -hat-cowboy: + - thin + unicode: auto + voted: false +folder-heart: changes: - - 5.11.0 - label: Cowboy Hat + - unreleased + label: Folder Heart search: - terms: - - buckaroo - - horse - - jackeroo - - john b. - - old west - - pardner - - ranch - - rancher - - rodeo - - western - - wrangler + terms: [] styles: - - light - - regular - - solid - duotone - unicode: f8c0 + - solid + - regular + - light + - thin + unicode: auto voted: false -hat-cowboy-side: +folder-image: changes: - - 5.11.0 - label: Cowboy Hat Side + - unreleased + label: Folder Image search: - terms: - - buckaroo - - horse - - jackeroo - - john b. - - old west - - pardner - - ranch - - rancher - - rodeo - - western - - wrangler + terms: [] styles: - - light - - regular - - solid - duotone - unicode: f8c1 + - solid + - regular + - light + - thin + unicode: auto voted: false -hat-santa: +folder-magnifying-glass: + aliases: + names: + - folder-search changes: - - 5.6.0 - label: Santa's Hat + - unreleased + label: Folder magnifying glass search: - terms: - - accessory - - christmas - - claus - - clothing - - head - - holiday - - santa - - xmas + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f7a7 -hat-winter: + - thin + unicode: auto + voted: false +folder-medical: changes: - - 5.6.0 - label: Hat Winter + - unreleased + label: Folder Medical search: - terms: - - accessory - - clothing - - cold - - head - - knitted - - seasonal + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f7a8 -hat-witch: + - thin + unicode: auto + voted: false +folder-minus: changes: - - 5.4.0 - label: Witch's Hat + - 5.3.0 + - unreleased + label: Folder Minus search: terms: - - accessory - - clothing - - halloween - - head - - holiday - - mage - - magic - - sorceror + - archive + - delete + - directory + - document + - file + - negative + - remove styles: - solid - regular - light - duotone - unicode: f6e7 + - thin + unicode: f65d voted: false -hat-wizard: +folder-music: changes: - - 5.4.0 - - 5.11.0 - label: Wizard's Hat + - unreleased + label: Folder Music search: - terms: - - Dungeons & Dragons - - accessory - - buckle - - clothing - - d&d - - dnd - - fantasy - - halloween - - head - - holiday - - mage - - magic - - pointy - - witch + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6e8 + - thin + unicode: auto voted: false -hdd: +folder-open: changes: - - '2' + - '1' - 5.0.0 - - 5.10.1 - label: HDD + - unreleased + label: Folder Open search: terms: - - cpu - - hard drive - - harddrive - - machine - - save - - storage + - archive + - directory + - document + - empty + - file + - new styles: - solid - regular - light - duotone - unicode: f0a0 + - thin + unicode: f07c voted: false -head-side: +folder-plus: changes: - - 5.4.0 - label: Head Side + - 5.3.0 + - 5.11.0 + - 5.12.1 + - unreleased + label: Folder Plus search: terms: - - bald - - face - - profile - - user + - add + - archive + - create + - directory + - document + - file + - new + - positive styles: - solid - regular - light - duotone - unicode: f6e9 + - thin + unicode: f65e voted: false -head-side-brain: +folder-tree: changes: - 5.7.0 - label: Head Side with Brain + - unreleased + label: Folder Tree search: terms: - - diagnosis - - face - - mental health - - profile - - psychiatric - - psychiatry + - archive + - directory + - document + - file + - search + - structure styles: - solid - regular - light - duotone - unicode: f808 - voted: false -head-side-cough: + - thin + unicode: f802 + voted: true +folder-user: changes: - - 5.13.0 - label: Head Side Cough + - unreleased + label: Folder User search: - terms: - - cough - - covid-19 - - germs - - lungs - - respiratory - - sick + terms: [] styles: - - light - - regular - - solid - duotone - unicode: f961 + - solid + - regular + - light + - thin + unicode: auto voted: false -head-side-cough-slash: +folder-xmark: + aliases: + names: + - folder-times changes: - - 5.13.0 - label: Head Side-cough-slash + - 5.3.0 + - unreleased + label: Folder xmark search: terms: - - cough - - covid-19 - - germs - - lungs - - respiratory - - sick + - archive + - delete + - directory + - document + - file + - remove + - x styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f962 + - thin + unicode: f65f voted: false -head-side-headphones: +folders: changes: - - 5.11.0 - label: Head Side with Headphones + - 5.3.0 + - unreleased + label: Folders search: terms: - - amplifier - - bluetooth - - earphone - - headset - - listen - - microphone - - music + - archive + - copy + - directory + - document + - duplicate + - file styles: - solid - regular - light - duotone - unicode: f8c2 + - thin + unicode: f660 voted: false -head-side-mask: +font: changes: - - 5.13.0 - label: Head Side Mask + - '1' + - 5.0.0 + - 5.9.0 + - 5.10.2 + - unreleased + label: font search: terms: - - breath - - covid-19 - - filter - - respirator - - virus + - alphabet + - glyph + - text + - type + - typeface styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f963 + - thin + unicode: f031 voted: false -head-side-medical: +font-awesome: changes: - - 5.7.0 - label: Head Side with Medical Symbol + - '4.6' + - 5.0.0 + - unreleased + label: Font Awesome search: terms: - - diagnosis - - face - - mental health - - profile - - psychiatric - - psychiatry + - meanpath styles: - - solid - - regular - - light - - duotone - unicode: f809 + - brands + unicode: f2b4 voted: false -head-side-virus: +font-awesome-alt: changes: - - 5.13.0 - label: Head Side Virus + - 5.0.0 + - unreleased + label: Alternate Font Awesome search: - terms: - - cold - - covid-19 - - flu - - sick + terms: [] styles: - - light - - regular - - solid - - duotone - unicode: f964 + - brands + unicode: f35c voted: false -head-vr: +font-awesome-flag: changes: - - 5.4.0 - label: Head VR + - 5.0.0 + - 5.0.1 + - unreleased + label: Font Awesome Flag search: - terms: - - 3d - - augmented - - face - - occulus - - profile - - reality - - virtual + terms: [] + styles: + - brands + unicode: f425 + voted: false +font-awesome-logo-full: + changes: + - 5.0.11 + - unreleased + label: Font Awesome Full Logo + ligatures: + - Font Awesome + private: true + search: + terms: [] styles: - solid - regular - light + - brands - duotone - unicode: f6ea - voted: true -heading: + - thin + unicode: f4e6 + voted: false +font-case: changes: - - '4.1' - - 5.0.0 - 5.9.0 - - 5.10.1 - - 5.10.2 - label: heading + - unreleased + label: Font Case search: terms: - - format - - header + - alphabet + - glyph + - lowercase - text - - title + - type + - typeface + - uppercase styles: - solid - regular - light - duotone - unicode: f1dc + - thin + unicode: f866 voted: false -headphones: +fonticons: changes: - - '1' + - '4.4' - 5.0.0 - label: headphones + label: Fonticons search: - terms: - - audio - - listen - - music - - sound - - speaker + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f025 + - brands + unicode: f280 voted: false -headphones-alt: +fonticons-fi: changes: - - 5.1.0 - label: Alternate Headphones + - 5.0.0 + label: Fonticons Fi search: - terms: - - audio - - listen - - music - - sound - - speaker + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f58f - voted: true -headset: + - brands + unicode: f3a2 + voted: false +football-ball: changes: - - 5.1.0 - label: Headset + - 5.0.5 + - 5.11.0 + - 5.11.1 + - unreleased + label: Football Ball search: terms: - - audio - - gamer - - gaming - - listen - - live chat - - microphone - - shot caller - - sound - - support - - telemarketer + - ball + - fall + - nfl + - pigskin + - seasonal styles: - solid - regular - light - duotone - unicode: f590 - voted: true -heart: + - thin + unicode: f44e + voted: false +football-helmet: changes: - - '1' - - 5.0.0 - - 5.0.9 - - 5.10.1 - - 5.10.2 - label: Heart + - 5.0.5 + - unreleased + label: Football Helmet search: terms: - - favorite - - like - - love - - relationship - - valentine + - ball + - concussion + - fall + - nfl + - pigskin + - protection + - seasonal styles: - solid - regular - light - duotone - unicode: f004 + - thin + unicode: f44f voted: false -heart-broken: +fork: + aliases: + names: + - utensil-fork changes: - - 5.6.0 + - 5.0.0 - 5.10.2 - label: Heart Broken + - unreleased + label: Fork search: terms: - - breakup - - crushed - - dislike - - dumped - - grief - - love - - lovesick - - relationship - - sad + - cutlery + - dining + - food + - fork + - silverware styles: - solid - regular - light - duotone - unicode: f7a9 - voted: true -heart-circle: + - thin + unicode: f2e3 + voted: false +fork-knife: + aliases: + names: + - utensils-alt changes: - - 5.0.9 - - 5.11.0 - - 5.11.1 - label: Heart Circle + - 5.0.0 + - unreleased + label: Fork knife search: terms: - - favorite - - like - - love + - cutlery + - dining + - dinner + - eat + - food + - fork + - knife + - restaurant styles: - solid - regular - light - duotone - unicode: f4c7 + - thin + unicode: f2e6 voted: false -heart-rate: +forklift: changes: - - 5.2.0 - label: Heart Rate + - 5.0.7 + - unreleased + label: Forklift search: terms: - - EKG - - electrocardiogram - - health - - life - - vital + - archive + - inventory + - lorry + - pallet + - shipping + - tractor + - warehouse styles: - solid - regular - light - duotone - unicode: f5f8 + - thin + unicode: f47a voted: false -heart-square: +fort-awesome: changes: - - 5.0.9 - label: Heart Square + - '4.5' + - 5.0.0 + - 5.0.3 + label: Fort Awesome search: terms: - - favorite - - like - - love + - castle styles: - - solid - - regular - - light - - duotone - unicode: f4c8 + - brands + unicode: f286 voted: false -heartbeat: +fort-awesome-alt: changes: - - '4.3' - 5.0.0 - - 5.0.7 - label: Heartbeat + label: Alternate Fort Awesome search: terms: - - ekg - - electrocardiogram - - health - - lifeline - - vital signs + - castle styles: - - solid - - regular - - light - - duotone - unicode: f21e + - brands + unicode: f3a3 voted: false -heat: +forumbee: changes: - - 5.12.0 - label: Heat + - '4.3' + - 5.0.0 + label: Forumbee search: - terms: - - ac - - air conditioner - - boiler - - heating - - hot - - sauna - - spa - - summer - - temperature + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f90c + - brands + unicode: f211 voted: false -helicopter: +forward: changes: - - 5.0.13 - label: Helicopter + - '1' + - 5.0.0 + - unreleased + label: forward search: terms: - - airwolf - - apache - - chopper - - flight - - fly - - travel + - forward + - next + - skip styles: - solid - regular - light - duotone - unicode: f533 - voted: true -helmet-battle: + - thin + unicode: f04e + voted: false +forward-fast: + aliases: + names: + - fast-forward changes: - - 5.4.0 - label: Battle Helmet + - '1' + - 5.0.0 + - unreleased + label: Forward fast search: terms: - - Dungeons & Dragons - - armor - - clothing - - d&d - - dnd - - fantasy - - hat - - knight - - paladin + - end + - last + - next styles: - solid - regular - light - duotone - unicode: f6eb + - thin + unicode: f050 voted: false -hexagon: +forward-step: + aliases: + names: + - step-forward changes: + - '1' - 5.0.0 - - 5.10.1 - 5.10.2 - label: Hexagon + - 5.11.0 + - 5.11.1 + - unreleased + label: Forward step search: terms: - - geometry - - honeycomb - - polygon - - shape + - end + - last + - next styles: - solid - regular - light - duotone - unicode: f312 + - thin + unicode: f051 voted: false -highlighter: - changes: - - 5.1.0 - - 5.10.1 - label: Highlighter - search: - terms: - - edit - - marker - - sharpie - - update - - write - styles: - - solid - - regular - - light - - duotone - unicode: f591 - voted: true -hiking: +foursquare: changes: - - 5.4.0 - label: Hiking + - '3.2' + - 5.0.0 + label: Foursquare search: - terms: - - activity - - backpack - - fall - - fitness - - outdoors - - person - - seasonal - - walking + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f6ec + - brands + unicode: f180 voted: false -hippo: +franc-sign: changes: - - 5.4.0 - - 5.10.1 - label: Hippo + - unreleased + label: Franc Sign search: - terms: - - animal - - fauna - - hippopotamus - - hungry - - mammal + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6ed + - thin + unicode: auto voted: false -hips: +free-code-camp: changes: - - 5.0.5 - label: Hips + - '4.7' + - 5.0.0 + - 5.12.0 + label: freeCodeCamp search: terms: [] styles: - brands - unicode: f452 + unicode: f2c5 voted: false -hire-a-helper: +freebsd: changes: - 5.0.0 - label: HireAHelper + label: FreeBSD search: terms: [] styles: - brands - unicode: f3b0 + unicode: f3a4 voted: false -history: +french-fries: changes: - - '4.1' - - 5.0.0 - label: History + - 5.7.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: French Fries search: terms: - - Rewind - - clock - - reverse - - time - - time machine + - chips + - fast food + - fried + - ketchup + - potato + - poutine styles: - solid - regular - light - duotone - unicode: f1da + - thin + unicode: f803 voted: false -hockey-mask: +frog: changes: - - 5.4.0 - label: Hockey Mask + - 5.0.13 + - unreleased + label: Frog search: terms: - - clothing - - friday - - halloween - - ice - - jason - - nhl - - protection - - sport - - thirteenth + - amphibian + - bullfrog + - fauna + - hop + - kermit + - kiss + - prince + - ribbit + - toad + - wart styles: - solid - regular - light - duotone - unicode: f6ee + - thin + unicode: f52e voted: false -hockey-puck: +fulcrum: changes: - - 5.0.5 - label: Hockey Puck + - 5.0.12 + - 5.8.0 + label: Fulcrum search: - terms: - - ice - - nhl - - sport + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f453 + - brands + unicode: f50b voted: false -hockey-sticks: +function: changes: - - 5.0.5 - - 5.10.1 - label: Hockey Sticks + - 5.3.0 + - unreleased + label: Function search: terms: - - ice - - nhl - - sport + - math + - mathematics styles: - solid - regular - light - duotone - unicode: f454 + - thin + unicode: f661 voted: false -holly-berry: +funnel-circle-dollar: + aliases: + names: + - funnel-dollar changes: - - 5.6.0 - label: Holly Berry + - 5.3.0 + - unreleased + label: Funnel circle dollar search: terms: - - catwoman - - christmas - - decoration - - flora - - halle - - holiday - - ororo munroe - - plant - - storm - - xmas + - filter + - money + - options + - separate + - sort styles: - solid - regular - light - duotone - unicode: f7aa -home: + - thin + unicode: f662 + voted: false +futbol-ball: + aliases: + names: + - soccer-ball + - futbol changes: - - '1' + - '4.2' - 5.0.0 - - 5.7.0 - label: home + - 5.0.5 + - unreleased + label: Futbol ball search: terms: - - abode - - building - - house - - main + - ball + - football + - mls + - soccer styles: - solid - regular - light - duotone - unicode: f015 + - thin + unicode: f1e3 voted: false -home-alt: +g: changes: - - 5.7.0 - label: Alternate Home + - unreleased + label: G search: - terms: - - abode - - building - - house - - main + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f80a + - thin + unicode: auto voted: false -home-heart: +galactic-republic: changes: - - 5.0.9 - - 5.7.0 - label: Home Heart + - 5.0.12 + label: Galactic Republic search: terms: - - abode - - building - - charity - - house - - main + - politics + - star wars styles: - - solid - - regular - - light - - duotone - unicode: f4c9 + - brands + unicode: f50c voted: false -home-lg: +galactic-senate: changes: - - 5.7.0 - label: Home Large + - 5.0.12 + label: Galactic Senate search: terms: - - abode - - building - - house - - main + - star wars + styles: + - brands + unicode: f50d + voted: false +galaxy: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Galaxy + search: + terms: + - black hole + - cosmic + - nebula + - solar system + - space + - spiral + - universe styles: - solid - regular - light - duotone - unicode: f80b -home-lg-alt: + - thin + unicode: e008 + voted: false +game-board: changes: - - 5.7.0 - label: Alternative Home Large + - 5.9.0 + - unreleased + label: Game Board search: terms: - - abode - - building - - house - - main + - checkers + - chess + - gaming + - grid + - tabletop styles: - solid - regular - light - duotone - unicode: f80c -hood-cloak: - changes: - - 5.4.0 - - 5.10.1 - label: Hood Cloak - search: - terms: - - Dungeons & Dragons - - clothing - - d&d - - dnd - - fantasy - - hat - - rogue - - stealth - styles: - - solid - - regular - - light - - duotone - unicode: f6ef - voted: false -hooli: - changes: - - 5.0.0 - - 5.7.0 - label: Hooli - search: - terms: [] - styles: - - brands - unicode: f427 + - thin + unicode: f867 voted: false -horizontal-rule: +game-board-simple: + aliases: + names: + - game-board-alt changes: - 5.9.0 - label: Horizontal Rule + - unreleased + label: Game board simple search: terms: - - divider - - hr - - line - - page break + - checkers + - chess + - gaming + - grid + - tabletop styles: - solid - regular - light - duotone - unicode: f86c - voted: false -hornbill: - changes: - - 5.1.0 - - 5.8.0 - label: Hornbill - search: - terms: [] - styles: - - brands - unicode: f592 + - thin + unicode: f868 voted: false -horse: +game-console-handheld: changes: - - 5.4.0 - - 5.10.1 - label: Horse + - 5.11.0 + - unreleased + label: Handheld Game Console search: terms: - - equus - - fauna - - mammmal - - mare - - neigh - - pony + - cartridge + - gameboy + - nintendo + - retro + - video games + - vintage styles: - solid - regular - light - duotone - unicode: f6f0 + - thin + unicode: f8bb voted: false -horse-head: +gamepad: changes: - - 5.6.0 - - 5.10.1 - label: Horse Head + - '3.1' + - 5.0.0 + - 5.11.0 + - unreleased + label: Gamepad search: terms: - - equus - - fauna - - mammmal - - mare - - neigh - - pony + - arcade + - controller + - d-pad + - joystick + - video + - video game styles: - solid - regular - light - duotone - unicode: f7ab -horse-saddle: + - thin + unicode: f11b + voted: false +gamepad-modern: + aliases: + names: + - gamepad-alt changes: - 5.11.0 - label: Horse Saddle + - unreleased + label: Gamepad modern search: terms: - - cowboy - - equus - - fauna - - mammmal - - mare - - neigh - - pony - - rodeo - - western + - arcade + - controller + - d-pad + - joystick + - video + - video game styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f8c3 + - thin + unicode: f8bc voted: false -hospital: +garage: changes: - - '3' - - 5.0.0 - label: hospital + - 5.12.0 + - 5.14.0 + - unreleased + label: Garage search: terms: - - building - - covid-19 - - emergency room - - medical center + - auto + - car + - door + - storage + - structure + - warehouse styles: - solid - regular - light - duotone - unicode: f0f8 + - thin + unicode: e009 voted: false -hospital-alt: +garage-car: changes: - - 5.0.7 - label: Alternate Hospital + - 5.12.0 + - 5.14.0 + - unreleased + label: Garage Car search: terms: - - building - - covid-19 - - emergency room - - medical center + - auto + - car + - door + - storage + - structure + - warehouse styles: - solid - regular - light - duotone - unicode: f47d + - thin + unicode: e00a voted: false -hospital-symbol: +garage-open: changes: - - 5.0.7 - label: Hospital Symbol + - 5.12.0 + - 5.14.0 + - unreleased + label: Garage Open search: terms: - - clinic - - covid-19 - - emergency - - map + - auto + - car + - door + - storage + - structure + - warehouse styles: - solid - regular - light - duotone - unicode: f47e + - thin + unicode: e00b voted: false -hospital-user: +gas-pump: changes: - - 5.7.0 - label: Hospital with User + - 5.0.13 + - 5.10.1 + - unreleased + label: Gas Pump search: terms: - - covid-19 - - doctor - - network - - patient - - primary care + - car + - fuel + - gasoline + - petrol styles: - solid - regular - light - duotone - unicode: f80d - voted: false -hospitals: + - thin + unicode: f52f + voted: true +gas-pump-slash: changes: - - 5.7.0 - label: Hospitals + - 5.2.0 + - unreleased + label: Gas Pump Slash search: terms: - - emergency - - insurance - - network + - car + - empty + - fuel + - gasoline + - petrol styles: - solid - regular - light - duotone - unicode: f80e - voted: false -hot-tub: + - thin + unicode: f5f4 + voted: true +gauge: + aliases: + names: + - gauge-high + - tachometer-alt + - tachometer-alt-fast + - dashboard + unicodes: + - f3fd changes: - - 5.1.0 - label: Hot Tub + - 5.2.0 + - unreleased + label: Gauge search: terms: - - bath - - jacuzzi - - massage - - sauna - - spa + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f593 + - thin + unicode: f625 voted: false -hotdog: +gauge-low: + aliases: + names: + - tachometer-alt-slow changes: - - 5.7.0 - label: Hot Dog + - 5.2.0 + - unreleased + label: Gauge low search: terms: - - bun - - chili - - frankfurt - - frankfurter - - kosher - - polish - - sandwich - - sausage - - vienna - - weiner + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f80f + - thin + unicode: f627 voted: false -hotel: +gauge-max: + aliases: + names: + - tachometer-alt-fastest changes: - - 5.1.0 - label: Hotel + - 5.2.0 + - unreleased + label: Gauge max search: terms: - - building - - inn - - lodging - - motel - - resort - - travel + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f594 - voted: false -hotjar: - changes: - - 5.0.0 - label: Hotjar - search: - terms: [] - styles: - - brands - unicode: f3b1 + - thin + unicode: f626 voted: false -hourglass: +gauge-med: + aliases: + names: + - tachometer-alt-average changes: - - '4.4' - - 5.0.0 - - 5.10.1 - label: Hourglass + - 5.2.0 + - unreleased + label: Gauge med search: terms: - - hour - - minute - - sand - - stopwatch - - time + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f254 + - thin + unicode: f624 voted: false -hourglass-end: +gauge-min: + aliases: + names: + - tachometer-alt-slowest changes: - - '4.4' - - 5.0.0 - - 5.10.1 - label: Hourglass End + - 5.2.0 + - unreleased + label: Gauge min search: terms: - - hour - - minute - - sand - - stopwatch - - time + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f253 + - thin + unicode: f628 voted: false -hourglass-half: +gauge-simple: + aliases: + names: + - gauge-simple-high + - tachometer + unicodes: + - f0e4 changes: - - '4.4' - - 5.0.0 - - 5.10.1 - label: Hourglass Half + - 5.2.0 + - unreleased + label: Gauge simple search: terms: - - hour - - minute - - sand - - stopwatch - - time + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f252 + - thin + unicode: f62a voted: false -hourglass-start: +gauge-simple-low: + aliases: + names: + - tachometer-slow changes: - - '4.4' - - 5.0.0 - - 5.10.1 - label: Hourglass Start + - 5.2.0 + - unreleased + label: Gauge simple low search: terms: - - hour - - minute - - sand - - stopwatch - - time + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f251 + - thin + unicode: f62c voted: false -house: +gauge-simple-max: + aliases: + names: + - tachometer-fastest changes: - - 5.12.0 - label: House + - 5.2.0 + - unreleased + label: Gauge simple max search: terms: - - abode - - building - - family - - home - - residence + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f90d + - thin + unicode: f62b voted: false -house-damage: +gauge-simple-med: + aliases: + names: + - tachometer-average changes: - - 5.4.0 - label: Damaged House + - 5.2.0 + - unreleased + label: Gauge simple med search: terms: - - building - - devastation - - disaster - - home - - insurance + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f6f1 + - thin + unicode: f629 voted: false -house-day: +gauge-simple-min: + aliases: + names: + - tachometer-slowest changes: - - 5.12.0 - label: House Day + - 5.2.0 + - unreleased + label: Gauge simple min search: terms: - - abode - - building - - family - - home - - residence - - solar - - sun + - dashboard + - fast + - odometer + - speed + - speedometer styles: - solid - regular - light - duotone - unicode: f90e + - thin + unicode: f62d voted: false -house-flood: +gavel: + aliases: + names: + - legal changes: - - 5.5.0 - label: Flooded House + - '2' + - 5.0.0 + - unreleased + label: Gavel search: terms: - - building - - devastation - - disaster - - home - - insurance - - water + - hammer + - judge + - law + - lawyer + - opinion styles: - solid - regular - light - duotone - unicode: f74f + - thin + unicode: f0e3 voted: false -house-leave: +gear: + aliases: + names: + - cog changes: - - 5.12.0 - label: House Leave + - '1' + - 5.0.0 + - unreleased + label: Gear search: terms: - - abode - - building - - depart - - family - - home - - residence - - work + - gear + - mechanical + - settings + - sprocket + - wheel styles: - solid - regular - light - duotone - unicode: f90f + - thin + unicode: f013 voted: false -house-night: +gears: + aliases: + names: + - cogs changes: - - 5.12.0 - label: House Night + - '1' + - 5.0.0 + - unreleased + label: Gears search: terms: - - abode - - building - - family - - home - - moon - - residence - - stars + - gears + - mechanical + - settings + - sprocket + - wheel styles: - solid - regular - light - duotone - unicode: f910 + - thin + unicode: f085 voted: false -house-return: +gem: changes: - - 5.12.0 - label: House Return + - 5.0.0 + - 5.10.1 + - unreleased + label: Gem search: terms: - - abode - - arrival - - building - - family - - home - - residence + - diamond + - jewelry + - sapphire + - stone + - treasure styles: - solid - regular - light - duotone - unicode: f911 + - thin + unicode: f3a5 voted: false -house-signal: +genderless: changes: - - 5.12.0 - label: House Signal + - '4.4' + - 5.0.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Genderless search: terms: - - abode - - building - - connect - - family - - home - - residence - - smart home - - wifi + - androgynous + - asexual + - sexless styles: - solid - regular - light - duotone - unicode: f912 + - thin + unicode: f22d voted: false -house-user: +get-pocket: changes: - - 5.13.0 - label: House User + - '4.4' + - 5.0.0 + label: Get Pocket search: - terms: - - covid-19 - - home - - isolation - - quarantine + terms: [] styles: - - light - - regular - - solid - - duotone - unicode: f965 + - brands + unicode: f265 voted: false -houzz: +gg: changes: - '4.4' - 5.0.0 - - 5.0.9 - - 5.8.0 - label: Houzz + label: GG Currency search: terms: [] styles: - brands - unicode: f27c + unicode: f260 voted: false -hryvnia: - changes: - - 5.4.0 - label: Hryvnia - search: - terms: - - currency - - money - - ukraine - - ukrainian - styles: - - solid - - regular - - light - - duotone - unicode: f6f2 - voted: true -html5: - changes: - - '3.1' - - 5.0.0 - label: HTML 5 Logo - search: - terms: [] - styles: - - brands - unicode: f13b - voted: false -hubspot: +gg-circle: changes: + - '4.4' - 5.0.0 - label: HubSpot + label: GG Currency Circle search: terms: [] styles: - brands - unicode: f3b2 + unicode: f261 voted: false -humidity: +ghost: changes: - - 5.5.0 - label: Humidity + - 5.4.0 + - unreleased + label: Ghost search: terms: - - evaporation - - fog - - precipitation - - rain + - apparition + - blinky + - clyde + - floating + - halloween + - holiday + - inky + - pinky + - spirit styles: - solid - regular - light - duotone - unicode: f750 + - thin + unicode: f6e2 voted: false -hurricane: +gift: changes: - - 5.5.0 - - 5.10.1 - label: Hurricane + - '1' + - 5.0.0 + - 5.0.9 + - 5.6.0 + - unreleased + label: gift search: terms: - - coriolis effect - - eye - - storm - - tropical cyclone - - typhoon + - christmas + - generosity + - giving + - holiday + - party + - present + - wrapped + - xmas styles: - solid - regular - light - duotone - unicode: f751 + - thin + unicode: f06b voted: false -i-cursor: +gift-card: changes: - - '4.4' - - 5.0.0 - label: I Beam Cursor + - 5.3.0 + - unreleased + label: Gift Card search: terms: - - editing - - i-beam - - type - - writing + - christmas + - generosity + - giving + - holiday + - money + - party + - present + - wrapped + - xmas styles: - solid - regular - light - duotone - unicode: f246 + - thin + unicode: f663 voted: false -ice-cream: +gifts: changes: - - 5.7.0 - - 5.11.0 - - 5.11.1 - label: Ice Cream + - 5.6.0 + - unreleased + label: Gifts search: terms: - - chocolate - - cone - - dessert - - frozen - - scoop - - sorbet - - vanilla - - yogurt + - christmas + - generosity + - giving + - holiday + - party + - present + - wrapped + - xmas styles: - solid - regular - light - duotone - unicode: f810 - voted: false -ice-skate: + - thin + unicode: f79c +gingerbread-man: changes: - 5.6.0 - label: Ice Skate + - unreleased + label: Gingerbread Man search: terms: - - blade - - clothing - - figure skating - - hockey - - seasonal - - shoe + - cookie + - decoration + - frosting + - holiday styles: - solid - regular - light - duotone - unicode: f7ac -icicles: + - thin + unicode: f79d +git: changes: - - 5.6.0 - label: Icicles + - '4.1' + - 5.0.0 + - 5.8.2 + label: Git + search: + terms: [] + styles: + - brands + unicode: f1d3 + voted: false +git-alt: + changes: + - 5.8.2 + label: Git Alt + search: + terms: [] + styles: + - brands + unicode: f841 +git-square: + changes: + - '4.1' + - 5.0.0 + - 5.8.2 + label: Git Square + search: + terms: [] + styles: + - brands + unicode: f1d2 + voted: false +github: + changes: + - '2' + - 5.0.0 + label: GitHub search: terms: - - cold - - frozen - - hanging - - ice - - seasonal - - sharp + - octocat + styles: + - brands + unicode: f09b + voted: false +github-alt: + changes: + - '3' + - 5.0.0 + label: Alternate GitHub + search: + terms: + - octocat + styles: + - brands + unicode: f113 + voted: false +github-square: + changes: + - '1' + - 5.0.0 + label: GitHub Square + search: + terms: + - octocat + styles: + - brands + unicode: f092 + voted: false +gitkraken: + changes: + - 5.0.0 + label: GitKraken + search: + terms: [] + styles: + - brands + unicode: f3a6 + voted: false +gitlab: + changes: + - '4.6' + - 5.0.0 + - 5.7.0 + label: GitLab + search: + terms: + - Axosoft + styles: + - brands + unicode: f296 + voted: false +gitter: + changes: + - 5.0.0 + label: Gitter + search: + terms: [] + styles: + - brands + unicode: f426 + voted: false +glass: + changes: + - 5.7.0 + - unreleased + label: Glass + search: + terms: + - alcohol + - beverage + - drink + - glass + - water styles: - solid - regular - light - duotone - unicode: f7ad -icons: + - thin + unicode: f804 + voted: true +glass-citrus: changes: - 5.9.0 - label: Icons + - unreleased + label: Glass Citrus search: terms: - - bolt - - emoji - - heart - - image - - music - - photo - - symbols + - cocktail + - drink + - lemonade + - refreshing + - water styles: - solid - regular - light - duotone - unicode: f86d + - thin + unicode: f869 voted: false -icons-alt: +glass-empty: changes: - - 5.9.0 - label: Alternate Icons + - unreleased + label: Glass Empty search: - terms: - - bolt - - emoji - - heart - - image - - music - - photo - - symbols + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f86e + - thin + unicode: auto voted: false -id-badge: +glass-half: + aliases: + names: + - glass-half-full + - glass-half-empty changes: - - '4.7' - - 5.0.0 - - 5.0.3 - label: Identification Badge + - unreleased + label: Glass Half search: - terms: - - address - - contact - - identification - - license - - profile + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f2c1 + - thin + unicode: auto voted: false -id-card: +glasses: changes: - - '4.7' - - 5.0.0 - - 5.0.3 - - 5.8.0 - - 5.10.1 - label: Identification Card + - 5.0.13 + - unreleased + label: Glasses search: terms: - - contact - - demographics - - document - - identification - - issued - - profile + - hipster + - nerd + - reading + - sight + - spectacles + - vision styles: - solid - regular - light - duotone - unicode: f2c2 - voted: false -id-card-alt: + - thin + unicode: f530 + voted: true +glasses-round: + aliases: + names: + - glasses-alt changes: - - 5.0.7 - - 5.10.1 - label: Alternate Identification Card + - 5.2.0 + - unreleased + label: Glasses round search: terms: - - contact - - demographics - - document - - identification - - issued - - profile + - hipster + - nerd + - reading + - sight + - spectacles + - vision styles: - solid - regular - light - duotone - unicode: f47f + - thin + unicode: f5f5 voted: false -ideal: +glide: changes: - - 5.12.0 - label: iDeal + - '4.6' + - 5.0.0 + label: Glide search: terms: [] styles: - brands - unicode: f913 - voted: true -igloo: + unicode: f2a5 + voted: false +glide-g: changes: - - 5.6.0 - label: Igloo + - '4.6' + - 5.0.0 + label: Glide G search: - terms: - - dome - - dwelling - - eskimo - - home - - house - - ice - - snow + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f7ae -image: + - brands + unicode: f2a6 + voted: false +globe: changes: - - '1' + - '2' - 5.0.0 - - 5.10.1 - label: Image + - 5.0.9 + - 5.11.0 + - 5.11.1 + - unreleased + label: Globe search: terms: - - album - - landscape - - photo - - picture + - all + - coordinates + - country + - earth + - global + - gps + - language + - localize + - location + - map + - online + - place + - planet + - translate + - travel + - world styles: - solid - regular - light - duotone - unicode: f03e + - thin + unicode: f0ac voted: false -image-polaroid: +globe-snow: changes: - - 5.11.0 - label: Polaroid Image + - 5.6.0 + - unreleased + label: Globe Snow search: terms: - - capture - - film - - instant camera - - lens - - photo - - photography - - retro - - snapshot - - vintage + - diorama + - scene + - seasonal + - shake + - souvenir + - winter styles: - solid - regular - light - duotone - unicode: f8c4 - voted: false -images: + - thin + unicode: f7a3 +globe-stand: changes: - - '1' - - 5.0.0 + - 5.2.0 - 5.10.1 - label: Images + - unreleased + label: Globe Stand search: terms: - - album - - landscape - - photo - - picture + - earth + - geography + - global + - localize + - location + - map + - travel + - world styles: - solid - regular - light - duotone - unicode: f302 + - thin + unicode: f5f6 voted: false -imdb: +gofore: changes: - - '4.7' - 5.0.0 - label: IMDB + label: Gofore search: terms: [] styles: - brands - unicode: f2d8 + unicode: f3a7 voted: false -inbox: +golf-ball-tee: + aliases: + names: + - golf-ball changes: - - '1' - - 5.0.0 - label: inbox + - 5.0.5 + - unreleased + label: Golf ball tee search: terms: - - archive - - desk - - email - - mail - - message + - caddy + - eagle + - putt + - tee styles: - solid - regular - light - duotone - unicode: f01c + - thin + unicode: f450 voted: false -inbox-in: +golf-club: changes: - - 5.0.0 - - 5.10.1 - label: Inbox In + - 5.0.5 + - unreleased + label: Golf Club search: terms: - - archive - - desk - - email - - mail - - message + - caddy + - eagle + - putt + - tee styles: - solid - regular - light - duotone - unicode: f310 + - thin + unicode: f451 voted: false -inbox-out: +goodreads: changes: - 5.0.0 - - 5.10.1 - label: Inbox Out + label: Goodreads search: - terms: - - archive - - desk - - email - - mail - - message + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f311 + - brands + unicode: f3a8 voted: false -indent: +goodreads-g: changes: - - '1' - 5.0.0 - - 5.9.0 - label: Indent + label: Goodreads G search: - terms: - - align - - justify - - paragraph - - tab + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f03c + - brands + unicode: f3a9 voted: false -industry: +google: changes: - - '4.4' + - '4.1' - 5.0.0 - - 5.10.1 - label: Industry + label: Google Logo search: - terms: - - building - - factory - - industrial - - manufacturing - - mill - - warehouse + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f275 + - brands + unicode: f1a0 voted: false -industry-alt: +google-drive: changes: - 5.0.0 - label: Alternate Industry + label: Google Drive search: - terms: - - building - - factory - - industrial - - manufacturing - - mill - - warehouse + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f3b3 + - brands + unicode: f3aa voted: false -infinity: +google-pay: changes: - - 5.0.13 - - 5.3.0 - - 5.10.1 - label: Infinity + - 5.13.1 + - 5.14.0 + label: Google Pay search: - terms: - - eternity - - forever - - math + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f534 - voted: true -info: + - brands + unicode: e079 + voted: false +google-play: changes: - - '3.1' - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Info + label: Google Play search: - terms: - - details - - help - - information - - more - - support + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f129 + - brands + unicode: f3ab voted: false -info-circle: +google-plus: changes: - - '1' + - '4.6' - 5.0.0 - label: Info Circle + - 5.13.1 + label: Google Plus search: terms: - - details - - help - - information - - more - - support + - google-plus-circle + - google-plus-official styles: - - solid - - regular - - light - - duotone - unicode: f05a + - brands + unicode: f2b3 voted: false -info-square: +google-plus-g: changes: + - '2' - 5.0.0 - label: Info Square + label: Google Plus G search: terms: - - details - - help - - information - - more - - support + - google-plus + - social network styles: - - solid - - regular - - light - - duotone - unicode: f30f + - brands + unicode: f0d5 voted: false -inhaler: +google-plus-square: changes: - - 5.2.0 - label: Inhaler + - '2' + - 5.0.0 + label: Google Plus Square search: terms: - - asthma - - cough - - lungs - - nebulizer - - vaporizer + - social network styles: - - solid - - regular - - light - - duotone - unicode: f5f9 + - brands + unicode: f0d4 voted: false -instagram: +google-wallet: changes: - - '4.6' + - '4.2' - 5.0.0 - label: Instagram + label: Google Wallet search: terms: [] styles: - brands - unicode: f16d + unicode: f1ee voted: false -instagram-square: - changes: - - 5.12.1 - label: Instagram Square - search: - terms: [] - styles: - - brands - unicode: f955 - voted: true -integral: +gopuram: changes: - 5.3.0 - label: Integral + - 5.7.0 + - 5.11.0 + - unreleased + label: Gopuram search: terms: - - calculus - - equation - - function - - math + - building + - entrance + - hinduism + - temple + - tower styles: - solid - regular - light - duotone - unicode: f667 - voted: false -intercom: - changes: - - 5.6.0 - label: Intercom - search: - terms: - - app - - customer - - messenger - styles: - - brands - unicode: f7af + - thin + unicode: f664 voted: false -internet-explorer: +graduation-cap: + aliases: + names: + - mortar-board changes: - - '4.4' + - '4.1' - 5.0.0 - label: Internet-explorer - search: - terms: - - browser - - ie - styles: - - brands - unicode: f26b - voted: false -intersection: - changes: - - 5.3.0 - label: Intersection + - 5.2.0 + - 5.10.1 + - unreleased + label: Graduation Cap search: terms: - - calculus - - equation - - function - - math + - ceremony + - college + - graduate + - learning + - school + - student styles: - solid - regular - light - duotone - unicode: f668 + - thin + unicode: f19d voted: false -inventory: +gramophone: changes: - - 5.0.7 - - 5.10.1 - label: Inventory + - 5.11.0 + - unreleased + label: Gramophone search: terms: - - archive - - box - - shipping - - warehouse + - award + - grammy + - music + - phonograph + - record + - turntable + - victrola styles: - solid - regular - light - duotone - unicode: f480 + - thin + unicode: f8bd voted: false -invision: +gratipay: changes: - - 5.6.0 - label: InVision + - '3.2' + - 5.0.0 + label: Gratipay (Gittip) search: terms: - - app - - design - - interface + - favorite + - heart + - like + - love styles: - brands - unicode: f7b0 + unicode: f184 voted: false -ioxhost: +grav: changes: - - '4.2' + - '4.7' - 5.0.0 - label: ioxhost + label: Grav search: terms: [] styles: - brands - unicode: f208 + unicode: f2d6 voted: false -island-tropical: +greater-than: changes: - - 5.7.0 - label: Tropical Island + - 5.0.13 + - unreleased + label: Greater Than search: terms: - - castaway - - desert - - palm tree - - sand - - stranded - - summer - - vacation + - arithmetic + - compare + - math styles: - solid - regular - light - duotone - unicode: f811 + - thin + unicode: f531 voted: true -italic: +greater-than-equal: changes: - - '1' - - 5.0.0 - - 5.9.0 - - 5.10.1 - - 5.10.2 - label: italic + - 5.0.13 + - unreleased + label: Greater Than Equal To search: terms: - - edit - - emphasis - - font - - format - - text - - type + - arithmetic + - compare + - math styles: - solid - regular - light - duotone - unicode: f033 + - thin + unicode: f532 + voted: true +grid: + aliases: + names: + - grid-3 + changes: + - unreleased + label: Grid + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -itch-io: +grid-2: changes: - - 5.8.0 - label: itch.io + - unreleased + label: Grid 2 search: terms: [] styles: - - brands - unicode: f83a -itunes: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +grid-4: changes: - - 5.0.0 - label: iTunes + - unreleased + label: Grid 4 search: terms: [] styles: - - brands - unicode: f3b4 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -itunes-note: +grid-5: changes: - - 5.0.0 - label: Itunes Note + - unreleased + label: Grid 5 search: terms: [] styles: - - brands - unicode: f3b5 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -jack-o-lantern: +grip: + aliases: + names: + - grip-horizontal changes: - - 5.0.0 - label: Jack-o'-lantern + - 5.1.0 + - unreleased + label: Grip search: terms: - - carve - - face - - halloween - - lantern - - pumpkin - - smile + - affordance + - drag + - drop + - grab + - handle styles: - solid - regular - light - duotone - unicode: f30e - voted: false -java: + - thin + unicode: f58d + voted: true +grip-lines: changes: - - 5.0.10 - - 5.7.0 - - 5.8.0 - label: Java + - 5.6.0 + - unreleased + label: Grip Lines search: - terms: [] + terms: + - affordance + - drag + - drop + - grab + - handle styles: - - brands - unicode: f4e4 - voted: false -jedi: + - solid + - regular + - light + - duotone + - thin + unicode: f7a4 + voted: true +grip-lines-vertical: changes: - - 5.3.0 - label: Jedi + - 5.6.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Grip Lines Vertical search: terms: - - crest - - force - - sith - - skywalker - - star wars - - yoda + - affordance + - drag + - drop + - grab + - handle styles: - solid - regular - light - duotone - unicode: f669 - voted: false -jedi-order: + - thin + unicode: f7a5 + voted: true +grip-vertical: changes: - - 5.0.12 - - 5.7.0 - label: Jedi Order + - 5.1.0 + - unreleased + label: Grip Vertical search: terms: - - star wars + - affordance + - drag + - drop + - grab + - handle styles: - - brands - unicode: f50e - voted: false -jenkins: + - solid + - regular + - light + - duotone + - thin + unicode: f58e + voted: true +gripfire: changes: - 5.0.0 - label: Jenkis + label: 'Gripfire, Inc.' search: terms: [] styles: - brands - unicode: f3b6 + unicode: f3ac voted: false -jira: - changes: - - 5.6.0 - label: Jira - search: - terms: - - atlassian - styles: - - brands - unicode: f7b1 - voted: true -joget: +grunt: changes: - 5.0.0 - label: Joget + label: Grunt search: terms: [] styles: - brands - unicode: f3b7 + unicode: f3ad voted: false -joint: +guarani-sign: changes: - - 5.1.0 - label: Joint + - unreleased + label: Guarani Sign search: - terms: - - blunt - - cannabis - - doobie - - drugs - - marijuana - - roach - - smoke - - smoking - - spliff + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f595 + - thin + unicode: auto voted: false -joomla: +guilded: changes: - - '4.1' - - 5.0.0 - label: Joomla Logo + - 5.15.0 + label: Guilded search: terms: [] styles: - brands - unicode: f1aa - voted: false -journal-whills: + unicode: e07e +guitar: changes: - - 5.3.0 + - 5.6.0 - 5.11.0 - label: Journal of the Whills + - unreleased + label: Guitar search: terms: - - book - - force - - jedi - - sith - - star wars - - yoda - styles: - - solid - - regular + - acoustic + - instrument + - music + - rock + - rock and roll + - song + - strings + styles: + - solid + - regular - light - duotone - unicode: f66a - voted: false -joystick: + - thin + unicode: f7a6 + voted: true +guitar-electric: changes: - 5.11.0 - label: Joystick + - unreleased + label: Guitar Electric search: terms: - - arcade - - atari - - controller - - retro - - video game - - vintage + - axe + - instrument + - music + - rock + - rock and roll + - song + - strings styles: - solid - regular - light - duotone - unicode: f8c5 + - thin + unicode: f8be voted: false -js: +guitars: changes: - - 5.0.0 - label: JavaScript (JS) + - 5.11.0 + - unreleased + label: Guitars search: - terms: [] + terms: + - acoustic + - axes + - electric + - instrument + - music + - rock + - rock and roll + - song + - strings styles: - - brands - unicode: f3b8 + - solid + - regular + - light + - duotone + - thin + unicode: f8bf voted: false -js-square: +gulp: changes: - 5.0.0 - - 5.0.3 - label: JavaScript (JS) Square + label: Gulp search: terms: [] styles: - brands - unicode: f3b9 + unicode: f3ae voted: false -jsfiddle: +h: changes: - - '4.1' - - 5.0.0 - label: jsFiddle + - unreleased + label: H search: terms: [] styles: - - brands - unicode: f1cc - voted: false -jug: - changes: - - 5.11.0 - label: Jug - search: - terms: - - beverage - - bottle - - drink - - moonshine - - pitcher - - western - styles: - - light - - regular - - solid - duotone - unicode: f8c6 - voted: false -kaaba: - changes: - - 5.3.0 - label: Kaaba - search: - terms: - - building - - cube - - islam - - muslim - styles: - solid - regular - light - - duotone - unicode: f66b + - thin + unicode: auto voted: false -kaggle: - changes: - - 5.2.0 - - 5.8.0 - label: Kaggle - search: - terms: [] - styles: - - brands - unicode: f5fa - voted: true -kazoo: +h1: changes: - - 5.11.0 - label: Kazoo + - 5.0.0 + - 5.9.0 + - unreleased + label: H1 Heading search: terms: - - buzz - - instrument - - membranophone - - mirliton - - music + - format + - header + - text + - title styles: - solid - regular - light - duotone - unicode: f8c7 + - thin + unicode: f313 voted: false -kerning: +h2: changes: + - 5.0.0 - 5.9.0 - label: Kerning + - unreleased + label: H2 Heading search: terms: - - adjust - - font - - spacing + - format + - header - text - - tracking - - type - - typography + - title styles: - solid - regular - light - duotone - unicode: f86f + - thin + unicode: f314 voted: false -key: +h3: changes: - - '1' - 5.0.0 - - 5.10.1 - label: key + - 5.9.0 + - unreleased + label: H3 Heading search: terms: - - lock - - password - - private - - secret - - unlock + - format + - header + - text + - title styles: - solid - regular - light - duotone - unicode: f084 + - thin + unicode: f315 voted: false -key-skeleton: +h4: changes: - - 5.4.0 - label: Key Skeleton + - 5.9.0 + - unreleased + label: H4 search: terms: - - halloween - - lock - - password - - private - - secret - - unlock + - format + - header + - text + - title styles: - solid - regular - light - duotone - unicode: f6f3 + - thin + unicode: f86a voted: false -keybase: +hacker-news: changes: - - 5.0.11 - - 5.8.0 - - 5.10.2 - - 5.11.0 - label: Keybase + - '4.1' + - 5.0.0 + label: Hacker News search: terms: [] styles: - brands - unicode: f4f5 - voted: true -keyboard: + unicode: f1d4 + voted: false +hacker-news-square: changes: - - '3.1' - 5.0.0 - label: Keyboard + label: Hacker News Square search: - terms: - - accessory - - edit - - input - - text - - type - - write + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f11c + - brands + unicode: f3af voted: false -keycdn: +hackerrank: changes: - - 5.0.0 - label: KeyCDN + - 5.2.0 + - 5.8.0 + label: Hackerrank search: terms: [] styles: - brands - unicode: f3ba - voted: false -keynote: + unicode: f5f7 + voted: true +hammer: changes: - - 5.3.0 - label: Keynote + - 5.4.0 + - unreleased + label: Hammer search: terms: - - lecture - - panel - - seminar - - speak - - speaker - - talk + - admin + - fix + - repair + - settings + - tool styles: - solid - regular - light - duotone - unicode: f66c - voted: false -khanda: + - thin + unicode: f6e3 + voted: true +hammer-war: changes: - - 5.3.0 - label: Khanda + - 5.4.0 + - 5.10.1 + - unreleased + label: Hammer War search: terms: - - chakkar - - sikh - - sikhism - - sword + - Dungeons & Dragons + - cleric + - d&d + - dnd + - dwarf + - fantasy + - melee attack + - weapon styles: - solid - regular - light - duotone - unicode: f66d + - thin + unicode: f6e4 voted: false -kickstarter: +hamsa: changes: - - 5.0.0 - label: Kickstarter + - 5.3.0 + - unreleased + label: Hamsa search: - terms: [] + terms: + - amulet + - christianity + - islam + - jewish + - judaism + - muslim + - protection styles: - - brands - unicode: f3bb + - solid + - regular + - light + - duotone + - thin + unicode: f665 voted: false -kickstarter-k: +hand-dots: + aliases: + names: + - allergies changes: - - 5.0.0 - label: Kickstarter K + - 5.0.7 + - unreleased + label: Hand dots search: - terms: [] + terms: + - allergy + - freckles + - hand + - hives + - pox + - skin + - spots styles: - - brands - unicode: f3bc + - solid + - regular + - light + - duotone + - thin + unicode: f461 voted: false -kidneys: +hand-heart: changes: - - 5.2.0 - label: Kidneys + - 5.0.9 + - unreleased + label: Hand with Heart search: terms: - - blood - - body - - organ - - surgery - - urine + - care + - charity + - donate + - help styles: - solid - regular - light - duotone - unicode: f5fb + - thin + unicode: f4bc voted: false -kiss: +hand-holding: changes: - - 5.1.0 - - 5.1.1 - - 5.11.0 - - 5.11.1 - label: Kissing Face + - 5.0.9 + - unreleased + label: Hand Holding search: terms: - - beso - - emoticon - - face - - love - - smooch + - carry + - lift styles: - solid - regular - light - duotone - unicode: f596 + - thin + unicode: f4bd voted: false -kiss-beam: +hand-holding-box: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Kissing Face With Smiling Eyes + - 5.0.7 + - 5.0.9 + - unreleased + label: Hand Holding Box search: terms: - - beso - - emoticon - - face - - love - - smooch + - carry + - gift + - handling + - lift + - package styles: - solid - regular - light - duotone - unicode: f597 + - thin + unicode: f47b voted: false -kiss-wink-heart: +hand-holding-dollar: + aliases: + names: + - hand-holding-usd changes: - - 5.1.0 + - 5.0.9 - 5.11.0 - - 5.11.1 - label: Face Blowing a Kiss + - unreleased + label: Hand holding dollar search: terms: - - beso - - emoticon - - face - - love - - smooch + - $ + - carry + - dollar sign + - donation + - giving + - lift + - money + - price styles: - solid - regular - light - duotone - unicode: f598 + - thin + unicode: f4c0 voted: false -kite: +hand-holding-droplet: + aliases: + names: + - hand-holding-water changes: - - 5.4.0 - - 5.7.0 - - 5.10.1 - label: Kite + - 5.0.9 + - 5.13.0 + - unreleased + label: Hand holding droplet search: terms: - - air - - benjamin - - fall - - flying - - franklin - - outdoors - - seasonal - - sky - - wind + - carry + - covid-19 + - drought + - grow + - lift styles: - solid - regular - light - duotone - unicode: f6f4 + - thin + unicode: f4c1 voted: false -kiwi-bird: +hand-holding-heart: changes: - - 5.0.13 - label: Kiwi Bird + - 5.0.9 + - unreleased + label: Hand Holding Heart search: terms: - - bird - - fauna - - new zealand + - carry + - charity + - gift + - lift + - package styles: - solid - regular - light - duotone - unicode: f535 + - thin + unicode: f4be voted: false -knife-kitchen: +hand-holding-magic: changes: - 5.4.0 - label: Knife Kitchen + - unreleased + label: Hand Holding-magic search: terms: - - chef - - cut - - halloween - - sharp - - slice - - tool + - Dungeons & Dragons + - carry + - cast + - d&d + - dnd + - fantasy + - lift + - mage + - spell + - witch + - wizard styles: - solid - regular - light - duotone - unicode: f6f5 + - thin + unicode: f6e5 voted: false -korvue: +hand-holding-medical: changes: - - 5.0.2 - label: KORVUE + - 5.13.0 + - 5.14.0 + - unreleased + label: Hand Holding Medical Cross search: - terms: [] + terms: + - care + - covid-19 + - donate + - help styles: - - brands - unicode: f42f + - light + - regular + - solid + - duotone + - thin + unicode: e05c voted: false -lambda: +hand-holding-seedling: changes: - - 5.3.0 - label: Lambda + - 5.0.9 + - unreleased + label: Hand Holding Seedling search: terms: - - calculus - - equation - - function - - math + - carry + - grow + - lift + - plant styles: - solid - regular - light - duotone - unicode: f66e + - thin + unicode: f4bf voted: false -lamp: +hand-lizard: changes: - - 5.0.9 - - 5.0.10 - label: Lamp + - '4.4' + - 5.0.0 + - unreleased + label: Lizard (Hand) search: terms: - - bright - - furniture - - light + - game + - roshambo styles: - solid - regular - light - duotone - unicode: f4ca + - thin + unicode: f258 voted: false -lamp-desk: +hand-middle-finger: changes: - - 5.12.0 - label: Lamp Desk + - 5.7.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Hand with Middle Finger Raised search: terms: - - bright - - furniture - - light + - flip the bird + - gesture + - hate + - rude styles: - solid - regular - light - duotone - unicode: f914 - voted: false -lamp-floor: - changes: - - 5.12.0 - label: Lamp Floor + - thin + unicode: f806 + voted: true +hand-paper: + changes: + - '4.4' + - 5.0.0 + - unreleased + label: Paper (Hand) search: terms: - - bright - - furniture - - light + - game + - halt + - roshambo + - stop styles: - solid - regular - light - duotone - unicode: f915 + - thin + unicode: f256 voted: false -landmark: +hand-peace: changes: - - 5.3.0 - label: Landmark + - '4.4' + - 5.0.0 + - unreleased + label: Peace (Hand) search: terms: - - building - - historic - - memorable - - monument - - politics + - rest + - truce styles: - solid - regular - light - duotone - unicode: f66f + - thin + unicode: f25b voted: false -landmark-alt: +hand-point-down: changes: - - 5.5.0 - label: Alternative Landmark + - '2' + - 5.0.0 + - unreleased + label: Hand Pointing Down search: terms: - - building - - historic - - memorable - - monument - - politics + - finger + - hand-o-down + - point styles: - solid - regular - light - duotone - unicode: f752 + - thin + unicode: f0a7 voted: false -language: +hand-point-left: changes: - - '4.1' + - '2' - 5.0.0 - - 5.10.2 - label: Language + - unreleased + label: Hand Pointing Left search: terms: - - dialect - - idiom - - localize - - speech - - translate - - vernacular + - back + - finger + - hand-o-left + - left + - point + - previous styles: - solid - regular - light - duotone - unicode: f1ab + - thin + unicode: f0a5 voted: false -laptop: +hand-point-right: changes: - - '3' + - '2' - 5.0.0 - - 5.2.0 - label: Laptop + - unreleased + label: Hand Pointing Right search: terms: - - computer - - cpu - - dell - - demo - - device - - mac - - macbook - - machine - - pc + - finger + - forward + - hand-o-right + - next + - point + - right styles: - solid - regular - light - duotone - unicode: f109 + - thin + unicode: f0a4 voted: false -laptop-code: +hand-point-up: changes: - - 5.2.0 - label: Laptop Code + - '2' + - 5.0.0 + - unreleased + label: Hand Pointing Up search: terms: - - computer - - cpu - - dell - - demo - - develop - - device - - mac - - macbook - - machine - - pc + - finger + - hand-o-up + - point styles: - solid - regular - light - duotone - unicode: f5fc + - thin + unicode: f0a6 voted: false -laptop-house: +hand-pointer: changes: - - 5.13.0 - label: Laptop House + - '4.4' + - 5.0.0 + - unreleased + label: Pointer (Hand) search: terms: - - computer - - covid-19 - - device - - office - - remote - - work from home + - arrow + - cursor + - select styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f966 + - thin + unicode: f25a voted: false -laptop-medical: +hand-rock: changes: - - 5.7.0 - label: Laptop Medical + - '4.4' + - 5.0.0 + - unreleased + label: Rock (Hand) search: terms: - - computer - - device - - ehr - - electronic health records - - history + - fist + - game + - roshambo styles: - solid - regular - light - duotone - unicode: f812 + - thin + unicode: f255 voted: false -laravel: +hand-scissors: changes: + - '4.4' - 5.0.0 - - 5.0.3 - - 5.11.2 - label: Laravel + - unreleased + label: Scissors (Hand) search: - terms: [] + terms: + - cut + - game + - roshambo styles: - - brands - unicode: f3bd + - solid + - regular + - light + - duotone + - thin + unicode: f257 voted: false -lasso: +hand-sparkles: changes: - - 5.11.0 - label: Lasso + - 5.13.0 + - 5.14.0 + - unreleased + label: Hand Sparkles search: terms: - - cowboy - - rodeo - - rope - - select - - selection - - western + - clean + - covid-19 + - hygiene + - magic + - soap + - wash styles: - light - regular - solid - duotone - unicode: f8c8 - voted: false -lastfm: - changes: - - '4.2' - - 5.0.0 - label: last.fm - search: - terms: [] - styles: - - brands - unicode: f202 + - thin + unicode: e05d voted: false -lastfm-square: +hand-spock: changes: - - '4.2' + - '4.4' - 5.0.0 - - 5.0.11 - label: last.fm Square - search: - terms: [] - styles: - - brands - unicode: f203 - voted: false -laugh: - changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Grinning Face With Big Eyes + - 5.12.0 + - unreleased + label: Spock (Hand) search: terms: - - LOL - - emoticon - - face - - laugh - - smile + - live long + - prosper + - salute + - star trek + - vulcan styles: - solid - regular - light - duotone - unicode: f599 + - thin + unicode: f259 voted: false -laugh-beam: +hands: + aliases: + names: + - sign-language + - signing changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Laugh Face with Beaming Eyes + - '4.6' + - 5.0.0 + - 5.10.2 + - unreleased + label: Hands search: terms: - - LOL - - emoticon - - face - - happy - - smile + - Translate + - asl + - deaf + - hands styles: - solid - regular - light - duotone - unicode: f59a + - thin + unicode: f2a7 voted: false -laugh-squint: +hands-asl-interpreting: + aliases: + names: + - american-sign-language-interpreting + - hands-american-sign-language-interpreting + - asl-interpreting changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Laughing Squinting Face + - '4.6' + - 5.0.0 + - unreleased + label: Hands american sign language interpreting search: terms: - - LOL - - emoticon - - face - - happy - - smile + - asl + - deaf + - finger + - hand + - interpret + - speak styles: - solid - regular - light - duotone - unicode: f59b + - thin + unicode: f2a3 voted: false -laugh-wink: +hands-bubbles: + aliases: + names: + - hands-wash changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Laughing Winking Face + - 5.13.0 + - 5.14.0 + - unreleased + label: Hands bubbles search: terms: - - LOL - - emoticon - - face - - happy - - smile + - covid-19 + - hygiene + - soap + - wash styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f59c + - thin + unicode: e05e voted: false -layer-group: +hands-holding: changes: - - 5.2.0 - label: Layer Group + - 5.0.9 + - unreleased + label: Hands holding search: terms: - - arrange - - develop - - layers - - map - - stack + - carry + - hold + - lift styles: - solid - regular - light - duotone - unicode: f5fd + - thin + unicode: f4c2 voted: false -layer-minus: +hands-holding-diamond: + aliases: + names: + - hand-receiving changes: - - 5.2.0 - label: Layer Minus + - 5.0.7 + - 5.0.9 + - unreleased + label: Hands holding diamond search: terms: - - arrange - - delete - - negative - - remove - - stack + - carry + - gift + - handling + - package + - shipping styles: - solid - regular - light - duotone - unicode: f5fe + - thin + unicode: f47c voted: false -layer-plus: +hands-holding-dollar: + aliases: + names: + - hands-usd changes: - - 5.2.0 - label: Layer Plus + - 5.0.9 + - unreleased + label: Hands holding dollar search: terms: - - add - - arrange - - create - - new - - positive - - stack + - $ + - carry + - dollar sign + - donation + - giving + - hold + - money + - price + - usd styles: - solid - regular - light - duotone - unicode: f5ff + - thin + unicode: f4c5 voted: false -leaf: +hands-holding-heart: + aliases: + names: + - hands-heart changes: - - '1' - - 5.0.0 - 5.0.9 - label: leaf + - unreleased + label: Hands holding heart search: terms: - - eco - - flora - - nature - - plant - - vegan + - carry + - gift + - help + - hold + - lift styles: - solid - regular - light - duotone - unicode: f06c + - thin + unicode: f4c3 voted: false -leaf-heart: +hands-praying: + aliases: + names: + - praying-hands changes: - - 5.0.9 - label: Leaf with a Heart + - 5.3.0 + - unreleased + label: Hands praying search: terms: - - eco - - flora - - nature - - plant - - vegan + - kneel + - preach + - religion + - worship styles: - solid - regular - light - duotone - unicode: f4cb + - thin + unicode: f684 voted: false -leaf-maple: +handshake: changes: - - 5.4.0 - label: Maple Leaf + - '4.7' + - 5.0.0 + - 5.0.9 + - unreleased + label: Handshake search: terms: - - eco - - fall - - flora - - nature - - plant - - seasonal + - agreement + - greeting + - meeting + - partnership styles: - solid - regular - light - duotone - unicode: f6f6 + - thin + unicode: f2b5 voted: false -leaf-oak: +handshake-angle: + aliases: + names: + - hands-helping changes: - - 5.4.0 - label: Oak Leaf + - 5.0.9 + - unreleased + label: Handshake angle search: terms: - - eco - - fall - - flora - - nature - - plant - - seasonal + - aid + - assistance + - handshake + - partnership + - volunteering styles: - solid - regular - light - duotone - unicode: f6f7 - voted: false -leanpub: - changes: - - '4.3' - - 5.0.0 - label: Leanpub - search: - terms: [] - styles: - - brands - unicode: f212 + - thin + unicode: f4c4 voted: false -lemon: +handshake-simple: + aliases: + names: + - handshake-alt changes: - - '1' - - 5.0.0 - label: Lemon + - 5.0.9 + - unreleased + label: Handshake simple search: terms: - - citrus - - lemonade - - lime - - tart + - agreement + - greeting + - meeting + - partnership styles: - solid - regular - light - duotone - unicode: f094 - voted: false -less: - changes: - - 5.0.0 - label: Less - search: - terms: [] - styles: - - brands - unicode: f41d + - thin + unicode: f4c6 voted: false -less-than: +handshake-simple-slash: + aliases: + names: + - handshake-alt-slash changes: - - 5.0.13 - label: Less Than + - 5.13.0 + - 5.14.0 + - unreleased + label: Handshake simple slash search: terms: - - arithmetic - - compare - - math + - broken + - covid-19 + - social distance styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f536 - voted: true -less-than-equal: + - thin + unicode: e05f + voted: false +handshake-slash: changes: - - 5.0.13 - label: Less Than Equal To + - 5.13.0 + - 5.14.0 + - unreleased + label: Handshake Slash search: terms: - - arithmetic - - compare - - math + - broken + - covid-19 + - social distance styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f537 - voted: true -level-down: + - thin + unicode: e060 + voted: false +hanukiah: changes: - - '3.1' - - 5.0.0 - - 5.11.0 - label: Level Down + - 5.4.0 + - unreleased + label: Hanukiah search: terms: - - arrow + - candle + - hanukkah + - jewish + - judaism + - light styles: - solid - regular - light - duotone - unicode: f149 + - thin + unicode: f6e6 voted: false -level-down-alt: +hard-drive: + aliases: + names: + - hdd changes: + - '2' - 5.0.0 - label: Alternate Level Down + - 5.10.1 + - unreleased + label: Hard drive search: terms: - - arrow - - level-down + - cpu + - hard drive + - harddrive + - machine + - save + - storage styles: - solid - regular - light - duotone - unicode: f3be + - thin + unicode: f0a0 voted: false -level-up: +hashtag: changes: - - '3.1' + - '4.5' - 5.0.0 - - 5.11.0 - - 5.11.1 - label: Level Up + - unreleased + label: Hashtag search: terms: - - arrow + - Twitter + - instagram + - pound + - social media + - tag styles: - solid - regular - light - duotone - unicode: f148 + - thin + unicode: f292 voted: false -level-up-alt: +hat-chef: changes: - - 5.0.0 - label: Alternate Level Up + - 5.9.0 + - unreleased + label: Chef Hat search: terms: - - arrow - - level-up + - cook + - cuisine + - culinary + - dining + - kitchen styles: - solid - regular - light - duotone - unicode: f3bf - voted: false -life-ring: + - thin + unicode: f86b + voted: true +hat-cowboy: changes: - - '4.1' - - 5.0.0 - label: Life Ring + - 5.11.0 + - unreleased + label: Cowboy Hat search: terms: - - coast guard - - help - - overboard - - save - - support + - buckaroo + - horse + - jackeroo + - john b. + - old west + - pardner + - ranch + - rancher + - rodeo + - western + - wrangler styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f1cd + - thin + unicode: f8c0 voted: false -light-ceiling: +hat-cowboy-side: changes: - - 5.12.0 - label: Light Ceiling + - 5.11.0 + - unreleased + label: Cowboy Hat Side search: terms: - - bright - - furniture - - light - - overhead + - buckaroo + - horse + - jackeroo + - john b. + - old west + - pardner + - ranch + - rancher + - rodeo + - western + - wrangler styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f916 + - thin + unicode: f8c1 voted: false -light-switch: +hat-santa: changes: - - 5.12.0 - label: Light Switch + - 5.6.0 + - unreleased + label: Santa's Hat search: terms: - - light - - 'off' - - 'on' + - accessory + - christmas + - claus + - clothing + - head + - holiday + - santa + - xmas styles: - solid - regular - light - duotone - unicode: f917 - voted: false -light-switch-off: + - thin + unicode: f7a7 +hat-winter: changes: - - 5.12.0 - label: Light Switch-off + - 5.6.0 + - unreleased + label: Hat Winter search: terms: - - light - - 'off' - - 'on' + - accessory + - clothing + - cold + - head + - knitted + - seasonal styles: - solid - regular - light - duotone - unicode: f918 - voted: false -light-switch-on: + - thin + unicode: f7a8 +hat-witch: changes: - - 5.12.0 - label: Light Switch-on + - 5.4.0 + - unreleased + label: Witch's Hat search: terms: - - light - - 'off' - - 'on' + - accessory + - clothing + - halloween + - head + - holiday + - mage + - magic + - sorceror styles: - solid - regular - light - duotone - unicode: f919 + - thin + unicode: f6e7 voted: false -lightbulb: +hat-wizard: changes: - - '3' - - 5.0.0 - - 5.3.0 - label: Lightbulb + - 5.4.0 + - 5.11.0 + - unreleased + label: Wizard's Hat search: terms: - - energy - - idea - - inspiration - - light + - Dungeons & Dragons + - accessory + - buckle + - clothing + - d&d + - dnd + - fantasy + - halloween + - head + - holiday + - mage + - magic + - pointy + - witch styles: - solid - regular - light - duotone - unicode: f0eb + - thin + unicode: f6e8 voted: false -lightbulb-dollar: +head-side: changes: - - 5.3.0 - label: Lightbulb Dollar + - 5.4.0 + - unreleased + label: Head Side search: terms: - - energy - - idea - - inspiration - - light - - money + - bald + - face + - profile + - user styles: - solid - regular - light - duotone - unicode: f670 + - thin + unicode: f6e9 voted: false -lightbulb-exclamation: +head-side-brain: changes: - - 5.3.0 - label: Lightbulb Exclamation + - 5.7.0 + - unreleased + label: Head Side with Brain search: terms: - - alert - - energy - - idea - - inspiration - - light + - diagnosis + - face + - mental health + - profile + - psychiatric + - psychiatry styles: - solid - regular - light - duotone - unicode: f671 + - thin + unicode: f808 voted: false -lightbulb-on: +head-side-cough: changes: - - 5.3.0 - - 5.12.0 - label: Lightbulb On + - 5.13.0 + - 5.14.0 + - unreleased + label: Head Side Cough search: terms: - - energy - - idea - - inspiration - - light - - shine + - cough + - covid-19 + - germs + - lungs + - respiratory + - sick styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f672 + - thin + unicode: e061 voted: false -lightbulb-slash: +head-side-cough-slash: changes: - - 5.3.0 - label: Lightbulb Slash + - 5.13.0 + - 5.14.0 + - unreleased + label: Head Side-cough-slash search: terms: - - dark - - light - - 'off' + - cough + - covid-19 + - germs + - lungs + - respiratory + - sick styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f673 + - thin + unicode: e062 voted: false -lights-holiday: +head-side-goggles: + aliases: + names: + - head-vr changes: - - 5.6.0 - - 5.10.1 - label: Holiday Lights + - 5.4.0 + - unreleased + label: Head side goggles search: terms: - - bulb - - christmas - - decoration - - holiday - - string - - xmas + - 3d + - augmented + - face + - occulus + - profile + - reality + - virtual styles: - solid - regular - light - duotone - unicode: f7b2 -line: - changes: - - 5.0.0 - label: Line - search: - terms: [] - styles: - - brands - unicode: f3c0 - voted: false -line-columns: + - thin + unicode: f6ea + voted: true +head-side-headphones: changes: - - 5.9.0 - label: Line Columns + - 5.11.0 + - unreleased + label: Head Side with Headphones search: terms: - - divide - - organize - - panes - - split + - amplifier + - bluetooth + - earphone + - headset + - listen + - microphone + - music styles: - solid - regular - light - duotone - unicode: f870 + - thin + unicode: f8c2 voted: false -line-height: +head-side-heart: changes: - - 5.9.0 - label: Line Height + - unreleased + label: Head Side-heart search: - terms: - - baseline - - letter - - spacing - - text + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f871 + - thin + unicode: auto voted: false -link: +head-side-mask: changes: - - '2' - - 5.0.0 - label: Link + - 5.13.0 + - 5.14.0 + - unreleased + label: Head Side Mask search: terms: - - attach - - attachment - - chain - - connect + - breath + - covid-19 + - filter + - respirator + - virus styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f0c1 - voted: false -linkedin: - changes: - - '1' - - 5.0.0 - label: LinkedIn - search: - terms: - - linkedin-square - styles: - - brands - unicode: f08c - voted: false -linkedin-in: - changes: - - '2' - - 5.0.0 - - 5.4.1 - - 5.8.0 - - 5.8.1 - label: LinkedIn In - search: - terms: - - linkedin - styles: - - brands - unicode: f0e1 - voted: false -linode: - changes: - - '4.7' - - 5.0.0 - label: Linode - search: - terms: [] - styles: - - brands - unicode: f2b8 - voted: false -linux: - changes: - - '3.2' - - 5.0.0 - label: Linux - search: - terms: - - tux - styles: - - brands - unicode: f17c + - thin + unicode: e063 voted: false -lips: +head-side-medical: changes: - - 5.2.0 - label: Lips + - 5.7.0 + - unreleased + label: Head Side with Medical Symbol search: terms: - - fashion - - kiss - - lipstick - - mouth - - smile + - diagnosis + - face + - mental health + - profile + - psychiatric + - psychiatry styles: - solid - regular - light - duotone - unicode: f600 + - thin + unicode: f809 voted: false -lira-sign: +head-side-virus: changes: - - '4' - - 5.0.0 - label: Turkish Lira Sign + - 5.13.0 + - 5.14.0 + - unreleased + label: Head Side Virus search: terms: - - currency - - money - - try - - turkish + - cold + - covid-19 + - flu + - sick styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f195 + - thin + unicode: e064 voted: false -list: +heading: + aliases: + names: + - header changes: - - '1' + - '4.1' - 5.0.0 - 5.9.0 - label: List + - 5.10.1 + - 5.10.2 + - unreleased + label: heading search: terms: - - checklist - - completed - - done - - finished - - ol - - todo - - ul + - format + - header + - text + - title styles: - solid - regular - light - duotone - unicode: f03a + - thin + unicode: f1dc voted: false -list-alt: +headphones: changes: - '1' - 5.0.0 - label: Alternate List + - unreleased + label: headphones search: terms: - - checklist - - completed - - done - - finished - - ol - - todo - - ul + - audio + - listen + - music + - sound + - speaker styles: - solid - regular - light - duotone - unicode: f022 + - thin + unicode: f025 voted: false -list-music: +headphones-simple: + aliases: + names: + - headphones-alt changes: - - 5.11.0 - label: List Music + - 5.1.0 + - unreleased + label: Headphones simple search: terms: - - album - - itunes + - audio + - listen - music - - playlist - - podcast - - soundtrack + - sound + - speaker styles: - solid - regular - light - duotone - unicode: f8c9 - voted: false -list-ol: + - thin + unicode: f58f + voted: true +headset: changes: - - '2' - - 5.0.0 - - 5.9.0 - label: list-ol + - 5.1.0 + - unreleased + label: Headset search: terms: - - checklist - - completed - - done - - finished - - numbers - - ol - - todo - - ul + - audio + - gamer + - gaming + - listen + - live chat + - microphone + - shot caller + - sound + - support + - telemarketer styles: - solid - regular - light - duotone - unicode: f0cb - voted: false -list-ul: + - thin + unicode: f590 + voted: true +heart: changes: - - '2' + - '1' - 5.0.0 - - 5.9.0 - label: list-ul + - 5.0.9 + - 5.10.1 + - 5.10.2 + - unreleased + label: Heart search: terms: - - checklist - - completed - - done - - finished - - ol - - todo - - ul + - favorite + - like + - love + - relationship + - valentine styles: - solid - regular - light - duotone - unicode: f0ca + - thin + unicode: f004 voted: false -location: +heart-crack: + aliases: + names: + - heart-broken changes: - - 5.2.0 - - 5.11.0 - label: Location + - 5.6.0 + - 5.10.2 + - unreleased + label: Heart crack search: terms: - - address - - coordinate - - direction - - gps - - map - - navigation - - place - - where + - breakup + - crushed + - dislike + - dumped + - grief + - love + - lovesick + - relationship + - sad styles: - solid - regular - light - duotone - unicode: f601 - voted: false -location-arrow: + - thin + unicode: f7a9 + voted: true +heart-half: changes: - - '3.1' - - 5.0.0 - label: location-arrow + - unreleased + label: Heart Half search: - terms: - - address - - compass - - coordinate - - direction - - gps - - map - - navigation - - place + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f124 + - thin + unicode: auto voted: false -location-circle: +heart-half-stroke: + aliases: + names: + - heart-half-alt changes: - - 5.2.0 - - 5.11.0 - - 5.11.1 - label: Location Circle + - unreleased + label: Heart half stroke search: - terms: - - address - - compass - - coordinate - - direction - - gps - - map - - navigation - - place + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f602 + - thin + unicode: auto voted: false -location-slash: +heart-pulse: + aliases: + names: + - heartbeat changes: - - 5.2.0 - label: Location Slash + - '4.3' + - 5.0.0 + - 5.0.7 + - unreleased + label: Heart pulse search: terms: - - address - - coordinate - - direction - - gps - - map - - navigation - - place - - where + - ekg + - electrocardiogram + - health + - lifeline + - vital signs styles: - solid - regular - light - duotone - unicode: f603 + - thin + unicode: f21e voted: false -lock: +heat: changes: - - '1' - - 5.0.0 - label: lock + - 5.12.0 + - 5.14.0 + - unreleased + label: Heat search: terms: - - admin - - lock - - open - - password - - private - - protect - - security + - ac + - air conditioner + - boiler + - heating + - hot + - sauna + - spa + - summer + - temperature styles: - solid - regular - light - duotone - unicode: f023 + - thin + unicode: e00c voted: false -lock-alt: +helicopter: changes: - - 5.0.0 - label: Alternate Lock + - 5.0.13 + - unreleased + label: Helicopter search: terms: - - admin - - lock - - open - - password - - private - - protect - - security + - airwolf + - apache + - chopper + - flight + - fly + - travel styles: - solid - regular - light - duotone - unicode: f30d - voted: false -lock-open: + - thin + unicode: f533 + voted: true +helmet-battle: changes: - - '3.1' - - 5.0.0 - - 5.0.1 - label: Lock Open + - 5.4.0 + - unreleased + label: Battle Helmet search: terms: - - admin - - lock - - open - - password - - private - - protect - - security + - Dungeons & Dragons + - armor + - clothing + - d&d + - dnd + - fantasy + - hat + - knight + - paladin styles: - solid - regular - light - duotone - unicode: f3c1 + - thin + unicode: f6eb voted: false -lock-open-alt: +helmet-safety: + aliases: + names: + - hat-hard + - hard-hat changes: - - '3.1' - - 5.0.0 - label: Alternate Lock Open + - 5.7.0 + - unreleased + label: Helmet safety search: terms: - - admin - - lock - - open - - password - - private - - protect - - security + - construction + - hardhat + - helmet + - safety styles: - solid - regular - light - duotone - unicode: f3c2 - voted: false -long-arrow-alt-down: + - thin + unicode: f807 + voted: true +hexagon: changes: - 5.0.0 - label: Alternate Long Arrow Down + - 5.10.1 + - 5.10.2 + - unreleased + label: Hexagon search: terms: - - download - - long-arrow-down + - geometry + - honeycomb + - polygon + - shape styles: - solid - regular - light - duotone - unicode: f309 + - thin + unicode: f312 voted: false -long-arrow-alt-left: +hexagon-minus: + aliases: + names: + - minus-hexagon changes: - 5.0.0 - label: Alternate Long Arrow Left + - 5.11.0 + - unreleased + label: Hexagon minus search: terms: - - back - - long-arrow-left - - previous + - delete + - hide + - negative + - remove + - shape + - trash styles: - solid - regular - light - duotone - unicode: f30a + - thin + unicode: f307 voted: false -long-arrow-alt-right: +hexagon-plus: + aliases: + names: + - plus-hexagon changes: - 5.0.0 - label: Alternate Long Arrow Right + - 5.11.0 + - unreleased + label: Hexagon plus search: terms: - - forward - - long-arrow-right - - next + - add + - create + - expand + - new + - positive + - shape styles: - solid - regular - light - duotone - unicode: f30b + - thin + unicode: f300 voted: false -long-arrow-alt-up: +hexagon-xmark: + aliases: + names: + - times-hexagon + - xmark-hexagon changes: - 5.0.0 - label: Alternate Long Arrow Up + - 5.11.0 + - unreleased + label: Hexagon xmark search: terms: - - long-arrow-up - - upload + - close + - cross + - exit + - incorrect + - notice + - notification + - notify + - problem + - wrong + - x styles: - solid - regular - light - duotone - unicode: f30c + - thin + unicode: f2ee voted: false -long-arrow-down: +highlighter: changes: - - '3.2' - - 5.0.0 - label: Long Arrow Down + - 5.1.0 + - 5.10.1 + - unreleased + label: Highlighter search: terms: - - download - - long-arrow-down + - edit + - marker + - sharpie + - update + - write styles: - solid - regular - light - duotone - unicode: f175 - voted: false -long-arrow-left: + - thin + unicode: f591 + voted: true +highlighter-line: changes: - - '3.2' - - 5.0.0 - label: Long Arrow Left + - unreleased + label: Highlighter Line search: - terms: - - back - - long-arrow-left - - previous + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f177 + - thin + unicode: auto voted: false -long-arrow-right: +hippo: changes: - - '3.2' - - 5.0.0 - label: Long Arrow Right + - 5.4.0 + - 5.10.1 + - unreleased + label: Hippo search: terms: - - forward - - long-arrow-right - - next + - animal + - fauna + - hippopotamus + - hungry + - mammal styles: - solid - regular - light - duotone - unicode: f178 + - thin + unicode: f6ed voted: false -long-arrow-up: +hips: + changes: + - 5.0.5 + label: Hips + search: + terms: [] + styles: + - brands + unicode: f452 + voted: false +hire-a-helper: changes: - - '3.2' - 5.0.0 - label: Long Arrow Up + label: HireAHelper + search: + terms: [] + styles: + - brands + unicode: f3b0 + voted: false +hive: + changes: + - 5.15.0 + label: Hive Blockchain Network + search: + terms: [] + styles: + - brands + unicode: e07f + voted: false +hockey-mask: + changes: + - 5.4.0 + - unreleased + label: Hockey Mask search: terms: - - long-arrow-up - - upload + - clothing + - friday + - halloween + - ice + - jason + - nhl + - protection + - sport + - thirteenth styles: - solid - regular - light - duotone - unicode: f176 + - thin + unicode: f6ee voted: false -loveseat: +hockey-puck: changes: - - 5.0.9 - label: Loveseat + - 5.0.5 + - unreleased + label: Hockey Puck search: terms: - - chair - - couch - - cushion - - furniture - - relax - - sofa + - ice + - nhl + - sport styles: - solid - regular - light - duotone - unicode: f4cc + - thin + unicode: f453 voted: false -low-vision: +hockey-sticks: changes: - - '4.6' - - 5.0.0 - label: Low Vision + - 5.0.5 + - 5.10.1 + - unreleased + label: Hockey Sticks search: terms: - - blind - - eye - - sight + - ice + - nhl + - sport styles: - solid - regular - light - duotone - unicode: f2a8 + - thin + unicode: f454 voted: false -luchador: +holly-berry: changes: - - 5.0.5 - label: Luchador + - 5.6.0 + - unreleased + label: Holly Berry search: terms: - - fight - - mexico - - nacho libre - - wrestle - - wrestling + - catwoman + - christmas + - decoration + - flora + - halle + - holiday + - ororo munroe + - plant + - storm + - xmas styles: - solid - regular - light - duotone - unicode: f455 - voted: false -luggage-cart: + - thin + unicode: f7aa +home: + aliases: + names: + - home-lg + unicodes: + - f80b changes: - - 5.1.0 - label: Luggage Cart + - '1' + - 5.0.0 + - 5.7.0 + - unreleased + label: home search: terms: - - bag - - baggage - - suitcase - - travel + - abode + - building + - house + - main styles: - solid - regular - light - duotone - unicode: f59d + - thin + unicode: f015 voted: false -lungs: +home-heart: changes: - - 5.2.0 - label: Lungs + - 5.0.9 + - 5.7.0 + - unreleased + label: Home Heart search: terms: - - air - - breath - - covid-19 - - organ - - respiratory + - abode + - building + - charity + - house + - main styles: - solid - regular - light - duotone - unicode: f604 + - thin + unicode: f4c9 voted: false -lungs-virus: +home-simple: + aliases: + names: + - home-lg-alt + unicodes: + - f80c changes: - - 5.13.0 - label: Lungs Virus + - 5.7.0 + - unreleased + label: Home simple search: terms: - - breath - - covid-19 - - respiratory - - sick + - abode + - building + - house + - main styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f967 + - thin + unicode: f80a voted: false -lyft: +home-user: changes: - - 5.0.0 - label: lyft + - unreleased + label: Home User search: terms: [] styles: - - brands - unicode: f3c3 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -mace: +hood-cloak: changes: - 5.4.0 - label: Mace + - 5.10.1 + - unreleased + label: Hood Cloak search: terms: - Dungeons & Dragons + - clothing - d&d - dnd - fantasy - - melee attack - - weapon - - windu + - hat + - rogue + - stealth styles: - solid - regular - light - duotone - unicode: f6f8 + - thin + unicode: f6ef voted: false -magento: +hooli: changes: - 5.0.0 - label: Magento + - 5.7.0 + label: Hooli search: terms: [] styles: - brands - unicode: f3c4 + unicode: f427 voted: false -magic: +horizontal-rule: changes: - - '2' - - 5.0.0 - - 5.1.0 - label: magic + - 5.9.0 + - unreleased + label: Horizontal Rule search: terms: - - autocomplete - - automatic - - mage - - magic - - spell - - wand - - witch - - wizard + - divider + - hr + - line + - page break styles: - solid - regular - light - duotone - unicode: f0d0 + - thin + unicode: f86c voted: false -magnet: +hornbill: changes: - - '1' - - 5.0.0 + - 5.1.0 - 5.8.0 - label: magnet + label: Hornbill search: - terms: - - Attract - - lodestone - - tool + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f076 + - brands + unicode: f592 voted: false -mail-bulk: +horse: changes: - - 5.3.0 - label: Mail Bulk + - 5.4.0 + - 5.10.1 + - unreleased + label: Horse search: terms: - - archive - - envelope - - letter - - post office - - postal - - postcard - - send - - stamp - - usps + - equus + - fauna + - mammmal + - mare + - neigh + - pony styles: - solid - regular - light - duotone - unicode: f674 + - thin + unicode: f6f0 voted: false -mailbox: +horse-head: changes: - - 5.7.0 + - 5.6.0 - 5.10.1 - label: Mailbox + - unreleased + label: Horse Head search: terms: - - archive - - envelope - - letter - - post office - - postal - - postcard - - send - - stamp - - usps + - equus + - fauna + - mammmal + - mare + - neigh + - pony styles: - solid - regular - light - duotone - unicode: f813 - voted: true -mailchimp: + - thin + unicode: f7ab +horse-saddle: changes: - - 5.1.0 - - 5.7.0 - - 5.8.0 - - 5.8.2 - label: Mailchimp + - 5.11.0 + - unreleased + label: Horse Saddle search: - terms: [] + terms: + - cowboy + - equus + - fauna + - mammmal + - mare + - neigh + - pony + - rodeo + - western styles: - - brands - unicode: f59e - voted: true -male: + - light + - regular + - solid + - duotone + - thin + unicode: f8c3 + voted: false +hospital: changes: - - '3.2' + - '3' - 5.0.0 - label: Male + - unreleased + label: hospital search: terms: - - human - - man - - person - - profile - - user + - building + - covid-19 + - emergency room + - medical center styles: - solid - regular - light - duotone - unicode: f183 - voted: false -mandalorian: - changes: - - 5.0.12 - - 5.8.0 - label: Mandalorian - search: - terms: [] - styles: - - brands - unicode: f50f + - thin + unicode: f0f8 voted: false -mandolin: +hospital-user: changes: - - 5.4.0 - - 5.11.0 - label: Mandolin + - 5.7.0 + - unreleased + label: Hospital with User search: terms: - - Dungeons & Dragons - - bard - - d&d - - dnd - - fantasy - - guitar - - instrument - - lute - - music - - song - - strings + - covid-19 + - doctor + - network + - patient + - primary care styles: - solid - regular - light - duotone - unicode: f6f9 + - thin + unicode: f80d voted: false -map: +hospital-wide: + aliases: + names: + - hospital-alt changes: - - '4.4' - - 5.0.0 - - 5.1.0 - label: Map + - 5.0.7 + - unreleased + label: Hospital wide search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route - - travel + - building + - covid-19 + - emergency room + - medical center styles: - solid - regular - light - duotone - unicode: f279 + - thin + unicode: f47d voted: false -map-marked: +hospitals: changes: - - 5.1.0 - label: Map Marked + - 5.7.0 + - unreleased + label: Hospitals search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route - - travel + - emergency + - insurance + - network styles: - solid - regular - light - duotone - unicode: f59f + - thin + unicode: f80e voted: false -map-marked-alt: +hot-tub-person: + aliases: + names: + - hot-tub changes: - 5.1.0 - label: Alternate Map Marked + - unreleased + label: Hot tub person search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route - - travel + - bath + - jacuzzi + - massage + - sauna + - spa styles: - solid - regular - light - duotone - unicode: f5a0 + - thin + unicode: f593 voted: false -map-marker: +hotdog: changes: - - '1' - - 5.0.0 - label: map-marker + - 5.7.0 + - unreleased + label: Hot Dog search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route - - travel + - bun + - chili + - frankfurt + - frankfurter + - kosher + - polish + - sandwich + - sausage + - vienna + - weiner styles: - solid - regular - light - duotone - unicode: f041 + - thin + unicode: f80f voted: false -map-marker-alt: +hotel: changes: - - 5.0.0 - label: Alternate Map Marker + - 5.1.0 + - unreleased + label: Hotel search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route + - building + - inn + - lodging + - motel + - resort - travel styles: - solid - regular - light - duotone - unicode: f3c5 + - thin + unicode: f594 voted: false -map-marker-alt-slash: +hotjar: changes: - - 5.2.0 - label: Alternate Map Marker Slash + - 5.0.0 + label: Hotjar + search: + terms: [] + styles: + - brands + unicode: f3b1 + voted: false +hourglass: + aliases: + names: + - hourglass-2 + - hourglass-half + changes: + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Hourglass search: terms: - - address - - coordinates - - destination - - gps - - localize - - location - - map - - navigation - - paper - - pin - - place - - point of interest - - position - - route - - travel + - hour + - minute + - sand + - stopwatch + - time styles: - solid - regular - light - duotone - unicode: f605 + - thin + unicode: f254 voted: false -map-marker-check: +hourglass-empty: changes: - - 5.2.0 - label: Map Marker Check + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Hourglass empty search: terms: - - agree - - coordinates - - destination - - location - - map - - navigation - - pin - - place - - select - - success - - tick - - todo + - hour + - minute + - sand + - stopwatch + - time styles: - solid - regular - light - duotone - unicode: f606 + - thin + unicode: f252 voted: false -map-marker-edit: +hourglass-end: + aliases: + names: + - hourglass-3 changes: - - 5.2.0 - label: Map Marker Edit + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Hourglass End search: terms: - - agree - - coordinates - - destination - - edit - - location - - map - - navigation - - pen - - pencil - - pin - - place - - update - - write + - hour + - minute + - sand + - stopwatch + - time styles: - solid - regular - light - duotone - unicode: f607 + - thin + unicode: f253 voted: false -map-marker-exclamation: +hourglass-start: + aliases: + names: + - hourglass-1 changes: - - 5.2.0 - label: Map Marker Exclamation + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Hourglass Start search: terms: - - agree - - alert - - coordinates - - destination - - important - - location - - map - - navigation - - pin - - place + - hour + - minute + - sand + - stopwatch + - time styles: - solid - regular - light - duotone - unicode: f608 + - thin + unicode: f251 voted: false -map-marker-minus: +house: changes: - - 5.2.0 - label: Map Marker Minus + - 5.12.0 + - 5.14.0 + - unreleased + label: House search: terms: - - agree - - coordinates - - delete - - destination - - location - - map - - navigation - - negative - - pin - - place - - remove + - abode + - building + - family + - home + - residence styles: - solid - regular - light - duotone - unicode: f609 + - thin + unicode: e00d voted: false -map-marker-plus: +house-crack: + aliases: + names: + - house-damage changes: - - 5.2.0 - label: Map Marker Plus + - 5.4.0 + - unreleased + label: House crack search: terms: - - add - - agree - - coordinates - - create - - destination - - location - - map - - navigation - - new - - pin - - place - - positive + - building + - devastation + - disaster + - home + - insurance styles: - solid - regular - light - duotone - unicode: f60a + - thin + unicode: f6f1 voted: false -map-marker-question: +house-day: changes: - - 5.2.0 - label: Map Marker Question + - 5.12.0 + - 5.14.0 + - unreleased + label: House Day search: terms: - - agree - - coordinates - - destination - - help - - info - - location - - map - - navigation - - pin - - place - - support + - abode + - building + - family + - home + - residence + - solar + - sun styles: - solid - regular - light - duotone - unicode: f60b + - thin + unicode: e00e voted: false -map-marker-slash: +house-flood: changes: - - 5.2.0 - label: Map Marker Slash + - 5.5.0 + - unreleased + label: Flooded House search: terms: - - agree - - cancel - - coordinates - - destination - - location - - map - - missing - - navigation - - pin - - place + - building + - devastation + - disaster + - home + - insurance + - water styles: - solid - regular - light - duotone - unicode: f60c + - thin + unicode: f74f voted: false -map-marker-smile: +house-heart: changes: - - 5.2.0 - label: Map Marker Smile + - unreleased + label: House Heart search: - terms: - - agree - - coordinates - - destination - - emoji - - happy - - location - - map - - navigation - - pin - - place - - success + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f60d + - thin + unicode: auto voted: false -map-marker-times: +house-laptop: + aliases: + names: + - laptop-house changes: - - 5.2.0 - label: Map Marker Times + - 5.13.0 + - 5.14.0 + - unreleased + label: House laptop search: terms: - - agree - - archive - - coordinates - - delete - - destination - - location - - map - - navigation - - pin - - place - - remove - - x + - computer + - covid-19 + - device + - office + - remote + - work from home styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f60e + - thin + unicode: e066 voted: false -map-pin: +house-medical: + aliases: + names: + - clinic-medical changes: - - '4.4' - - 5.0.0 - - 5.2.0 - label: Map Pin + - 5.7.0 + - unreleased + label: House medical search: terms: - - address - - agree - - coordinates - - destination - - gps - - localize - - location - - map - - marker - - navigation - - pin - - place - - position - - travel + - covid-19 + - doctor + - general practitioner + - hospital + - infirmary + - medicine + - office + - outpatient styles: - solid - regular - light - duotone - unicode: f276 + - thin + unicode: f7f2 voted: false -map-signs: +house-night: changes: - - '4.4' - - 5.0.0 - - 5.2.0 - label: Map Signs + - 5.12.0 + - 5.14.0 + - unreleased + label: House Night search: terms: - - directions - - directory - - map - - signage - - wayfinding + - abode + - building + - family + - home + - moon + - residence + - stars styles: - solid - regular - light - duotone - unicode: f277 + - thin + unicode: e010 voted: false -markdown: +house-person-leave: + aliases: + names: + - house-person-depart changes: - - 5.2.0 + - 5.12.0 + - 5.14.0 + - unreleased + label: House person leave + search: + terms: + - abode + - building + - depart + - family + - home + - residence + - work + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e00f + voted: false +house-person-return: + aliases: + names: + - house-person-arrive + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: House person return + search: + terms: + - abode + - arrival + - building + - family + - home + - residence + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e011 + voted: false +house-signal: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: House Signal + search: + terms: + - abode + - building + - connect + - family + - home + - residence + - smart home + - wifi + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e012 + voted: false +house-user: + changes: + - 5.13.0 + - 5.14.0 + - unreleased + label: House User + search: + terms: + - covid-19 + - home + - isolation + - quarantine + styles: + - light + - regular + - solid + - duotone + - thin + unicode: e065 + voted: false +houzz: + changes: + - '4.4' + - 5.0.0 + - 5.0.9 + - 5.8.0 + label: Houzz + search: + terms: [] + styles: + - brands + unicode: f27c + voted: false +hryvnia-sign: + aliases: + names: + - hryvnia + changes: + - 5.4.0 + - unreleased + label: Hryvnia sign + search: + terms: + - currency + - money + - ukraine + - ukrainian + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f2 + voted: true +html5: + changes: + - '3.1' + - 5.0.0 + label: HTML 5 Logo + search: + terms: [] + styles: + - brands + unicode: f13b + voted: false +hubspot: + changes: + - 5.0.0 + label: HubSpot + search: + terms: [] + styles: + - brands + unicode: f3b2 + voted: false +hurricane: + changes: + - 5.5.0 + - 5.10.1 + - unreleased + label: Hurricane + search: + terms: + - coriolis effect + - eye + - storm + - tropical cyclone + - typhoon + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f751 + voted: false +i: + changes: + - unreleased + label: I + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +i-cursor: + changes: + - '4.4' + - 5.0.0 + - unreleased + label: I Beam Cursor + search: + terms: + - editing + - i-beam + - type + - writing + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f246 + voted: false +ice-cream: + changes: + - 5.7.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Ice Cream + search: + terms: + - chocolate + - cone + - dessert + - frozen + - scoop + - sorbet + - vanilla + - yogurt + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f810 + voted: false +ice-skate: + changes: + - 5.6.0 + - unreleased + label: Ice Skate + search: + terms: + - blade + - clothing + - figure skating + - hockey + - seasonal + - shoe + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7ac +icicles: + changes: + - 5.6.0 + - unreleased + label: Icicles + search: + terms: + - cold + - frozen + - hanging + - ice + - seasonal + - sharp + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7ad +icons: + aliases: + names: + - heart-music-camera-bolt + changes: + - 5.9.0 + - unreleased + label: Icons + search: + terms: + - bolt + - emoji + - heart + - image + - music + - photo + - symbols + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f86d + voted: false +id-badge: + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + - unreleased + label: Identification Badge + search: + terms: + - address + - contact + - identification + - license + - profile + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2c1 + voted: false +id-card: + aliases: + names: + - drivers-license + changes: + - '4.7' + - 5.0.0 + - 5.0.3 + - 5.8.0 + - 5.10.1 + - unreleased + label: Identification Card + search: + terms: + - contact + - demographics + - document + - identification + - issued + - profile + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2c2 + voted: false +id-card-clip: + aliases: + names: + - id-card-alt + changes: + - 5.0.7 + - 5.10.1 + - unreleased + label: Id card clip + search: + terms: + - contact + - demographics + - document + - identification + - issued + - profile + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f47f + voted: false +ideal: + changes: + - 5.12.0 + - 5.14.0 + label: iDeal + search: + terms: [] + styles: + - brands + unicode: e013 + voted: true +igloo: + changes: + - 5.6.0 + - unreleased + label: Igloo + search: + terms: + - dome + - dwelling + - eskimo + - home + - house + - ice + - snow + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7ae +image: + changes: + - '1' + - 5.0.0 + - 5.10.1 + - unreleased + label: Image + search: + terms: + - album + - landscape + - photo + - picture + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f03e + voted: false +image-landscape: + aliases: + names: + - landscape + changes: + - unreleased + label: Image landscape + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +image-polaroid: + changes: + - 5.11.0 + - unreleased + label: Polaroid Image + search: + terms: + - capture + - film + - instant camera + - lens + - photo + - photography + - retro + - snapshot + - vintage + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f8c4 + voted: false +image-polaroid-user: + changes: + - unreleased + label: Image Polaroid-user + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +image-portrait: + aliases: + names: + - portrait + changes: + - 5.0.0 + - 5.0.3 + - unreleased + label: Image portrait + search: + terms: + - id + - image + - photo + - picture + - selfie + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3e0 + voted: false +image-user: + changes: + - unreleased + label: Image User + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +images: + changes: + - '1' + - 5.0.0 + - 5.10.1 + - unreleased + label: Images + search: + terms: + - album + - landscape + - photo + - picture + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f302 + voted: false +images-user: + changes: + - unreleased + label: Images User + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +imdb: + changes: + - '4.7' + - 5.0.0 + label: IMDB + search: + terms: [] + styles: + - brands + unicode: f2d8 + voted: false +inbox: + changes: + - '1' + - 5.0.0 + - unreleased + label: inbox + search: + terms: + - archive + - desk + - email + - mail + - message + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f01c + voted: false +inbox-full: + changes: + - unreleased + label: Inbox Full + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +inbox-in: + aliases: + names: + - inbox-arrow-down + changes: + - 5.0.0 + - 5.10.1 + - unreleased + label: Inbox In + search: + terms: + - archive + - desk + - email + - mail + - message + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f310 + voted: false +inbox-out: + aliases: + names: + - inbox-arrow-up + changes: + - 5.0.0 + - 5.10.1 + - unreleased + label: Inbox Out + search: + terms: + - archive + - desk + - email + - mail + - message + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f311 + voted: false +inboxes: + changes: + - unreleased + label: Inboxes + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +indent: + changes: + - '1' + - 5.0.0 + - 5.9.0 + - unreleased + label: Indent + search: + terms: + - align + - justify + - paragraph + - tab + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f03c + voted: false +indian-rupee-sign: + aliases: + names: + - indian-rupee + - inr + changes: + - unreleased + label: Indian Rupee-sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +industry: + changes: + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Industry + search: + terms: + - building + - factory + - industrial + - manufacturing + - mill + - warehouse + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f275 + voted: false +industry-windows: + aliases: + names: + - industry-alt + changes: + - 5.0.0 + - unreleased + label: Industry windows + search: + terms: + - building + - factory + - industrial + - manufacturing + - mill + - warehouse + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3b3 + voted: false +infinity: + changes: + - 5.0.13 + - 5.3.0 + - 5.10.1 + - unreleased + label: Infinity + search: + terms: + - eternity + - forever + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f534 + voted: true +info: + changes: + - '3.1' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Info + search: + terms: + - details + - help + - information + - more + - support + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f129 + voted: false +inhaler: + changes: + - 5.2.0 + - unreleased + label: Inhaler + search: + terms: + - asthma + - cough + - lungs + - nebulizer + - vaporizer + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5f9 + voted: false +innosoft: + changes: + - 5.15.0 + label: Innosoft + search: + terms: [] + styles: + - brands + unicode: e080 + voted: false +input-numeric: + changes: + - unreleased + label: Input Numeric + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +input-pipe: + changes: + - unreleased + label: Input Pipe + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +input-text: + changes: + - unreleased + label: Input Text + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +instagram: + changes: + - '4.6' + - 5.0.0 + label: Instagram + search: + terms: [] + styles: + - brands + unicode: f16d + voted: false +instagram-square: + changes: + - 5.12.1 + - 5.14.0 + label: Instagram Square + search: + terms: [] + styles: + - brands + unicode: e055 + voted: true +instalod: + changes: + - 5.15.0 + label: InstaLOD + search: + terms: [] + styles: + - brands + unicode: e081 + voted: false +integral: + changes: + - 5.3.0 + - unreleased + label: Integral + search: + terms: + - calculus + - equation + - function + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f667 + voted: false +intercom: + changes: + - 5.6.0 + label: Intercom + search: + terms: + - app + - customer + - messenger + styles: + - brands + unicode: f7af + voted: false +internet-explorer: + changes: + - '4.4' + - 5.0.0 + label: Internet-explorer + search: + terms: + - browser + - ie + styles: + - brands + unicode: f26b + voted: false +intersection: + changes: + - 5.3.0 + - unreleased + label: Intersection + search: + terms: + - calculus + - equation + - function + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f668 + voted: false +invision: + changes: + - 5.6.0 + label: InVision + search: + terms: + - app + - design + - interface + styles: + - brands + unicode: f7b0 + voted: false +ioxhost: + changes: + - '4.2' + - 5.0.0 + label: ioxhost + search: + terms: [] + styles: + - brands + unicode: f208 + voted: false +island-tropical: + aliases: + names: + - island-tree-palm + changes: + - 5.7.0 + - unreleased + label: Tropical Island + search: + terms: + - castaway + - desert + - palm tree + - sand + - stranded + - summer + - vacation + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f811 + voted: true +italic: + changes: + - '1' + - 5.0.0 + - 5.9.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: italic + search: + terms: + - edit + - emphasis + - font + - format + - text + - type + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f033 + voted: false +itch-io: + changes: + - 5.8.0 + label: itch.io + search: + terms: [] + styles: + - brands + unicode: f83a +itunes: + changes: + - 5.0.0 + label: iTunes + search: + terms: [] + styles: + - brands + unicode: f3b4 + voted: false +itunes-note: + changes: + - 5.0.0 + label: Itunes Note + search: + terms: [] + styles: + - brands + unicode: f3b5 + voted: false +j: + changes: + - unreleased + label: J + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +jack-o-lantern: + changes: + - 5.0.0 + - unreleased + label: Jack-o'-lantern + search: + terms: + - carve + - face + - halloween + - lantern + - pumpkin + - smile + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f30e + voted: false +java: + changes: + - 5.0.10 + - 5.7.0 + - 5.8.0 + label: Java + search: + terms: [] + styles: + - brands + unicode: f4e4 + voted: false +jedi: + changes: + - 5.3.0 + - unreleased + label: Jedi + search: + terms: + - crest + - force + - sith + - skywalker + - star wars + - yoda + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f669 + voted: false +jedi-order: + changes: + - 5.0.12 + - 5.7.0 + label: Jedi Order + search: + terms: + - star wars + styles: + - brands + unicode: f50e + voted: false +jenkins: + changes: + - 5.0.0 + label: Jenkis + search: + terms: [] + styles: + - brands + unicode: f3b6 + voted: false +jet-fighter: + aliases: + names: + - fighter-jet + changes: + - '3' + - 5.0.0 + - unreleased + label: Jet fighter + search: + terms: + - airplane + - fast + - fly + - goose + - maverick + - plane + - quick + - top gun + - transportation + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0fb + voted: false +jira: + changes: + - 5.6.0 + label: Jira + search: + terms: + - atlassian + styles: + - brands + unicode: f7b1 + voted: true +joget: + changes: + - 5.0.0 + label: Joget + search: + terms: [] + styles: + - brands + unicode: f3b7 + voted: false +joint: + changes: + - 5.1.0 + - unreleased + label: Joint + search: + terms: + - blunt + - cannabis + - doobie + - drugs + - marijuana + - roach + - smoke + - smoking + - spliff + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f595 + voted: false +joomla: + changes: + - '4.1' + - 5.0.0 + label: Joomla Logo + search: + terms: [] + styles: + - brands + unicode: f1aa + voted: false +joystick: + changes: + - 5.11.0 + - unreleased + label: Joystick + search: + terms: + - arcade + - atari + - controller + - retro + - video game + - vintage + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f8c5 + voted: false +js: + changes: + - 5.0.0 + label: JavaScript (JS) + search: + terms: [] + styles: + - brands + unicode: f3b8 + voted: false +js-square: + changes: + - 5.0.0 + - 5.0.3 + label: JavaScript (JS) Square + search: + terms: [] + styles: + - brands + unicode: f3b9 + voted: false +jsfiddle: + changes: + - '4.1' + - 5.0.0 + label: jsFiddle + search: + terms: [] + styles: + - brands + unicode: f1cc + voted: false +jug: + changes: + - 5.11.0 + - unreleased + label: Jug + search: + terms: + - beverage + - bottle + - drink + - moonshine + - pitcher + - western + styles: + - light + - regular + - solid + - duotone + - thin + unicode: f8c6 + voted: false +k: + changes: + - unreleased + label: K + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +kaaba: + changes: + - 5.3.0 + - unreleased + label: Kaaba + search: + terms: + - building + - cube + - islam + - muslim + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66b + voted: false +kaggle: + changes: + - 5.2.0 + - 5.8.0 + label: Kaggle + search: + terms: [] + styles: + - brands + unicode: f5fa + voted: true +kazoo: + changes: + - 5.11.0 + - unreleased + label: Kazoo + search: + terms: + - buzz + - instrument + - membranophone + - mirliton + - music + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f8c7 + voted: false +kerning: + changes: + - 5.9.0 + - unreleased + label: Kerning + search: + terms: + - adjust + - font + - spacing + - text + - tracking + - type + - typography + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f86f + voted: false +key: + changes: + - '1' + - 5.0.0 + - 5.10.1 + - unreleased + label: key + search: + terms: + - lock + - password + - private + - secret + - unlock + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f084 + voted: false +key-skeleton: + changes: + - 5.4.0 + - unreleased + label: Key Skeleton + search: + terms: + - halloween + - lock + - password + - private + - secret + - unlock + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f3 + voted: false +keybase: + changes: + - 5.0.11 + - 5.8.0 + - 5.10.2 + - 5.11.0 + label: Keybase + search: + terms: [] + styles: + - brands + unicode: f4f5 + voted: true +keyboard: + changes: + - '3.1' + - 5.0.0 + - unreleased + label: Keyboard + search: + terms: + - accessory + - edit + - input + - text + - type + - write + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f11c + voted: false +keyboard-down: + changes: + - unreleased + label: Keyboard Down + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +keyboard-left: + changes: + - unreleased + label: Keyboard Left + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +keycdn: + changes: + - 5.0.0 + label: KeyCDN + search: + terms: [] + styles: + - brands + unicode: f3ba + voted: false +keynote: + changes: + - 5.3.0 + - unreleased + label: Keynote + search: + terms: + - lecture + - panel + - seminar + - speak + - speaker + - talk + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66c + voted: false +khanda: + changes: + - 5.3.0 + - unreleased + label: Khanda + search: + terms: + - chakkar + - sikh + - sikhism + - sword + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66d + voted: false +kickstarter: + changes: + - 5.0.0 + label: Kickstarter + search: + terms: [] + styles: + - brands + unicode: f3bb + voted: false +kickstarter-k: + changes: + - 5.0.0 + label: Kickstarter K + search: + terms: [] + styles: + - brands + unicode: f3bc + voted: false +kidneys: + changes: + - 5.2.0 + - unreleased + label: Kidneys + search: + terms: + - blood + - body + - organ + - surgery + - urine + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5fb + voted: false +kip-sign: + changes: + - unreleased + label: Kip Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +kit-medical: + aliases: + names: + - first-aid + changes: + - 5.0.7 + - unreleased + label: Kit medical + search: + terms: + - emergency + - emt + - health + - medical + - rescue + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f479 + voted: false +kite: + changes: + - 5.4.0 + - 5.7.0 + - 5.10.1 + - unreleased + label: Kite + search: + terms: + - air + - benjamin + - fall + - flying + - franklin + - outdoors + - seasonal + - sky + - wind + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f4 + voted: false +kiwi-bird: + changes: + - 5.0.13 + - unreleased + label: Kiwi Bird + search: + terms: + - bird + - fauna + - new zealand + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f535 + voted: false +knife: + aliases: + names: + - utensil-knife + changes: + - 5.0.0 + - 5.10.2 + - unreleased + label: Knife + search: + terms: + - cut + - cutlery + - dining + - silverware + - tool + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2e4 + voted: false +knife-kitchen: + changes: + - 5.4.0 + - unreleased + label: Knife Kitchen + search: + terms: + - chef + - cut + - halloween + - sharp + - slice + - tool + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f5 + voted: false +korvue: + changes: + - 5.0.2 + label: KORVUE + search: + terms: [] + styles: + - brands + unicode: f42f + voted: false +l: + changes: + - unreleased + label: L + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +lambda: + changes: + - 5.3.0 + - unreleased + label: Lambda + search: + terms: + - calculus + - equation + - function + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66e + voted: false +lamp: + changes: + - 5.0.9 + - 5.0.10 + - unreleased + label: Lamp + search: + terms: + - bright + - furniture + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4ca + voted: false +lamp-desk: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Lamp Desk + search: + terms: + - bright + - furniture + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e014 + voted: false +lamp-floor: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Lamp Floor + search: + terms: + - bright + - furniture + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e015 + voted: false +landmark: + changes: + - 5.3.0 + - unreleased + label: Landmark + search: + terms: + - building + - historic + - memorable + - monument + - politics + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f66f + voted: false +landmark-dome: + aliases: + names: + - landmark-alt + changes: + - 5.5.0 + - unreleased + label: Landmark dome + search: + terms: + - building + - historic + - memorable + - monument + - politics + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f752 + voted: false +language: + changes: + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Language + search: + terms: + - dialect + - idiom + - localize + - speech + - translate + - vernacular + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1ab + voted: false +laptop: + changes: + - '3' + - 5.0.0 + - 5.2.0 + - unreleased + label: Laptop + search: + terms: + - computer + - cpu + - dell + - demo + - device + - mac + - macbook + - machine + - pc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f109 + voted: false +laptop-code: + changes: + - 5.2.0 + - unreleased + label: Laptop Code + search: + terms: + - computer + - cpu + - dell + - demo + - develop + - device + - mac + - macbook + - machine + - pc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5fc + voted: false +laptop-medical: + changes: + - 5.7.0 + - unreleased + label: Laptop Medical + search: + terms: + - computer + - device + - ehr + - electronic health records + - history + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f812 + voted: false +laptop-mobile: + aliases: + names: + - phone-laptop + changes: + - 5.9.0 + - unreleased + label: Laptop mobile + search: + terms: + - computer + - device + - mobile + - technology + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f87a + voted: false +laptop-slash: + changes: + - unreleased + label: Laptop Slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +laravel: + changes: + - 5.0.0 + - 5.0.3 + - 5.11.2 + label: Laravel + search: + terms: [] + styles: + - brands + unicode: f3bd + voted: false +lari-sign: + changes: + - unreleased + label: Lari Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +lasso: + changes: + - 5.11.0 + - unreleased + label: Lasso + search: + terms: + - cowboy + - rodeo + - rope + - select + - selection + - western + styles: + - light + - regular + - solid + - duotone + - thin + unicode: f8c8 + voted: false +lasso-sparkles: + changes: + - unreleased + label: Lasso Sparkles + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +lastfm: + changes: + - '4.2' + - 5.0.0 + label: last.fm + search: + terms: [] + styles: + - brands + unicode: f202 + voted: false +lastfm-square: + changes: + - '4.2' + - 5.0.0 + - 5.0.11 + label: last.fm Square + search: + terms: [] + styles: + - brands + unicode: f203 + voted: false +layers: + aliases: + names: + - layer-group + changes: + - 5.2.0 + - unreleased + label: Layers + search: + terms: + - arrange + - develop + - layers + - map + - stack + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5fd + voted: false +layers-minus: + aliases: + names: + - layer-minus + changes: + - 5.2.0 + - unreleased + label: Layers minus + search: + terms: + - arrange + - delete + - negative + - remove + - stack + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5fe + voted: false +layers-plus: + aliases: + names: + - layer-plus + changes: + - 5.2.0 + - unreleased + label: Layers plus + search: + terms: + - add + - arrange + - create + - new + - positive + - stack + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5ff + voted: false +leaf: + changes: + - '1' + - 5.0.0 + - 5.0.9 + - unreleased + label: leaf + search: + terms: + - eco + - flora + - nature + - plant + - vegan + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f06c + voted: false +leaf-heart: + changes: + - 5.0.9 + - unreleased + label: Leaf with a Heart + search: + terms: + - eco + - flora + - nature + - plant + - vegan + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4cb + voted: false +leaf-maple: + changes: + - 5.4.0 + - unreleased + label: Maple Leaf + search: + terms: + - eco + - fall + - flora + - nature + - plant + - seasonal + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f6 + voted: false +leaf-oak: + changes: + - 5.4.0 + - unreleased + label: Oak Leaf + search: + terms: + - eco + - fall + - flora + - nature + - plant + - seasonal + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f7 + voted: false +leanpub: + changes: + - '4.3' + - 5.0.0 + label: Leanpub + search: + terms: [] + styles: + - brands + unicode: f212 + voted: false +left: + aliases: + names: + - arrow-alt-left + changes: + - 5.0.0 + - unreleased + label: Left + search: + terms: + - back + - previous + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f355 + voted: false +left-from-line: + aliases: + names: + - arrow-alt-from-right + changes: + - 5.0.0 + - unreleased + label: Left from line + search: + terms: + - forward + - next + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f348 + voted: false +left-long: + aliases: + names: + - long-arrow-alt-left + changes: + - 5.0.0 + - unreleased + label: Left long + search: + terms: + - back + - long-arrow-left + - previous + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f30a + voted: false +left-right: + aliases: + names: + - arrows-alt-h + changes: + - 5.0.0 + - unreleased + label: Left right + search: + terms: + - arrows-h + - expand + - horizontal + - landscape + - resize + - wide + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f337 + voted: false +left-to-line: + aliases: + names: + - arrow-alt-to-left + changes: + - 5.0.0 + - unreleased + label: Left to line + search: + terms: + - back + - previous + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f34b + voted: false +lemon: + changes: + - '1' + - 5.0.0 + - unreleased + label: Lemon + search: + terms: + - citrus + - lemonade + - lime + - tart + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f094 + voted: false +less: + changes: + - 5.0.0 + label: Less + search: + terms: [] + styles: + - brands + unicode: f41d + voted: false +less-than: + changes: + - 5.0.13 + - unreleased + label: Less Than + search: + terms: + - arithmetic + - compare + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f536 + voted: true +less-than-equal: + changes: + - 5.0.13 + - unreleased + label: Less Than Equal To + search: + terms: + - arithmetic + - compare + - math + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f537 + voted: true +life-ring: + changes: + - '4.1' + - 5.0.0 + - unreleased + label: Life Ring + search: + terms: + - coast guard + - help + - overboard + - save + - support + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1cd + voted: false +light-ceiling: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Light Ceiling + search: + terms: + - bright + - furniture + - light + - overhead + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e016 + voted: false +light-switch: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Light Switch + search: + terms: + - light + - 'off' + - 'on' + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e017 + voted: false +light-switch-off: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Light Switch-off + search: + terms: + - light + - 'off' + - 'on' + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e018 + voted: false +light-switch-on: + changes: + - 5.12.0 + - 5.14.0 + - unreleased + label: Light Switch-on + search: + terms: + - light + - 'off' + - 'on' + styles: + - solid + - regular + - light + - duotone + - thin + unicode: e019 + voted: false +lightbulb: + changes: + - '3' + - 5.0.0 + - 5.3.0 + - unreleased + label: Lightbulb + search: + terms: + - energy + - idea + - inspiration + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0eb + voted: false +lightbulb-dollar: + changes: + - 5.3.0 + - unreleased + label: Lightbulb Dollar + search: + terms: + - energy + - idea + - inspiration + - light + - money + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f670 + voted: false +lightbulb-exclamation: + changes: + - 5.3.0 + - unreleased + label: Lightbulb Exclamation + search: + terms: + - alert + - energy + - idea + - inspiration + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f671 + voted: false +lightbulb-on: + changes: + - 5.3.0 + - 5.12.0 + - unreleased + label: Lightbulb On + search: + terms: + - energy + - idea + - inspiration + - light + - shine + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f672 + voted: false +lightbulb-slash: + changes: + - 5.3.0 + - unreleased + label: Lightbulb Slash + search: + terms: + - dark + - light + - 'off' + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f673 + voted: false +lights-holiday: + changes: + - 5.6.0 + - 5.10.1 + - unreleased + label: Holiday Lights + search: + terms: + - bulb + - christmas + - decoration + - holiday + - string + - xmas + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7b2 +line: + changes: + - 5.0.0 + label: Line + search: + terms: [] + styles: + - brands + unicode: f3c0 + voted: false +line-columns: + changes: + - 5.9.0 + - unreleased + label: Line Columns + search: + terms: + - divide + - organize + - panes + - split + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f870 + voted: false +line-height: + changes: + - 5.9.0 + - unreleased + label: Line Height + search: + terms: + - baseline + - letter + - spacing + - text + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f871 + voted: false +link: + aliases: + names: + - chain + changes: + - '2' + - 5.0.0 + - unreleased + label: Link + search: + terms: + - attach + - attachment + - chain + - connect + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0c1 + voted: false +link-horizontal: + aliases: + names: + - chain-horizontal + changes: + - unreleased + label: Link Horizontal + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +link-horizontal-slash: + aliases: + names: + - chain-horizontal-slash + changes: + - unreleased + label: Link Horizontal-slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +link-slash: + aliases: + names: + - chain-slash + - chain-broken + - unlink + changes: + - '3.1' + - 5.0.0 + - unreleased + label: Link slash + search: + terms: + - attachment + - chain + - chain-broken + - remove + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f127 + voted: false +linkedin: + changes: + - '1' + - 5.0.0 + label: LinkedIn + search: + terms: + - linkedin-square + styles: + - brands + unicode: f08c + voted: false +linkedin-in: + changes: + - '2' + - 5.0.0 + - 5.4.1 + - 5.8.0 + - 5.8.1 + label: LinkedIn In + search: + terms: + - linkedin + styles: + - brands + unicode: f0e1 + voted: false +linode: + changes: + - '4.7' + - 5.0.0 + label: Linode + search: + terms: [] + styles: + - brands + unicode: f2b8 + voted: false +linux: + changes: + - '3.2' + - 5.0.0 + label: Linux + search: + terms: + - tux + styles: + - brands + unicode: f17c + voted: false +lips: + changes: + - 5.2.0 + - unreleased + label: Lips + search: + terms: + - fashion + - kiss + - lipstick + - mouth + - smile + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f600 + voted: false +lira-sign: + changes: + - '4' + - 5.0.0 + - unreleased + label: Turkish Lira Sign + search: + terms: + - currency + - money + - try + - turkish + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f195 + voted: false +list: + aliases: + names: + - list-squares + changes: + - '1' + - 5.0.0 + - 5.9.0 + - unreleased + label: List + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f03a + voted: false +list-check: + aliases: + names: + - tasks + changes: + - '2' + - 5.0.0 + - 5.9.0 + - unreleased + label: List check + search: + terms: + - checklist + - downloading + - downloads + - loading + - progress + - project management + - settings + - to do + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0ae + voted: false +list-dropdown: + changes: + - unreleased + label: List Dropdown + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +list-music: + changes: + - 5.11.0 + - unreleased + label: List Music + search: + terms: + - album + - itunes + - music + - playlist + - podcast + - soundtrack + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f8c9 + voted: false +list-ol: + aliases: + names: + - list-numeric + - list-1-2 + changes: + - '2' + - 5.0.0 + - 5.9.0 + - unreleased + label: list-ol + search: + terms: + - checklist + - completed + - done + - finished + - numbers + - ol + - todo + - ul + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0cb + voted: false +list-radio: + changes: + - unreleased + label: List Radio + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +list-tree: + changes: + - unreleased + label: List Tree + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +list-ul: + aliases: + names: + - list-dots + changes: + - '2' + - 5.0.0 + - 5.9.0 + - unreleased + label: list-ul + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0ca + voted: false +location: + aliases: + names: + - map-marker + changes: + - '1' + - 5.0.0 + - unreleased + label: Location + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f041 + voted: false +location-arrow: + changes: + - '3.1' + - 5.0.0 + - unreleased + label: location-arrow + search: + terms: + - address + - compass + - coordinate + - direction + - gps + - map + - navigation + - place + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f124 + voted: false +location-check: + aliases: + names: + - map-marker-check + changes: + - 5.2.0 + - unreleased + label: Location check + search: + terms: + - agree + - coordinates + - destination + - location + - map + - navigation + - pin + - place + - select + - success + - tick + - todo + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f606 + voted: false +location-crosshairs: + changes: + - 5.2.0 + - 5.11.0 + - unreleased + label: Location crosshairs + search: + terms: + - address + - coordinate + - direction + - gps + - map + - navigation + - place + - where + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f601 + voted: false +location-crosshairs-slash: + changes: + - 5.2.0 + - unreleased + label: Location crosshairs slash + search: + terms: + - address + - coordinate + - direction + - gps + - map + - navigation + - place + - where + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f603 + voted: false +location-dot: + aliases: + names: + - map-marker-alt + changes: + - 5.0.0 + - unreleased + label: Location dot + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3c5 + voted: false +location-dot-slash: + aliases: + names: + - map-marker-alt-slash + changes: + - 5.2.0 + - unreleased + label: Location dot slash + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f605 + voted: false +location-exclamation: + aliases: + names: + - map-marker-exclamation + changes: + - 5.2.0 + - unreleased + label: Location exclamation + search: + terms: + - agree + - alert + - coordinates + - destination + - important + - location + - map + - navigation + - pin + - place + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f608 + voted: false +location-minus: + aliases: + names: + - map-marker-minus + changes: + - 5.2.0 + - unreleased + label: Location minus + search: + terms: + - agree + - coordinates + - delete + - destination + - location + - map + - navigation + - negative + - pin + - place + - remove + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f609 + voted: false +location-pen: + aliases: + names: + - map-marker-edit + changes: + - 5.2.0 + - unreleased + label: Location pen + search: + terms: + - agree + - coordinates + - destination + - edit + - location + - map + - navigation + - pen + - pencil + - pin + - place + - update + - write + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f607 + voted: false +location-plus: + aliases: + names: + - map-marker-plus + changes: + - 5.2.0 + - unreleased + label: Location plus + search: + terms: + - add + - agree + - coordinates + - create + - destination + - location + - map + - navigation + - new + - pin + - place + - positive + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f60a + voted: false +location-question: + aliases: + names: + - map-marker-question + changes: + - 5.2.0 + - unreleased + label: Location question + search: + terms: + - agree + - coordinates + - destination + - help + - info + - location + - map + - navigation + - pin + - place + - support + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f60b + voted: false +location-slash: + aliases: + names: + - map-marker-slash + changes: + - 5.2.0 + - unreleased + label: Location slash + search: + terms: + - agree + - cancel + - coordinates + - destination + - location + - map + - missing + - navigation + - pin + - place + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f60c + voted: false +location-smile: + aliases: + names: + - map-marker-smile + changes: + - 5.2.0 + - unreleased + label: Location smile + search: + terms: + - agree + - coordinates + - destination + - emoji + - happy + - location + - map + - navigation + - pin + - place + - success + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f60d + voted: false +location-times: + aliases: + names: + - map-marker-times + changes: + - 5.2.0 + - unreleased + label: Location times + search: + terms: + - agree + - archive + - coordinates + - delete + - destination + - location + - map + - navigation + - pin + - place + - remove + - x + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f60e + voted: false +lock: + changes: + - '1' + - 5.0.0 + - unreleased + label: lock + search: + terms: + - admin + - lock + - open + - password + - private + - protect + - security + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f023 + voted: false +lock-keyhole: + aliases: + names: + - lock-alt + changes: + - 5.0.0 + - unreleased + label: Lock keyhole + search: + terms: + - admin + - lock + - open + - password + - private + - protect + - security + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f30d + voted: false +lock-keyhole-open: + aliases: + names: + - lock-open-alt + changes: + - '3.1' + - 5.0.0 + - unreleased + label: Lock keyhole open + search: + terms: + - admin + - lock + - open + - password + - private + - protect + - security + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3c2 + voted: false +lock-open: + changes: + - '3.1' + - 5.0.0 + - 5.0.1 + - unreleased + label: Lock Open + search: + terms: + - admin + - lock + - open + - password + - private + - protect + - security + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3c1 + voted: false +loveseat: + aliases: + names: + - couch-small + changes: + - 5.0.9 + - unreleased + label: Loveseat + search: + terms: + - chair + - couch + - cushion + - furniture + - relax + - sofa + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4cc + voted: false +luchador-mask: + aliases: + names: + - luchador + - mask-luchador + changes: + - 5.0.5 + - unreleased + label: Luchador mask + search: + terms: + - fight + - mexico + - nacho libre + - wrestle + - wrestling + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f455 + voted: false +lungs: + changes: + - 5.2.0 + - unreleased + label: Lungs + search: + terms: + - air + - breath + - covid-19 + - organ + - respiratory + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f604 + voted: false +lungs-virus: + changes: + - 5.13.0 + - 5.14.0 + - unreleased + label: Lungs Virus + search: + terms: + - breath + - covid-19 + - respiratory + - sick + styles: + - light + - regular + - solid + - duotone + - thin + unicode: e067 + voted: false +lyft: + changes: + - 5.0.0 + label: lyft + search: + terms: [] + styles: + - brands + unicode: f3c3 + voted: false +m: + changes: + - unreleased + label: M + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +mace: + changes: + - 5.4.0 + - unreleased + label: Mace + search: + terms: + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - melee attack + - weapon + - windu + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f8 + voted: false +magento: + changes: + - 5.0.0 + label: Magento + search: + terms: [] + styles: + - brands + unicode: f3c4 + voted: false +magnet: + changes: + - '1' + - 5.0.0 + - 5.8.0 + - unreleased + label: magnet + search: + terms: + - Attract + - lodestone + - tool + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f076 + voted: false +magnifying-glass: + aliases: + names: + - search + changes: + - '1' + - 5.0.0 + - unreleased + label: Magnifying glass + search: + terms: + - bigger + - enlarge + - find + - magnify + - preview + - zoom + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f002 + voted: false +magnifying-glass-dollar: + aliases: + names: + - search-dollar + changes: + - 5.3.0 + - unreleased + label: Magnifying glass dollar + search: + terms: + - bigger + - enlarge + - find + - magnify + - money + - preview + - zoom + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f688 + voted: false +magnifying-glass-location: + aliases: + names: + - search-location + changes: + - 5.3.0 + - unreleased + label: Magnifying glass location + search: + terms: + - bigger + - enlarge + - find + - magnify + - preview + - zoom + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f689 + voted: false +magnifying-glass-minus: + aliases: + names: + - search-minus + changes: + - '1' + - 5.0.0 + - 5.0.13 + - unreleased + label: Magnifying glass minus + search: + terms: + - minify + - negative + - smaller + - zoom + - zoom out + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f010 + voted: false +magnifying-glass-plus: + aliases: + names: + - search-plus + changes: + - '1' + - 5.0.0 + - unreleased + label: Magnifying glass plus + search: + terms: + - bigger + - enlarge + - magnify + - positive + - zoom + - zoom in + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f00e + voted: false +mailbox: + changes: + - 5.7.0 + - 5.10.1 + - unreleased + label: Mailbox + search: + terms: + - archive + - envelope + - letter + - post office + - postal + - postcard + - send + - stamp + - usps + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f813 + voted: true +mailchimp: + changes: + - 5.1.0 + - 5.7.0 + - 5.8.0 + - 5.8.2 + label: Mailchimp + search: + terms: [] + styles: + - brands + unicode: f59e + voted: true +manat-sign: + changes: + - unreleased + label: Manat Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +mandalorian: + changes: + - 5.0.12 + - 5.8.0 + label: Mandalorian + search: + terms: [] + styles: + - brands + unicode: f50f + voted: false +mandolin: + changes: + - 5.4.0 + - 5.11.0 + - unreleased + label: Mandolin + search: + terms: + - Dungeons & Dragons + - bard + - d&d + - dnd + - fantasy + - guitar + - instrument + - lute + - music + - song + - strings + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6f9 + voted: false +map: + changes: + - '4.4' + - 5.0.0 + - 5.1.0 + - unreleased + label: Map + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f279 + voted: false +map-location: + aliases: + names: + - map-marked + changes: + - 5.1.0 + - unreleased + label: Map location + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f59f + voted: false +map-location-dot: + aliases: + names: + - map-marked-alt + changes: + - 5.1.0 + - unreleased + label: Map location dot + search: + terms: + - address + - coordinates + - destination + - gps + - localize + - location + - map + - navigation + - paper + - pin + - place + - point of interest + - position + - route + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5a0 + voted: false +map-pin: + changes: + - '4.4' + - 5.0.0 + - 5.2.0 + - unreleased + label: Map Pin + search: + terms: + - address + - agree + - coordinates + - destination + - gps + - localize + - location + - map + - marker + - navigation + - pin + - place + - position + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f276 + voted: false +markdown: + changes: + - 5.2.0 - 5.7.0 label: Markdown search: @@ -23251,6 +30074,7 @@ markdown: marker: changes: - 5.1.0 + - unreleased label: Marker search: terms: @@ -23264,12 +30088,14 @@ marker: - regular - light - duotone + - thin unicode: f5a1 voted: true mars: changes: - '4.3' - 5.0.0 + - unreleased label: Mars search: terms: @@ -23279,12 +30105,14 @@ mars: - regular - light - duotone + - thin unicode: f222 voted: false mars-double: changes: - '4.3' - 5.0.0 + - unreleased label: Mars Double search: terms: [] @@ -23293,12 +30121,14 @@ mars-double: - regular - light - duotone + - thin unicode: f227 voted: false mars-stroke: changes: - '4.3' - 5.0.0 + - unreleased label: Mars Stroke search: terms: [] @@ -23307,350 +30137,1071 @@ mars-stroke: - regular - light - duotone - unicode: f229 + - thin + unicode: f229 + voted: false +mars-stroke-right: + aliases: + names: + - mars-stroke-h + changes: + - '4.3' + - 5.0.0 + - 5.11.0 + - unreleased + label: Mars stroke right + search: + terms: [] + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f22b + voted: false +mars-stroke-up: + aliases: + names: + - mars-stroke-v + changes: + - '4.3' + - 5.0.0 + - 5.11.0 + - unreleased + label: Mars stroke up + search: + terms: [] + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f22a + voted: false +martini-glass: + aliases: + names: + - glass-martini-alt + changes: + - 5.1.0 + - unreleased + label: Martini glass + search: + terms: + - alcohol + - bar + - beverage + - drink + - liquor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f57b + voted: false +martini-glass-citrus: + aliases: + names: + - cocktail + changes: + - 5.1.0 + - 5.10.1 + - unreleased + label: Martini glass citrus + search: + terms: + - alcohol + - beverage + - drink + - gin + - glass + - margarita + - martini + - vodka + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f561 + voted: false +martini-glass-empty: + aliases: + names: + - glass-martini + changes: + - '1' + - 5.0.0 + - 5.1.0 + - 5.10.1 + - unreleased + label: Martini glass empty + search: + terms: + - alcohol + - bar + - beverage + - drink + - liquor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f000 + voted: false +mask: + changes: + - 5.4.0 + - 5.10.1 + - unreleased + label: Mask + search: + terms: + - carnivale + - costume + - disguise + - halloween + - secret + - super hero + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6fa + voted: false +masks-theater: + aliases: + names: + - theater-masks + changes: + - 5.2.0 + - 5.10.2 + - unreleased + label: Masks theater + search: + terms: + - comedy + - perform + - theatre + - tragedy + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f630 + voted: false +mastodon: + changes: + - 5.0.11 + - 5.8.0 + label: Mastodon + search: + terms: [] + styles: + - brands + unicode: f4f6 + voted: true +maxcdn: + changes: + - '3.1' + - 5.0.0 + label: MaxCDN + search: + terms: [] + styles: + - brands + unicode: f136 + voted: false +maximize: + aliases: + names: + - expand-arrows-alt + changes: + - 5.0.0 + - 5.8.0 + - unreleased + label: Maximize + search: + terms: + - bigger + - enlarge + - fullscreen + - move + - resize + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f31e + voted: false +mdb: + changes: + - 5.11.0 + label: Material Design for Bootstrap + search: + terms: [] + styles: + - brands + unicode: f8ca +meat: + changes: + - 5.7.0 + - unreleased + label: Meat + search: + terms: + - beef + - ham + - mutton + - pork + - veal + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f814 + voted: false +medal: + changes: + - 5.1.0 + - unreleased + label: Medal + search: + terms: + - award + - ribbon + - star + - trophy + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5a2 + voted: true +medapps: + changes: + - 5.0.0 + label: MedApps + search: + terms: [] + styles: + - brands + unicode: f3c6 + voted: false +medium: + changes: + - '4.3' + - 5.0.0 + label: Medium + search: + terms: [] + styles: + - brands + unicode: f23a + voted: false +medium-m: + changes: + - 5.0.0 + label: Medium M + search: + terms: [] + styles: + - brands + unicode: f3c7 + voted: false +medrt: + changes: + - 5.0.0 + label: MRT + search: + terms: [] + styles: + - brands + unicode: f3c8 + voted: false +meetup: + changes: + - '4.7' + - 5.0.0 + label: Meetup + search: + terms: [] + styles: + - brands + unicode: f2e0 + voted: false +megaphone: + changes: + - 5.3.0 + - unreleased + label: Megaphone + search: + terms: + - announcement + - broadcast + - bullhorn + - louder + - share + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f675 + voted: false +megaport: + changes: + - 5.1.0 + label: Megaport + search: + terms: [] + styles: + - brands + unicode: f5a3 + voted: false +memory: + changes: + - 5.0.13 + - unreleased + label: Memory + search: + terms: + - DIMM + - RAM + - hardware + - storage + - technology + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f538 + voted: true +mendeley: + changes: + - 5.6.0 + label: Mendeley + search: + terms: [] + styles: + - brands + unicode: f7b3 + voted: true +menorah: + changes: + - 5.3.0 + - 5.4.0 + - unreleased + label: Menorah + search: + terms: + - candle + - hanukkah + - jewish + - judaism + - light + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f676 + voted: false +mercury: + changes: + - '4.3' + - 5.0.0 + - 5.11.0 + - unreleased + label: Mercury + search: + terms: + - transgender + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f223 + voted: false +message: + aliases: + names: + - comment-alt + changes: + - '4.4' + - 5.0.0 + - 5.10.1 + - unreleased + label: Message + search: + terms: + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f27a + voted: false +message-arrow-down: + aliases: + names: + - comment-alt-arrow-down + changes: + - unreleased + label: Message arrow down + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +message-arrow-up: + aliases: + names: + - comment-alt-arrow-up + changes: + - unreleased + label: Message arrow up + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +message-captions: + aliases: + names: + - comment-alt-captions + changes: + - unreleased + label: Message captions + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +message-check: + aliases: + names: + - comment-alt-check + changes: + - 5.0.9 + - unreleased + label: Message check + search: + terms: + - accept + - agree + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - select + - sms + - speech + - success + - synced + - texting + - tick + - todo + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4a2 + voted: false +message-dollar: + aliases: + names: + - comment-alt-dollar + changes: + - 5.3.0 + - unreleased + label: Message dollar + search: + terms: + - bubble + - chat + - commenting + - conversation + - feedback + - message + - money + - note + - notification + - pay + - sms + - speech + - spend + - texting + - transfer + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f650 + voted: false +message-dots: + aliases: + names: + - comment-alt-dots + - messaging + changes: + - 5.0.9 + - unreleased + label: Message dots + search: + terms: + - bubble + - chat + - commenting + - conversation + - feedback + - message + - more + - note + - notification + - reply + - sms + - speech + - texting + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4a3 + voted: false +message-exclamation: + aliases: + names: + - comment-alt-exclamation + changes: + - 5.0.9 + - unreleased + label: Message exclamation + search: + terms: + - alert + - bubble + - chat + - commenting + - conversation + - exclaim + - feedback + - important + - message + - note + - notification + - sms + - speech + - surprise + - texting + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4a5 voted: false -mars-stroke-h: +message-image: + aliases: + names: + - comment-alt-image changes: - - '4.3' - - 5.0.0 - - 5.11.0 - label: Mars Stroke Horizontal + - unreleased + label: Message image search: terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f22b + - thin + unicode: auto voted: false -mars-stroke-v: +message-lines: + aliases: + names: + - comment-alt-lines changes: - - '4.3' - - 5.0.0 - - 5.11.0 - label: Mars Stroke Vertical + - 5.0.9 + - unreleased + label: Message lines search: - terms: [] + terms: + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f22a + - thin + unicode: f4a6 voted: false -mask: +message-medical: + aliases: + names: + - comment-alt-medical changes: - - 5.4.0 - - 5.10.1 - label: Mask + - 5.7.0 + - unreleased + label: Message medical search: terms: - - carnivale - - costume - - disguise - - halloween - - secret - - super hero + - advice + - bubble + - chat + - commenting + - conversation + - diagnose + - feedback + - message + - note + - notification + - prescription + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f6fa + - thin + unicode: f7f4 voted: false -mastodon: - changes: - - 5.0.11 - - 5.8.0 - label: Mastodon - search: - terms: [] - styles: - - brands - unicode: f4f6 - voted: true -maxcdn: +message-middle: + aliases: + names: + - comment-middle-alt changes: - - '3.1' - - 5.0.0 - label: MaxCDN + - unreleased + label: Message middle search: terms: [] styles: - - brands - unicode: f136 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -mdb: +message-middle-top: + aliases: + names: + - comment-middle-top-alt changes: - - 5.11.0 - label: Material Design for Bootstrap + - unreleased + label: Message middle top search: terms: [] styles: - - brands - unicode: f8ca -meat: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +message-minus: + aliases: + names: + - comment-alt-minus changes: - - 5.7.0 - label: Meat + - 5.0.9 + - unreleased + label: Message minus search: terms: - - beef - - ham - - mutton - - pork - - veal + - bubble + - chat + - commenting + - conversation + - delete + - feedback + - message + - negative + - note + - notification + - remove + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f814 + - thin + unicode: f4a7 voted: false -medal: +message-music: + aliases: + names: + - comment-alt-music changes: - - 5.1.0 - label: Medal + - 5.11.0 + - unreleased + label: Message music search: terms: - - award - - ribbon - - star - - trophy + - chat + - commenting + - conversation + - create + - message + - music + - note + - notification + - sing + - sms + - song + - texting styles: - solid - regular - light - duotone - unicode: f5a2 - voted: true -medapps: - changes: - - 5.0.0 - label: MedApps - search: - terms: [] - styles: - - brands - unicode: f3c6 - voted: false -medium: - changes: - - '4.3' - - 5.0.0 - label: Medium - search: - terms: [] - styles: - - brands - unicode: f23a - voted: false -medium-m: - changes: - - 5.0.0 - label: Medium M - search: - terms: [] - styles: - - brands - unicode: f3c7 + - thin + unicode: f8af voted: false -medkit: +message-pen: + aliases: + names: + - message-edit + - comment-alt-edit changes: - - '3' - - 5.0.0 - label: medkit + - 5.0.9 + - unreleased + label: Message pen search: terms: - - first aid - - firstaid - - health - - help - - support + - bubble + - chat + - commenting + - conversation + - edit + - feedback + - message + - note + - notification + - pen + - pencil + - sms + - speech + - texting + - update + - write styles: - solid - regular - light - duotone - unicode: f0fa - voted: false -medrt: - changes: - - 5.0.0 - label: MRT - search: - terms: [] - styles: - - brands - unicode: f3c8 - voted: false -meetup: - changes: - - '4.7' - - 5.0.0 - label: Meetup - search: - terms: [] - styles: - - brands - unicode: f2e0 + - thin + unicode: f4a4 voted: false -megaphone: +message-plus: + aliases: + names: + - comment-alt-plus changes: - - 5.3.0 - label: Megaphone + - 5.0.9 + - unreleased + label: Message plus search: terms: - - announcement - - broadcast - - bullhorn - - louder - - share + - add + - bubble + - chat + - commenting + - conversation + - create + - feedback + - message + - new + - note + - notification + - positive + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f675 + - thin + unicode: f4a8 voted: false -megaport: +message-qoute: + aliases: + names: + - comment-alt-quote changes: - - 5.1.0 - label: Megaport + - unreleased + label: Message qoute search: terms: [] styles: - - brands - unicode: f5a3 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -meh: +message-slash: + aliases: + names: + - comment-alt-slash changes: - - '3.1' - - 5.0.0 - 5.0.9 - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Neutral Face + - unreleased + label: Message slash search: terms: - - emoticon - - face - - neutral - - rating + - bubble + - cancel + - chat + - commenting + - conversation + - feedback + - message + - mute + - note + - notification + - quiet + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f11a + - thin + unicode: f4a9 voted: false -meh-blank: +message-smile: + aliases: + names: + - comment-alt-smile changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Face Without Mouth + - 5.0.9 + - unreleased + label: Message smile search: terms: - - emoticon - - face - - neutral - - rating + - bubble + - chat + - commenting + - conversation + - emoji + - feedback + - happy + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f5a4 + - thin + unicode: f4aa voted: false -meh-rolling-eyes: +message-text: + aliases: + names: + - comment-alt-text changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Face With Rolling Eyes + - unreleased + label: Message text search: - terms: - - emoticon - - face - - neutral - - rating + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f5a5 + - thin + unicode: auto voted: false -memory: +message-xmark: + aliases: + names: + - comment-alt-times + - message-times changes: - - 5.0.13 - label: Memory + - 5.0.9 + - unreleased + label: Message xmark search: terms: - - DIMM - - RAM - - hardware - - storage - - technology + - archive + - bubble + - chat + - commenting + - conversation + - delete + - feedback + - message + - note + - notification + - remove + - sms + - speech + - texting + - x styles: - solid - regular - light - duotone - unicode: f538 - voted: true -mendeley: - changes: - - 5.6.0 - label: Mendeley - search: - terms: [] - styles: - - brands - unicode: f7b3 - voted: true -menorah: + - thin + unicode: f4ab + voted: false +messages: + aliases: + names: + - comments-alt changes: - - 5.3.0 - - 5.4.0 - label: Menorah + - 5.0.9 + - unreleased + label: Messages search: terms: - - candle - - hanukkah - - jewish - - judaism - - light + - bubble + - chat + - commenting + - conversation + - feedback + - message + - note + - notification + - sms + - speech + - texting styles: - solid - regular - light - duotone - unicode: f676 + - thin + unicode: f4b6 voted: false -mercury: +messages-dollar: + aliases: + names: + - comments-alt-dollar changes: - - '4.3' - - 5.0.0 - - 5.11.0 - label: Mercury + - 5.3.0 + - unreleased + label: Messages dollar search: terms: - - transgender + - bubble + - chat + - commenting + - conversation + - feedback + - message + - money + - note + - notification + - pay + - sms + - speech + - spend + - texting + - transfer styles: - solid - regular - light - duotone - unicode: f223 + - thin + unicode: f652 voted: false meteor: changes: - 5.5.0 - 5.12.0 + - unreleased label: Meteor search: terms: @@ -23664,22 +31215,25 @@ meteor: - regular - light - duotone + - thin unicode: f753 voted: false microblog: changes: - 5.12.0 + - 5.14.0 label: Micro.blog search: terms: [] styles: - brands - unicode: f91a + unicode: e01a voted: true microchip: changes: - '4.7' - 5.0.0 + - unreleased label: Microchip search: terms: @@ -23692,6 +31246,7 @@ microchip: - regular - light - duotone + - thin unicode: f2db voted: false microphone: @@ -23699,6 +31254,7 @@ microphone: - '3.1' - 5.0.0 - 5.0.13 + - unreleased label: microphone search: terms: @@ -23713,13 +31269,18 @@ microphone: - regular - light - duotone + - thin unicode: f130 voted: false -microphone-alt: +microphone-lines: + aliases: + names: + - microphone-alt changes: - 5.0.0 - 5.0.13 - label: Alternate Microphone + - unreleased + label: Microphone lines search: terms: - audio @@ -23733,12 +31294,17 @@ microphone-alt: - regular - light - duotone + - thin unicode: f3c9 voted: false -microphone-alt-slash: +microphone-lines-slash: + aliases: + names: + - microphone-alt-slash changes: - 5.0.13 - label: Alternate Microphone Slash + - unreleased + label: Microphone lines slash search: terms: - audio @@ -23754,6 +31320,7 @@ microphone-alt-slash: - regular - light - duotone + - thin unicode: f539 voted: false microphone-slash: @@ -23761,6 +31328,7 @@ microphone-slash: - '3.1' - 5.0.0 - 5.0.13 + - unreleased label: Microphone Slash search: terms: @@ -23777,11 +31345,13 @@ microphone-slash: - regular - light - duotone + - thin unicode: f131 voted: false microphone-stand: changes: - 5.11.0 + - unreleased label: Microphone Stand search: terms: @@ -23796,11 +31366,13 @@ microphone-stand: - regular - light - duotone + - thin unicode: f8cb voted: false microscope: changes: - 5.2.0 + - unreleased label: Microscope search: terms: @@ -23815,6 +31387,7 @@ microscope: - regular - light - duotone + - thin unicode: f610 voted: false microsoft: @@ -23830,6 +31403,8 @@ microsoft: microwave: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Microwave search: terms: @@ -23842,112 +31417,57 @@ microwave: - regular - light - duotone - unicode: f91b + - thin + unicode: e01b voted: false -mind-share: +mill-sign: changes: - - 5.3.0 - - 5.9.0 - label: Mind Share + - unreleased + label: Mill Sign search: - terms: - - brain - - brainstorming - - meeting - - planning + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f677 + - thin + unicode: auto voted: false -minus: +minimize: + aliases: + names: + - compress-arrows-alt changes: - - '1' - - 5.0.0 - label: minus + - 5.6.0 + - unreleased + label: Minimize search: terms: - collapse - - delete - - hide - - minify - - negative - - remove - - trash + - fullscreen + - minimize + - move + - resize + - shrink + - smaller styles: - solid - regular - light - duotone - unicode: f068 - voted: false -minus-circle: + - thin + unicode: f78c + voted: true +minus: + aliases: + names: + - subtract changes: - '1' - 5.0.0 - - 5.10.2 - label: Minus Circle - search: - terms: - - delete - - hide - - negative - - remove - - shape - - trash - styles: - - solid - - regular - - light - - duotone - unicode: f056 - voted: false -minus-hexagon: - changes: - - 5.0.0 - - 5.11.0 - label: Minus Hexagon - search: - terms: - - delete - - hide - - negative - - remove - - shape - - trash - styles: - - solid - - regular - - light - - duotone - unicode: f307 - voted: false -minus-octagon: - changes: - - 5.0.0 - label: Minus Octagon - search: - terms: - - delete - - hide - - negative - - remove - - shape - - trash - styles: - - solid - - regular - - light - - duotone - unicode: f308 - voted: false -minus-square: - changes: - - '3.1' - - 5.0.0 - label: Minus Square + - unreleased + label: minus search: terms: - collapse @@ -23956,18 +31476,19 @@ minus-square: - minify - negative - remove - - shape - trash styles: - solid - regular - light - duotone - unicode: f146 + - thin + unicode: f068 voted: false mistletoe: changes: - 5.6.0 + - unreleased label: Mistletoe search: terms: @@ -23986,10 +31507,12 @@ mistletoe: - regular - light - duotone + - thin unicode: f7b4 mitten: changes: - 5.6.0 + - unreleased label: Mitten search: terms: @@ -24005,6 +31528,7 @@ mitten: - regular - light - duotone + - thin unicode: f7b5 mix: changes: @@ -24031,12 +31555,13 @@ mixcloud: mixer: changes: - 5.12.1 + - 5.14.0 label: Mixer search: terms: [] styles: - brands - unicode: f956 + unicode: e056 voted: true mizuni: changes: @@ -24049,32 +31574,39 @@ mizuni: unicode: f3cc voted: false mobile: + aliases: + names: + - mobile-android + - mobile-phone changes: - - '3' - 5.0.0 - label: Mobile Phone + - unreleased + label: Mobile search: terms: - - apple + - android - call - cell phone - cellphone - device - - iphone - number - screen - telephone + - text styles: - solid - regular - light - duotone - unicode: f10b + - thin + unicode: f3ce voted: false -mobile-alt: +mobile-button: changes: + - '3' - 5.0.0 - label: Alternate Mobile + - unreleased + label: Mobile button search: terms: - apple @@ -24091,12 +31623,34 @@ mobile-alt: - regular - light - duotone - unicode: f3cd + - thin + unicode: f10b + voted: false +mobile-notch: + aliases: + names: + - mobile-iphone + changes: + - unreleased + label: Mobile notch + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -mobile-android: +mobile-screen: + aliases: + names: + - mobile-android-alt changes: - 5.0.0 - label: Mobile Android + - unreleased + label: Mobile screen search: terms: - android @@ -24113,29 +31667,35 @@ mobile-android: - regular - light - duotone - unicode: f3ce + - thin + unicode: f3cf voted: false -mobile-android-alt: +mobile-screen-button: + aliases: + names: + - mobile-alt changes: - 5.0.0 - label: Alternate Mobile Android + - unreleased + label: Mobile screen button search: terms: - - android + - apple - call - cell phone - cellphone - device + - iphone - number - screen - telephone - - text styles: - solid - regular - light - duotone - unicode: f3cf + - thin + unicode: f3cd voted: false modx: changes: @@ -24163,6 +31723,7 @@ money-bill: - '2' - 5.0.0 - 5.0.13 + - unreleased label: Money Bill search: terms: @@ -24178,13 +31739,18 @@ money-bill: - regular - light - duotone + - thin unicode: f0d6 voted: false -money-bill-alt: +money-bill-1: + aliases: + names: + - money-bill-alt changes: - 5.0.0 - 5.0.13 - label: Alternate Money Bill + - unreleased + label: Money bill 1 search: terms: - buy @@ -24199,12 +31765,17 @@ money-bill-alt: - regular - light - duotone + - thin unicode: f3d1 voted: false -money-bill-wave: +money-bill-1-wave: + aliases: + names: + - money-bill-wave-alt changes: - 5.0.13 - label: Wavy Money Bill + - unreleased + label: Money bill 1 wave search: terms: - buy @@ -24219,12 +31790,42 @@ money-bill-wave: - regular - light - duotone - unicode: f53a + - thin + unicode: f53b voted: true -money-bill-wave-alt: +money-bill-simple: + changes: + - unreleased + label: Money Bill-simple + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +money-bill-simple-wave: + changes: + - unreleased + label: Money Bill-simple-wave + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +money-bill-wave: changes: - 5.0.13 - label: Alternate Wavy Money Bill + - unreleased + label: Wavy Money Bill search: terms: - buy @@ -24239,11 +31840,44 @@ money-bill-wave-alt: - regular - light - duotone - unicode: f53b + - thin + unicode: f53a voted: true +money-bills: + changes: + - unreleased + label: Money Bills + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +money-bills-simple: + aliases: + names: + - money-bills-alt + changes: + - unreleased + label: Money bills simple + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false money-check: changes: - 5.0.13 + - unreleased label: Money Check search: terms: @@ -24260,12 +31894,17 @@ money-check: - regular - light - duotone + - thin unicode: f53c voted: true -money-check-alt: +money-check-dollar: + aliases: + names: + - money-check-alt changes: - 5.0.13 - label: Alternate Money Check + - unreleased + label: Money check dollar search: terms: - bank check @@ -24281,12 +31920,17 @@ money-check-alt: - regular - light - duotone + - thin unicode: f53d voted: true -money-check-edit: +money-check-dollar-pen: + aliases: + names: + - money-check-edit-alt changes: - 5.9.0 - label: Money Check Edit + - unreleased + label: Money check dollar pen search: terms: - bank check @@ -24303,12 +31947,17 @@ money-check-edit: - regular - light - duotone - unicode: f872 + - thin + unicode: f873 voted: true -money-check-edit-alt: +money-check-pen: + aliases: + names: + - money-check-edit changes: - 5.9.0 - label: Alternate Money Check Edit + - unreleased + label: Money check pen search: terms: - bank check @@ -24325,13 +31974,18 @@ money-check-edit-alt: - regular - light - duotone - unicode: f873 + - thin + unicode: f872 voted: true -monitor-heart-rate: +monitor-waveform: + aliases: + names: + - monitor-heart-rate changes: - 5.2.0 - 5.10.1 - label: Heart Rate Monitor + - unreleased + label: Monitor waveform search: terms: - EKG @@ -24344,12 +31998,14 @@ monitor-heart-rate: - regular - light - duotone + - thin unicode: f611 voted: false monkey: changes: - 5.4.0 - 5.10.1 + - unreleased label: Monkey search: terms: @@ -24363,11 +32019,13 @@ monkey: - regular - light - duotone + - thin unicode: f6fb voted: false monument: changes: - 5.1.0 + - unreleased label: Monument search: terms: @@ -24380,6 +32038,7 @@ monument: - regular - light - duotone + - thin unicode: f5a6 voted: false moon: @@ -24388,6 +32047,7 @@ moon: - 5.0.0 - 5.11.0 - 5.11.1 + - unreleased label: Moon search: terms: @@ -24401,11 +32061,13 @@ moon: - regular - light - duotone + - thin unicode: f186 voted: false moon-cloud: changes: - 5.5.0 + - unreleased label: Moon with Cloud search: terms: @@ -24419,11 +32081,36 @@ moon-cloud: - regular - light - duotone + - thin unicode: f754 voted: false +moon-over-sun: + aliases: + names: + - eclipse-alt + changes: + - 5.5.0 + - unreleased + label: Moon over sun + search: + terms: + - lunar + - moon + - shadow + - solar + - sun + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f74a + voted: false moon-stars: changes: - 5.5.0 + - unreleased label: Moon with Stars search: terms: @@ -24437,11 +32124,13 @@ moon-stars: - regular - light - duotone + - thin unicode: f755 voted: false mortar-pestle: changes: - 5.1.0 + - unreleased label: Mortar Pestle search: terms: @@ -24458,11 +32147,13 @@ mortar-pestle: - regular - light - duotone + - thin unicode: f5a7 voted: false mosque: changes: - 5.3.0 + - unreleased label: Mosque search: terms: @@ -24475,12 +32166,14 @@ mosque: - regular - light - duotone + - thin unicode: f678 voted: false motorcycle: changes: - '4.3' - 5.0.0 + - unreleased label: Motorcycle search: terms: @@ -24493,11 +32186,13 @@ motorcycle: - regular - light - duotone + - thin unicode: f21c voted: false mountain: changes: - 5.4.0 + - unreleased label: Mountain search: terms: @@ -24512,11 +32207,13 @@ mountain: - regular - light - duotone + - thin unicode: f6fc voted: false mountains: changes: - 5.4.0 + - unreleased label: Mountains search: terms: @@ -24531,65 +32228,13 @@ mountains: - regular - light - duotone + - thin unicode: f6fd voted: false -mouse: - changes: - - 5.11.0 - label: Mouse - search: - terms: - - click - - computer - - cursor - - input - - peripheral - styles: - - solid - - regular - - light - - duotone - unicode: f8cc - voted: true -mouse-alt: - changes: - - 5.11.0 - label: Alternate Mouse - search: - terms: - - click - - computer - - cursor - - input - - peripheral - styles: - - solid - - regular - - light - - duotone - unicode: f8cd - voted: false -mouse-pointer: - changes: - - '4.4' - - 5.0.0 - - 5.0.3 - label: Mouse Pointer - search: - terms: - - arrow - - cursor - - select - styles: - - solid - - regular - - light - - duotone - unicode: f245 - voted: false mp3-player: changes: - 5.11.0 + - unreleased label: MP3 Player search: terms: @@ -24604,11 +32249,13 @@ mp3-player: - regular - light - duotone + - thin unicode: f8ce voted: false mug: changes: - 5.9.0 + - unreleased label: Mug search: terms: @@ -24622,11 +32269,13 @@ mug: - regular - light - duotone + - thin unicode: f874 voted: false mug-hot: changes: - 5.6.0 + - unreleased label: Mug Hot search: terms: @@ -24645,11 +32294,13 @@ mug-hot: - regular - light - duotone + - thin unicode: f7b6 mug-marshmallows: changes: - 5.6.0 - 5.10.1 + - unreleased label: Mug with Marshmallows search: terms: @@ -24666,10 +32317,40 @@ mug-marshmallows: - regular - light - duotone + - thin unicode: f7b7 +mug-saucer: + aliases: + names: + - coffee + changes: + - '3' + - 5.0.0 + - unreleased + label: Mug saucer + search: + terms: + - beverage + - breakfast + - cafe + - drink + - fall + - morning + - mug + - seasonal + - tea + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0f4 + voted: false mug-tea: changes: - 5.9.0 + - unreleased label: Mug Tea search: terms: @@ -24682,14 +32363,30 @@ mug-tea: - regular - light - duotone + - thin unicode: f875 voted: false +mug-tea-saucer: + changes: + - unreleased + label: Mug Tea-saucer + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false music: changes: - '1' - 5.0.0 - 5.2.0 - 5.11.0 + - unreleased label: Music search: terms: @@ -24703,12 +32400,17 @@ music: - regular - light - duotone + - thin unicode: f001 voted: false -music-alt: +music-note: + aliases: + names: + - music-alt changes: - 5.11.0 - label: Alternate Music + - unreleased + label: Music note search: terms: - lyrics @@ -24721,12 +32423,17 @@ music-alt: - regular - light - duotone + - thin unicode: f8cf voted: false -music-alt-slash: +music-note-slash: + aliases: + names: + - music-alt-slash changes: - 5.11.0 - label: Alternate Music Slash + - unreleased + label: Music note slash search: terms: - cancel @@ -24743,11 +32450,13 @@ music-alt-slash: - regular - light - duotone + - thin unicode: f8d0 voted: false music-slash: changes: - 5.11.0 + - unreleased label: Music Slash search: terms: @@ -24765,8 +32474,37 @@ music-slash: - regular - light - duotone + - thin unicode: f8d1 voted: false +'n': + changes: + - unreleased + label: 'N' + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +naira-sign: + changes: + - unreleased + label: Naira Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false napster: changes: - 5.0.0 @@ -24781,6 +32519,7 @@ narwhal: changes: - 5.4.0 - 5.10.1 + - unreleased label: Narwhal search: terms: @@ -24797,6 +32536,7 @@ narwhal: - regular - light - duotone + - thin unicode: f6fe voted: false neos: @@ -24813,6 +32553,7 @@ neos: network-wired: changes: - 5.4.0 + - unreleased label: Wired Network search: terms: @@ -24826,6 +32567,7 @@ network-wired: - regular - light - duotone + - thin unicode: f6ff voted: true neuter: @@ -24833,6 +32575,7 @@ neuter: - '4.3' - 5.0.0 - 5.11.0 + - unreleased label: Neuter search: terms: [] @@ -24841,12 +32584,14 @@ neuter: - regular - light - duotone + - thin unicode: f22c voted: false newspaper: changes: - '4.2' - 5.0.0 + - unreleased label: Newspaper search: terms: @@ -24862,6 +32607,7 @@ newspaper: - regular - light - duotone + - thin unicode: f1ea voted: false nimblr: @@ -24899,6 +32645,7 @@ node-js: not-equal: changes: - 5.0.13 + - unreleased label: Not Equal search: terms: @@ -24910,11 +32657,94 @@ not-equal: - regular - light - duotone + - thin unicode: f53e voted: true +notdef: + changes: + - unreleased + label: Notdef + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +note: + changes: + - unreleased + label: Note + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +note-medical: + changes: + - unreleased + label: Note Medical + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +note-sticky: + aliases: + names: + - sticky-note + changes: + - '4.4' + - 5.0.0 + - 5.10.2 + - unreleased + label: Note sticky + search: + terms: + - message + - note + - paper + - reminder + - sticker + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f249 + voted: false +notes: + changes: + - unreleased + label: Notes + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false notes-medical: changes: - 5.0.7 + - unreleased label: Medical Notes search: terms: @@ -24929,6 +32759,7 @@ notes-medical: - regular - light - duotone + - thin unicode: f481 voted: false npm: @@ -24944,6 +32775,7 @@ npm: ns8: changes: - 5.0.0 + - 5.15.0 label: NS8 search: terms: [] @@ -24961,11 +32793,26 @@ nutritionix: - brands unicode: f3d6 voted: false +o: + changes: + - unreleased + label: O + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false object-group: changes: - '4.4' - 5.0.0 - 5.10.1 + - unreleased label: Object Group search: terms: @@ -24979,6 +32826,7 @@ object-group: - regular - light - duotone + - thin unicode: f247 voted: false object-ungroup: @@ -24986,6 +32834,7 @@ object-ungroup: - '4.4' - 5.0.0 - 5.10.1 + - unreleased label: Object Ungroup search: terms: @@ -24999,24 +32848,114 @@ object-ungroup: - regular - light - duotone - unicode: f248 + - thin + unicode: f248 + voted: false +octagon: + changes: + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Octagon + search: + terms: + - shape + - stop + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f306 + voted: false +octagon-minus: + aliases: + names: + - minus-octagon + changes: + - 5.0.0 + - unreleased + label: Octagon minus + search: + terms: + - delete + - hide + - negative + - remove + - shape + - trash + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f308 + voted: false +octagon-plus: + aliases: + names: + - plus-octagon + changes: + - 5.0.0 + - unreleased + label: Octagon plus + search: + terms: + - add + - create + - expand + - new + - positive + - shape + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f301 voted: false -octagon: +octagon-xmark: + aliases: + names: + - times-octagon + - xmark-octagon changes: - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Octagon + - unreleased + label: Octagon xmark search: terms: - - shape - - stop + - close + - cross + - exit + - incorrect + - notice + - notification + - notify + - problem + - wrong + - x styles: - solid - regular - light - duotone - unicode: f306 + - thin + unicode: f2f0 + voted: false +octopus-deploy: + changes: + - 5.15.0 + label: Octopus Deploy + search: + terms: [] + styles: + - brands + unicode: e082 voted: false odnoklassniki: changes: @@ -25044,6 +32983,7 @@ oil-can: changes: - 5.2.0 - 5.10.1 + - unreleased label: Oil Can search: terms: @@ -25058,12 +32998,31 @@ oil-can: - regular - light - duotone + - thin unicode: f613 voted: false -oil-temp: +oil-can-drip: + changes: + - unreleased + label: Oil Can-drip + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +oil-temperature: + aliases: + names: + - oil-temp changes: - 5.2.0 - label: Oil Temp + - unreleased + label: Oil temperature search: terms: - auto @@ -25079,6 +33038,7 @@ oil-temp: - regular - light - duotone + - thin unicode: f614 voted: false old-republic: @@ -25096,6 +33056,7 @@ old-republic: om: changes: - 5.3.0 + - unreleased label: Om search: terms: @@ -25108,11 +33069,13 @@ om: - regular - light - duotone + - thin unicode: f679 voted: false omega: changes: - 5.3.0 + - unreleased label: Omega search: terms: @@ -25124,6 +33087,7 @@ omega: - regular - light - duotone + - thin unicode: f67a voted: false opencart: @@ -25171,6 +33135,20 @@ optin-monster: - brands unicode: f23c voted: false +option: + changes: + - unreleased + label: Option + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false orcid: changes: - 5.11.0 @@ -25183,6 +33161,7 @@ orcid: ornament: changes: - 5.6.0 + - unreleased label: Ornament search: terms: @@ -25195,6 +33174,7 @@ ornament: - regular - light - duotone + - thin unicode: f7b8 osi: changes: @@ -25210,6 +33190,7 @@ osi: otter: changes: - 5.4.0 + - unreleased label: Otter search: terms: @@ -25224,13 +33205,18 @@ otter: - regular - light - duotone + - thin unicode: f700 voted: false outdent: + aliases: + names: + - dedent changes: - '1' - 5.0.0 - 5.9.0 + - unreleased label: Outdent search: terms: @@ -25243,11 +33229,14 @@ outdent: - regular - light - duotone + - thin unicode: f03b voted: false outlet: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Outlet search: terms: @@ -25259,11 +33248,14 @@ outlet: - regular - light - duotone - unicode: f91c + - thin + unicode: e01c voted: false oven: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Oven search: terms: @@ -25278,11 +33270,13 @@ oven: - regular - light - duotone - unicode: f91d + - thin + unicode: e01d voted: false overline: changes: - 5.9.0 + - unreleased label: Overline search: terms: @@ -25296,970 +33290,1700 @@ overline: - regular - light - duotone + - thin unicode: f876 voted: false -page-break: +p: + changes: + - unreleased + label: P + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +page4: + changes: + - 5.0.0 + label: page4 Corporation + search: + terms: [] + styles: + - brands + unicode: f3d7 + voted: false +pagelines: + changes: + - '4' + - 5.0.0 + label: Pagelines + search: + terms: + - eco + - flora + - leaf + - leaves + - nature + - plant + - tree + styles: + - brands + unicode: f18c + voted: false +pager: + changes: + - 5.7.0 + - unreleased + label: Pager + search: + terms: + - beeper + - cellphone + - communication + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f815 + voted: false +paint-brush: + changes: + - '4.2' + - 5.0.0 + - 5.1.0 + - unreleased + label: Paint Brush + search: + terms: + - acrylic + - art + - brush + - color + - fill + - paint + - pigment + - watercolor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1fc + voted: false +paint-brush-fine: + aliases: + names: + - paint-brush-alt + changes: + - 5.1.0 + - unreleased + label: Paint brush fine + search: + terms: + - acrylic + - art + - brush + - color + - fill + - paint + - pigment + - watercolor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5a9 + voted: false +paint-roller: + changes: + - 5.1.0 + - unreleased + label: Paint Roller + search: + terms: + - acrylic + - art + - brush + - color + - fill + - paint + - pigment + - watercolor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5aa + voted: false +paintbrush-pencil: + changes: + - unreleased + label: Paintbrush Pencil + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +palette: + changes: + - 5.0.13 + - unreleased + label: Palette + search: + terms: + - acrylic + - art + - brush + - color + - fill + - paint + - pigment + - watercolor + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f53f + voted: true +palette-boxes: + aliases: + names: + - pallet-alt + changes: + - 5.0.7 + - unreleased + label: Palette boxes + search: + terms: + - archive + - box + - inventory + - shipping + - warehouse + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f483 + voted: false +palfed: + changes: + - 5.0.0 + - 5.0.3 + label: Palfed + search: + terms: [] + styles: + - brands + unicode: f3d8 + voted: false +pallet: + changes: + - 5.0.7 + - unreleased + label: Pallet + search: + terms: + - archive + - box + - inventory + - shipping + - warehouse + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f482 + voted: false +pallet-box: + changes: + - unreleased + label: Pallet Box + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +panorama: + changes: + - unreleased + label: Panorama + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +paper-plane: + changes: + - '4.1' + - 5.0.0 + - unreleased + label: Paper Plane + search: + terms: + - air + - float + - fold + - mail + - paper + - send + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1d8 + voted: false +paper-plane-top: + aliases: + names: + - paper-plane-alt + - send + changes: + - unreleased + label: Paper plane top + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +paperclip: + changes: + - '2' + - 5.0.0 + - unreleased + label: Paperclip + search: + terms: + - attach + - attachment + - connect + - link + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0c6 + voted: false +parachute-box: + changes: + - 5.0.9 + - unreleased + label: Parachute Box + search: + terms: + - aid + - assistance + - rescue + - supplies + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4cd + voted: false +paragraph: changes: + - '4.1' + - 5.0.0 - 5.9.0 - label: Page Break + - unreleased + label: paragraph search: terms: - - begin - - divide - edit - - end - format - - split + - text + - writing + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1dd + voted: false +paragraph-left: + aliases: + names: + - paragraph-rtl + changes: + - 5.9.0 + - unreleased + label: Paragraph left + search: + terms: + - edit + - format + - text + - writing + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f878 + voted: false +passport: + changes: + - 5.1.0 + - unreleased + label: Passport + search: + terms: + - document + - id + - identification + - issued + - travel + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5ab + voted: false +paste: + aliases: + names: + - file-clipboard + changes: + - '2' + - 5.0.0 + - unreleased + label: Paste + search: + terms: + - clipboard + - copy + - document + - paper + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0ea + voted: false +patreon: + changes: + - 5.0.0 + - 5.0.3 + label: Patreon + search: + terms: [] + styles: + - brands + unicode: f3d9 + voted: false +pause: + changes: + - '1' + - 5.0.0 + - 5.10.2 + - unreleased + label: pause + search: + terms: + - hold + - wait + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f04c + voted: false +paw: + changes: + - '4.1' + - 5.0.0 + - unreleased + label: Paw + search: + terms: + - animal + - cat + - dog + - pet + - print + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1b0 + voted: false +paw-claws: + changes: + - 5.4.0 + - unreleased + label: Paw Claws + search: + terms: + - Dungeons & Dragons + - animal + - beast + - d&d + - dnd + - fantasy + - lion + - pet + - print + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f702 + voted: false +paw-simple: + aliases: + names: + - paw-alt + changes: + - 5.4.0 + - unreleased + label: Paw simple + search: + terms: + - animal + - cat + - dog + - pet + - print + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f701 + voted: false +paypal: + changes: + - '4.2' + - 5.0.0 + label: Paypal + search: + terms: [] + styles: + - brands + unicode: f1ed + voted: false +peace: + changes: + - 5.3.0 + - 5.11.0 + - 5.11.1 + - unreleased + label: Peace + search: + terms: + - serenity + - tranquility + - truce + - war + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f67c + voted: false +pegasus: + changes: + - 5.4.0 + - unreleased + label: Pegasus + search: + terms: + - fantasy + - horse + - unicorn + - wings styles: - solid - regular - light - duotone - unicode: f877 - voted: false -page4: - changes: - - 5.0.0 - label: page4 Corporation - search: - terms: [] - styles: - - brands - unicode: f3d7 + - thin + unicode: f703 voted: false -pagelines: +pen: changes: - - '4' - 5.0.0 - label: Pagelines + - 5.1.0 + - unreleased + label: Pen search: terms: - - eco - - flora - - leaf - - leaves - - nature - - plant - - tree + - design + - edit + - update + - write styles: - - brands - unicode: f18c + - solid + - regular + - light + - duotone + - thin + unicode: f304 voted: false -pager: +pen-circle: changes: - - 5.7.0 - label: Pager + - unreleased + label: Pen Circle search: - terms: - - beeper - - cellphone - - communication + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f815 + - thin + unicode: auto voted: false -paint-brush: +pen-clip: + aliases: + names: + - pen-alt changes: - - '4.2' - 5.0.0 - 5.1.0 - label: Paint Brush + - unreleased + label: Pen clip search: terms: - - acrylic - - art - - brush - - color - - fill - - paint - - pigment - - watercolor + - design + - edit + - update + - write styles: - solid - regular - light - duotone - unicode: f1fc + - thin + unicode: f305 voted: false -paint-brush-alt: +pen-clip-slash: + aliases: + names: + - pen-alt-slash changes: - - 5.1.0 - label: Alternate Paint Brush + - unreleased + label: Pen clip slash search: - terms: - - acrylic - - art - - brush - - color - - fill - - paint - - pigment - - watercolor + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f5a9 + - thin + unicode: auto voted: false -paint-roller: +pen-fancy: changes: - 5.1.0 - label: Paint Roller + - unreleased + label: Pen Fancy search: terms: - - acrylic - - art - - brush - - color - - fill - - paint - - pigment - - watercolor + - design + - edit + - fountain pen + - update + - write styles: - solid - regular - light - duotone - unicode: f5aa + - thin + unicode: f5ac voted: false -palette: +pen-fancy-slash: changes: - - 5.0.13 - label: Palette + - unreleased + label: Pen Fancy-slash search: - terms: - - acrylic - - art - - brush - - color - - fill - - paint - - pigment - - watercolor + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f53f - voted: true -palfed: + - thin + unicode: auto + voted: false +pen-field: changes: - - 5.0.0 - - 5.0.3 - label: Palfed + - unreleased + label: Pen Field search: terms: [] styles: - - brands - unicode: f3d8 + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false -pallet: +pen-nib: changes: - - 5.0.7 - label: Pallet + - 5.1.0 + - unreleased + label: Pen Nib search: terms: - - archive - - box - - inventory - - shipping - - warehouse + - design + - edit + - fountain pen + - update + - write styles: - solid - regular - light - duotone - unicode: f482 - voted: false -pallet-alt: + - thin + unicode: f5ad + voted: true +pen-paintbrush: + aliases: + names: + - pencil-paintbrush changes: - - 5.0.7 - label: Alternate Pallet + - 5.2.0 + - unreleased + label: Pen paintbrush search: terms: - - archive - - box - - inventory - - shipping - - warehouse + - art + - design + - paint + - pencil + - write styles: - solid - regular - light - duotone - unicode: f483 + - thin + unicode: f618 voted: false -paper-plane: +pen-ruler: + aliases: + names: + - pencil-ruler changes: - - '4.1' - - 5.0.0 - label: Paper Plane + - 5.1.0 + - unreleased + label: Pen ruler search: terms: - - air - - float - - fold - - mail - - paper - - send + - design + - draft + - draw + - pencil styles: - solid - regular - light - duotone - unicode: f1d8 + - thin + unicode: f5ae voted: false -paperclip: +pen-slash: changes: - - '2' - - 5.0.0 - label: Paperclip + - unreleased + label: Pen Slash search: - terms: - - attach - - attachment - - connect - - link + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f0c6 + - thin + unicode: auto voted: false -parachute-box: +pen-swirl: changes: - - 5.0.9 - label: Parachute Box + - unreleased + label: Pen Swirl search: - terms: - - aid - - assistance - - rescue - - supplies + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f4cd + - thin + unicode: auto voted: false -paragraph: +pen-to-square: + aliases: + names: + - edit changes: - - '4.1' + - '1' - 5.0.0 - - 5.9.0 - label: paragraph + - unreleased + label: Pen to square search: terms: - edit - - format - - text - - writing + - pen + - pencil + - update + - write styles: - solid - regular - light - duotone - unicode: f1dd + - thin + unicode: f044 voted: false -paragraph-rtl: +pencil: + aliases: + names: + - pencil-alt + unicodes: + - f303 changes: - - 5.9.0 - label: Paragraph Right-to-Left + - '1' + - 5.0.0 + - unreleased + label: pencil search: terms: + - design - edit - - format - - text - - writing + - update + - write styles: - solid - regular - light - duotone - unicode: f878 + - thin + unicode: f040 voted: false -parking: +pencil-slash: changes: - - 5.0.13 - label: Parking + - unreleased + label: Pencil Slash search: - terms: - - auto - - car - - garage - - meter + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f540 - voted: true -parking-circle: + - thin + unicode: auto + voted: false +penny-arcade: changes: - - 5.2.0 - - 5.10.1 - - 5.11.0 - - 5.11.1 - label: Parking Circle + - 5.4.0 + label: Penny Arcade search: terms: - - auto - - car - - garage - - meter + - Dungeons & Dragons + - d&d + - dnd + - fantasy + - game + - gaming + - pax + - tabletop styles: - - solid - - regular - - light - - duotone - unicode: f615 + - brands + unicode: f704 voted: false -parking-circle-slash: +people-arrows-left-right: + aliases: + names: + - people-arrows changes: - - 5.2.0 - - 5.11.0 - - 5.11.1 - label: Parking Circle Slash + - 5.13.0 + - 5.14.0 + - unreleased + label: People arrows left right search: terms: - - auto - - car - - garage - - meter + - covid-19 + - personal space + - social distance + - space + - spread + - users styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f616 + - thin + unicode: e068 voted: false -parking-slash: +people-carry-box: + aliases: + names: + - people-carry changes: - - 5.2.0 - label: Parking Slash + - 5.0.9 + - unreleased + label: People carry box search: terms: - - auto - - car - - garage - - meter + - box + - carry + - fragile + - help + - movers + - package styles: - solid - regular - light - duotone - unicode: f617 + - thin + unicode: f4ce voted: false -passport: +pepper-hot: changes: - - 5.1.0 - label: Passport + - 5.7.0 + - unreleased + label: Hot Pepper search: terms: - - document - - id - - identification - - issued - - travel + - buffalo wings + - capsicum + - chili + - chilli + - habanero + - jalapeno + - mexican + - spicy + - tabasco + - vegetable styles: - solid - regular - light - duotone - unicode: f5ab + - thin + unicode: f816 + voted: true +perbyte: + changes: + - 5.15.0 + label: PerByte + search: + terms: [] + styles: + - brands + unicode: e083 voted: false -pastafarianism: +percent: changes: - - 5.3.0 - label: Pastafarianism + - '4.5' + - 5.0.0 + - unreleased + label: Percent search: terms: - - agnosticism - - atheism - - flying spaghetti monster - - fsm + - discount + - fraction + - proportion + - rate + - ratio styles: - solid - regular - light - duotone - unicode: f67b + - thin + unicode: f295 voted: false -paste: +percentage: + aliases: + names: + - percent changes: - - '2' - - 5.0.0 - label: Paste + - 5.0.13 + - unreleased + label: Percentage search: terms: - - clipboard - - copy - - document - - paper + - discount + - fraction + - proportion + - rate + - ratio styles: - solid - regular - light - duotone - unicode: f0ea - voted: false -patreon: + - thin + unicode: f541 + voted: true +periscope: changes: - 5.0.0 - - 5.0.3 - label: Patreon + label: Periscope search: terms: [] styles: - brands - unicode: f3d9 + unicode: f3da voted: false -pause: +person: + aliases: + names: + - male changes: - - '1' + - '3.2' - 5.0.0 - - 5.10.2 - label: pause + - unreleased + label: Person search: terms: - - hold - - wait + - human + - man + - person + - profile + - user styles: - solid - regular - light - duotone - unicode: f04c + - thin + unicode: f183 voted: false -pause-circle: +person-biking: + aliases: + names: + - biking changes: - - '4.5' - - 5.0.0 - label: Pause Circle + - 5.9.0 + - unreleased + label: Person biking search: terms: - - hold - - wait + - bicycle + - bike + - cycle + - cycling + - ride + - wheel styles: - solid - regular - light - duotone - unicode: f28b + - thin + unicode: f84a voted: false -paw: +person-biking-mountain: + aliases: + names: + - biking-mountain changes: - - '4.1' - - 5.0.0 - label: Paw + - 5.9.0 + - unreleased + label: Person biking mountain search: terms: - - animal - - cat - - dog - - pet - - print + - bicycle + - bike + - cycle + - cycling + - offroad + - ride + - trail + - wheel styles: - solid - regular - light - duotone - unicode: f1b0 + - thin + unicode: f84b voted: false -paw-alt: +person-booth: changes: - - 5.4.0 - label: Paw Alt + - 5.5.0 + - unreleased + label: Person Entering Booth search: terms: - - animal - - cat - - dog - - pet - - print + - changing + - changing room + - election + - human + - person + - vote + - voting styles: - solid - regular - light - duotone - unicode: f701 + - thin + unicode: f756 voted: false -paw-claws: +person-carry-box: + aliases: + names: + - person-carry changes: - - 5.4.0 - label: Paw Claws + - 5.0.9 + - unreleased + label: Person carry box search: terms: - - Dungeons & Dragons - - animal - - beast - - d&d - - dnd - - fantasy - - lion - - pet - - print + - human + - lift + - mover + - person + - transport styles: - solid - regular - light - duotone - unicode: f702 + - thin + unicode: f4cf voted: false -paypal: +person-digging: + aliases: + names: + - digging changes: - - '4.2' - - 5.0.0 - label: Paypal + - 5.9.0 + - unreleased + label: Person digging search: - terms: [] + terms: + - building + - construction + - labor + - shovel styles: - - brands - unicode: f1ed + - solid + - regular + - light + - duotone + - thin + unicode: f85e voted: false -peace: +person-dolly: changes: - - 5.3.0 - - 5.11.0 - - 5.11.1 - label: Peace + - 5.0.9 + - unreleased + label: Person and Dolly search: terms: - - serenity - - tranquility - - truce - - war + - human + - lift + - mover + - person + - transport + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4d0 + voted: false +person-dolly-empty: + changes: + - 5.0.9 + - unreleased + label: Person and Empty Dolly + search: + terms: + - human + - lift + - mover + - person + - transport styles: - solid - regular - light - duotone - unicode: f67c + - thin + unicode: f4d1 voted: false -pegasus: +person-dots-from-line: + aliases: + names: + - diagnoses changes: - - 5.4.0 - label: Pegasus + - 5.0.7 + - 5.7.0 + - unreleased + label: Person dots from line search: terms: - - fantasy - - horse - - unicorn - - wings + - analyze + - detect + - diagnosis + - examine + - medicine styles: - solid - regular - light - duotone - unicode: f703 + - thin + unicode: f470 voted: false -pen: +person-dress: + aliases: + names: + - female changes: + - '3.2' - 5.0.0 - - 5.1.0 - label: Pen + - unreleased + label: Person dress search: terms: - - design - - edit - - update - - write + - human + - person + - profile + - user + - woman styles: - solid - regular - light - duotone - unicode: f304 + - thin + unicode: f182 voted: false -pen-alt: +person-from-portal: + aliases: + names: + - portal-exit changes: - - 5.0.0 - - 5.1.0 - label: Alternate Pen + - 5.12.0 + - 5.14.0 + - unreleased + label: Person from portal search: terms: - - design - - edit - - update - - write + - close + - enter + - teleport + - transporter + - travel styles: - solid - regular - light - duotone - unicode: f305 + - thin + unicode: e023 voted: false -pen-fancy: +person-hiking: + aliases: + names: + - hiking changes: - - 5.1.0 - label: Pen Fancy + - 5.4.0 + - unreleased + label: Person hiking search: terms: - - design - - edit - - fountain pen - - update - - write + - activity + - backpack + - fall + - fitness + - outdoors + - person + - seasonal + - walking styles: - solid - regular - light - duotone - unicode: f5ac + - thin + unicode: f6ec voted: false -pen-nib: +person-praying: + aliases: + names: + - pray changes: - - 5.1.0 - label: Pen Nib + - 5.3.0 + - unreleased + label: Person praying search: terms: - - design - - edit - - fountain pen - - update - - write + - kneel + - preach + - religion + - worship styles: - solid - regular - light - duotone - unicode: f5ad - voted: true -pen-square: + - thin + unicode: f683 + voted: false +person-running: + aliases: + names: + - running changes: - - '3.1' - - 5.0.0 - label: Pen Square + - 5.4.0 + - 5.11.0 + - unreleased + label: Person running search: terms: - - edit - - pencil-square - - update - - write + - exercise + - health + - jog + - person + - run + - sport + - sprint styles: - solid - regular - light - duotone - unicode: f14b - voted: false -pencil: + - thin + unicode: f70c + voted: true +person-seat: changes: - - '1' - - 5.0.0 - label: pencil + - unreleased + label: Person in a Seat search: - terms: - - design - - edit - - update - - write + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f040 + - thin + unicode: auto voted: false -pencil-alt: +person-seat-reclined: changes: - - 5.0.0 - label: Alternate Pencil + - unreleased + label: Person Seat-reclined search: - terms: - - design - - edit - - pencil - - update - - write + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f303 + - thin + unicode: auto voted: false -pencil-paintbrush: +person-sign: changes: - - 5.2.0 - label: Pencil Paintbrush + - 5.5.0 + - unreleased + label: Person Holding Sign search: terms: - - art - - design - - paint - - pencil - - write + - advocate + - human + - information + - person + - protest + - protester + - volunteer styles: - solid - regular - light - duotone - unicode: f618 + - thin + unicode: f757 voted: false -pencil-ruler: +person-skating: + aliases: + names: + - skating changes: - - 5.1.0 - label: Pencil Ruler + - 5.6.0 + - unreleased + label: Person skating search: terms: - - design - - draft - - draw - - pencil + - activity + - figure skating + - fitness + - ice + - person + - winter styles: - solid - regular - light - duotone - unicode: f5ae - voted: false -pennant: + - thin + unicode: f7c5 +person-ski-jumping: + aliases: + names: + - ski-jump changes: - - 5.0.5 - - 5.10.1 - label: Pennant + - 5.6.0 + - unreleased + label: Person ski jumping search: terms: - - banner - - flag - - sign - - sports - - win + - activity + - fast + - fitness + - olympics + - outdoors + - person + - snowman styles: - solid - regular - light - duotone - unicode: f456 - voted: false -penny-arcade: + - thin + unicode: f7c7 +person-ski-lift: + aliases: + names: + - ski-lift changes: - - 5.4.0 - label: Penny Arcade + - 5.6.0 + - unreleased + label: Person ski lift search: terms: - - Dungeons & Dragons - - d&d - - dnd - - fantasy - - game - - gaming - - pax - - tabletop + - machine + - outdoors + - resort + - seasonal + - seat + - skiing + - tow styles: - - brands - unicode: f704 - voted: false -people-arrows: + - solid + - regular + - light + - duotone + - thin + unicode: f7c8 +person-skiing: + aliases: + names: + - skiing changes: - - 5.13.0 - label: People Arrows + - 5.6.0 + - unreleased + label: Person skiing search: terms: - - covid-19 - - personal space - - social distance - - space - - spread - - users + - activity + - downhill + - fast + - fitness + - olympics + - outdoors + - person + - seasonal + - slalom styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f968 - voted: false -people-carry: + - thin + unicode: f7c9 +person-skiing-nordic: + aliases: + names: + - skiing-nordic changes: - - 5.0.9 - label: People Carry + - 5.6.0 + - unreleased + label: Person skiing nordic search: terms: - - box - - carry - - fragile - - help - - movers - - package + - activity + - cross country + - fitness + - outdoors + - person + - seasonal styles: - solid - regular - light - duotone - unicode: f4ce - voted: false -pepper-hot: + - thin + unicode: f7ca +person-sledding: + aliases: + names: + - sledding changes: - - 5.7.0 - label: Hot Pepper + - 5.6.0 + - unreleased + label: Person sledding search: terms: - - buffalo wings - - capsicum - - chili - - chilli - - habanero - - jalapeno - - mexican - - spicy - - tabasco - - vegetable + - activity + - luge + - outdoors + - person + - seasonal + - snow + - toboggan styles: - solid - regular - light - duotone - unicode: f816 - voted: true -percent: + - thin + unicode: f7cb +person-snowboarding: + aliases: + names: + - snowboarding changes: - - '4.5' - - 5.0.0 - label: Percent + - 5.6.0 + - unreleased + label: Person snowboarding search: terms: - - discount - - fraction - - proportion - - rate - - ratio + - activity + - fitness + - olympics + - outdoors + - person styles: - solid - regular - light - duotone - unicode: f295 + - thin + unicode: f7ce voted: false -percentage: +person-snowmobiling: + aliases: + names: + - snowmobile changes: - - 5.0.13 - label: Percentage + - 5.6.0 + - unreleased + label: Person snowmobiling search: terms: - - discount - - fraction - - proportion - - rate - - ratio + - fast + - person + - transportation + - treads + - vehicle + - winter styles: - solid - regular - light - duotone - unicode: f541 - voted: true -periscope: - changes: - - 5.0.0 - label: Periscope - search: - terms: [] - styles: - - brands - unicode: f3da - voted: false -person-booth: + - thin + unicode: f7d1 +person-swimming: + aliases: + names: + - swimmer changes: - - 5.5.0 - label: Person Entering Booth + - 5.1.0 + - unreleased + label: Person swimming search: terms: - - changing - - changing room - - election - - human + - athlete + - head + - man + - olympics - person - - vote - - voting + - pool + - water styles: - solid - regular - light - duotone - unicode: f756 + - thin + unicode: f5c4 voted: false -person-carry: +person-to-portal: + aliases: + names: + - portal-enter changes: - - 5.0.9 - label: Person Carry + - 5.12.0 + - 5.14.0 + - unreleased + label: Person to portal search: terms: - - human - - lift - - mover - - person - - transport + - enter + - open + - teleport + - transporter + - travel styles: - solid - regular - light - duotone - unicode: f4cf + - thin + unicode: e022 voted: false -person-dolly: +person-walking: + aliases: + names: + - walking changes: - - 5.0.9 - label: Person and Dolly + - 5.0.13 + - unreleased + label: Person walking search: terms: - - human - - lift - - mover + - exercise + - health + - pedometer - person - - transport + - steps styles: - solid - regular - light - duotone - unicode: f4d0 - voted: false -person-dolly-empty: + - thin + unicode: f554 + voted: true +person-walking-with-cane: + aliases: + names: + - blind changes: - - 5.0.9 - label: Person and Empty Dolly + - '4.6' + - 5.0.0 + - 5.11.0 + - unreleased + label: Person walking with cane search: terms: - - human - - lift - - mover + - cane + - disability - person - - transport + - sight styles: - solid - regular - light - duotone - unicode: f4d1 + - thin + unicode: f29d voted: false -person-sign: +peseta-sign: changes: - - 5.5.0 - label: Person Holding Sign + - unreleased + label: Peseta Sign search: - terms: - - advocate - - human - - information - - person - - protest - - protester - - volunteer + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +peso-sign: + changes: + - unreleased + label: Peso Sign + search: + terms: [] + styles: - duotone - unicode: f757 + - solid + - regular + - light + - thin + unicode: auto voted: false phabricator: changes: @@ -26299,6 +35023,7 @@ phone: - 5.0.0 - 5.10.1 - 5.10.2 + - unreleased label: Phone search: terms: @@ -26313,14 +35038,55 @@ phone: - regular - light - duotone + - thin unicode: f095 voted: false -phone-alt: +phone-arrow-down-left: + aliases: + names: + - phone-incoming + - phone-arrow-down + changes: + - unreleased + label: Phone arrow down left + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +phone-arrow-up-right: + aliases: + names: + - phone-outgoing + - phone-arrow-up + changes: + - unreleased + label: Phone arrow up right + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +phone-flip: + aliases: + names: + - phone-alt changes: - 5.9.0 - 5.10.1 - 5.10.2 - label: Alternate Phone + - unreleased + label: Phone flip search: terms: - call @@ -26334,28 +35100,44 @@ phone-alt: - regular - light - duotone + - thin unicode: f879 voted: false -phone-laptop: +phone-hangup: + aliases: + names: + - phone-hangup changes: - - 5.9.0 - label: Phone and Laptop + - unreleased + label: Phone hangup search: - terms: - - computer - - device - - mobile - - technology + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +phone-missed: + changes: + - unreleased + label: Phone Missed + search: + terms: [] + styles: - duotone - unicode: f87a + - solid + - regular + - light + - thin + unicode: auto voted: false phone-office: changes: - 5.3.0 + - unreleased label: Office Phone search: terms: @@ -26370,11 +35152,13 @@ phone-office: - regular - light - duotone + - thin unicode: f67d voted: false phone-plus: changes: - 5.0.9 + - unreleased label: Phone Plus search: terms: @@ -26391,11 +35175,13 @@ phone-plus: - regular - light - duotone + - thin unicode: f4d2 voted: false phone-rotary: changes: - 5.11.0 + - unreleased label: Rotary Phone search: terms: @@ -26412,12 +35198,14 @@ phone-rotary: - regular - light - duotone + - thin unicode: f8d3 voted: false phone-slash: changes: - 5.0.0 - 5.0.9 + - unreleased label: Phone Slash search: terms: @@ -26434,54 +35222,19 @@ phone-slash: - regular - light - duotone + - thin unicode: f3dd voted: false -phone-square: - changes: - - '2' - - 5.0.0 - label: Phone Square - search: - terms: - - call - - earphone - - number - - support - - telephone - - voice - styles: - - solid - - regular - - light - - duotone - unicode: f098 - voted: false -phone-square-alt: - changes: - - 5.9.0 - - 5.10.1 - label: Alternate Phone Square - search: - terms: - - call - - earphone - - number - - support - - telephone - - voice - styles: - - solid - - regular - - light - - duotone - unicode: f87b - voted: false phone-volume: + aliases: + names: + - volume-control-phone changes: - '4.6' - 5.0.0 - 5.0.3 - 5.7.0 + - unreleased label: Phone Volume search: terms: @@ -26498,12 +35251,17 @@ phone-volume: - regular - light - duotone + - thin unicode: f2a0 voted: false -photo-video: +photo-film: + aliases: + names: + - photo-film changes: - 5.9.0 - label: Photo Video + - unreleased + label: Photo film search: terms: - av @@ -26516,8 +35274,26 @@ photo-video: - regular - light - duotone + - thin unicode: f87c voted: false +photo-film-music: + aliases: + names: + - photo-film-music + changes: + - unreleased + label: Photo film music + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false php: changes: - 5.0.5 @@ -26531,6 +35307,7 @@ php: pi: changes: - 5.3.0 + - unreleased label: Pi search: terms: @@ -26545,12 +35322,14 @@ pi: - regular - light - duotone + - thin unicode: f67e voted: false piano: changes: - 5.11.0 - 5.12.0 + - unreleased label: Piano search: terms: @@ -26565,11 +35344,13 @@ piano: - regular - light - duotone + - thin unicode: f8d4 voted: false piano-keyboard: changes: - 5.11.0 + - unreleased label: Piano Keyboard search: terms: @@ -26583,12 +35364,14 @@ piano-keyboard: - regular - light - duotone + - thin unicode: f8d5 voted: false pie: changes: - 5.4.0 - 5.7.0 + - unreleased label: Pie search: terms: @@ -26604,6 +35387,7 @@ pie: - regular - light - duotone + - thin unicode: f705 voted: false pied-piper: @@ -26656,17 +35440,19 @@ pied-piper-pp: pied-piper-square: changes: - 5.12.0 + - 5.14.0 label: Pied Piper Square Logo (Old) search: terms: [] styles: - brands - unicode: f91e + unicode: e01e voted: false pig: changes: - 5.4.0 - 5.10.2 + - unreleased label: Pig search: terms: @@ -26681,12 +35467,14 @@ pig: - regular - light - duotone + - thin unicode: f706 voted: false piggy-bank: changes: - 5.0.9 - 5.10.2 + - unreleased label: Piggy Bank search: terms: @@ -26698,11 +35486,13 @@ piggy-bank: - regular - light - duotone + - thin unicode: f4d3 voted: false pills: changes: - 5.0.7 + - unreleased label: Pills search: terms: @@ -26715,8 +35505,23 @@ pills: - regular - light - duotone + - thin unicode: f484 voted: false +pinball: + changes: + - unreleased + label: Pinball + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false pinterest: changes: - '2' @@ -26753,6 +35558,7 @@ pinterest-square: pizza: changes: - 5.7.0 + - unreleased label: Pizza search: terms: @@ -26771,11 +35577,13 @@ pizza: - regular - light - duotone + - thin unicode: f817 voted: false pizza-slice: changes: - 5.7.0 + - unreleased label: Pizza Slice search: terms: @@ -26794,11 +35602,13 @@ pizza-slice: - regular - light - duotone + - thin unicode: f818 voted: true place-of-worship: changes: - 5.3.0 + - unreleased label: Place of Worship search: terms: @@ -26812,6 +35622,7 @@ place-of-worship: - regular - light - duotone + - thin unicode: f67f voted: false plane: @@ -26819,6 +35630,7 @@ plane: - '1' - 5.0.0 - 5.0.13 + - unreleased label: plane search: terms: @@ -26834,31 +35646,13 @@ plane: - regular - light - duotone + - thin unicode: f072 voted: false -plane-alt: - changes: - - 5.0.0 - label: Alternate Plane - search: - terms: - - airplane - - destination - - fly - - location - - mode - - travel - - trip - styles: - - solid - - regular - - light - - duotone - unicode: f3de - voted: false plane-arrival: changes: - 5.1.0 + - unreleased label: Plane Arrival search: terms: @@ -26877,12 +35671,14 @@ plane-arrival: - regular - light - duotone + - thin unicode: f5af voted: false plane-departure: changes: - 5.1.0 - 5.8.0 + - unreleased label: Plane Departure search: terms: @@ -26901,11 +35697,53 @@ plane-departure: - regular - light - duotone + - thin unicode: f5b0 voted: false +plane-engines: + aliases: + names: + - plane-engines + changes: + - 5.0.0 + - unreleased + label: Plane engines + search: + terms: + - airplane + - destination + - fly + - location + - mode + - travel + - trip + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3de + voted: false +plane-prop: + changes: + - unreleased + label: Plane Prop + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false plane-slash: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Plane Slash search: terms: @@ -26920,11 +35758,56 @@ plane-slash: - regular - solid - duotone - unicode: f969 + - thin + unicode: e069 + voted: false +plane-tail: + changes: + - unreleased + label: Plane Tail + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +plane-up: + changes: + - unreleased + label: Plane Up + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +plane-up-slash: + changes: + - unreleased + label: Plane Up-slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false planet-moon: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Planet with Moon search: terms: @@ -26939,11 +35822,14 @@ planet-moon: - regular - light - duotone - unicode: f91f + - thin + unicode: e01f voted: false planet-ringed: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Ringed Planet search: terms: @@ -26957,13 +35843,15 @@ planet-ringed: - regular - light - duotone - unicode: f920 + - thin + unicode: e020 voted: false play: changes: - '1' - 5.0.0 - 5.10.2 + - unreleased label: play search: terms: @@ -26978,29 +35866,9 @@ play: - regular - light - duotone + - thin unicode: f04b voted: false -play-circle: - changes: - - '3.1' - - 5.0.0 - - 5.10.2 - label: Play Circle - search: - terms: - - audio - - music - - playing - - sound - - start - - video - styles: - - solid - - regular - - light - - duotone - unicode: f144 - voted: false playstation: changes: - 5.0.0 @@ -27016,6 +35884,7 @@ plug: - '4.2' - 5.0.0 - 5.12.0 + - unreleased label: Plug search: terms: @@ -27028,13 +35897,18 @@ plug: - regular - light - duotone + - thin unicode: f1e6 voted: false plus: + aliases: + names: + - add changes: - '1' - 5.0.0 - 5.0.13 + - unreleased label: plus search: terms: @@ -27049,91 +35923,14 @@ plus: - regular - light - duotone + - thin unicode: f067 voted: false -plus-circle: - changes: - - '1' - - 5.0.0 - label: Plus Circle - search: - terms: - - add - - create - - expand - - new - - positive - - shape - styles: - - solid - - regular - - light - - duotone - unicode: f055 - voted: false -plus-hexagon: - changes: - - 5.0.0 - - 5.11.0 - label: Plus Hexagon - search: - terms: - - add - - create - - expand - - new - - positive - - shape - styles: - - solid - - regular - - light - - duotone - unicode: f300 - voted: false -plus-octagon: - changes: - - 5.0.0 - label: Plus Octagon - search: - terms: - - add - - create - - expand - - new - - positive - - shape - styles: - - solid - - regular - - light - - duotone - unicode: f301 - voted: false -plus-square: - changes: - - '3' - - 5.0.0 - label: Plus Square - search: - terms: - - add - - create - - expand - - new - - positive - - shape - styles: - - solid - - regular - - light - - duotone - unicode: f0fe - voted: false podcast: changes: - '4.7' - 5.0.0 + - unreleased label: Podcast search: terms: @@ -27146,11 +35943,13 @@ podcast: - regular - light - duotone + - thin unicode: f2ce voted: false podium: changes: - 5.3.0 + - unreleased label: Podium search: terms: @@ -27170,11 +35969,13 @@ podium: - regular - light - duotone + - thin unicode: f680 voted: false podium-star: changes: - 5.5.0 + - unreleased label: Podium with Star search: terms: @@ -27194,11 +35995,14 @@ podium-star: - regular - light - duotone + - thin unicode: f758 voted: false police-box: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Police Box search: terms: @@ -27211,50 +36015,14 @@ police-box: - regular - light - duotone - unicode: f921 - voted: false -poll: - changes: - - 5.3.0 - - 5.10.1 - label: Poll - search: - terms: - - results - - survey - - trend - - vote - - voting - styles: - - solid - - regular - - light - - duotone - unicode: f681 - voted: false -poll-h: - changes: - - 5.3.0 - - 5.10.1 - label: Poll H - search: - terms: - - results - - survey - - trend - - vote - - voting - styles: - - solid - - regular - - light - - duotone - unicode: f682 + - thin + unicode: e021 voted: false poll-people: changes: - 5.5.0 - 5.10.1 + - unreleased label: Poll People search: terms: @@ -27272,12 +36040,14 @@ poll-people: - regular - light - duotone + - thin unicode: f759 voted: false poo: changes: - 5.0.0 - 5.0.9 + - unreleased label: Poo search: terms: @@ -27291,12 +36061,17 @@ poo: - regular - light - duotone + - thin unicode: f2fe voted: false -poo-storm: +poo-bolt: + aliases: + names: + - poo-storm changes: - 5.5.0 - label: Poo Storm + - unreleased + label: Poo bolt search: terms: - bolt @@ -27312,11 +36087,13 @@ poo-storm: - regular - light - duotone + - thin unicode: f75a voted: false poop: changes: - 5.2.0 + - unreleased label: Poop search: terms: @@ -27330,6 +36107,7 @@ poop: - regular - light - duotone + - thin unicode: f619 voted: false popcorn: @@ -27337,6 +36115,7 @@ popcorn: - 5.7.0 - 5.11.0 - 5.11.1 + - unreleased label: Popcorn search: terms: @@ -27353,84 +36132,14 @@ popcorn: - regular - light - duotone + - thin unicode: f819 voted: false -portal-enter: - changes: - - 5.12.0 - label: Portal Enter - search: - terms: - - enter - - open - - teleport - - transporter - - travel - styles: - - solid - - regular - - light - - duotone - unicode: f922 - voted: false -portal-exit: - changes: - - 5.12.0 - label: Portal Exit - search: - terms: - - close - - enter - - teleport - - transporter - - travel - styles: - - solid - - regular - - light - - duotone - unicode: f923 - voted: false -portrait: - changes: - - 5.0.0 - - 5.0.3 - label: Portrait - search: - terms: - - id - - image - - photo - - picture - - selfie - styles: - - solid - - regular - - light - - duotone - unicode: f3e0 - voted: false -pound-sign: - changes: - - '3.2' - - 5.0.0 - label: Pound Sign - search: - terms: - - currency - - gbp - - money - styles: - - solid - - regular - - light - - duotone - unicode: f154 - voted: false power-off: changes: - '1' - 5.0.0 + - unreleased label: Power Off search: terms: @@ -27444,45 +36153,13 @@ power-off: - regular - light - duotone + - thin unicode: f011 voted: false -pray: - changes: - - 5.3.0 - label: Pray - search: - terms: - - kneel - - preach - - religion - - worship - styles: - - solid - - regular - - light - - duotone - unicode: f683 - voted: false -praying-hands: - changes: - - 5.3.0 - label: Praying Hands - search: - terms: - - kneel - - preach - - religion - - worship - styles: - - solid - - regular - - light - - duotone - unicode: f684 - voted: false prescription: changes: - 5.1.0 + - unreleased label: Prescription search: terms: @@ -27496,11 +36173,13 @@ prescription: - regular - light - duotone + - thin unicode: f5b1 voted: false prescription-bottle: changes: - 5.0.7 + - unreleased label: Prescription Bottle search: terms: @@ -27514,12 +36193,17 @@ prescription-bottle: - regular - light - duotone + - thin unicode: f485 voted: false -prescription-bottle-alt: +prescription-bottle-medical: + aliases: + names: + - prescription-bottle-medical changes: - 5.0.7 - label: Alternate Prescription Bottle + - unreleased + label: Prescription bottle medical search: terms: - drugs @@ -27532,12 +36216,17 @@ prescription-bottle-alt: - regular - light - duotone + - thin unicode: f486 voted: false -presentation: +presentation-screen: + aliases: + names: + - presentation-screen changes: - 5.3.0 - label: Presentation + - unreleased + label: Presentation screen search: terms: - keynote @@ -27555,6 +36244,7 @@ presentation: - regular - light - duotone + - thin unicode: f685 voted: false print: @@ -27563,6 +36253,7 @@ print: - 5.0.0 - 5.3.0 - 5.11.0 + - unreleased label: print search: terms: @@ -27576,13 +36267,18 @@ print: - regular - light - duotone + - thin unicode: f02f voted: false -print-search: +print-magnifying-glass: + aliases: + names: + - print-search changes: - 5.7.0 - 5.11.0 - label: Print Search + - unreleased + label: Print magnifying glass search: terms: - business @@ -27597,11 +36293,13 @@ print-search: - regular - light - duotone + - thin unicode: f81a voted: true print-slash: changes: - 5.3.0 + - unreleased label: Print Slash search: terms: @@ -27616,29 +36314,9 @@ print-slash: - regular - light - duotone + - thin unicode: f686 voted: false -procedures: - changes: - - 5.0.7 - label: Procedures - search: - terms: - - EKG - - bed - - electrocardiogram - - health - - hospital - - life - - patient - - vital - styles: - - solid - - regular - - light - - duotone - unicode: f487 - voted: false product-hunt: changes: - '4.5' @@ -27653,6 +36331,7 @@ product-hunt: project-diagram: changes: - 5.0.13 + - unreleased label: Project Diagram search: terms: @@ -27665,11 +36344,13 @@ project-diagram: - regular - light - duotone + - thin unicode: f542 voted: false projector: changes: - 5.11.0 + - unreleased label: Projector search: terms: @@ -27685,11 +36366,14 @@ projector: - regular - light - duotone + - thin unicode: f8d6 voted: false pump-medical: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Pump Medical search: terms: @@ -27706,11 +36390,14 @@ pump-medical: - regular - solid - duotone - unicode: f96a + - thin + unicode: e06a voted: false pump-soap: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Pump Soap search: terms: @@ -27726,11 +36413,13 @@ pump-soap: - regular - solid - duotone - unicode: f96b + - thin + unicode: e06b voted: false pumpkin: changes: - 5.4.0 + - unreleased label: Pumpkin search: terms: @@ -27746,6 +36435,7 @@ pumpkin: - regular - light - duotone + - thin unicode: f707 voted: false pushed: @@ -27762,6 +36452,7 @@ puzzle-piece: changes: - '3.1' - 5.0.0 + - unreleased label: Puzzle Piece search: terms: @@ -27774,8 +36465,26 @@ puzzle-piece: - regular - light - duotone + - thin unicode: f12e voted: false +puzzle-piece-simple: + aliases: + names: + - puzzle-piece-alt + changes: + - unreleased + label: Puzzle piece simple + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false python: changes: - 5.0.0 @@ -27786,6 +36495,20 @@ python: - brands unicode: f3e2 voted: false +q: + changes: + - unreleased + label: Q + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false qq: changes: - '4.1' @@ -27802,6 +36525,7 @@ qrcode: - '1' - 5.0.0 - 5.10.1 + - unreleased label: qrcode search: terms: @@ -27814,12 +36538,14 @@ qrcode: - regular - light - duotone + - thin unicode: f029 voted: false question: changes: - '3.1' - 5.0.0 + - unreleased label: Question search: terms: @@ -27832,47 +36558,18 @@ question: - regular - light - duotone + - thin unicode: f128 voted: false -question-circle: - changes: - - '1' - - 5.0.0 - label: Question Circle - search: - terms: - - help - - information - - support - - unknown - styles: - - solid - - regular - - light - - duotone - unicode: f059 - voted: false -question-square: - changes: - - 5.0.0 - label: Question Square - search: - terms: - - help - - information - - support - - unknown - styles: - - solid - - regular - - light - - duotone - unicode: f2fd - voted: false -quidditch: +quidditch-broom-ball: + aliases: + names: + - broom-ball + - quidditch changes: - 5.0.5 - label: Quidditch + - unreleased + label: Quidditch broom ball search: terms: - ball @@ -27889,6 +36586,7 @@ quidditch: - regular - light - duotone + - thin unicode: f458 voted: false quinscape: @@ -27919,6 +36617,7 @@ quote-left: - '3' - 5.0.0 - 5.0.9 + - unreleased label: quote-left search: terms: @@ -27932,13 +36631,32 @@ quote-left: - regular - light - duotone + - thin unicode: f10d voted: false +quote-left-round: + aliases: + names: + - quote-left-alt + changes: + - unreleased + label: Quote left round + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false quote-right: changes: - '3' - 5.0.0 - 5.0.9 + - unreleased label: quote-right search: terms: @@ -27952,24 +36670,39 @@ quote-right: - regular - light - duotone + - thin unicode: f10e voted: false -quran: +quote-right-round: + aliases: + names: + - quote-right-alt changes: - - 5.3.0 - label: Quran + - unreleased + label: Quote right round search: - terms: - - book - - islam - - muslim - - religion + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +r: + changes: + - unreleased + label: R + search: + terms: [] + styles: - duotone - unicode: f687 + - solid + - regular + - light + - thin + unicode: auto voted: false r-project: changes: @@ -27986,6 +36719,7 @@ rabbit: changes: - 5.4.0 - 5.10.2 + - unreleased label: Rabbit search: terms: @@ -28002,13 +36736,18 @@ rabbit: - regular - light - duotone + - thin unicode: f708 voted: true -rabbit-fast: +rabbit-running: + aliases: + names: + - rabbit-fast changes: - 5.4.0 - 5.10.2 - label: Fast Rabbit + - unreleased + label: Rabbit running search: terms: - animal @@ -28025,11 +36764,13 @@ rabbit-fast: - regular - light - duotone + - thin unicode: f709 voted: true racquet: changes: - 5.0.5 + - unreleased label: Racquet search: terms: @@ -28042,11 +36783,14 @@ racquet: - regular - light - duotone + - thin unicode: f45a voted: false radar: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Radar search: terms: @@ -28063,7 +36807,8 @@ radar: - regular - light - duotone - unicode: f924 + - thin + unicode: e024 voted: false radiation: changes: @@ -28071,6 +36816,7 @@ radiation: - 5.8.2 - 5.11.0 - 5.11.1 + - unreleased label: Radiation search: terms: @@ -28086,34 +36832,13 @@ radiation: - regular - light - duotone + - thin unicode: f7b9 voted: true -radiation-alt: - changes: - - 5.6.0 - - 5.8.2 - - 5.11.0 - - 5.11.1 - label: Alternate Radiation - search: - terms: - - danger - - dangerous - - deadly - - hazard - - nuclear - - radioactive - - warning - styles: - - solid - - regular - - light - - duotone - unicode: f7ba - voted: true radio: changes: - 5.11.0 + - unreleased label: Radio search: terms: @@ -28131,12 +36856,17 @@ radio: - regular - light - duotone + - thin unicode: f8d7 voted: false -radio-alt: +radio-tuner: + aliases: + names: + - radio-alt changes: - 5.11.0 - label: Alternate Radio + - unreleased + label: Radio tuner search: terms: - am @@ -28153,12 +36883,14 @@ radio-alt: - regular - light - duotone + - thin unicode: f8d8 voted: false rainbow: changes: - 5.5.0 - 5.10.1 + - unreleased label: Rainbow search: terms: @@ -28172,11 +36904,13 @@ rainbow: - regular - light - duotone + - thin unicode: f75b voted: false raindrops: changes: - 5.5.0 + - unreleased label: Raindrops search: terms: @@ -28189,11 +36923,13 @@ raindrops: - regular - light - duotone + - thin unicode: f75c voted: false ram: changes: - 5.4.0 + - unreleased label: Ram search: terms: @@ -28206,11 +36942,13 @@ ram: - regular - light - duotone + - thin unicode: f70a voted: false ramp-loading: changes: - 5.0.9 + - unreleased label: Ramp Loading search: terms: @@ -28224,28 +36962,9 @@ ramp-loading: - regular - light - duotone + - thin unicode: f4d4 voted: false -random: - changes: - - '1' - - 5.0.0 - label: random - search: - terms: - - arrows - - shuffle - - sort - - swap - - switch - - transfer - styles: - - solid - - regular - - light - - duotone - unicode: f074 - voted: false raspberry-pi: changes: - 5.6.0 @@ -28260,6 +36979,7 @@ ravelry: changes: - '4.7' - 5.0.0 + - 5.15.1 label: Ravelry search: terms: [] @@ -28270,6 +36990,8 @@ ravelry: raygun: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Raygun search: terms: @@ -28284,7 +37006,8 @@ raygun: - regular - light - duotone - unicode: f925 + - thin + unicode: e025 voted: false react: changes: @@ -28332,6 +37055,7 @@ rebel: receipt: changes: - 5.0.13 + - unreleased label: Receipt search: terms: @@ -28345,11 +37069,13 @@ receipt: - regular - light - duotone + - thin unicode: f543 voted: true record-vinyl: changes: - 5.11.0 + - unreleased label: Record Vinyl search: terms: @@ -28364,13 +37090,18 @@ record-vinyl: - regular - light - duotone + - thin unicode: f8d9 voted: false -rectangle-landscape: +rectangle: + aliases: + names: + - rectangle-landscape changes: - 5.0.0 - 5.10.2 - label: Landscape Rectangle + - unreleased + label: Rectangle search: terms: - geometry @@ -28380,13 +37111,115 @@ rectangle-landscape: - regular - light - duotone + - thin unicode: f2fa voted: false -rectangle-portrait: +rectangle-ad: + aliases: + names: + - ad + changes: + - 5.3.0 + - 5.10.2 + - unreleased + label: Rectangle ad + search: + terms: + - advertisement + - media + - newspaper + - promotion + - publicity + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f641 + voted: false +rectangle-audio-description: + aliases: + names: + - audio-description + changes: + - '4.6' + - 5.0.0 + - 5.10.2 + - unreleased + label: Rectangle audio description + search: + terms: + - blind + - narration + - video + - visual + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f29e + voted: false +rectangle-barcode: + aliases: + names: + - barcode-alt + changes: + - 5.0.7 + - unreleased + label: Rectangle barcode + search: + terms: + - info + - laser + - price + - scan + - upc + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f463 + voted: false +rectangle-list: + aliases: + names: + - list-alt + changes: + - '1' + - 5.0.0 + - unreleased + label: Rectangle list + search: + terms: + - checklist + - completed + - done + - finished + - ol + - todo + - ul + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f022 + voted: false +rectangle-vertical: + aliases: + names: + - rectangle-portrait changes: - 5.0.0 - 5.10.2 - label: Portrait Rectangle + - unreleased + label: Rectangle vertical search: terms: - geometry @@ -28396,12 +37229,14 @@ rectangle-portrait: - regular - light - duotone + - thin unicode: f2fb voted: false rectangle-wide: changes: - 5.0.0 - 5.10.2 + - unreleased label: Wide Rectangle search: terms: @@ -28413,12 +37248,39 @@ rectangle-wide: - regular - light - duotone + - thin unicode: f2fc voted: false +rectangle-xmark: + aliases: + names: + - times-rectangle + - rectangle-times + - window-close + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Rectangle xmark + search: + terms: + - browser + - cancel + - computer + - development + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f410 + voted: false recycle: changes: - '4.1' - 5.0.0 + - unreleased label: Recycle search: terms: @@ -28432,6 +37294,7 @@ recycle: - regular - light - duotone + - thin unicode: f1b8 voted: false red-river: @@ -28491,45 +37354,11 @@ redhat: - brands unicode: f7bc voted: true -redo: - changes: - - '1' - - 5.0.0 - - 5.8.0 - label: Redo - search: - terms: - - forward - - refresh - - reload - - repeat - styles: - - solid - - regular - - light - - duotone - unicode: f01e - voted: false -redo-alt: - changes: - - 5.0.0 - label: Alternate Redo - search: - terms: - - forward - - refresh - - reload - - repeat - styles: - - solid - - regular - - light - - duotone - unicode: f2f9 - voted: false refrigerator: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Refrigerator search: terms: @@ -28544,13 +37373,15 @@ refrigerator: - regular - light - duotone - unicode: f926 + - thin + unicode: e026 voted: false registered: changes: - '4.4' - 5.0.0 - 5.10.1 + - unreleased label: Registered Trademark search: terms: @@ -28562,27 +37393,9 @@ registered: - regular - light - duotone + - thin unicode: f25d voted: false -remove-format: - changes: - - 5.9.0 - label: Remove Format - search: - terms: - - cancel - - font - - format - - remove - - style - - text - styles: - - solid - - regular - - light - - duotone - unicode: f87d - voted: false renren: changes: - '3.2' @@ -28597,6 +37410,7 @@ renren: repeat: changes: - 5.0.0 + - unreleased label: Repeat search: terms: @@ -28609,11 +37423,13 @@ repeat: - regular - light - duotone + - thin unicode: f363 voted: false repeat-1: changes: - 5.0.0 + - unreleased label: Repeat 1 search: terms: @@ -28626,46 +37442,17 @@ repeat-1: - regular - light - duotone + - thin unicode: f365 voted: false -repeat-1-alt: - changes: - - 5.0.0 - label: Alternate Repeat 1 - search: - terms: - - flip - - reload - - rewind - - switch - styles: - - solid - - regular - - light - - duotone - unicode: f366 - voted: false -repeat-alt: - changes: - - 5.0.0 - label: Alternate Repeat - search: - terms: - - flip - - reload - - rewind - - switch - styles: - - solid - - regular - - light - - duotone - unicode: f364 - voted: false reply: + aliases: + names: + - mail-reply changes: - '3' - 5.0.0 + - unreleased label: Reply search: terms: @@ -28677,12 +37464,17 @@ reply: - regular - light - duotone + - thin unicode: f3e5 voted: false reply-all: + aliases: + names: + - mail-reply-all changes: - '3.1' - 5.0.0 + - unreleased label: reply-all search: terms: @@ -28694,8 +37486,26 @@ reply-all: - regular - light - duotone + - thin unicode: f122 voted: false +reply-clock: + aliases: + names: + - reply-time + changes: + - unreleased + label: Reply clock + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false replyd: changes: - 5.0.0 @@ -28709,6 +37519,7 @@ replyd: republican: changes: - 5.5.0 + - unreleased label: Republican search: terms: @@ -28726,6 +37537,7 @@ republican: - regular - light - duotone + - thin unicode: f75e voted: false researchgate: @@ -28751,6 +37563,7 @@ resolving: restroom: changes: - 5.6.0 + - unreleased label: Restroom search: terms: @@ -28766,12 +37579,14 @@ restroom: - regular - light - duotone + - thin unicode: f7bd voted: true retweet: changes: - '1' - 5.0.0 + - unreleased label: Retweet search: terms: @@ -28784,25 +37599,9 @@ retweet: - regular - light - duotone + - thin unicode: f079 voted: false -retweet-alt: - changes: - - 5.0.0 - label: Alternate Retweet - search: - terms: - - refresh - - reload - - share - - swap - styles: - - solid - - regular - - light - - duotone - unicode: f361 - voted: false rev: changes: - 5.1.0 @@ -28815,9 +37614,24 @@ rev: - brands unicode: f5b2 voted: false +rhombus: + changes: + - unreleased + label: Rhombus + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false ribbon: changes: - 5.0.9 + - unreleased label: Ribbon search: terms: @@ -28830,11 +37644,172 @@ ribbon: - regular - light - duotone + - thin unicode: f4d6 voted: false +right: + aliases: + names: + - arrow-alt-right + changes: + - 5.0.0 + - 5.8.0 + - unreleased + label: Right + search: + terms: + - forward + - next + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f356 + voted: false +right-from-bracket: + aliases: + names: + - sign-out-alt + changes: + - 5.0.0 + - unreleased + label: Right from bracket + search: + terms: + - arrow + - exit + - leave + - log out + - logout + - sign-out + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2f5 + voted: false +right-from-line: + aliases: + names: + - arrow-alt-from-left + changes: + - 5.0.0 + - unreleased + label: Right from line + search: + terms: + - back + - previous + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f347 + voted: false +right-left: + aliases: + names: + - exchange-alt + changes: + - 5.0.0 + - unreleased + label: Right left + search: + terms: + - arrow + - arrows + - exchange + - reciprocate + - return + - swap + - transfer + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f362 + voted: false +right-long: + aliases: + names: + - long-arrow-alt-right + changes: + - 5.0.0 + - unreleased + label: Right long + search: + terms: + - forward + - long-arrow-right + - next + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f30b + voted: false +right-to-bracket: + aliases: + names: + - sign-in-alt + changes: + - 5.0.0 + - unreleased + label: Right to bracket + search: + terms: + - arrow + - enter + - join + - log in + - login + - sign in + - sign up + - sign-in + - signin + - signup + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2f6 + voted: false +right-to-line: + aliases: + names: + - arrow-alt-to-right + changes: + - 5.0.0 + - unreleased + label: Right to line + search: + terms: + - forward + - next + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f34c + voted: false ring: changes: - 5.4.0 + - unreleased label: Ring search: terms: @@ -28855,11 +37830,13 @@ ring: - regular - light - duotone + - thin unicode: f70b voted: false rings-wedding: changes: - 5.7.0 + - unreleased label: Rings Wedding search: terms: @@ -28875,6 +37852,7 @@ rings-wedding: - regular - light - duotone + - thin unicode: f81b voted: true road: @@ -28882,6 +37860,7 @@ road: - '1' - 5.0.0 - 5.2.0 + - unreleased label: road search: terms: @@ -28896,12 +37875,14 @@ road: - regular - light - duotone + - thin unicode: f018 voted: false robot: changes: - 5.0.13 - 5.12.0 + - unreleased label: Robot search: terms: @@ -28914,6 +37895,7 @@ robot: - regular - light - duotone + - thin unicode: f544 voted: true rocket: @@ -28922,6 +37904,7 @@ rocket: - 5.0.0 - 5.7.0 - 5.12.0 + - unreleased label: rocket search: terms: @@ -28936,11 +37919,14 @@ rocket: - regular - light - duotone + - thin unicode: f135 voted: false rocket-launch: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Rocket Launch search: terms: @@ -28957,13 +37943,15 @@ rocket-launch: - regular - light - duotone - unicode: f927 + - thin + unicode: e027 voted: false rocketchat: changes: - 5.0.0 - 5.4.2 - 5.8.0 + - 5.15.0 label: Rocket.Chat search: terms: [] @@ -28981,10 +37969,81 @@ rockrms: - brands unicode: f3e9 voted: false +rotate: + aliases: + names: + - sync-alt + changes: + - 5.0.0 + - unreleased + label: Rotate + search: + terms: + - exchange + - refresh + - reload + - rotate + - swap + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2f1 + voted: false +rotate-forward: + aliases: + names: + - redo-alt + changes: + - 5.0.0 + - unreleased + label: Rotate forward + search: + terms: + - forward + - refresh + - reload + - repeat + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2f9 + voted: false +rotate-left: + aliases: + names: + - undo-alt + - rotate-left + changes: + - 5.0.0 + - unreleased + label: Rotate left + search: + terms: + - back + - control z + - exchange + - oops + - return + - swap + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2ea + voted: false route: changes: - 5.0.9 - 5.2.0 + - unreleased label: Route search: terms: @@ -28996,12 +38055,14 @@ route: - regular - light - duotone + - thin unicode: f4d7 voted: false route-highway: changes: - 5.2.0 - 5.3.0 + - unreleased label: Route Highway search: terms: @@ -29016,6 +38077,7 @@ route-highway: - regular - light - duotone + - thin unicode: f61a voted: false route-interstate: @@ -29023,6 +38085,7 @@ route-interstate: - 5.2.0 - 5.3.0 - 5.11.0 + - unreleased label: Route Interstate search: terms: @@ -29037,11 +38100,13 @@ route-interstate: - regular - light - duotone + - thin unicode: f61b voted: false router: changes: - 5.11.0 + - unreleased label: Router search: terms: @@ -29059,12 +38124,17 @@ router: - regular - light - duotone + - thin unicode: f8da voted: false rss: + aliases: + names: + - feed changes: - '2' - 5.0.0 + - unreleased label: rss search: terms: @@ -29078,31 +38148,19 @@ rss: - regular - light - duotone + - thin unicode: f09e voted: false -rss-square: - changes: - - '3.1' - - 5.0.0 - label: RSS Square - search: - terms: - - blog - - feed - - journal - - news - - writing - styles: - - solid - - regular - - light - - duotone - unicode: f143 - voted: false ruble-sign: + aliases: + names: + - rouble + - rub + - ruble changes: - '4' - 5.0.0 + - unreleased label: Ruble Sign search: terms: @@ -29114,11 +38172,13 @@ ruble-sign: - regular - light - duotone + - thin unicode: f158 voted: false ruler: changes: - 5.0.13 + - unreleased label: Ruler search: terms: @@ -29132,11 +38192,13 @@ ruler: - regular - light - duotone + - thin unicode: f545 voted: true ruler-combined: changes: - 5.0.13 + - unreleased label: Ruler Combined search: terms: @@ -29150,11 +38212,13 @@ ruler-combined: - regular - light - duotone + - thin unicode: f546 voted: true ruler-horizontal: changes: - 5.0.13 + - unreleased label: Ruler Horizontal search: terms: @@ -29168,11 +38232,13 @@ ruler-horizontal: - regular - light - duotone + - thin unicode: f547 voted: true ruler-triangle: changes: - 5.2.0 + - unreleased label: Ruler Triangle search: terms: @@ -29186,11 +38252,13 @@ ruler-triangle: - regular - light - duotone + - thin unicode: f61c voted: false ruler-vertical: changes: - 5.0.13 + - unreleased label: Ruler Vertical search: terms: @@ -29204,33 +38272,17 @@ ruler-vertical: - regular - light - duotone + - thin unicode: f548 voted: true -running: - changes: - - 5.4.0 - - 5.11.0 - label: Running - search: - terms: - - exercise - - health - - jog - - person - - run - - sport - - sprint - styles: - - solid - - regular - - light - - duotone - unicode: f70c - voted: true rupee-sign: + aliases: + names: + - rupee changes: - '3.2' - 5.0.0 + - unreleased label: Indian Rupee Sign search: terms: @@ -29243,21 +38295,38 @@ rupee-sign: - regular - light - duotone + - thin unicode: f156 voted: false +rupiah-sign: + changes: + - unreleased + label: Rupiah Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false rust: changes: - 5.13.1 + - 5.14.0 label: Rust search: terms: [] styles: - brands - unicode: f97a + unicode: e07a voted: true rv: changes: - 5.6.0 + - unreleased label: R.V. search: terms: @@ -29271,11 +38340,27 @@ rv: - regular - light - duotone + - thin unicode: f7be +s: + changes: + - unreleased + label: S + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false sack: changes: - 5.7.0 - 5.10.2 + - unreleased label: Sack search: terms: @@ -29288,12 +38373,14 @@ sack: - regular - light - duotone + - thin unicode: f81c voted: false sack-dollar: changes: - 5.7.0 - 5.10.2 + - unreleased label: Sack of Money search: terms: @@ -29310,46 +38397,9 @@ sack-dollar: - regular - light - duotone + - thin unicode: f81d voted: true -sad-cry: - changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Crying Face - search: - terms: - - emoticon - - face - - tear - - tears - styles: - - solid - - regular - - light - - duotone - unicode: f5b3 - voted: false -sad-tear: - changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Loudly Crying Face - search: - terms: - - emoticon - - face - - tear - - tears - styles: - - solid - - regular - - light - - duotone - unicode: f5b4 - voted: false safari: changes: - '4.4' @@ -29364,8 +38414,12 @@ safari: unicode: f267 voted: false salad: + aliases: + names: + - bowl-salad changes: - 5.7.0 + - unreleased label: Salad search: terms: @@ -29381,6 +38435,7 @@ salad: - regular - light - duotone + - thin unicode: f81e voted: false salesforce: @@ -29395,6 +38450,7 @@ salesforce: sandwich: changes: - 5.7.0 + - unreleased label: Sandwich search: terms: @@ -29407,6 +38463,7 @@ sandwich: - regular - light - duotone + - thin unicode: f81f voted: false sass: @@ -29425,6 +38482,7 @@ satellite: - 5.6.0 - 5.10.1 - 5.12.0 + - unreleased label: Satellite search: terms: @@ -29437,12 +38495,14 @@ satellite: - regular - light - duotone + - thin unicode: f7bf voted: true satellite-dish: changes: - 5.6.0 - 5.12.0 + - unreleased label: Satellite Dish search: terms: @@ -29458,11 +38518,13 @@ satellite-dish: - regular - light - duotone + - thin unicode: f7c0 voted: true sausage: changes: - 5.7.0 + - unreleased label: Sausage search: terms: @@ -29484,13 +38546,18 @@ sausage: - regular - light - duotone + - thin unicode: f820 voted: false save: + aliases: + names: + - disk-floppy changes: - '2' - 5.0.0 - 5.10.2 + - unreleased label: Save search: terms: @@ -29503,50 +38570,134 @@ save: - regular - light - duotone + - thin unicode: f0c7 voted: false -sax-hot: +saxophone: changes: - 5.11.0 - label: Hot Saxophone + - unreleased + label: Saxophone search: terms: - brass - - fire - - flame - instrument - jazz - music - - saxophone - woodwind styles: - solid - regular - light - duotone - unicode: f8db + - thin + unicode: f8dc voted: false -saxophone: +saxophone-fire: + aliases: + names: + - sax-hot changes: - 5.11.0 - label: Saxophone + - unreleased + label: Saxophone fire search: terms: - brass + - fire + - flame - instrument - jazz - music + - saxophone - woodwind styles: - solid - regular - light - duotone - unicode: f8dc + - thin + unicode: f8db + voted: false +scale-balanced: + aliases: + names: + - balance-scale + changes: + - '4.4' + - 5.0.0 + - 5.0.13 + - unreleased + label: Scale balanced + search: + terms: + - balanced + - justice + - legal + - measure + - weight + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f24e voted: false +scale-unbalanced: + aliases: + names: + - balance-scale-left + changes: + - 5.0.13 + - 5.9.0 + - 5.12.0 + - unreleased + label: Scale unbalanced + search: + terms: + - justice + - legal + - measure + - unbalanced + - weight + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f515 + voted: true +scale-unbalanced-flip: + aliases: + names: + - balance-scale-right + changes: + - 5.0.13 + - 5.9.0 + - 5.12.0 + - unreleased + label: Scale unbalanced flip + search: + terms: + - justice + - legal + - measure + - unbalanced + - weight + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f516 + voted: true scalpel: changes: - 5.2.0 + - unreleased label: Scalpel search: terms: @@ -29561,12 +38712,17 @@ scalpel: - regular - light - duotone + - thin unicode: f61d voted: false -scalpel-path: +scalpel-line-dashed: + aliases: + names: + - scalpel-path changes: - 5.2.0 - label: Scalpel Path + - unreleased + label: Scalpel line dashed search: terms: - blade @@ -29580,52 +38736,61 @@ scalpel-path: - regular - light - duotone + - thin unicode: f61e voted: false scanner: + aliases: + names: + - scanner-image changes: - - 5.0.7 - - 5.10.2 + - 5.11.0 - 5.11.2 + - unreleased label: Scanner search: terms: - - barcode - - checkout - - gun - - inventory - - price - - upc - - warehouse + - copy + - device + - digitize + - image + - import styles: - solid - regular - light - duotone - unicode: f488 + - thin + unicode: f8f3 voted: false -scanner-image: +scanner-gun: changes: - - 5.11.0 + - 5.0.7 + - 5.10.2 - 5.11.2 - label: Image Scanner + - unreleased + label: Scanner gun search: terms: - - copy - - device - - digitize - - image - - import + - barcode + - checkout + - gun + - inventory + - price + - upc + - warehouse styles: - solid - regular - light - duotone - unicode: f8f3 + - thin + unicode: f488 voted: false scanner-keyboard: changes: - 5.0.7 + - unreleased label: Scanner Keyboard search: terms: @@ -29641,6 +38806,7 @@ scanner-keyboard: - regular - light - duotone + - thin unicode: f489 voted: false scanner-touchscreen: @@ -29648,6 +38814,7 @@ scanner-touchscreen: - 5.0.7 - 5.10.2 - 5.11.0 + - unreleased label: Scanner Touchscreen search: terms: @@ -29663,12 +38830,14 @@ scanner-touchscreen: - regular - light - duotone + - thin unicode: f48a voted: false scarecrow: changes: - 5.4.0 - 5.10.2 + - unreleased label: Scarecrow search: terms: @@ -29683,11 +38852,13 @@ scarecrow: - regular - light - duotone + - thin unicode: f70d voted: false scarf: changes: - 5.6.0 + - unreleased label: Scarf search: terms: @@ -29701,6 +38872,7 @@ scarf: - regular - light - duotone + - thin unicode: f7c1 schlix: changes: @@ -29715,6 +38887,7 @@ schlix: school: changes: - 5.0.13 + - unreleased label: School search: terms: @@ -29728,11 +38901,60 @@ school: - regular - light - duotone + - thin unicode: f549 voted: true +scissors: + aliases: + names: + - cut + changes: + - '2' + - 5.0.0 + - 5.1.0 + - unreleased + label: Scissors + search: + terms: + - clip + - scissors + - snip + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0c4 + voted: false +screen-users: + aliases: + names: + - users-class + changes: + - 5.2.0 + - unreleased + label: Screen users + search: + terms: + - chalkboard + - group + - presentation + - students + - teachers + - team + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f63d + voted: false screwdriver: changes: - 5.0.13 + - unreleased label: Screwdriver search: terms: @@ -29747,8 +38969,49 @@ screwdriver: - regular - light - duotone + - thin unicode: f54a voted: true +screwdriver-wrench: + aliases: + names: + - tools + changes: + - 5.6.0 + - 5.10.2 + - unreleased + label: Screwdriver wrench + search: + terms: + - admin + - fix + - repair + - screwdriver + - settings + - tools + - wrench + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7d9 + voted: true +scribble: + changes: + - unreleased + label: Scribble + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false scribd: changes: - '4.5' @@ -29764,6 +39027,7 @@ scroll: changes: - 5.4.0 - 5.10.2 + - unreleased label: Scroll search: terms: @@ -29779,12 +39043,14 @@ scroll: - regular - light - duotone + - thin unicode: f70e voted: false scroll-old: changes: - 5.4.0 - 5.10.2 + - unreleased label: Scroll Old search: terms: @@ -29803,13 +39069,41 @@ scroll-old: - regular - light - duotone + - thin unicode: f70f voted: false +scroll-torah: + aliases: + names: + - torah + changes: + - 5.3.0 + - 5.7.0 + - 5.9.0 + - 5.10.2 + - unreleased + label: Scroll torah + search: + terms: + - book + - jewish + - judaism + - religion + - scroll + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6a0 + voted: false scrubber: changes: - 5.0.0 - 5.11.0 - 5.11.1 + - unreleased label: Scrubber search: terms: @@ -29821,6 +39115,7 @@ scrubber: - regular - light - duotone + - thin unicode: f2f8 voted: false scythe: @@ -29828,6 +39123,7 @@ scythe: - 5.4.0 - 5.7.0 - 5.10.2 + - unreleased label: Scythe search: terms: @@ -29844,11 +39140,13 @@ scythe: - regular - light - duotone + - thin unicode: f710 voted: false sd-card: changes: - 5.6.0 + - unreleased label: Sd Card search: terms: @@ -29861,120 +39159,68 @@ sd-card: - regular - light - duotone + - thin unicode: f7c2 voted: true -search: +sd-cards: changes: - - '1' - - 5.0.0 - label: Search + - unreleased + label: Sd Cards search: - terms: - - bigger - - enlarge - - find - - magnify - - preview - - zoom + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f002 - voted: false -search-dollar: - changes: - - 5.3.0 - label: Search Dollar - search: - terms: - - bigger - - enlarge - - find - - magnify - - money - - preview - - zoom - styles: - solid - regular - light - - duotone - unicode: f688 + - thin + unicode: auto voted: false -search-location: +seal: changes: - - 5.3.0 - label: Search Location + - unreleased + label: Seal search: - terms: - - bigger - - enlarge - - find - - magnify - - preview - - zoom + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f689 + - thin + unicode: auto voted: false -search-minus: +searchengin: changes: - - '1' - 5.0.0 - - 5.0.13 - label: Search Minus + label: Searchengin search: - terms: - - minify - - negative - - smaller - - zoom - - zoom out + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f010 + - brands + unicode: f3eb voted: false -search-plus: +seat-airline: changes: - - '1' - - 5.0.0 - label: Search Plus + - unreleased + label: Seat Airline search: - terms: - - bigger - - enlarge - - magnify - - positive - - zoom - - zoom in + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f00e - voted: false -searchengin: - changes: - - 5.0.0 - label: Searchengin - search: - terms: [] - styles: - - brands - unicode: f3eb + - thin + unicode: auto voted: false seedling: + aliases: + names: + - sprout changes: - 5.0.9 + - unreleased label: Seedling search: terms: @@ -29987,6 +39233,7 @@ seedling: - regular - light - duotone + - thin unicode: f4d8 voted: false sellcast: @@ -30015,6 +39262,7 @@ send-back: changes: - 5.9.0 - 5.10.2 + - unreleased label: Send Back search: terms: @@ -30028,6 +39276,7 @@ send-back: - regular - light - duotone + - thin unicode: f87e voted: true send-backward: @@ -30036,6 +39285,7 @@ send-backward: - 5.10.2 - 5.11.0 - 5.11.1 + - unreleased label: Send Backward search: terms: @@ -30049,11 +39299,14 @@ send-backward: - regular - light - duotone + - thin unicode: f87f voted: true sensor: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Sensor search: terms: @@ -30068,12 +39321,18 @@ sensor: - regular - light - duotone - unicode: f928 + - thin + unicode: e028 voted: false -sensor-alert: +sensor-cloud: + aliases: + names: + - sensor-smoke changes: - 5.12.0 - label: Sensor Alert + - 5.14.0 + - unreleased + label: Sensor cloud search: terms: - alarm @@ -30087,11 +39346,14 @@ sensor-alert: - regular - light - duotone - unicode: f929 + - thin + unicode: e02c voted: false sensor-fire: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Sensor Fire search: terms: @@ -30106,11 +39368,14 @@ sensor-fire: - regular - light - duotone - unicode: f92a + - thin + unicode: e02a voted: false sensor-on: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Sensor On search: terms: @@ -30125,12 +39390,18 @@ sensor-on: - regular - light - duotone - unicode: f92b + - thin + unicode: e02b voted: false -sensor-smoke: +sensor-triangle-exclamation: + aliases: + names: + - sensor-alert changes: - 5.12.0 - label: Sensor Smoke + - 5.14.0 + - unreleased + label: Sensor triangle exclamation search: terms: - alarm @@ -30144,12 +39415,14 @@ sensor-smoke: - regular - light - duotone - unicode: f92c + - thin + unicode: e029 voted: false server: changes: - '4.3' - 5.0.0 + - unreleased label: Server search: terms: @@ -30163,6 +39436,7 @@ server: - regular - light - duotone + - thin unicode: f233 voted: false servicestack: @@ -30176,9 +39450,13 @@ servicestack: unicode: f3ec voted: false shapes: + aliases: + names: + - triangle-circle-square changes: - 5.2.0 - 5.12.0 + - unreleased label: Shapes search: terms: @@ -30192,12 +39470,18 @@ shapes: - regular - light - duotone + - thin unicode: f61f voted: false share: + aliases: + names: + - arrow-turn-right + - mail-forward changes: - '1' - 5.0.0 + - unreleased label: Share search: terms: @@ -30210,11 +39494,16 @@ share: - regular - light - duotone + - thin unicode: f064 voted: false share-all: + aliases: + names: + - arrows-turn-right changes: - 5.0.0 + - unreleased label: Share All search: terms: @@ -30227,13 +39516,18 @@ share-all: - regular - light - duotone + - thin unicode: f367 voted: false -share-alt: +share-from-square: + aliases: + names: + - share-square changes: - - '4.1' + - '3.1' - 5.0.0 - label: Alternate Share + - unreleased + label: Share from square search: terms: - forward @@ -30245,31 +39539,18 @@ share-alt: - regular - light - duotone - unicode: f1e0 + - thin + unicode: f14d voted: false -share-alt-square: +share-nodes: + aliases: + names: + - share-alt changes: - '4.1' - 5.0.0 - label: Alternate Share Square - search: - terms: - - forward - - save - - send - - social - styles: - - solid - - regular - - light - - duotone - unicode: f1e1 - voted: false -share-square: - changes: - - '3.1' - - 5.0.0 - label: Share Square + - unreleased + label: Share nodes search: terms: - forward @@ -30281,11 +39562,13 @@ share-square: - regular - light - duotone - unicode: f14d + - thin + unicode: f1e0 voted: false sheep: changes: - 5.4.0 + - unreleased label: Sheep search: terms: @@ -30301,12 +39584,20 @@ sheep: - regular - light - duotone + - thin unicode: f711 voted: false shekel-sign: + aliases: + names: + - sheqel-sign + - shekel + - sheqel + - ils changes: - '4.2' - 5.0.0 + - unreleased label: Shekel Sign search: terms: @@ -30318,13 +39609,52 @@ shekel-sign: - regular - light - duotone + - thin unicode: f20b voted: true +shelves: + aliases: + names: + - inventory + changes: + - 5.0.7 + - 5.10.1 + - unreleased + label: Shelves + search: + terms: + - archive + - box + - shipping + - warehouse + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f480 + voted: false +shelves-empty: + changes: + - unreleased + label: Shelves Empty + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false shield: changes: - '3.1' - 5.0.0 - 5.10.2 + - unreleased label: shield search: terms: @@ -30344,12 +39674,17 @@ shield: - regular - light - duotone + - thin unicode: f132 voted: false -shield-alt: +shield-blank: + aliases: + names: + - shield-alt changes: - 5.0.0 - label: Alternate Shield + - unreleased + label: Shield blank search: terms: - achievement @@ -30363,11 +39698,13 @@ shield-alt: - regular - light - duotone + - thin unicode: f3ed voted: false shield-check: changes: - 5.0.0 + - unreleased label: shield search: terms: @@ -30386,11 +39723,13 @@ shield-check: - regular - light - duotone + - thin unicode: f2f7 voted: false shield-cross: changes: - 5.4.0 + - unreleased label: Shield Cross search: terms: @@ -30410,11 +39749,56 @@ shield-cross: - regular - light - duotone + - thin unicode: f712 voted: false +shield-exclamation: + changes: + - unreleased + label: Shield Exclamation + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +shield-minus: + changes: + - unreleased + label: Shield Minus + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +shield-plus: + changes: + - unreleased + label: Shield Plus + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false shield-virus: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Shield Virus search: terms: @@ -30428,7 +39812,25 @@ shield-virus: - regular - solid - duotone - unicode: f96c + - thin + unicode: e06c + voted: false +shield-xmark: + aliases: + names: + - shield-times + changes: + - unreleased + label: Shield xmark + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false ship: changes: @@ -30437,6 +39839,7 @@ ship: - 5.10.2 - 5.11.0 - 5.11.1 + - unreleased label: Ship search: terms: @@ -30448,46 +39851,9 @@ ship: - regular - light - duotone + - thin unicode: f21a voted: false -shipping-fast: - changes: - - 5.0.7 - label: Shipping Fast - search: - terms: - - express - - fedex - - mail - - overnight - - package - - ups - styles: - - solid - - regular - - light - - duotone - unicode: f48b - voted: false -shipping-timed: - changes: - - 5.0.7 - label: Shipping Timed - search: - terms: - - express - - fedex - - mail - - overnight - - package - - ups - styles: - - solid - - regular - - light - - duotone - unicode: f48c - voted: false shirtsinbulk: changes: - '4.3' @@ -30503,6 +39869,7 @@ shirtsinbulk: shish-kebab: changes: - 5.7.0 + - unreleased label: Shish Kebab search: terms: @@ -30518,11 +39885,13 @@ shish-kebab: - regular - light - duotone + - thin unicode: f821 voted: false shoe-prints: changes: - 5.0.13 + - unreleased label: Shoe Prints search: terms: @@ -30535,74 +39904,66 @@ shoe-prints: - regular - light - duotone + - thin unicode: f54b voted: true -shopify: +shop: + aliases: + names: + - store-alt changes: - - 5.12.1 - label: Shopify - search: - terms: [] - styles: - - brands - unicode: f957 - voted: false -shopping-bag: - changes: - - '4.5' - - 5.0.0 - label: Shopping Bag + - 5.0.13 + - unreleased + label: Shop search: terms: + - building - buy - - checkout - - grocery - - payment - purchase + - shopping styles: - solid - regular - light - duotone - unicode: f290 - voted: false -shopping-basket: + - thin + unicode: f54f + voted: true +shop-slash: + aliases: + names: + - store-alt-slash changes: - - '4.5' - - 5.0.0 - label: Shopping Basket + - 5.13.0 + - 5.14.0 + - unreleased + label: Shop slash search: terms: + - building - buy - - checkout - - grocery - - payment + - closed + - covid-19 - purchase + - shopping styles: - - solid - - regular - light + - regular + - solid - duotone - unicode: f291 + - thin + unicode: e070 voted: false -shopping-cart: +shopify: changes: - - '1' - - 5.0.0 - label: shopping-cart + - 5.12.1 + - 5.14.0 + label: Shopify search: - terms: - - buy - - checkout - - grocery - - payment - - purchase + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f07a + - brands + unicode: e057 voted: false shopware: changes: @@ -30618,6 +39979,7 @@ shopware: shovel: changes: - 5.4.0 + - unreleased label: Shovel search: terms: @@ -30631,11 +39993,13 @@ shovel: - regular - light - duotone + - thin unicode: f713 voted: false shovel-snow: changes: - 5.6.0 + - unreleased label: Shovel Snow search: terms: @@ -30650,12 +40014,14 @@ shovel-snow: - regular - light - duotone + - thin unicode: f7c3 shower: changes: - '4.7' - 5.0.0 - 5.12.0 + - unreleased label: Shower search: terms: @@ -30668,12 +40034,31 @@ shower: - regular - light - duotone + - thin unicode: f2cc voted: false +shower-down: + aliases: + names: + - shower-alt + changes: + - unreleased + label: Shower down + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false shredder: changes: - 5.3.0 - 5.11.0 + - unreleased label: Shredder search: terms: @@ -30687,30 +40072,64 @@ shredder: - regular - light - duotone + - thin unicode: f68a voted: false -shuttle-van: +shuffle: + aliases: + names: + - random changes: - - 5.1.0 - label: Shuttle Van + - '1' + - 5.0.0 + - unreleased + label: Shuffle search: terms: - - airport + - arrows + - shuffle + - sort + - swap + - switch + - transfer + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f074 + voted: false +shuttle-space: + aliases: + names: + - space-shuttle + changes: + - '4.1' + - 5.0.0 + - 5.10.2 + - unreleased + label: Shuttle space + search: + terms: + - astronaut - machine - - public-transportation + - nasa + - rocket + - space - transportation - - travel - - vehicle styles: - solid - regular - light - duotone - unicode: f5b6 + - thin + unicode: f197 voted: false shuttlecock: changes: - 5.0.5 + - unreleased label: Shuttlecock search: terms: @@ -30723,11 +40142,13 @@ shuttlecock: - regular - light - duotone + - thin unicode: f45b voted: false sickle: changes: - 5.7.0 + - unreleased label: Sickle search: terms: @@ -30742,152 +40163,61 @@ sickle: - regular - light - duotone + - thin unicode: f822 voted: false sigma: changes: - 5.3.0 + - unreleased label: Sigma (Summation) search: terms: - alphabet - - greek - - math - - summation - styles: - - solid - - regular - - light - - duotone - unicode: f68b - voted: false -sign: - changes: - - 5.0.9 - label: Sign - search: - terms: - - directions - - real estate - - signage - - wayfinding - styles: - - solid - - regular - - light - - duotone - unicode: f4d9 - voted: false -sign-in: - changes: - - '1' - - 5.0.0 - label: Sign In - search: - terms: - - arrow - - enter - - join - - log in - - login - - sign in - - sign up - - sign-in - - signin - - signup - styles: - - solid - - regular - - light - - duotone - unicode: f090 - voted: false -sign-in-alt: - changes: - - 5.0.0 - label: Alternate Sign In - search: - terms: - - arrow - - enter - - join - - log in - - login - - sign in - - sign up - - sign-in - - signin - - signup - styles: - - solid - - regular - - light - - duotone - unicode: f2f6 - voted: false -sign-language: - changes: - - '4.6' - - 5.0.0 - - 5.10.2 - label: Sign Language - search: - terms: - - Translate - - asl - - deaf - - hands - styles: - - solid - - regular - - light - - duotone - unicode: f2a7 - voted: false -sign-out: - changes: - - '1' - - 5.0.0 - label: Sign Out - search: - terms: - - arrow - - exit - - leave - - log out - - logout + - greek + - math + - summation styles: - solid - regular - light - duotone - unicode: f08b + - thin + unicode: f68b voted: false -sign-out-alt: +sign-hanging: + aliases: + names: + - sign changes: - - 5.0.0 - label: Alternate Sign Out + - 5.0.9 + - unreleased + label: Sign hanging search: terms: - - arrow - - exit - - leave - - log out - - logout - - sign-out + - directions + - real estate + - signage + - wayfinding styles: - solid - regular - light - duotone - unicode: f2f5 + - thin + unicode: f4d9 voted: false signal: + aliases: + names: + - signal-perfect + - signal-5 changes: - '1' - 5.0.0 - 5.3.0 - 5.10.1 + - unreleased label: signal search: terms: @@ -30901,13 +40231,20 @@ signal: - regular - light - duotone + - thin unicode: f012 voted: false -signal-1: +signal-bars: + aliases: + names: + - signal-bars-strong + - signal-alt + - signal-alt-4 changes: - 5.3.0 - 5.10.1 - label: Signal 1 + - unreleased + label: Signal bars search: terms: - bars @@ -30920,13 +40257,18 @@ signal-1: - regular - light - duotone - unicode: f68c + - thin + unicode: f690 voted: true -signal-2: +signal-bars-fair: + aliases: + names: + - signal-alt-2 changes: - 5.3.0 - 5.10.1 - label: Signal 2 + - unreleased + label: Signal bars fair search: terms: - bars @@ -30939,13 +40281,18 @@ signal-2: - regular - light - duotone - unicode: f68d + - thin + unicode: f692 voted: true -signal-3: +signal-bars-good: + aliases: + names: + - signal-alt-3 changes: - 5.3.0 - 5.10.1 - label: Signal 3 + - unreleased + label: Signal bars good search: terms: - bars @@ -30958,13 +40305,17 @@ signal-3: - regular - light - duotone - unicode: f68e + - thin + unicode: f693 voted: true -signal-4: +signal-bars-slash: + aliases: + names: + - signal-alt-slash changes: - 5.3.0 - - 5.10.1 - label: Signal 4 + - unreleased + label: Signal bars slash search: terms: - bars @@ -30977,13 +40328,18 @@ signal-4: - regular - light - duotone - unicode: f68f + - thin + unicode: f694 voted: true -signal-alt: +signal-bars-weak: + aliases: + names: + - signal-alt-1 changes: - 5.3.0 - 5.10.1 - label: Alternate Signal + - unreleased + label: Signal bars weak search: terms: - bars @@ -30996,13 +40352,18 @@ signal-alt: - regular - light - duotone - unicode: f690 + - thin + unicode: f691 voted: true -signal-alt-1: +signal-fair: + aliases: + names: + - signal-2 changes: - 5.3.0 - 5.10.1 - label: Alternate Signal 1 + - unreleased + label: Signal fair search: terms: - bars @@ -31015,13 +40376,18 @@ signal-alt-1: - regular - light - duotone - unicode: f691 + - thin + unicode: f68d voted: true -signal-alt-2: +signal-good: + aliases: + names: + - signal-3 changes: - 5.3.0 - 5.10.1 - label: Alternate Signal 2 + - unreleased + label: Signal good search: terms: - bars @@ -31034,13 +40400,14 @@ signal-alt-2: - regular - light - duotone - unicode: f692 + - thin + unicode: f68e voted: true -signal-alt-3: +signal-slash: changes: - 5.3.0 - - 5.10.1 - label: Alternate Signal 3 + - unreleased + label: Signal Slash search: terms: - bars @@ -31053,30 +40420,40 @@ signal-alt-3: - regular - light - duotone - unicode: f693 + - thin + unicode: f695 voted: true -signal-alt-slash: +signal-stream: changes: - - 5.3.0 - label: Alternate Signal Slash + - 5.11.0 + - unreleased + label: Signal Stream search: terms: - - bars - - graph - - online - - reception - - status + - podcast + - radio + - sisngal + - streaming + - wave + - wifi + - wireless styles: - solid - regular - light - duotone - unicode: f694 - voted: true -signal-slash: + - thin + unicode: f8dd + voted: false +signal-strong: + aliases: + names: + - signal-4 changes: - 5.3.0 - label: Signal Slash + - 5.10.1 + - unreleased + label: Signal strong search: terms: - bars @@ -31089,32 +40466,38 @@ signal-slash: - regular - light - duotone - unicode: f695 + - thin + unicode: f68f voted: true -signal-stream: +signal-weak: + aliases: + names: + - signal-1 changes: - - 5.11.0 - label: Signal Stream + - 5.3.0 + - 5.10.1 + - unreleased + label: Signal weak search: terms: - - podcast - - radio - - sisngal - - streaming - - wave - - wifi - - wireless + - bars + - graph + - online + - reception + - status styles: - solid - regular - light - duotone - unicode: f8dd - voted: false + - thin + unicode: f68c + voted: true signature: changes: - 5.1.0 - 5.6.0 + - unreleased label: Signature search: terms: @@ -31127,13 +40510,40 @@ signature: - regular - light - duotone + - thin unicode: f5b7 voted: true +signs-post: + aliases: + names: + - map-signs + changes: + - '4.4' + - 5.0.0 + - 5.2.0 + - unreleased + label: Signs post + search: + terms: + - directions + - directory + - map + - signage + - wayfinding + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f277 + voted: false sim-card: changes: - 5.6.0 - 5.8.2 - 5.10.2 + - unreleased label: SIM Card search: terms: @@ -31148,8 +40558,23 @@ sim-card: - regular - light - duotone + - thin unicode: f7c4 voted: true +sim-cards: + changes: + - unreleased + label: Sim Cards + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false simplybuilt: changes: - '4.3' @@ -31165,6 +40590,8 @@ sink: changes: - 5.13.0 - 5.13.1 + - 5.14.0 + - unreleased label: Sink search: terms: @@ -31178,11 +40605,14 @@ sink: - regular - solid - duotone - unicode: f96d + - thin + unicode: e06d voted: false siren: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Siren search: terms: @@ -31197,11 +40627,14 @@ siren: - regular - light - duotone - unicode: f92d + - thin + unicode: e02d voted: false siren-on: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Siren On search: terms: @@ -31216,7 +40649,8 @@ siren-on: - regular - light - duotone - unicode: f92e + - thin + unicode: e02e voted: false sistrix: changes: @@ -31233,6 +40667,7 @@ sitemap: - '2' - 5.0.0 - 5.0.13 + - unreleased label: Sitemap search: terms: @@ -31246,6 +40681,7 @@ sitemap: - regular - light - duotone + - thin unicode: f0e8 voted: false sith: @@ -31258,1774 +40694,2381 @@ sith: - brands unicode: f512 voted: false -skating: +skeleton: + changes: + - 5.2.0 + - unreleased + label: Skeleton + search: + terms: + - bones + - skeletal + - vertebrate + - x-ray + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f620 + voted: false +sketch: + changes: + - 5.6.0 + - 5.8.0 + label: Sketch + search: + terms: + - app + - design + - interface + styles: + - brands + unicode: f7c6 + voted: false +skull: + changes: + - 5.0.13 + - 5.10.2 + - unreleased + label: Skull + search: + terms: + - bones + - skeleton + - x-ray + - yorick + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f54c + voted: true +skull-cow: + changes: + - 5.11.0 + - 5.11.1 + - unreleased + label: Cow Skull + search: + terms: + - barren + - cowboy + - dead + - desert + - horns + - old west + - skeleton + - western + styles: + - light + - regular + - solid + - duotone + - thin + unicode: f8de + voted: false +skull-crossbones: + changes: + - 5.4.0 + - 5.10.2 + - unreleased + label: Skull & Crossbones + search: + terms: + - Dungeons & Dragons + - alert + - bones + - d&d + - danger + - dead + - deadly + - death + - dnd + - fantasy + - halloween + - holiday + - jolly-roger + - pirate + - poison + - skeleton + - warning + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f714 + voted: false +skyatlas: + changes: + - '4.3' + - 5.0.0 + - 5.0.3 + label: skyatlas + search: + terms: [] + styles: + - brands + unicode: f216 + voted: false +skype: + changes: + - '3.2' + - 5.0.0 + label: Skype + search: + terms: [] + styles: + - brands + unicode: f17e + voted: false +slack: + changes: + - '4.1' + - 5.0.0 + - 5.7.0 + label: Slack Logo + search: + terms: + - anchor + - hash + - hashtag + styles: + - brands + unicode: f198 + voted: false +slack-hash: + changes: + - 5.0.0 + label: Slack Hashtag + search: + terms: + - anchor + - hash + - hashtag + styles: + - brands + unicode: f3ef + voted: false +slash: + changes: + - 5.4.0 + - unreleased + label: Slash + search: + terms: + - cancel + - close + - mute + - 'off' + - stop + - x + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f715 + voted: true +sleigh: + changes: + - 5.6.0 + - unreleased + label: Sleigh + search: + terms: + - christmas + - claus + - fly + - holiday + - santa + - sled + - snow + - xmas + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7cc +slider: + changes: + - unreleased + label: Slider + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +sliders: + aliases: + names: + - sliders-h + changes: + - '4.1' + - 5.0.0 + - 5.0.11 + - unreleased + label: Sliders + search: + terms: + - adjust + - settings + - sliders + - toggle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1de + voted: false +sliders-up: + aliases: + names: + - sliders-v + changes: + - 5.0.0 + - 5.0.11 + - unreleased + label: Sliders up + search: + terms: + - adjust + - settings + - sliders + - toggle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3f1 + voted: false +slideshare: + changes: + - '4.2' + - 5.0.0 + label: Slideshare + search: + terms: [] + styles: + - brands + unicode: f1e7 + voted: false +smog: + changes: + - 5.5.0 + - unreleased + label: Smog + search: + terms: + - dragon + - fog + - haze + - pollution + - smoke + - weather + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f75f + voted: false +smoke: + changes: + - 5.5.0 + - unreleased + label: Smoke + search: + terms: + - cloud + - fire + - fog + - haze + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f760 + voted: false +smoking: + changes: + - 5.0.7 + - unreleased + label: Smoking + search: + terms: + - cancer + - cigarette + - nicotine + - smoking status + - tobacco + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f48d + voted: true +snake: + changes: + - 5.4.0 + - unreleased + label: Snake + search: + terms: + - cobra + - fauna + - reptile + - slither + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f716 + voted: false +snapchat: + changes: + - '4.6' + - 5.0.0 + label: Snapchat + search: + terms: [] + styles: + - brands + unicode: f2ab + voted: false +snapchat-ghost: + changes: + - '4.6' + - 5.0.0 + label: Snapchat Ghost + search: + terms: [] + styles: + - brands + unicode: f2ac + voted: false +snapchat-square: + changes: + - '4.6' + - 5.0.0 + label: Snapchat Square + search: + terms: [] + styles: + - brands + unicode: f2ad + voted: false +snooze: + aliases: + names: + - zzz + changes: + - 5.9.0 + - unreleased + label: Snooze + search: + terms: + - alarm + - nap + - rest + - siesta + - sleep + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f880 + voted: true +snow-blowing: + changes: + - 5.5.0 + - unreleased + label: Snow Blowing + search: + terms: + - blizzard + - precipitation + - storm + - winter + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f761 + voted: false +snowflake: + changes: + - '4.7' + - 5.0.0 + - 5.5.0 + - unreleased + label: Snowflake + search: + terms: + - precipitation + - rain + - winter + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2dc + voted: false +snowflakes: changes: - 5.6.0 - label: Skating + - unreleased + label: Snowflakes search: terms: - - activity - - figure skating - - fitness - - ice - - person + - precipitation + - rain - winter styles: - solid - regular - light - duotone - unicode: f7c5 -skeleton: + - thin + unicode: f7cf +snowman: changes: - - 5.2.0 - label: Skeleton + - 5.6.0 + - unreleased + label: Snowman search: terms: - - bones - - skeletal - - vertebrate - - x-ray + - decoration + - frost + - frosty + - holiday styles: - solid - regular - light - duotone - unicode: f620 - voted: false -sketch: + - thin + unicode: f7d0 +snowman-head: + aliases: + names: + - frosty-head changes: - 5.6.0 - - 5.8.0 - label: Sketch + - unreleased + label: Snowman head search: terms: - - app - - design - - interface + - carrot + - hat + - snowman + - winter styles: - - brands - unicode: f7c6 - voted: false -ski-jump: + - solid + - regular + - light + - duotone + - thin + unicode: f79b +snowplow: changes: - 5.6.0 - label: Ski Jump + - unreleased + label: Snowplow search: terms: - - activity - - fast - - fitness - - olympics - - outdoors - - person - - snowman + - clean up + - cold + - road + - storm + - winter styles: - solid - regular - light - duotone - unicode: f7c7 -ski-lift: + - thin + unicode: f7d2 +soap: changes: - - 5.6.0 - label: Ski Lift + - 5.13.0 + - 5.14.0 + - unreleased + label: Soap search: terms: - - machine - - outdoors - - resort - - seasonal - - seat - - skiing - - tow + - bubbles + - clean + - covid-19 + - hygiene + - wash + styles: + - light + - regular + - solid + - duotone + - thin + unicode: e06e + voted: false +socks: + changes: + - 5.3.0 + - 5.10.2 + - unreleased + label: Socks + search: + terms: + - business socks + - business time + - clothing + - feet + - flight of the conchords + - wednesday styles: - solid - regular - light - duotone - unicode: f7c8 -skiing: + - thin + unicode: f696 + voted: false +solar-panel: changes: - - 5.6.0 - label: Skiing + - 5.1.0 + - unreleased + label: Solar Panel search: terms: - - activity - - downhill - - fast - - fitness - - olympics - - outdoors - - person - - seasonal - - slalom + - clean + - eco-friendly + - energy + - green + - sun styles: - solid - regular - light - duotone - unicode: f7c9 -skiing-nordic: + - thin + unicode: f5ba + voted: false +solar-system: changes: - - 5.6.0 - label: Skiing Nordic + - 5.12.0 + - 5.14.0 + - unreleased + label: Solar System search: terms: - - activity - - cross country - - fitness - - outdoors - - person - - seasonal + - galaxy + - orbit + - planets + - space + - sun + - universe styles: - solid - regular - light - duotone - unicode: f7ca -skull: + - thin + unicode: e02f + voted: false +sort: + aliases: + names: + - unsorted changes: - - 5.0.13 + - '2' + - 5.0.0 - 5.10.2 - label: Skull + - unreleased + label: Sort search: terms: - - bones - - skeleton - - x-ray - - yorick + - filter + - order styles: - solid - regular - light - duotone - unicode: f54c - voted: true -skull-cow: + - thin + unicode: f0dc + voted: false +sort-down: + aliases: + names: + - sort-desc changes: - - 5.11.0 - - 5.11.1 - label: Cow Skull + - '2' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Sort Down (Descending) search: terms: - - barren - - cowboy - - dead - - desert - - horns - - old west - - skeleton - - western + - arrow + - descending + - filter + - order + - sort-desc styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f8de + - thin + unicode: f0dd voted: false -skull-crossbones: +sort-up: + aliases: + names: + - sort-asc changes: - - 5.4.0 + - '2' + - 5.0.0 + - 5.10.1 - 5.10.2 - label: Skull & Crossbones + - unreleased + label: Sort Up (Ascending) search: terms: - - Dungeons & Dragons - - alert - - bones - - d&d - - danger - - dead - - deadly - - death - - dnd - - fantasy - - halloween - - holiday - - jolly-roger - - pirate - - poison - - skeleton - - warning + - arrow + - ascending + - filter + - order + - sort-asc styles: - solid - regular - light - duotone - unicode: f714 + - thin + unicode: f0de voted: false -skyatlas: +soundcloud: changes: - - '4.3' + - '4.1' - 5.0.0 - - 5.0.3 - label: skyatlas + label: SoundCloud search: terms: [] styles: - brands - unicode: f216 + unicode: f1be voted: false -skype: +sourcetree: changes: - - '3.2' - - 5.0.0 - label: Skype + - 5.6.0 + - 5.8.0 + label: Sourcetree search: terms: [] styles: - brands - unicode: f17e - voted: false -slack: + unicode: f7d3 + voted: true +spa: changes: - - '4.1' - - 5.0.0 - - 5.7.0 - label: Slack Logo + - 5.1.0 + - unreleased + label: Spa search: terms: - - anchor - - hash - - hashtag + - flora + - massage + - mindfulness + - plant + - wellness styles: - - brands - unicode: f198 + - solid + - regular + - light + - duotone + - thin + unicode: f5bb voted: false -slack-hash: +space-station-moon: changes: - - 5.0.0 - label: Slack Hashtag + - 5.12.0 + - 5.14.0 + - unreleased + label: Moon Space Station search: terms: - - anchor - - hash - - hashtag + - death star + - empire + - galen erso + - kyber crystal + - laser + - not a moon + - secret weapon + - star wars styles: - - brands - unicode: f3ef + - solid + - regular + - light + - duotone + - thin + unicode: e033 voted: false -slash: +space-station-moon-construction: + aliases: + names: + - space-station-moon-alt changes: - - 5.4.0 - label: Slash + - 5.12.0 + - 5.14.0 + - unreleased + label: Space station moon construction search: terms: - - cancel - - close - - mute - - 'off' - - stop - - x + - death star + - empire + - kyber crystal + - laser + - not a moon + - star wars + - under construction styles: - solid - regular - light - duotone - unicode: f715 - voted: true -sledding: + - thin + unicode: e034 + voted: false +spade: changes: - - 5.6.0 - label: Sledding + - 5.0.0 + - 5.10.2 + - unreleased + label: Spade search: terms: - - activity - - luge - - outdoors - - person - - seasonal - - snow - - toboggan + - card + - game + - poker + - suit styles: - solid - regular - light - duotone - unicode: f7cb -sleigh: + - thin + unicode: f2f4 + voted: false +spaghetti-monster-flying: + aliases: + names: + - pastafarianism changes: - - 5.6.0 - label: Sleigh + - 5.3.0 + - unreleased + label: Spaghetti monster flying search: terms: - - christmas - - claus - - fly - - holiday - - santa - - sled - - snow - - xmas + - agnosticism + - atheism + - flying spaghetti monster + - fsm styles: - solid - regular - light - duotone - unicode: f7cc -sliders-h: + - thin + unicode: f67b + voted: false +sparkles: changes: - - '4.1' - - 5.0.0 - - 5.0.11 - label: Horizontal Sliders + - 5.9.0 + - unreleased + label: Sparkles search: terms: - - adjust - - settings - - sliders - - toggle + - glitter + - magic + - new + - special + - twinkle styles: - solid - regular - light - duotone - unicode: f1de + - thin + unicode: f890 voted: false -sliders-h-square: +speakap: changes: - 5.0.0 - label: Square Horizontal Sliders + - 5.4.0 + - 5.8.0 + label: Speakap + search: + terms: [] + styles: + - brands + unicode: f3f3 + voted: false +speaker: + changes: + - 5.11.0 + - unreleased + label: Speaker search: terms: - - adjust - - settings - - sliders - - toggle + - audio + - device + - music + - sound + - subwoofer + - transducer + - tweeter styles: - solid - regular - light - duotone - unicode: f3f0 + - thin + unicode: f8df voted: false -sliders-v: +speaker-deck: changes: - - 5.0.0 - - 5.0.11 - label: Vertical Sliders + - 5.8.0 + label: Speaker Deck + search: + terms: [] + styles: + - brands + unicode: f83c +speakers: + changes: + - 5.11.0 + - unreleased + label: Speakers search: terms: - - adjust - - settings - - sliders - - toggle + - audio + - device + - group + - music + - sound + - subwoofer + - transducer + - tweeter styles: - solid - regular - light - duotone - unicode: f3f1 + - thin + unicode: f8e0 voted: false -sliders-v-square: +spell-check: changes: - - 5.0.0 - label: Square Vertical Sliders + - 5.9.0 + - unreleased + label: Spell Check search: terms: - - adjust - - settings - - sliders - - toggle + - dictionary + - edit + - editor + - grammar + - text styles: - solid - regular - light - duotone - unicode: f3f2 + - thin + unicode: f891 voted: false -slideshare: +spider: changes: - - '4.2' - - 5.0.0 - label: Slideshare + - 5.4.0 + - unreleased + label: Spider search: - terms: [] + terms: + - arachnid + - bug + - charlotte + - crawl + - eight + - halloween styles: - - brands - unicode: f1e7 + - solid + - regular + - light + - duotone + - thin + unicode: f717 + voted: true +spider-black-widow: + changes: + - 5.4.0 + - unreleased + label: Black Widow Spider + search: + terms: + - alert + - arachnid + - bug + - charlotte + - crawl + - danger + - dangerous + - deadly + - eight + - error + - halloween + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f718 voted: false -smile: +spider-web: changes: - - '3.1' - - 5.0.0 - - 5.0.9 - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Smiling Face + - 5.4.0 + - unreleased + label: Spider Web search: terms: - - approve - - emoticon - - face - - happy - - rating - - satisfied + - cobweb + - gossamer + - halloween styles: - solid - regular - light - duotone - unicode: f118 + - thin + unicode: f719 voted: false -smile-beam: +spinner: changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Beaming Face With Smiling Eyes + - '3' + - 5.0.0 + - 5.10.2 + - unreleased + label: Spinner search: terms: - - emoticon - - face - - happy - - positive + - circle + - loading + - progress styles: - solid - regular - light - duotone - unicode: f5b8 + - thin + unicode: f110 voted: false -smile-plus: +spinner-third: changes: - - 5.0.9 - - 5.1.0 - label: Smiling Face Plus + - 5.0.0 + - 5.10.2 + - unreleased + label: Spinner Third search: terms: - - add - - emoticon - - face - - happy - - new + - circle + - loading + - progress styles: - solid - regular - light - duotone - unicode: f5b9 + - thin + unicode: f3f4 voted: false -smile-wink: +splotch: changes: - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Winking Face + - unreleased + label: Splotch search: terms: - - emoticon - - face - - happy - - hint - - joke + - Ink + - blob + - blotch + - glob + - stain styles: - solid - regular - light - duotone - unicode: f4da + - thin + unicode: f5bc voted: false -smog: +spoon: + aliases: + names: + - utensil-spoon changes: - - 5.5.0 - label: Smog + - 5.0.0 + - 5.10.2 + - unreleased + label: Spoon search: terms: - - dragon - - fog - - haze - - pollution - - smoke - - weather + - cutlery + - dining + - scoop + - silverware + - spoon styles: - solid - regular - light - duotone - unicode: f75f + - thin + unicode: f2e5 voted: false -smoke: +spotify: changes: - - 5.5.0 - label: Smoke + - '4.1' + - 5.0.0 + label: Spotify search: - terms: - - cloud - - fire - - fog - - haze + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f760 + - brands + unicode: f1bc voted: false -smoking: +spray-can: changes: - - 5.0.7 - label: Smoking + - 5.1.0 + - unreleased + label: Spray Can search: terms: - - cancer - - cigarette - - nicotine - - smoking status - - tobacco + - Paint + - aerosol + - design + - graffiti + - tag styles: - solid - regular - light - duotone - unicode: f48d - voted: true -smoking-ban: + - thin + unicode: f5bd + voted: false +sprinkler: changes: - - 5.0.13 - label: Smoking Ban + - 5.12.0 + - 5.14.0 + - unreleased + label: Sprinkler search: terms: - - ban - - cancel - - no smoking - - non-smoking + - grass + - lawn + - shower + - spray + - water styles: - solid - regular - light - duotone - unicode: f54d - voted: true -sms: + - thin + unicode: e035 + voted: false +square: changes: - - 5.6.0 - label: SMS + - '2' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Square search: terms: - - chat - - conversation - - message - - mobile - - notification - - phone - - sms - - texting + - block + - box + - shape styles: - solid - regular - light - duotone - unicode: f7cd - voted: true -snake: + - thin + unicode: f0c8 + voted: false +square-0: changes: - - 5.4.0 - label: Snake + - unreleased + label: Square 0 search: - terms: - - cobra - - fauna - - reptile - - slither + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f716 + unicode: auto voted: false -snapchat: +square-1: changes: - - '4.6' - - 5.0.0 - label: Snapchat + - unreleased + label: Square 1 search: terms: [] styles: - - brands - unicode: f2ab + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -snapchat-ghost: +square-2: changes: - - '4.6' - - 5.0.0 - label: Snapchat Ghost + - unreleased + label: Square 2 search: terms: [] styles: - - brands - unicode: f2ac + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -snapchat-square: +square-3: changes: - - '4.6' - - 5.0.0 - label: Snapchat Square + - unreleased + label: Square 3 search: terms: [] styles: - - brands - unicode: f2ad + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -snooze: +square-4: changes: - - 5.9.0 - label: Snooze + - unreleased + label: Square 4 search: - terms: - - alarm - - nap - - rest - - siesta - - sleep + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f880 - voted: true -snow-blowing: + unicode: auto + voted: false +square-5: changes: - - 5.5.0 - label: Snow Blowing + - unreleased + label: Square 5 search: - terms: - - blizzard - - precipitation - - storm - - winter + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f761 + unicode: auto voted: false -snowboarding: +square-6: changes: - - 5.6.0 - label: Snowboarding + - unreleased + label: Square 6 search: - terms: - - activity - - fitness - - olympics - - outdoors - - person + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7ce -snowflake: + unicode: auto + voted: false +square-7: changes: - - '4.7' - - 5.0.0 - - 5.5.0 - label: Snowflake + - unreleased + label: Square 7 search: - terms: - - precipitation - - rain - - winter + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f2dc + unicode: auto voted: false -snowflakes: +square-8: changes: - - 5.6.0 - label: Snowflakes + - unreleased + label: Square 8 search: - terms: - - precipitation - - rain - - winter + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7cf -snowman: + unicode: auto + voted: false +square-9: changes: - - 5.6.0 - label: Snowman + - unreleased + label: Square 9 search: - terms: - - decoration - - frost - - frosty - - holiday + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7d0 -snowmobile: + unicode: auto + voted: false +square-a: changes: - - 5.6.0 - label: Snowmobile + - unreleased + label: Square A search: - terms: - - fast - - person - - transportation - - treads - - vehicle - - winter + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7d1 -snowplow: + unicode: auto + voted: false +square-ampersand: changes: - - 5.6.0 - label: Snowplow + - unreleased + label: Square Ampersand search: - terms: - - clean up - - cold - - road - - storm - - winter + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f7d2 -soap: + unicode: auto + voted: false +square-arrow-down: + aliases: + names: + - arrow-square-down changes: - - 5.13.0 - label: Soap + - 5.0.0 + - unreleased + label: Square arrow down search: terms: - - bubbles - - clean - - covid-19 - - hygiene - - wash + - download styles: - - light - - regular - solid + - regular + - light - duotone - unicode: f96e + - thin + unicode: f339 voted: false -socks: +square-arrow-left: + aliases: + names: + - arrow-square-left changes: - - 5.3.0 - - 5.10.2 - label: Socks + - 5.0.0 + - unreleased + label: Square arrow left search: terms: - - business socks - - business time - - clothing - - feet - - flight of the conchords - - wednesday + - back + - previous styles: - solid - regular - light - duotone - unicode: f696 + - thin + unicode: f33a voted: false -solar-panel: +square-arrow-right: + aliases: + names: + - arrow-square-right changes: - - 5.1.0 - label: Solar Panel + - 5.0.0 + - unreleased + label: Square arrow right search: terms: - - clean - - eco-friendly - - energy - - green - - sun + - forward + - next styles: - solid - regular - light - duotone - unicode: f5ba + - thin + unicode: f33b voted: false -solar-system: +square-arrow-up: + aliases: + names: + - arrow-square-up changes: - - 5.12.0 - label: Solar System + - 5.0.0 + - unreleased + label: Square arrow up search: terms: - - galaxy - - orbit - - planets - - space - - sun - - universe + - upload styles: - solid - regular - light - duotone - unicode: f92f + - thin + unicode: f33c voted: false -sort: +square-arrow-up-right: + aliases: + names: + - external-link-square changes: - - '2' + - '3.1' - 5.0.0 - - 5.10.2 - label: Sort + - unreleased + label: Square arrow up right search: terms: - - filter - - order + - new + - open + - send + - share styles: - solid - regular - light - duotone - unicode: f0dc + - thin + unicode: f14c voted: false -sort-alpha-down: +square-b: changes: - - '3.2' - - 5.0.0 - - 5.9.0 - label: Sort Alphabetical Down + - unreleased + label: Square B search: - terms: - - alphabetical - - arrange - - filter - - order - - sort-alpha-asc + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f15d + unicode: auto voted: false -sort-alpha-down-alt: +square-c: changes: - - 5.9.0 - label: Alternate Sort Alphabetical Down + - unreleased + label: Square C search: - terms: - - alphabetical - - arrange - - filter - - order - - sort-alpha-asc + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f881 + unicode: auto voted: false -sort-alpha-up: +square-caret-down: + aliases: + names: + - caret-square-down changes: - '3.2' - 5.0.0 - - 5.9.0 - label: Sort Alphabetical Up + - unreleased + label: Square caret down search: terms: - - alphabetical - - arrange - - filter - - order - - sort-alpha-desc + - arrow + - caret-square-o-down + - dropdown + - expand + - menu + - more + - triangle styles: - solid - regular - light - duotone - unicode: f15e + - thin + unicode: f150 voted: false -sort-alpha-up-alt: +square-caret-left: + aliases: + names: + - caret-square-left changes: - - 5.9.0 - label: Alternate Sort Alphabetical Up + - '4' + - 5.0.0 + - unreleased + label: Square caret left search: terms: - - alphabetical - - arrange - - filter - - order - - sort-alpha-desc + - arrow + - back + - caret-square-o-left + - previous + - triangle styles: - solid - regular - light - duotone - unicode: f882 + - thin + unicode: f191 voted: false -sort-alt: +square-caret-right: + aliases: + names: + - caret-square-right changes: - - 5.9.0 - label: Alternate Sort + - '3.2' + - 5.0.0 + - unreleased + label: Square caret right search: terms: - - arrange - - arrows - - exchange - - filter - - order - - transfer + - arrow + - caret-square-o-right + - forward + - next + - triangle styles: - solid - regular - light - duotone - unicode: f883 + - thin + unicode: f152 voted: false -sort-amount-down: +square-caret-up: + aliases: + names: + - caret-square-up changes: - '3.2' - 5.0.0 - - 5.9.0 - label: Sort Amount Down + - unreleased + label: Square caret up search: terms: - - arrange - - filter - - number - - order - - sort-amount-asc + - arrow + - caret-square-o-up + - collapse + - triangle + - upload styles: - solid - regular - light - duotone - unicode: f160 + - thin + unicode: f151 voted: false -sort-amount-down-alt: +square-check: + aliases: + names: + - check-square changes: - - 5.9.0 - label: Alternate Sort Amount Down + - '3.1' + - 5.0.0 + - unreleased + label: Square check search: terms: - - arrange - - filter - - order - - sort-amount-asc + - accept + - agree + - checkmark + - confirm + - correct + - done + - ok + - select + - success + - tick + - todo + - 'yes' styles: - solid - regular - light - duotone - unicode: f884 + - thin + unicode: f14a voted: false -sort-amount-up: +square-chevron-down: + aliases: + names: + - chevron-square-down changes: - - '3.2' - 5.0.0 - - 5.9.0 - label: Sort Amount Up + - unreleased + label: Square chevron down search: terms: - - arrange - - filter - - order - - sort-amount-desc + - arrow + - download + - dropdown + - expand + - menu + - more styles: - solid - regular - light - duotone - unicode: f161 + - thin + unicode: f329 voted: false -sort-amount-up-alt: +square-chevron-left: + aliases: + names: + - chevron-square-left changes: - - 5.9.0 - label: Alternate Sort Amount Up + - 5.0.0 + - unreleased + label: Square chevron left search: terms: - - arrange - - filter - - order - - sort-amount-desc + - arrow + - back + - previous styles: - solid - regular - light - duotone - unicode: f885 + - thin + unicode: f32a voted: false -sort-circle: +square-chevron-right: + aliases: + names: + - chevron-square-right changes: - - 5.12.0 - label: Sort Circle + - 5.0.0 + - unreleased + label: Square chevron right search: terms: - - down - - elevator - - lower - - raise - - temperature - - thermostat - - up + - arrow + - forward + - next styles: - solid - regular - light - duotone - unicode: f930 + - thin + unicode: f32b voted: false -sort-circle-down: +square-chevron-up: + aliases: + names: + - chevron-square-up changes: - - 5.12.0 - label: Sort Circle Down + - 5.0.0 + - unreleased + label: Square chevron up search: terms: - - down - - elevator - - lower - - raise - - temperature - - thermostat - - up + - arrow + - collapse + - upload styles: - solid - regular - light - duotone - unicode: f931 + - thin + unicode: f32c voted: false -sort-circle-up: +square-d: changes: - - 5.12.0 - label: Sort Circle Up + - unreleased + label: Square D search: - terms: - - down - - elevator - - lower - - raise - - temperature - - thermostat - - up + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f932 + unicode: auto voted: false -sort-down: +square-dashed: + changes: + - unreleased + label: Square Dashed + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +square-dollar: + aliases: + names: + - usd-square + - dollar-square changes: - - '2' - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Sort Down (Descending) + - 5.0.9 + label: Square dollar search: terms: - - arrow - - descending - - filter - - order - - sort-desc + - $ + - dollar-sign + - money + - price + - usd styles: - solid - regular - light - duotone - unicode: f0dd + - thin + unicode: f2e9 voted: false -sort-numeric-down: +square-down: + aliases: + names: + - arrow-alt-square-down changes: - - '3.2' - 5.0.0 - - 5.9.0 - label: Sort Numeric Down + - unreleased + label: Square down search: terms: - - arrange - - filter - - numbers - - order - - sort-numeric-asc + - download styles: - solid - regular - light - duotone - unicode: f162 + - thin + unicode: f350 voted: false -sort-numeric-down-alt: +square-e: changes: - - 5.9.0 - label: Alternate Sort Numeric Down + - unreleased + label: Square E search: - terms: - - arrange - - filter - - numbers - - order - - sort-numeric-asc + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f886 + unicode: auto voted: false -sort-numeric-up: +square-envelope: + aliases: + names: + - envelope-square changes: - - '3.2' + - '4.1' - 5.0.0 - - 5.9.0 - label: Sort Numeric Up + - unreleased + label: Square envelope search: terms: - - arrange - - filter - - numbers - - order - - sort-numeric-desc + - e-mail + - email + - letter + - mail + - message + - notification + - support styles: - solid - regular - light - duotone - unicode: f163 + - thin + unicode: f199 voted: false -sort-numeric-up-alt: +square-exclamation: + aliases: + names: + - exclamation-square changes: - - 5.9.0 - label: Alternate Sort Numeric Up + - 5.0.0 + - unreleased + label: Square exclamation search: terms: - - arrange - - filter - - numbers - - order - - sort-numeric-desc + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning styles: - solid - regular - light - duotone - unicode: f887 + - thin + unicode: f321 voted: false -sort-shapes-down: +square-f: changes: - - 5.9.0 - label: Sort Shapes Down + - unreleased + label: Square F search: - terms: - - arrange - - filter - - order - - shapes - - square - - triangle + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f888 + unicode: auto voted: false -sort-shapes-down-alt: +square-fragile: + aliases: + names: + - box-fragile + - square-wine-glass-crack changes: - - 5.9.0 - label: Alternate Sort Shapes Down + - 5.0.9 + - unreleased + label: Square fragile search: terms: - - arrange - - filter - - order - - shapes - - square - - triangle + - broken + - careful + - glass + - package styles: - solid - regular - light - duotone - unicode: f889 + - thin + unicode: f49b voted: false -sort-shapes-up: +square-full: changes: - - 5.9.0 - label: Sort Shapes Up + - 5.0.5 + - 5.10.2 + - unreleased + label: Square Full search: terms: - - arrange - - filter - - order - - shapes - - square - - triangle + - block + - box + - shape styles: - solid - regular - light - duotone - unicode: f88a + - thin + unicode: f45c voted: false -sort-shapes-up-alt: +square-g: changes: - - 5.9.0 - label: Alternate Sort Shapes Up + - unreleased + label: Square G search: - terms: - - arrange - - filter - - order - - shapes - - square - - triangle + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f88b + unicode: auto voted: false -sort-size-down: +square-h: + aliases: + names: + - h-square changes: - - 5.9.0 - label: Sort Size Down + - '3' + - 5.0.0 + - unreleased + label: Square h search: terms: - - arrange - - filter - - order - - rectangle + - directions + - emergency + - hospital + - hotel + - map styles: - solid - regular - light - duotone - unicode: f88c + - thin + unicode: f0fd voted: false -sort-size-down-alt: +square-heart: + aliases: + names: + - heart-square changes: - - 5.9.0 - label: Alternate Sort Size Down + - 5.0.9 + - unreleased + label: Square heart search: terms: - - arrange - - filter - - order - - rectangle + - favorite + - like + - love styles: - solid - regular - light - duotone - unicode: f88d + - thin + unicode: f4c8 voted: false -sort-size-up: +square-i: changes: - - 5.9.0 - label: Sort Size Up + - unreleased + label: Square I search: - terms: - - arrange - - filter - - order - - rectangle + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f88e + unicode: auto voted: false -sort-size-up-alt: +square-info: + aliases: + names: + - info-square changes: - - 5.9.0 - label: Alternate Sort Size Up + - 5.0.0 + - unreleased + label: Square info search: terms: - - arrange - - filter - - order - - rectangle + - details + - help + - information + - more + - support styles: - solid - regular - light - duotone - unicode: f88f + - thin + unicode: f30f voted: false -sort-up: +square-j: changes: - - '2' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Sort Up (Ascending) + - unreleased + label: Square J search: - terms: - - arrow - - ascending - - filter - - order - - sort-asc + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f0de + unicode: auto voted: false -soundcloud: +square-k: changes: - - '4.1' - - 5.0.0 - label: SoundCloud + - unreleased + label: Square K search: terms: [] styles: - - brands - unicode: f1be - voted: false -soup: - changes: - - 5.7.0 - label: Soup - search: - terms: - - bisque - - bouillon - - bowl - - broth - - chicken - - chowder - - gazpacho - - ramen - - stew - styles: - solid - regular - light + - thin - duotone - unicode: f823 + unicode: auto voted: false -sourcetree: +square-l: changes: - - 5.6.0 - - 5.8.0 - label: Sourcetree + - unreleased + label: Square L search: terms: [] styles: - - brands - unicode: f7d3 - voted: true -spa: - changes: - - 5.1.0 - label: Spa - search: - terms: - - flora - - massage - - mindfulness - - plant - - wellness - styles: - solid - regular - light + - thin - duotone - unicode: f5bb + unicode: auto voted: false -space-shuttle: +square-left: + aliases: + names: + - arrow-alt-square-left changes: - - '4.1' - 5.0.0 - - 5.10.2 - label: Space Shuttle + - unreleased + label: Square left search: terms: - - astronaut - - machine - - nasa - - rocket - - space - - transportation + - back + - previous styles: - solid - regular - light - duotone - unicode: f197 + - thin + unicode: f351 voted: false -space-station-moon: +square-m: changes: - - 5.12.0 - label: Moon Space Station + - unreleased + label: Square M search: - terms: - - death star - - empire - - galen erso - - kyber crystal - - laser - - not a moon - - secret weapon - - star wars + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f933 + unicode: auto voted: false -space-station-moon-alt: +square-minus: + aliases: + names: + - minus-square changes: - - 5.12.0 - label: Moon Space Station Under Construction + - '3.1' + - 5.0.0 + - unreleased + label: Square minus search: terms: - - death star - - empire - - kyber crystal - - laser - - not a moon - - star wars - - under construction + - collapse + - delete + - hide + - minify + - negative + - remove + - shape + - trash styles: - solid - regular - light - duotone - unicode: f934 + - thin + unicode: f146 voted: false -spade: +square-n: changes: - - 5.0.0 - - 5.10.2 - label: Spade + - unreleased + label: Square N search: - terms: - - card - - game - - poker - - suit + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f2f4 + unicode: auto voted: false -sparkles: +square-o: changes: - - 5.9.0 - label: Sparkles + - unreleased + label: Square O search: - terms: - - glitter - - magic - - new - - special - - twinkle + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f890 + unicode: auto voted: false -speakap: +square-p: changes: - - 5.0.0 - - 5.4.0 - - 5.8.0 - label: Speakap + - unreleased + label: Square P search: terms: [] styles: - - brands - unicode: f3f3 + - solid + - regular + - light + - thin + - duotone + unicode: auto voted: false -speaker: +square-parking: + aliases: + names: + - parking changes: - - 5.11.0 - label: Speaker + - 5.0.13 + - unreleased + label: Square parking search: terms: - - audio - - device - - music - - sound - - subwoofer - - transducer - - tweeter + - auto + - car + - garage + - meter styles: - solid - regular - light - duotone - unicode: f8df - voted: false -speaker-deck: - changes: - - 5.8.0 - label: Speaker Deck - search: - terms: [] - styles: - - brands - unicode: f83c -speakers: + - thin + unicode: f540 + voted: true +square-parking-slash: + aliases: + names: + - parking-slash changes: - - 5.11.0 - label: Speakers + - 5.2.0 + - unreleased + label: Square parking slash search: terms: - - audio - - device - - group - - music - - sound - - subwoofer - - transducer - - tweeter + - auto + - car + - garage + - meter styles: - solid - regular - light - duotone - unicode: f8e0 + - thin + unicode: f617 voted: false -spell-check: +square-pen: + aliases: + names: + - pen-square + - pencil-square changes: - - 5.9.0 - label: Spell Check + - '3.1' + - 5.0.0 + - unreleased + label: Square pen search: terms: - - dictionary - edit - - editor - - grammar - - text + - pencil-square + - update + - write styles: - solid - regular - light - duotone - unicode: f891 + - thin + unicode: f14b voted: false -spider: +square-phone: + aliases: + names: + - phone-square changes: - - 5.4.0 - label: Spider + - '2' + - 5.0.0 + - unreleased + label: Square phone search: terms: - - arachnid - - bug - - charlotte - - crawl - - eight - - halloween + - call + - earphone + - number + - support + - telephone + - voice styles: - solid - regular - light - duotone - unicode: f717 - voted: true -spider-black-widow: + - thin + unicode: f098 + voted: false +square-phone-flip: + aliases: + names: + - phone-square-alt changes: - - 5.4.0 - label: Black Widow Spider + - 5.9.0 + - 5.10.1 + - unreleased + label: Square phone flip search: terms: - - alert - - arachnid - - bug - - charlotte - - crawl - - danger - - dangerous - - deadly - - eight - - error - - halloween + - call + - earphone + - number + - support + - telephone + - voice styles: - solid - regular - light - duotone - unicode: f718 + - thin + unicode: f87b voted: false -spider-web: +square-phone-hangup: + aliases: + names: + - phone-square-down changes: - - 5.4.0 - label: Spider Web + - unreleased + label: Square phone hangup search: - terms: - - cobweb - - gossamer - - halloween + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f719 + - thin + unicode: auto voted: false -spinner: +square-plus: + aliases: + names: + - plus-square changes: - '3' - 5.0.0 - - 5.10.2 - label: Spinner + - unreleased + label: Square plus search: terms: - - circle - - loading - - progress + - add + - create + - expand + - new + - positive + - shape styles: - solid - regular - light - duotone - unicode: f110 + - thin + unicode: f0fe voted: false -spinner-third: +square-poll-horizontal: + aliases: + names: + - poll-h changes: - - 5.0.0 - - 5.10.2 - label: Spinner Third + - 5.3.0 + - 5.10.1 + - unreleased + label: Square poll horizontal search: terms: - - circle - - loading - - progress + - results + - survey + - trend + - vote + - voting styles: - solid - regular - light - duotone - unicode: f3f4 + - thin + unicode: f682 voted: false -splotch: +square-poll-vertical: + aliases: + names: + - poll changes: - - 5.1.0 - label: Splotch + - 5.3.0 + - 5.10.1 + - unreleased + label: Square poll vertical search: terms: - - Ink - - blob - - blotch - - glob - - stain + - results + - survey + - trend + - vote + - voting styles: - solid - regular - light - duotone - unicode: f5bc + - thin + unicode: f681 voted: false -spotify: +square-q: changes: - - '4.1' - - 5.0.0 - label: Spotify + - unreleased + label: Square Q search: terms: [] styles: - - brands - unicode: f1bc - voted: false -spray-can: - changes: - - 5.1.0 - label: Spray Can - search: - terms: - - Paint - - aerosol - - design - - graffiti - - tag - styles: - solid - regular - light + - thin - duotone - unicode: f5bd + unicode: auto voted: false -sprinkler: +square-question: + aliases: + names: + - question-square changes: - - 5.12.0 - label: Sprinkler + - 5.0.0 + - unreleased + label: Square question search: terms: - - grass - - lawn - - shower - - spray - - water + - help + - information + - support + - unknown styles: - solid - regular - light - duotone - unicode: f935 + - thin + unicode: f2fd voted: false -square: +square-r: changes: - - '2' - - 5.0.0 - - 5.10.1 - - 5.10.2 - label: Square + - unreleased + label: Square R search: - terms: - - block - - box - - shape + terms: [] styles: - solid - regular - light + - thin - duotone - unicode: f0c8 + unicode: auto voted: false -square-full: +square-right: + aliases: + names: + - arrow-alt-square-right changes: - - 5.0.5 - - 5.10.2 - label: Square Full + - 5.0.0 + - unreleased + label: Square right search: terms: - - block - - box - - shape + - forward + - next styles: - solid - regular - light - duotone - unicode: f45c + - thin + unicode: f352 voted: false square-root: changes: - 5.3.0 + - unreleased label: Square Root search: terms: @@ -33038,12 +43081,17 @@ square-root: - regular - light - duotone + - thin unicode: f697 voted: false -square-root-alt: +square-root-variable: + aliases: + names: + - square-root-alt changes: - 5.3.0 - label: Alternate Square Root + - unreleased + label: Square root variable search: terms: - arithmetic @@ -33055,8 +43103,319 @@ square-root-alt: - regular - light - duotone + - thin unicode: f698 voted: false +square-rss: + aliases: + names: + - rss-square + changes: + - '3.1' + - 5.0.0 + - unreleased + label: Square rss + search: + terms: + - blog + - feed + - journal + - news + - writing + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f143 + voted: false +square-s: + changes: + - unreleased + label: Square S + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-share-nodes: + aliases: + names: + - share-alt-square + changes: + - '4.1' + - 5.0.0 + - unreleased + label: Square share nodes + search: + terms: + - forward + - save + - send + - social + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f1e1 + voted: false +square-sliders: + aliases: + names: + - sliders-h-square + changes: + - 5.0.0 + - unreleased + label: Square sliders + search: + terms: + - adjust + - settings + - sliders + - toggle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3f0 + voted: false +square-sliders-vertical: + aliases: + names: + - sliders-v-square + changes: + - 5.0.0 + - unreleased + label: Square sliders vertical + search: + terms: + - adjust + - settings + - sliders + - toggle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3f2 + voted: false +square-star: + changes: + - unreleased + label: Square Star + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +square-t: + changes: + - unreleased + label: Square T + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-this-way-up: + aliases: + names: + - box-up + changes: + - 5.0.9 + - unreleased + label: Square this way up + search: + terms: + - archive + - container + - package + - shipping + - storage + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f49f + voted: false +square-u: + changes: + - unreleased + label: Square U + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-up: + aliases: + names: + - arrow-alt-square-up + changes: + - 5.0.0 + - unreleased + label: Square up + search: + terms: + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f353 + voted: false +square-up-right: + aliases: + names: + - external-link-square-alt + changes: + - 5.0.0 + - unreleased + label: Square up right + search: + terms: + - external-link-square + - new + - open + - share + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f360 + voted: false +square-v: + changes: + - unreleased + label: Square V + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-w: + changes: + - unreleased + label: Square W + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-x: + changes: + - unreleased + label: Square X + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-xmark: + aliases: + names: + - times-square + - xmark-square + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Square xmark + search: + terms: + - close + - cross + - incorrect + - notice + - notification + - notify + - problem + - window + - wrong + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2d3 + voted: false +square-y: + changes: + - unreleased + label: Square Y + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false +square-z: + changes: + - unreleased + label: Square Z + search: + terms: [] + styles: + - solid + - regular + - light + - thin + - duotone + unicode: auto + voted: false squarespace: changes: - 5.1.0 @@ -33070,6 +43429,7 @@ squarespace: squirrel: changes: - 5.4.0 + - unreleased label: Squirrel search: terms: @@ -33085,6 +43445,7 @@ squirrel: - regular - light - duotone + - thin unicode: f71a voted: false stack-exchange: @@ -33122,6 +43483,7 @@ stackpath: staff: changes: - 5.4.0 + - unreleased label: Staff search: terms: @@ -33137,12 +43499,14 @@ staff: - regular - light - duotone + - thin unicode: f71b voted: false stamp: changes: - 5.1.0 - 5.10.2 + - unreleased label: Stamp search: terms: @@ -33156,6 +43520,7 @@ stamp: - regular - light - duotone + - thin unicode: f5bf voted: false star: @@ -33163,6 +43528,7 @@ star: - '1' - 5.0.0 - 5.10.2 + - unreleased label: Star search: terms: @@ -33178,11 +43544,13 @@ star: - regular - light - duotone + - thin unicode: f005 voted: false star-and-crescent: changes: - 5.3.0 + - unreleased label: Star and Crescent search: terms: @@ -33194,11 +43562,13 @@ star-and-crescent: - regular - light - duotone + - thin unicode: f699 voted: false star-christmas: changes: - 5.6.0 + - unreleased label: Christmas Star search: terms: @@ -33212,11 +43582,13 @@ star-christmas: - regular - light - duotone + - thin unicode: f7d4 star-exclamation: changes: - 5.0.0 - 5.11.0 + - unreleased label: Exclamation Star search: terms: @@ -33232,12 +43604,14 @@ star-exclamation: - regular - light - duotone + - thin unicode: f2f3 voted: false star-half: changes: - '1' - 5.0.0 + - unreleased label: star-half search: terms: @@ -33252,14 +43626,19 @@ star-half: - regular - light - duotone + - thin unicode: f089 voted: false -star-half-alt: +star-half-stroke: + aliases: + names: + - star-half-alt changes: - 5.1.0 - 5.11.0 - 5.11.1 - label: Alternate Star Half + - unreleased + label: Star half stroke search: terms: - achievement @@ -33273,6 +43652,7 @@ star-half-alt: - regular - light - duotone + - thin unicode: f5c0 voted: true star-of-david: @@ -33280,6 +43660,7 @@ star-of-david: - 5.3.0 - 5.11.0 - 5.11.1 + - unreleased label: Star of David search: terms: @@ -33291,11 +43672,13 @@ star-of-david: - regular - light - duotone + - thin unicode: f69a voted: false star-of-life: changes: - 5.2.0 + - unreleased label: Star of Life search: terms: @@ -33309,11 +43692,59 @@ star-of-life: - regular - light - duotone + - thin unicode: f621 voted: false +star-sharp: + changes: + - unreleased + label: Star Sharp + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +star-sharp-half: + changes: + - unreleased + label: Star Sharp-half + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +star-sharp-half-stroke: + aliases: + names: + - star-sharp-half-alt + changes: + - unreleased + label: Star sharp half stroke + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false star-shooting: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Star Shooting search: terms: @@ -33327,11 +43758,14 @@ star-shooting: - regular - light - duotone - unicode: f936 + - thin + unicode: e036 voted: false starfighter: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Starfighter search: terms: @@ -33345,12 +43779,18 @@ starfighter: - regular - light - duotone - unicode: f937 + - thin + unicode: e037 voted: false -starfighter-alt: +starfighter-twin-ion-engine: + aliases: + names: + - starfighter-alt changes: - 5.12.0 - label: Starfighter Alternate + - 5.14.0 + - unreleased + label: Starfighter twin ion engine search: terms: - darth vader @@ -33363,12 +43803,31 @@ starfighter-alt: - regular - light - duotone - unicode: f938 + - thin + unicode: e038 + voted: false +starfighter-twin-ion-engine-advanced: + aliases: + names: + - starfighter-alt-advanced + changes: + - unreleased + label: Starfighter twin ion engine advanced + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false stars: changes: - 5.5.0 - 5.12.0 + - unreleased label: Stars search: terms: @@ -33382,11 +43841,14 @@ stars: - regular - light - duotone + - thin unicode: f762 voted: false starship: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Starship search: terms: @@ -33404,11 +43866,14 @@ starship: - regular - light - duotone - unicode: f939 + - thin + unicode: e039 voted: false starship-freighter: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Starship Freighter search: terms: @@ -33424,7 +43889,8 @@ starship-freighter: - regular - light - duotone - unicode: f93a + - thin + unicode: e03a voted: false staylinked: changes: @@ -33440,6 +43906,7 @@ steak: changes: - 5.7.0 - 5.10.2 + - unreleased label: Steak search: terms: @@ -33452,6 +43919,7 @@ steak: - regular - light - duotone + - thin unicode: f824 voted: false steam: @@ -33491,6 +43959,7 @@ steering-wheel: - 5.2.0 - 5.11.0 - 5.11.1 + - unreleased label: Wheel Steering search: terms: @@ -33504,55 +43973,38 @@ steering-wheel: - regular - light - duotone + - thin unicode: f622 voted: false -step-backward: - changes: - - '1' - - 5.0.0 - - 5.10.2 - - 5.11.0 - - 5.11.1 - label: step-backward - search: - terms: - - beginning - - first - - previous - - rewind - - start - styles: - - solid - - regular - - light - - duotone - unicode: f048 - voted: false -step-forward: +sterling-sign: + aliases: + names: + - pound-sign + - gbp changes: - - '1' + - '3.2' - 5.0.0 - - 5.10.2 - - 5.11.0 - - 5.11.1 - label: step-forward + - unreleased + label: Sterling sign search: terms: - - end - - last - - next + - currency + - gbp + - money styles: - solid - regular - light - duotone - unicode: f051 + - thin + unicode: f154 voted: false stethoscope: changes: - '3' - 5.0.0 - 5.0.7 + - unreleased label: Stethoscope search: terms: @@ -33570,6 +44022,7 @@ stethoscope: - regular - light - duotone + - thin unicode: f0f1 voted: false sticker-mule: @@ -33583,30 +44036,11 @@ sticker-mule: - brands unicode: f3f7 voted: false -sticky-note: - changes: - - '4.4' - - 5.0.0 - - 5.10.2 - label: Sticky Note - search: - terms: - - message - - note - - paper - - reminder - - sticker - styles: - - solid - - regular - - light - - duotone - unicode: f249 - voted: false stocking: changes: - 5.6.0 - 5.10.2 + - unreleased label: Stocking search: terms: @@ -33624,10 +44058,12 @@ stocking: - regular - light - duotone + - thin unicode: f7d5 stomach: changes: - 5.2.0 + - unreleased label: Stomach search: terms: @@ -33644,6 +44080,7 @@ stomach: - regular - light - duotone + - thin unicode: f623 voted: false stop: @@ -33651,6 +44088,7 @@ stop: - '1' - 5.0.0 - 5.10.2 + - unreleased label: stop search: terms: @@ -33662,30 +44100,14 @@ stop: - regular - light - duotone + - thin unicode: f04d voted: false -stop-circle: - changes: - - '4.5' - - 5.0.0 - label: Stop Circle - search: - terms: - - block - - box - - circle - - square - styles: - - solid - - regular - - light - - duotone - unicode: f28d - voted: false stopwatch: changes: - 5.0.0 - 5.10.2 + - unreleased label: Stopwatch search: terms: @@ -33697,11 +44119,14 @@ stopwatch: - regular - light - duotone + - thin unicode: f2f2 voted: false stopwatch-20: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Stopwatch 20 search: terms: @@ -33719,13 +44144,15 @@ stopwatch-20: - regular - solid - duotone - unicode: f96f + - thin + unicode: e06f voted: false store: changes: - 5.0.13 - 5.11.0 - 5.11.1 + - unreleased label: Store search: terms: @@ -33738,47 +44165,14 @@ store: - regular - light - duotone + - thin unicode: f54e voted: true -store-alt: - changes: - - 5.0.13 - label: Alternate Store - search: - terms: - - building - - buy - - purchase - - shopping - styles: - - solid - - regular - - light - - duotone - unicode: f54f - voted: true -store-alt-slash: - changes: - - 5.13.0 - label: Alternate Store Slash - search: - terms: - - building - - buy - - closed - - covid-19 - - purchase - - shopping - styles: - - light - - regular - - solid - - duotone - unicode: f970 - voted: false store-slash: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Store Slash search: terms: @@ -33793,7 +44187,8 @@ store-slash: - regular - solid - duotone - unicode: f971 + - thin + unicode: e071 voted: false strava: changes: @@ -33808,27 +44203,12 @@ strava: - brands unicode: f428 voted: false -stream: - changes: - - 5.0.13 - label: Stream - search: - terms: - - flow - - list - - timeline - styles: - - solid - - regular - - light - - duotone - unicode: f550 - voted: false street-view: changes: - '4.3' - 5.0.0 - 5.2.0 + - unreleased label: Street View search: terms: @@ -33841,11 +44221,13 @@ street-view: - regular - light - duotone + - thin unicode: f21d voted: false stretcher: changes: - 5.7.0 + - unreleased label: Stretcher search: terms: @@ -33859,6 +44241,7 @@ stretcher: - regular - light - duotone + - thin unicode: f825 voted: false strikethrough: @@ -33866,6 +44249,7 @@ strikethrough: - '2' - 5.0.0 - 5.9.0 + - unreleased label: Strikethrough search: terms: @@ -33880,6 +44264,7 @@ strikethrough: - regular - light - duotone + - thin unicode: f0cc voted: false stripe: @@ -33907,6 +44292,7 @@ stripe-s: stroopwafel: changes: - 5.0.13 + - unreleased label: Stroopwafel search: terms: @@ -33920,6 +44306,7 @@ stroopwafel: - regular - light - duotone + - thin unicode: f551 voted: false studiovinari: @@ -33960,6 +44347,7 @@ subscript: - 5.0.0 - 5.9.0 - 5.10.2 + - unreleased label: subscript search: terms: @@ -33973,32 +44361,15 @@ subscript: - regular - light - duotone + - thin unicode: f12c voted: false -subway: - changes: - - '4.3' - - 5.0.0 - label: Subway - search: - terms: - - machine - - railway - - train - - transportation - - vehicle - styles: - - solid - - regular - - light - - duotone - unicode: f239 - voted: false suitcase: changes: - '3' - 5.0.0 - 5.0.9 + - unreleased label: Suitcase search: terms: @@ -34013,12 +44384,38 @@ suitcase: - regular - light - duotone + - thin unicode: f0f2 voted: false +suitcase-medical: + aliases: + names: + - medkit + changes: + - '3' + - 5.0.0 + - unreleased + label: Suitcase medical + search: + terms: + - first aid + - firstaid + - health + - help + - support + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0fa + voted: false suitcase-rolling: changes: - 5.1.0 - 5.10.2 + - unreleased label: Suitcase Rolling search: terms: @@ -34033,6 +44430,7 @@ suitcase-rolling: - regular - light - duotone + - thin unicode: f5c1 voted: false sun: @@ -34040,6 +44438,7 @@ sun: - '3.2' - 5.0.0 - 5.5.0 + - unreleased label: Sun search: terms: @@ -34056,11 +44455,30 @@ sun: - regular - light - duotone + - thin unicode: f185 voted: false +sun-bright: + aliases: + names: + - sun-alt + changes: + - unreleased + label: Sun bright + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false sun-cloud: changes: - 5.5.0 + - unreleased label: Sun with Cloud search: terms: @@ -34076,11 +44494,13 @@ sun-cloud: - regular - light - duotone + - thin unicode: f763 voted: false sun-dust: changes: - 5.5.0 + - unreleased label: Sun Dust search: terms: @@ -34093,11 +44513,13 @@ sun-dust: - regular - light - duotone + - thin unicode: f764 voted: false sun-haze: changes: - 5.5.0 + - unreleased label: Sun Haze search: terms: @@ -34110,11 +44532,13 @@ sun-haze: - regular - light - duotone + - thin unicode: f765 voted: false sunglasses: changes: - 5.9.0 + - unreleased label: Sunglasses search: terms: @@ -34127,11 +44551,13 @@ sunglasses: - regular - light - duotone + - thin unicode: f892 voted: true sunrise: changes: - 5.5.0 + - unreleased label: Sunrise search: terms: @@ -34147,11 +44573,13 @@ sunrise: - regular - light - duotone + - thin unicode: f766 voted: false sunset: changes: - 5.5.0 + - unreleased label: Sunset search: terms: @@ -34164,6 +44592,7 @@ sunset: - regular - light - duotone + - thin unicode: f767 voted: false superpowers: @@ -34183,6 +44612,7 @@ superscript: - 5.0.0 - 5.9.0 - 5.10.2 + - unreleased label: superscript search: terms: @@ -34197,6 +44627,7 @@ superscript: - regular - light - duotone + - thin unicode: f12b voted: false supple: @@ -34209,24 +44640,6 @@ supple: - brands unicode: f3f9 voted: false -surprise: - changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Hushed Face - search: - terms: - - emoticon - - face - - shocked - styles: - - solid - - regular - - light - - duotone - unicode: f5c2 - voted: false suse: changes: - 5.6.0 @@ -34246,6 +44659,7 @@ swatchbook: - 5.1.0 - 5.11.0 - 5.11.1 + - unreleased label: Swatchbook search: terms: @@ -34259,6 +44673,7 @@ swatchbook: - regular - light - duotone + - thin unicode: f5c3 voted: false swift: @@ -34270,46 +44685,10 @@ swift: styles: - brands unicode: f8e1 -swimmer: - changes: - - 5.1.0 - label: Swimmer - search: - terms: - - athlete - - head - - man - - olympics - - person - - pool - - water - styles: - - solid - - regular - - light - - duotone - unicode: f5c4 - voted: false -swimming-pool: - changes: - - 5.1.0 - label: Swimming Pool - search: - terms: - - ladder - - recreation - - swim - - water - styles: - - solid - - regular - - light - - duotone - unicode: f5c5 - voted: false sword: changes: - 5.4.0 + - unreleased label: Sword search: terms: @@ -34326,11 +44705,14 @@ sword: - regular - light - duotone + - thin unicode: f71c voted: false sword-laser: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Sword Laser search: terms: @@ -34344,11 +44726,14 @@ sword-laser: - regular - light - duotone - unicode: f93b + - thin + unicode: e03b voted: false sword-laser-alt: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Sword Laser Alternate search: terms: @@ -34362,11 +44747,13 @@ sword-laser-alt: - regular - light - duotone - unicode: f93c + - thin + unicode: e03c voted: false swords: changes: - 5.4.0 + - unreleased label: Swords search: terms: @@ -34383,11 +44770,14 @@ swords: - regular - light - duotone + - thin unicode: f71d voted: false swords-laser: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Swords Laser search: terms: @@ -34406,7 +44796,33 @@ swords-laser: - regular - light - duotone - unicode: f93d + - thin + unicode: e03d + voted: false +symbols: + aliases: + names: + - icons-alt + changes: + - 5.9.0 + - unreleased + label: Symbols + search: + terms: + - bolt + - emoji + - heart + - image + - music + - photo + - symbols + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f86e voted: false symfony: changes: @@ -34420,6 +44836,7 @@ symfony: synagogue: changes: - 5.3.0 + - unreleased label: Synagogue search: terms: @@ -34434,49 +44851,13 @@ synagogue: - regular - light - duotone + - thin unicode: f69b voted: false -sync: - changes: - - '1' - - 5.0.0 - - 5.8.0 - label: Sync - search: - terms: - - exchange - - refresh - - reload - - rotate - - swap - styles: - - solid - - regular - - light - - duotone - unicode: f021 - voted: false -sync-alt: - changes: - - 5.0.0 - label: Alternate Sync - search: - terms: - - exchange - - refresh - - reload - - rotate - - swap - styles: - - solid - - regular - - light - - duotone - unicode: f2f1 - voted: false syringe: changes: - 5.0.7 + - unreleased label: Syringe search: terms: @@ -34490,367 +44871,357 @@ syringe: - regular - light - duotone + - thin unicode: f48e voted: false -table: +t: changes: - - '2' - - 5.0.0 - label: table + - unreleased + label: T search: - terms: - - data - - excel - - spreadsheet + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f0ce - voted: false -table-tennis: - changes: - - 5.0.5 - label: Table Tennis - search: - terms: - - ball - - paddle - - ping pong - styles: - solid - regular - light - - duotone - unicode: f45d + - thin + unicode: auto voted: false -tablet: +table: changes: - - '3' + - '2' - 5.0.0 - label: tablet + - unreleased + label: table search: terms: - - apple - - device - - ipad - - kindle - - screen + - data + - excel + - spreadsheet styles: - solid - regular - light - duotone - unicode: f10a + - thin + unicode: f0ce voted: false -tablet-alt: +table-cells: + aliases: + names: + - th changes: + - '1' - 5.0.0 - label: Alternate Tablet + - 5.7.0 + - unreleased + label: Table cells search: terms: - - apple - - device - - ipad - - kindle - - screen + - blocks + - boxes + - grid + - squares styles: - solid - regular - light - duotone - unicode: f3fa + - thin + unicode: f00a voted: false -tablet-android: +table-cells-large: + aliases: + names: + - th-large changes: + - '1' - 5.0.0 - label: Tablet Android + - unreleased + label: Table cells large search: terms: - - device - - kindle - - screen + - blocks + - boxes + - grid + - squares styles: - solid - regular - light - duotone - unicode: f3fb + - thin + unicode: f009 voted: false -tablet-android-alt: +table-columns: + aliases: + names: + - columns changes: + - '2' - 5.0.0 - label: Alternate Tablet Android + - unreleased + label: Table columns search: terms: - - device - - kindle - - screen + - browser + - dashboard + - organize + - panes + - split styles: - solid - regular - light - duotone - unicode: f3fc + - thin + unicode: f0db voted: false -tablet-rugged: +table-list: + aliases: + names: + - th-list changes: - - 5.0.7 - label: Rugged Tablet + - '1' + - 5.0.0 + - unreleased + label: Table list search: terms: - - device - - durable - - protection - - screen - - tough + - checklist + - completed + - done + - finished + - ol + - todo + - ul styles: - solid - regular - light - duotone - unicode: f48f + - thin + unicode: f00b voted: false -tablets: +table-pivot: changes: - - 5.0.7 - label: Tablets + - unreleased + label: Table Pivot search: - terms: - - drugs - - medicine - - pills - - prescription + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f490 - voted: false -tachometer: - changes: - - '2' - - 5.0.0 - - 5.2.0 - label: Tachometer - search: - terms: - - dashboard - - fast - - odometer - - speed - - speedometer - styles: - solid - regular - light - - duotone - unicode: f0e4 + - thin + unicode: auto voted: false -tachometer-alt: +table-rows: + aliases: + names: + - rows changes: - - 5.0.0 - - 5.2.0 - label: Alternate Tachometer + - unreleased + label: Table rows search: - terms: - - dashboard - - fast - - odometer - - speed - - speedometer + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f3fd - voted: false -tachometer-alt-average: - changes: - - 5.2.0 - label: Alternate Tachometer Average - search: - terms: - - dashboard - - fast - - odometer - - speed - - speedometer - styles: - solid - regular - light - - duotone - unicode: f624 + - thin + unicode: auto voted: false -tachometer-alt-fast: +table-tennis-paddle-ball: + aliases: + names: + - ping-pong-paddle-ball + - table-tennis changes: - - 5.2.0 - label: Alternate Tachometer Fast + - 5.0.5 + - unreleased + label: Table tennis paddle ball search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - ball + - paddle + - ping pong styles: - solid - regular - light - duotone - unicode: f625 - voted: false -tachometer-alt-fastest: - changes: - - 5.2.0 - label: Alternate Tachometer Fastest - search: - terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - thin + unicode: f45d + voted: false +table-tree: + changes: + - unreleased + label: Table Tree + search: + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f626 + - thin + unicode: auto voted: false -tachometer-alt-slow: +tablet: + aliases: + names: + - tablet-android changes: - - 5.2.0 - label: Alternate Tachometer Slow + - 5.0.0 + - unreleased + label: Tablet search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - device + - kindle + - screen styles: - solid - regular - light - duotone - unicode: f627 + - thin + unicode: f3fb voted: false -tachometer-alt-slowest: +tablet-button: changes: - - 5.2.0 - label: Alternate Tachometer Slowest + - '3' + - 5.0.0 + - unreleased + label: Tablet button search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - apple + - device + - ipad + - kindle + - screen styles: - solid - regular - light - duotone - unicode: f628 + - thin + unicode: f10a voted: false -tachometer-average: +tablet-rugged: changes: - - 5.2.0 - label: Tachometer Average + - 5.0.7 + - unreleased + label: Rugged Tablet search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - device + - durable + - protection + - screen + - tough styles: - solid - regular - light - duotone - unicode: f629 + - thin + unicode: f48f voted: false -tachometer-fast: +tablet-screen: + aliases: + names: + - tablet-android-alt changes: - - 5.2.0 - label: Tachometer Fast + - 5.0.0 + - unreleased + label: Tablet screen search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - device + - kindle + - screen styles: - solid - regular - light - duotone - unicode: f62a + - thin + unicode: f3fc voted: false -tachometer-fastest: +tablet-screen-button: + aliases: + names: + - tablet-alt changes: - - 5.2.0 - label: Tachometer Fastest + - 5.0.0 + - unreleased + label: Tablet screen button search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - apple + - device + - ipad + - kindle + - screen styles: - solid - regular - light - duotone - unicode: f62b + - thin + unicode: f3fa voted: false -tachometer-slow: +tablets: changes: - - 5.2.0 - label: Tachometer Slow + - 5.0.7 + - unreleased + label: Tablets search: terms: - - dashboard - - fast - - odometer - - speed - - speedometer + - drugs + - medicine + - pills + - prescription styles: - solid - regular - light - duotone - unicode: f62c + - thin + unicode: f490 voted: false -tachometer-slowest: +tachograph-digital: + aliases: + names: + - digital-tachograph changes: - - 5.2.0 - label: Tachometer Slowest + - 5.1.0 + - unreleased + label: Tachograph digital search: terms: - - dashboard - - fast - - odometer + - data + - distance - speed - - speedometer + - tachometer styles: - solid - regular - light - duotone - unicode: f62d - voted: false + - thin + unicode: f566 + voted: true taco: changes: - 5.7.0 + - unreleased label: Taco search: terms: @@ -34864,12 +45235,14 @@ taco: - regular - light - duotone + - thin unicode: f826 voted: false tag: changes: - '1' - 5.0.0 + - unreleased label: tag search: terms: @@ -34882,6 +45255,7 @@ tag: - regular - light - duotone + - thin unicode: f02b voted: false tags: @@ -34889,6 +45263,7 @@ tags: - '1' - 5.0.0 - 5.10.2 + - unreleased label: tags search: terms: @@ -34901,11 +45276,16 @@ tags: - regular - light - duotone + - thin unicode: f02c voted: false tally: + aliases: + names: + - tally-5 changes: - 5.3.0 + - unreleased label: Tally search: terms: @@ -34917,92 +45297,92 @@ tally: - regular - light - duotone + - thin unicode: f69c voted: false -tanakh: +tally-1: changes: - - 5.7.0 - label: Tanakh + - unreleased + label: Tally 1 search: - terms: - - book - - jewish - - judaism - - religion + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f827 + - thin + unicode: auto voted: false -tape: +tally-2: changes: - - 5.0.9 - label: Tape + - unreleased + label: Tally 2 search: - terms: - - design - - package - - sticky + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f4db + - thin + unicode: auto voted: false -tasks: +tally-3: changes: - - '2' - - 5.0.0 - - 5.9.0 - label: Tasks + - unreleased + label: Tally 3 search: - terms: - - checklist - - downloading - - downloads - - loading - - progress - - project management - - settings - - to do + terms: [] styles: + - duotone - solid - regular - light + - thin + unicode: auto + voted: false +tally-4: + changes: + - unreleased + label: Tally 4 + search: + terms: [] + styles: - duotone - unicode: f0ae + - solid + - regular + - light + - thin + unicode: auto voted: false -tasks-alt: +tape: changes: - - 5.7.0 - - 5.10.2 - label: Alternate Tasks + - 5.0.9 + - unreleased + label: Tape search: terms: - - checklist - - downloading - - downloads - - loading - - poll - - progress - - project management - - settings - - to do + - design + - package + - sticky styles: - solid - regular - light - duotone - unicode: f828 + - thin + unicode: f4db voted: false taxi: + aliases: + names: + - cab changes: - '4.1' - 5.0.0 - 5.1.0 + - unreleased label: Taxi search: terms: @@ -35021,8 +45401,23 @@ taxi: - regular - light - duotone + - thin unicode: f1ba voted: false +taxi-bus: + changes: + - unreleased + label: Taxi Bus + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false teamspeak: changes: - 5.0.11 @@ -35038,6 +45433,7 @@ teamspeak: teeth: changes: - 5.2.0 + - unreleased label: Teeth search: terms: @@ -35053,11 +45449,13 @@ teeth: - regular - light - duotone + - thin unicode: f62e voted: false teeth-open: changes: - 5.2.0 + - unreleased label: Teeth Open search: terms: @@ -35072,6 +45470,7 @@ teeth-open: - regular - light - duotone + - thin unicode: f62f voted: false telegram: @@ -35098,6 +45497,8 @@ telegram-plane: telescope: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Telescope search: terms: @@ -35115,12 +45516,18 @@ telescope: - regular - light - duotone - unicode: f93e + - thin + unicode: e03e voted: false -temperature-down: +temperature-arrow-down: + aliases: + names: + - temperature-down changes: - 5.12.0 - label: Temperature Down + - 5.14.0 + - unreleased + label: Temperature arrow down search: terms: - air conditioner @@ -35134,15 +45541,23 @@ temperature-down: - regular - light - duotone - unicode: f93f + - thin + unicode: e03f voted: false -temperature-frigid: +temperature-arrow-up: + aliases: + names: + - temperature-up changes: - - 5.5.0 - label: Temperature Frigid + - 5.12.0 + - 5.14.0 + - unreleased + label: Temperature arrow up search: terms: + - air conditioner - cold + - heater - mercury - thermometer - winter @@ -35151,11 +45566,88 @@ temperature-frigid: - regular - light - duotone - unicode: f768 + - thin + unicode: e040 + voted: false +temperature-empty: + aliases: + names: + - thermometer-empty + - thermometer-0 + - temperature-0 + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Temperature empty + search: + terms: + - cold + - mercury + - status + - temperature + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2cb + voted: false +temperature-full: + aliases: + names: + - thermometer-full + - thermometer-4 + - temperature-4 + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Temperature full + search: + terms: + - fever + - hot + - mercury + - status + - temperature + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2c7 + voted: false +temperature-half: + aliases: + names: + - thermometer-half + - thermometer-2 + - temperature-2 + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Temperature half + search: + terms: + - mercury + - status + - temperature + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2c9 voted: false temperature-high: changes: - 5.5.0 + - unreleased label: High Temperature search: terms: @@ -35170,34 +45662,65 @@ temperature-high: - regular - light - duotone + - thin unicode: f769 voted: false -temperature-hot: +temperature-low: changes: - 5.5.0 - label: Temperature Hot + - unreleased + label: Low Temperature search: terms: - - heat + - cold + - cool + - covid-19 - mercury - - summer - thermometer + - winter styles: - solid - regular - light - duotone - unicode: f76a + - thin + unicode: f76b voted: false -temperature-low: +temperature-quarter: + aliases: + names: + - thermometer-quarter + - thermometer-1 + - temperature-1 + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Temperature quarter + search: + terms: + - mercury + - status + - temperature + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2ca + voted: false +temperature-snow: + aliases: + names: + - temperature-frigid changes: - 5.5.0 - label: Low Temperature + - unreleased + label: Temperature snow search: terms: - cold - - cool - - covid-19 - mercury - thermometer - winter @@ -35206,26 +45729,54 @@ temperature-low: - regular - light - duotone - unicode: f76b + - thin + unicode: f768 voted: false -temperature-up: +'temperature-sun ': + aliases: + names: + - temperature-hot changes: - - 5.12.0 - label: Temperature Up + - 5.5.0 + - unreleased + label: 'Temperature sun ' search: terms: - - air conditioner - - cold - - heater + - heat - mercury + - summer - thermometer - - winter styles: - solid - regular - light - duotone - unicode: f940 + - thin + unicode: f76a + voted: false +temperature-three-quarters: + aliases: + names: + - thermometer-three-quarters + - thermometer-3 + - temperature-3 + changes: + - '4.7' + - 5.0.0 + - unreleased + label: Temperature three quarters + search: + terms: + - mercury + - status + - temperature + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f2c8 voted: false tencent-weibo: changes: @@ -35238,10 +45789,14 @@ tencent-weibo: - brands unicode: f1d5 voted: false -tenge: +tenge-sign: + aliases: + names: + - tenge changes: - 5.6.0 - label: Tenge + - unreleased + label: Tenge sign search: terms: - currency @@ -35253,6 +45808,7 @@ tenge: - regular - light - duotone + - thin unicode: f7d7 voted: true tennis-ball: @@ -35260,6 +45816,7 @@ tennis-ball: - 5.0.5 - 5.11.0 - 5.11.1 + - unreleased label: Tennis Ball search: terms: @@ -35272,12 +45829,14 @@ tennis-ball: - regular - light - duotone + - thin unicode: f45e voted: false terminal: changes: - '3.1' - 5.0.0 + - unreleased label: Terminal search: terms: @@ -35291,6 +45850,7 @@ terminal: - regular - light - duotone + - thin unicode: f120 voted: false text: @@ -35298,6 +45858,7 @@ text: - 5.9.0 - 5.10.1 - 5.10.2 + - unreleased label: Text search: terms: @@ -35311,6 +45872,7 @@ text: - regular - light - duotone + - thin unicode: f893 voted: false text-height: @@ -35319,6 +45881,7 @@ text-height: - 5.0.0 - 5.9.0 - 5.10.2 + - unreleased label: text-height search: terms: @@ -35332,12 +45895,14 @@ text-height: - regular - light - duotone + - thin unicode: f034 voted: false text-size: changes: - 5.9.0 - 5.10.2 + - unreleased label: Text Size search: terms: @@ -35353,86 +45918,55 @@ text-size: - regular - light - duotone + - thin unicode: f894 voted: false -text-width: +text-slash: + aliases: + names: + - remove-format changes: - - '1' - - 5.0.0 - 5.9.0 - - 5.10.2 - label: Text Width + - unreleased + label: Text slash search: terms: - - edit + - cancel - font - format + - remove + - style - text - - type - styles: - - solid - - regular - - light - - duotone - unicode: f035 - voted: false -th: - changes: - - '1' - - 5.0.0 - - 5.7.0 - label: th - search: - terms: - - blocks - - boxes - - grid - - squares - styles: - - solid - - regular - - light - - duotone - unicode: f00a - voted: false -th-large: - changes: - - '1' - - 5.0.0 - label: th-large - search: - terms: - - blocks - - boxes - - grid - - squares styles: - solid - regular - light - duotone - unicode: f009 + - thin + unicode: f87d voted: false -th-list: +text-width: changes: - '1' - 5.0.0 - label: th-list + - 5.9.0 + - 5.10.2 + - unreleased + label: Text Width search: terms: - - checklist - - completed - - done - - finished - - ol - - todo - - ul + - edit + - font + - format + - text + - type styles: - solid - regular - light - duotone - unicode: f00b + - thin + unicode: f035 voted: false the-red-yeti: changes: @@ -35446,24 +45980,6 @@ the-red-yeti: - brands unicode: f69d voted: false -theater-masks: - changes: - - 5.2.0 - - 5.10.2 - label: Theater Masks - search: - terms: - - comedy - - perform - - theatre - - tragedy - styles: - - solid - - regular - - light - - duotone - unicode: f630 - voted: false themeco: changes: - 5.1.0 @@ -35489,6 +46005,7 @@ themeisle: thermometer: changes: - 5.0.7 + - unreleased label: Thermometer search: terms: @@ -35501,99 +46018,13 @@ thermometer: - regular - light - duotone + - thin unicode: f491 voted: false -thermometer-empty: - changes: - - '4.7' - - 5.0.0 - label: Thermometer Empty - search: - terms: - - cold - - mercury - - status - - temperature - styles: - - solid - - regular - - light - - duotone - unicode: f2cb - voted: false -thermometer-full: - changes: - - '4.7' - - 5.0.0 - label: Thermometer Full - search: - terms: - - fever - - hot - - mercury - - status - - temperature - styles: - - solid - - regular - - light - - duotone - unicode: f2c7 - voted: false -thermometer-half: - changes: - - '4.7' - - 5.0.0 - label: Thermometer 1/2 Full - search: - terms: - - mercury - - status - - temperature - styles: - - solid - - regular - - light - - duotone - unicode: f2c9 - voted: false -thermometer-quarter: - changes: - - '4.7' - - 5.0.0 - label: Thermometer 1/4 Full - search: - terms: - - mercury - - status - - temperature - styles: - - solid - - regular - - light - - duotone - unicode: f2ca - voted: false -thermometer-three-quarters: - changes: - - '4.7' - - 5.0.0 - label: Thermometer 3/4 Full - search: - terms: - - mercury - - status - - temperature - styles: - - solid - - regular - - light - - duotone - unicode: f2c8 - voted: false theta: changes: - 5.3.0 + - unreleased label: Theta search: terms: @@ -35605,6 +46036,7 @@ theta: - regular - light - duotone + - thin unicode: f69e voted: false think-peaks: @@ -35623,6 +46055,7 @@ thumbs-down: - '3.2' - 5.0.0 - 5.10.2 + - unreleased label: thumbs-down search: terms: @@ -35637,6 +46070,7 @@ thumbs-down: - regular - light - duotone + - thin unicode: f165 voted: false thumbs-up: @@ -35644,6 +46078,7 @@ thumbs-up: - '3.2' - 5.0.0 - 5.10.2 + - unreleased label: thumbs-up search: terms: @@ -35664,13 +46099,18 @@ thumbs-up: - regular - light - duotone + - thin unicode: f164 voted: false thumbtack: + aliases: + names: + - thumb-tack changes: - '1' - 5.0.0 - 5.10.2 + - unreleased label: Thumbtack search: terms: @@ -35684,76 +46124,54 @@ thumbtack: - regular - light - duotone + - thin unicode: f08d voted: false -thunderstorm: +ticket: changes: - - 5.5.0 - label: Thunderstorm + - '3.1' + - 5.0.0 + - 5.10.1 + - 5.10.2 + - unreleased + label: Ticket search: terms: - - bolt - - lightning - - precipitation - - rain - - storm - - weather + - movie + - pass + - support + - ticket styles: - solid - regular - light - duotone - unicode: f76c + - thin + unicode: f145 voted: false -thunderstorm-moon: +ticket-airline: changes: - - 5.5.0 - label: Thunderstorm with Moon + - unreleased + label: Ticket Airline search: - terms: - - bolt - - lightning - - lunar - - moon - - precipitation - - rain - - storm - - weather + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f76d - voted: false -thunderstorm-sun: - changes: - - 5.5.0 - label: Thunderstorm with Sun - search: - terms: - - bolt - - lightning - - precipitation - - rain - - solar - - storm - - sun - - weather - styles: - solid - regular - light - - duotone - unicode: f76e + - thin + unicode: auto voted: false -ticket: +ticket-simple: + aliases: + names: + - ticket-alt changes: - - '3.1' - 5.0.0 - - 5.10.1 - 5.10.2 - label: Ticket + - unreleased + label: Ticket simple search: terms: - movie @@ -35765,39 +46183,38 @@ ticket: - regular - light - duotone - unicode: f145 + - thin + unicode: f3ff voted: false -ticket-alt: +tickets-airline: changes: - - 5.0.0 - - 5.10.2 - label: Alternate Ticket + - unreleased + label: Tickets Airline search: - terms: - - movie - - pass - - support - - ticket + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f3ff + - thin + unicode: auto voted: false tiktok: changes: - 5.13.1 + - 5.14.0 label: TikTok search: terms: [] styles: - brands - unicode: f97b + unicode: e07b voted: true tilde: changes: - 5.3.0 + - unreleased label: Tilde search: terms: @@ -35810,172 +46227,28 @@ tilde: - regular - light - duotone + - thin unicode: f69f voted: false -times: +timer: changes: - - '1' - - 5.0.0 - - 5.0.13 - - 5.11.0 - - 5.11.1 - label: Times - search: - terms: - - close - - cross - - error - - exit - - incorrect - - notice - - notification - - notify - - problem - - wrong - - x - styles: - - solid - - regular - - light - - duotone - unicode: f00d - voted: false -times-circle: - changes: - - '1' - - 5.0.0 - label: Times Circle - search: - terms: - - close - - cross - - exit - - incorrect - - notice - - notification - - notify - - problem - - wrong - - x - styles: - - solid - - regular - - light - - duotone - unicode: f057 - voted: false -times-hexagon: - changes: - - 5.0.0 - - 5.11.0 - label: Times Hexagon + - unreleased + label: Timer search: - terms: - - close - - cross - - exit - - incorrect - - notice - - notification - - notify - - problem - - wrong - - x - styles: - - solid - - regular - - light - - duotone - unicode: f2ee - voted: false -times-octagon: - changes: - - 5.0.0 - label: Times Octagon - search: - terms: - - close - - cross - - exit - - incorrect - - notice - - notification - - notify - - problem - - wrong - - x - styles: - - solid - - regular - - light - - duotone - unicode: f2f0 - voted: false -times-square: - changes: - - '4.7' - - 5.0.0 - label: Times Square - search: - terms: - - close - - cross - - incorrect - - notice - - notification - - notify - - problem - - window - - wrong + terms: [] styles: - - solid - - regular - - light - duotone - unicode: f2d3 - voted: false -tint: - changes: - - '1' - - 5.0.0 - - 5.1.0 - label: tint - search: - terms: - - color - - drop - - droplet - - raindrop - - waterdrop - styles: - solid - regular - light - - duotone - unicode: f043 - voted: false -tint-slash: - changes: - - 5.1.0 - label: Tint Slash - search: - terms: - - color - - drop - - droplet - - raindrop - - waterdrop - styles: - - solid - - regular - - light - - duotone - unicode: f5c7 + - thin + unicode: auto voted: false tire: changes: - 5.2.0 - 5.10.2 + - unreleased label: Tire search: terms: @@ -35989,12 +46262,14 @@ tire: - regular - light - duotone + - thin unicode: f631 voted: false tire-flat: changes: - 5.2.0 - 5.10.2 + - unreleased label: Tire Flat search: terms: @@ -36008,11 +46283,13 @@ tire-flat: - regular - light - duotone + - thin unicode: f632 voted: false tire-pressure-warning: changes: - 5.2.0 + - unreleased label: Tire Pressure-warning search: terms: @@ -36028,12 +46305,14 @@ tire-pressure-warning: - regular - light - duotone + - thin unicode: f633 voted: false tire-rugged: changes: - 5.2.0 - 5.10.2 + - unreleased label: Tire Rugged search: terms: @@ -36048,32 +46327,14 @@ tire-rugged: - regular - light - duotone + - thin unicode: f634 voted: false -tired: - changes: - - 5.1.0 - - 5.11.0 - - 5.11.1 - label: Tired Face - search: - terms: - - angry - - emoticon - - face - - grumpy - - upset - styles: - - solid - - regular - - light - - duotone - unicode: f5c8 - voted: false toggle-off: changes: - '4.2' - 5.0.0 + - unreleased label: Toggle Off search: terms: @@ -36083,12 +46344,14 @@ toggle-off: - regular - light - duotone + - thin unicode: f204 voted: false toggle-on: changes: - '4.2' - 5.0.0 + - unreleased label: Toggle On search: terms: @@ -36098,11 +46361,13 @@ toggle-on: - regular - light - duotone + - thin unicode: f205 voted: false toilet: changes: - 5.6.0 + - unreleased label: Toilet search: terms: @@ -36125,12 +46390,14 @@ toilet: - regular - light - duotone + - thin unicode: f7d8 voted: true toilet-paper: changes: - 5.4.0 - 5.10.2 + - unreleased label: Toilet Paper search: terms: @@ -36147,13 +46414,18 @@ toilet-paper: - regular - light - duotone + - thin unicode: f71e voted: false -toilet-paper-alt: +toilet-paper-blank: + aliases: + names: + - toilet-paper-alt changes: - 5.4.0 - 5.10.2 - label: Alternate Toilet Paper + - unreleased + label: Toilet paper blank search: terms: - bathroom @@ -36168,11 +46440,31 @@ toilet-paper-alt: - regular - light - duotone + - thin unicode: f71f voted: false +toilet-paper-blank-under: + aliases: + names: + - toilet-paper-reverse-alt + changes: + - unreleased + label: Toilet paper blank under + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false toilet-paper-slash: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Toilet Paper Slash search: terms: @@ -36192,11 +46484,47 @@ toilet-paper-slash: - regular - solid - duotone - unicode: f972 + - thin + unicode: e072 + voted: false +toilet-paper-under: + aliases: + names: + - toilet-paper-reverse + changes: + - unreleased + label: Toilet paper under + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +toilet-paper-under-slash: + aliases: + names: + - toilet-paper-reverse-slash + changes: + - unreleased + label: Toilet paper under slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false tombstone: changes: - 5.4.0 + - unreleased label: Tombstone search: terms: @@ -36214,12 +46542,17 @@ tombstone: - regular - light - duotone + - thin unicode: f720 voted: false -tombstone-alt: +tombstone-blank: + aliases: + names: + - tombstone-alt changes: - 5.4.0 - label: Alternate Tombstone + - unreleased + label: Tombstone blank search: terms: - cemetery @@ -36236,11 +46569,13 @@ tombstone-alt: - regular - light - duotone + - thin unicode: f721 voted: false toolbox: changes: - 5.0.13 + - unreleased label: Toolbox search: terms: @@ -36255,32 +46590,13 @@ toolbox: - regular - light - duotone + - thin unicode: f552 voted: true -tools: - changes: - - 5.6.0 - - 5.10.2 - label: Tools - search: - terms: - - admin - - fix - - repair - - screwdriver - - settings - - tools - - wrench - styles: - - solid - - regular - - light - - duotone - unicode: f7d9 - voted: true tooth: changes: - 5.1.0 + - unreleased label: Tooth search: terms: @@ -36295,11 +46611,13 @@ tooth: - regular - light - duotone + - thin unicode: f5c9 voted: true toothbrush: changes: - 5.2.0 + - unreleased label: Toothbrush search: terms: @@ -36314,32 +46632,13 @@ toothbrush: - regular - light - duotone + - thin unicode: f635 voted: false -torah: - changes: - - 5.3.0 - - 5.7.0 - - 5.9.0 - - 5.10.2 - label: Torah - search: - terms: - - book - - jewish - - judaism - - religion - - scroll - styles: - - solid - - regular - - light - - duotone - unicode: f6a0 - voted: false torii-gate: changes: - 5.3.0 + - unreleased label: Torii Gate search: terms: @@ -36350,12 +46649,14 @@ torii-gate: - regular - light - duotone + - thin unicode: f6a1 voted: false tornado: changes: - 5.5.0 - 5.10.2 + - unreleased label: Tornado search: terms: @@ -36373,11 +46674,50 @@ tornado: - regular - light - duotone + - thin unicode: f76f voted: false +tower-broadcast: + aliases: + names: + - broadcast-tower + changes: + - 5.0.13 + - unreleased + label: Tower broadcast + search: + terms: + - airwaves + - antenna + - radio + - reception + - waves + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f519 + voted: true +tower-control: + changes: + - unreleased + label: Tower Control + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false tractor: changes: - 5.4.0 + - unreleased label: Tractor search: terms: @@ -36389,6 +46729,7 @@ tractor: - regular - light - duotone + - thin unicode: f722 voted: false trade-federation: @@ -36405,6 +46746,7 @@ trademark: changes: - '4.4' - 5.0.0 + - unreleased label: Trademark search: terms: @@ -36416,11 +46758,13 @@ trademark: - regular - light - duotone + - thin unicode: f25c voted: false traffic-cone: changes: - 5.2.0 + - unreleased label: Traffic Cone search: terms: @@ -36432,11 +46776,13 @@ traffic-cone: - regular - light - duotone + - thin unicode: f636 voted: false traffic-light: changes: - 5.2.0 + - unreleased label: Traffic Light search: terms: @@ -36449,11 +46795,13 @@ traffic-light: - regular - light - duotone + - thin unicode: f637 voted: false traffic-light-go: changes: - 5.2.0 + - unreleased label: Traffic Light-go search: terms: @@ -36467,11 +46815,13 @@ traffic-light-go: - regular - light - duotone + - thin unicode: f638 voted: false traffic-light-slow: changes: - 5.2.0 + - unreleased label: Traffic Light-slow search: terms: @@ -36485,11 +46835,13 @@ traffic-light-slow: - regular - light - duotone + - thin unicode: f639 voted: false traffic-light-stop: changes: - 5.2.0 + - unreleased label: Traffic Light-stop search: terms: @@ -36503,11 +46855,14 @@ traffic-light-stop: - regular - light - duotone + - thin unicode: f63a voted: false trailer: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Trailer search: terms: @@ -36520,12 +46875,14 @@ trailer: - regular - light - duotone - unicode: f941 + - thin + unicode: e041 voted: true train: changes: - '4.3' - 5.0.0 + - unreleased label: Train search: terms: @@ -36539,12 +46896,58 @@ train: - regular - light - duotone + - thin unicode: f238 voted: false -tram: +train-subway: + aliases: + names: + - subway + changes: + - '4.3' + - 5.0.0 + - unreleased + label: Train subway + search: + terms: + - machine + - railway + - train + - transportation + - vehicle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f239 + voted: false +train-subway-tunnel: + aliases: + names: + - subway-tunnel + changes: + - unreleased + label: Train subway tunnel + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +train-tram: + aliases: + names: + - tram changes: - 5.6.0 - label: Tram + - unreleased + label: Train tram search: terms: - crossing @@ -36557,11 +46960,13 @@ tram: - regular - light - duotone + - thin unicode: f7da transgender: changes: - '4.3' - 5.0.0 + - unreleased label: Transgender search: terms: @@ -36571,6 +46976,7 @@ transgender: - regular - light - duotone + - thin unicode: f224 voted: false transgender-alt: @@ -36578,6 +46984,7 @@ transgender-alt: - '4.3' - 5.0.0 - 5.11.0 + - unreleased label: Alternate Transgender search: terms: @@ -36587,11 +46994,14 @@ transgender-alt: - regular - light - duotone + - thin unicode: f225 voted: false transporter: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Transporter search: terms: @@ -36605,11 +47015,14 @@ transporter: - regular - light - duotone - unicode: f942 + - thin + unicode: e042 voted: false transporter-1: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Transporter 1 search: terms: @@ -36623,11 +47036,14 @@ transporter-1: - regular - light - duotone - unicode: f943 + - thin + unicode: e043 voted: false transporter-2: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Transporter 2 search: terms: @@ -36641,11 +47057,14 @@ transporter-2: - regular - light - duotone - unicode: f944 + - thin + unicode: e044 voted: false transporter-3: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Transporter 3 search: terms: @@ -36659,11 +47078,70 @@ transporter-3: - regular - light - duotone - unicode: f945 + - thin + unicode: e045 + voted: false +transporter-4: + changes: + - unreleased + label: Transporter 4 + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +transporter-5: + changes: + - unreleased + label: Transporter 5 + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +transporter-6: + changes: + - unreleased + label: Transporter 6 + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +transporter-7: + changes: + - unreleased + label: Transporter 7 + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto voted: false transporter-empty: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Transporter Empty search: terms: @@ -36678,7 +47156,8 @@ transporter-empty: - regular - light - duotone - unicode: f946 + - thin + unicode: e046 voted: false trash: changes: @@ -36686,6 +47165,7 @@ trash: - 5.0.0 - 5.7.0 - 5.10.2 + - unreleased label: Trash search: terms: @@ -36698,14 +47178,42 @@ trash: - regular - light - duotone + - thin unicode: f1f8 voted: false -trash-alt: +trash-arrow-up: + aliases: + names: + - trash-restore + changes: + - 5.7.0 + - 5.10.2 + - unreleased + label: Trash arrow up + search: + terms: + - back + - control z + - oops + - undo + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f829 + voted: true +trash-can: + aliases: + names: + - trash-alt changes: - 5.0.0 - 5.7.0 - 5.10.2 - label: Alternate Trash + - unreleased + label: Trash can search: terms: - delete @@ -36718,13 +47226,18 @@ trash-alt: - regular - light - duotone + - thin unicode: f2ed voted: false -trash-restore: +trash-can-arrow-up: + aliases: + names: + - trash-restore-alt changes: - 5.7.0 - 5.10.2 - label: Trash Restore + - unreleased + label: Trash can arrow up search: terms: - back @@ -36736,31 +47249,36 @@ trash-restore: - regular - light - duotone - unicode: f829 + - thin + unicode: f82a voted: true -trash-restore-alt: +trash-can-slash: + aliases: + names: + - trash-alt-slash changes: - - 5.7.0 - - 5.10.2 - label: Alternative Trash Restore + - unreleased + label: Trash can slash search: - terms: - - back - - control z - - oops - - undo + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f82a - voted: true -trash-undo: + - thin + unicode: auto + voted: false +trash-can-undo: + aliases: + names: + - trash-can-arrow-turn-left + - trash-undo-alt changes: - 5.9.0 - 5.10.2 - label: Trash Undo + - unreleased + label: Trash can undo search: terms: - back @@ -36772,13 +47290,32 @@ trash-undo: - regular - light - duotone - unicode: f895 - voted: true -trash-undo-alt: + - thin + unicode: f896 + voted: false +trash-slash: + changes: + - unreleased + label: Trash Slash + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +trash-undo: + aliases: + names: + - trash-arrow-turn-left changes: - 5.9.0 - 5.10.2 - label: Alternate Trash Undo + - unreleased + label: Trash Undo search: terms: - back @@ -36790,11 +47327,13 @@ trash-undo-alt: - regular - light - duotone - unicode: f896 - voted: false + - thin + unicode: f895 + voted: true treasure-chest: changes: - 5.4.0 + - unreleased label: Treasure Chest search: terms: @@ -36813,12 +47352,14 @@ treasure-chest: - regular - light - duotone + - thin unicode: f723 voted: false tree: changes: - '4.1' - 5.0.0 + - unreleased label: Tree search: terms: @@ -36834,31 +47375,13 @@ tree: - regular - light - duotone + - thin unicode: f1bb voted: false -tree-alt: - changes: - - 5.0.0 - label: Alternate Tree - search: - terms: - - bark - - fall - - flora - - forest - - nature - - plant - - seasonal - styles: - - solid - - regular - - light - - duotone - unicode: f400 - voted: false tree-christmas: changes: - 5.6.0 + - unreleased label: Christmas Tree search: terms: @@ -36876,10 +47399,37 @@ tree-christmas: - regular - light - duotone + - thin unicode: f7db +tree-deciduous: + aliases: + names: + - tree-alt + changes: + - 5.0.0 + - unreleased + label: Tree deciduous + search: + terms: + - bark + - fall + - flora + - forest + - nature + - plant + - seasonal + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f400 + voted: false tree-decorated: changes: - 5.6.0 + - unreleased label: Tree Decorated search: terms: @@ -36895,11 +47445,13 @@ tree-decorated: - regular - light - duotone + - thin unicode: f7dc tree-large: changes: - 5.6.0 - 5.10.2 + - unreleased label: Tree Large search: terms: @@ -36915,12 +47467,14 @@ tree-large: - regular - light - duotone + - thin unicode: f7dd tree-palm: changes: - 5.7.0 - 5.11.0 - 5.11.1 + - unreleased label: Palm Tree search: terms: @@ -36932,11 +47486,13 @@ tree-palm: - regular - light - duotone + - thin unicode: f82b voted: false trees: changes: - 5.4.0 + - unreleased label: Trees search: terms: @@ -36952,6 +47508,7 @@ trees: - regular - light - duotone + - thin unicode: f724 voted: false trello: @@ -36971,6 +47528,7 @@ triangle: changes: - 5.0.0 - 5.10.2 + - unreleased label: Triangle search: terms: @@ -36981,12 +47539,47 @@ triangle: - regular - light - duotone + - thin unicode: f2ec voted: false -triangle-music: +triangle-exclamation: + aliases: + names: + - exclamation-triangle + - warning + changes: + - '1' + - 5.0.0 + - 5.6.1 + - unreleased + label: Triangle exclamation + search: + terms: + - alert + - danger + - error + - important + - notice + - notification + - notify + - problem + - warning + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f071 + voted: false +triangle-instrument: + aliases: + names: + - triangle-music changes: - 5.11.0 - label: Musical Triangle + - unreleased + label: Triangle instrument search: terms: - ding @@ -36999,13 +47592,37 @@ triangle-music: - regular - light - duotone + - thin unicode: f8e2 voted: false +triangle-person-digging: + aliases: + names: + - construction + changes: + - 5.9.0 + - unreleased + label: Triangle person digging + search: + terms: + - building + - digging + - project + - structure + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f85d + voted: true tripadvisor: changes: - '4.4' - 5.0.0 - 5.13.1 + - 5.14.0 label: TripAdvisor search: terms: [] @@ -37018,6 +47635,7 @@ trophy: - '1' - 5.0.0 - 5.11.0 + - unreleased label: trophy search: terms: @@ -37031,13 +47649,18 @@ trophy: - regular - light - duotone + - thin unicode: f091 voted: false -trophy-alt: +trophy-star: + aliases: + names: + - trophy-alt changes: - 5.0.0 - 5.11.0 - label: Alternate Trophy + - unreleased + label: Trophy star search: terms: - achievement @@ -37051,6 +47674,7 @@ trophy-alt: - regular - light - duotone + - thin unicode: f2eb voted: false truck: @@ -37058,6 +47682,7 @@ truck: - '2' - 5.0.0 - 5.0.7 + - unreleased label: truck search: terms: @@ -37070,11 +47695,37 @@ truck: - regular - light - duotone + - thin unicode: f0d1 voted: false +truck-clock: + aliases: + names: + - shipping-timed + changes: + - 5.0.7 + - unreleased + label: Truck clock + search: + terms: + - express + - fedex + - mail + - overnight + - package + - ups + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f48c + voted: false truck-container: changes: - 5.0.9 + - unreleased label: Truck Container search: terms: @@ -37087,50 +47738,79 @@ truck-container: - regular - light - duotone + - thin unicode: f4dc voted: false -truck-couch: +truck-fast: + aliases: + names: + - shipping-fast changes: - - 5.0.9 - label: Truck Couch + - 5.0.7 + - unreleased + label: Truck fast search: terms: - - cargo - - delivery - - moving - - rental - - shipping - - vehicle + - express + - fedex + - mail + - overnight + - package + - ups styles: - solid - regular - light - duotone - unicode: f4dd + - thin + unicode: f48b voted: false -truck-loading: +truck-front: changes: - - 5.0.9 - label: Truck Loading + - unreleased + label: Truck Front + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +truck-medical: + aliases: + names: + - ambulance + changes: + - '3' + - 5.0.0 + - 5.0.7 + - unreleased + label: Truck medical search: terms: - - box - - cargo - - delivery - - inventory - - moving - - rental + - covid-19 + - emergency + - emt + - er + - help + - hospital + - support - vehicle styles: - solid - regular - light - duotone - unicode: f4de + - thin + unicode: f0f9 voted: false truck-monster: changes: - 5.2.0 + - unreleased label: Truck Monster search: terms: @@ -37142,11 +47822,13 @@ truck-monster: - regular - light - duotone + - thin unicode: f63b voted: false truck-moving: changes: - 5.0.9 + - unreleased label: Truck Moving search: terms: @@ -37159,11 +47841,13 @@ truck-moving: - regular - light - duotone + - thin unicode: f4df voted: false truck-pickup: changes: - 5.2.0 + - unreleased label: Truck Side search: terms: @@ -37174,11 +47858,13 @@ truck-pickup: - regular - light - duotone + - thin unicode: f63c voted: false truck-plow: changes: - 5.6.0 + - unreleased label: Truck Plow search: terms: @@ -37192,10 +47878,12 @@ truck-plow: - regular - light - duotone + - thin unicode: f7de truck-ramp: changes: - 5.0.9 + - unreleased label: Truck Ramp search: terms: @@ -37211,11 +47899,62 @@ truck-ramp: - regular - light - duotone + - thin unicode: f4e0 voted: false +truck-ramp-box: + aliases: + names: + - truck-loading + changes: + - 5.0.9 + - unreleased + label: Truck ramp box + search: + terms: + - box + - cargo + - delivery + - inventory + - moving + - rental + - vehicle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4de + voted: false +truck-ramp-couch: + aliases: + names: + - truck-couch + changes: + - 5.0.9 + - unreleased + label: Truck ramp couch + search: + terms: + - cargo + - delivery + - moving + - rental + - shipping + - vehicle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4dd + voted: false trumpet: changes: - 5.11.0 + - unreleased label: Trumpet search: terms: @@ -37232,12 +47971,14 @@ trumpet: - regular - light - duotone + - thin unicode: f8e3 voted: false tshirt: changes: - 5.0.13 - 5.10.2 + - unreleased label: T-Shirt search: terms: @@ -37250,13 +47991,18 @@ tshirt: - regular - light - duotone + - thin unicode: f553 voted: true tty: + aliases: + names: + - teletype changes: - '4.2' - 5.0.0 - 5.7.0 + - unreleased label: TTY search: terms: @@ -37270,8 +48016,40 @@ tty: - regular - light - duotone + - thin unicode: f1e4 voted: false +tty-answer: + aliases: + names: + - teletype-answer + changes: + - unreleased + label: Tty Answer + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +tugrik-sign: + changes: + - unreleased + label: Tugrik Sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false tumblr: changes: - '3.2' @@ -37298,6 +48076,7 @@ turkey: changes: - 5.4.0 - 5.7.0 + - unreleased label: Turkey search: terms: @@ -37313,11 +48092,71 @@ turkey: - regular - light - duotone + - thin unicode: f725 voted: false +turkish-lira-sign: + aliases: + names: + - try + - turkish-lira + changes: + - unreleased + label: Turkish Lira-sign + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +turn-down: + aliases: + names: + - level-down-alt + changes: + - 5.0.0 + - unreleased + label: Turn down + search: + terms: + - arrow + - level-down + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3be + voted: false +turn-up: + aliases: + names: + - level-up-alt + changes: + - 5.0.0 + - unreleased + label: Turn up + search: + terms: + - arrow + - level-up + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f3bf + voted: false turntable: changes: - 5.11.0 + - unreleased label: Turntable search: terms: @@ -37332,11 +48171,13 @@ turntable: - regular - light - duotone + - thin unicode: f8e4 voted: false turtle: changes: - 5.4.0 + - unreleased label: Turtle search: terms: @@ -37354,13 +48195,21 @@ turtle: - regular - light - duotone + - thin unicode: f726 voted: true tv: + aliases: + names: + - tv-alt + - television + unicodes: + - f8e5 changes: - '4.4' - 5.0.0 - 5.11.0 + - unreleased label: Television search: terms: @@ -37373,28 +48222,13 @@ tv: - regular - light - duotone + - thin unicode: f26c voted: false -tv-alt: - changes: - - 5.11.0 - label: Alternate Television - search: - terms: - - computer - - display - - monitor - - television - styles: - - solid - - regular - - light - - duotone - unicode: f8e5 - voted: false tv-music: changes: - 5.11.0 + - unreleased label: TV Music search: terms: @@ -37410,11 +48244,13 @@ tv-music: - regular - light - duotone + - thin unicode: f8e6 voted: false tv-retro: changes: - 5.0.0 + - unreleased label: Retro Televison search: terms: @@ -37427,6 +48263,7 @@ tv-retro: - regular - light - duotone + - thin unicode: f401 voted: true twitch: @@ -37470,6 +48307,7 @@ twitter-square: typewriter: changes: - 5.11.0 + - unreleased label: Typewriter search: terms: @@ -37486,6 +48324,7 @@ typewriter: - regular - light - duotone + - thin unicode: f8e7 voted: false typo3: @@ -37499,6 +48338,20 @@ typo3: - brands unicode: f42b voted: false +u: + changes: + - unreleased + label: U + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false uber: changes: - 5.0.0 @@ -37525,6 +48378,8 @@ ubuntu: ufo: changes: - 5.12.0 + - 5.14.0 + - unreleased label: U.F.O. search: terms: @@ -37542,11 +48397,14 @@ ufo: - regular - light - duotone - unicode: f947 + - thin + unicode: e047 voted: false ufo-beam: changes: - 5.12.0 + - 5.14.0 + - unreleased label: U.F.O. with Beam search: terms: @@ -37566,7 +48424,8 @@ ufo-beam: - regular - light - duotone - unicode: f948 + - thin + unicode: e048 voted: false uikit: changes: @@ -37591,6 +48450,7 @@ umbrella: changes: - '2' - 5.0.0 + - unreleased label: Umbrella search: terms: @@ -37603,11 +48463,13 @@ umbrella: - regular - light - duotone + - thin unicode: f0e9 voted: false umbrella-beach: changes: - 5.1.0 + - unreleased label: Umbrella Beach search: terms: @@ -37622,71 +48484,61 @@ umbrella-beach: - regular - light - duotone + - thin unicode: f5ca voted: false -underline: +umbrella-simple: + aliases: + names: + - umbrella-alt changes: - - '2' - - 5.0.0 - - 5.9.0 - label: Underline + - unreleased + label: Umbrella simple search: - terms: - - edit - - emphasis - - format - - text - - writing + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f0cd + - thin + unicode: auto voted: false -undo: +uncharted: changes: - - '2' - - 5.0.0 - label: Undo + - 5.15.0 + label: Uncharted Software search: - terms: - - back - - control z - - exchange - - oops - - return - - rotate - - swap + terms: [] styles: - - solid - - regular - - light - - duotone - unicode: f0e2 - voted: false -undo-alt: + - brands + unicode: e084 +underline: changes: + - '2' - 5.0.0 - label: Alternate Undo + - 5.9.0 + - unreleased + label: Underline search: terms: - - back - - control z - - exchange - - oops - - return - - swap + - edit + - emphasis + - format + - text + - writing styles: - solid - regular - light - duotone - unicode: f2ea + - thin + unicode: f0cd voted: false unicorn: changes: - 5.4.0 + - unreleased label: Unicorn search: terms: @@ -37699,11 +48551,13 @@ unicorn: - regular - light - duotone + - thin unicode: f727 voted: true union: changes: - 5.3.0 + - unreleased label: Union search: terms: @@ -37716,6 +48570,7 @@ union: - regular - light - duotone + - thin unicode: f6a2 voted: false uniregistry: @@ -37731,18 +48586,20 @@ uniregistry: unity: changes: - 5.12.0 + - 5.14.0 label: Unity 3D search: terms: [] styles: - brands - unicode: f949 + unicode: e049 voted: true universal-access: changes: - '4.6' - 5.0.0 - 5.10.2 + - unreleased label: Universal Access search: terms: @@ -37756,52 +48613,14 @@ universal-access: - regular - light - duotone + - thin unicode: f29a voted: false -university: - changes: - - '4.1' - - 5.0.0 - - 5.0.3 - - 5.11.0 - - 5.11.1 - label: University - search: - terms: - - bank - - building - - college - - higher education - students - - institution - styles: - - solid - - regular - - light - - duotone - unicode: f19c - voted: false -unlink: - changes: - - '3.1' - - 5.0.0 - label: unlink - search: - terms: - - attachment - - chain - - chain-broken - - remove - styles: - - solid - - regular - - light - - duotone - unicode: f127 - voted: false unlock: changes: - '2' - 5.0.0 + - unreleased label: unlock search: terms: @@ -37815,13 +48634,18 @@ unlock: - regular - light - duotone + - thin unicode: f09c voted: false -unlock-alt: +unlock-keyhole: + aliases: + names: + - unlock-alt changes: - '3.1' - 5.0.0 - label: Alternate Unlock + - unreleased + label: Unlock keyhole search: terms: - admin @@ -37834,17 +48658,19 @@ unlock-alt: - regular - light - duotone + - thin unicode: f13e voted: false unsplash: changes: - 5.13.1 + - 5.14.0 label: Unsplash search: terms: [] styles: - brands - unicode: f97c + unicode: e07c voted: false untappd: changes: @@ -37856,10 +48682,194 @@ untappd: - brands unicode: f405 voted: false +up: + aliases: + names: + - arrow-alt-up + changes: + - 5.0.0 + - 5.10.1 + - 5.11.0 + - 5.11.1 + - unreleased + label: Up + search: + terms: + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f357 + voted: false +up-down: + aliases: + names: + - arrows-alt-v + changes: + - 5.0.0 + - 5.11.0 + - unreleased + label: Up down + search: + terms: + - arrows-v + - expand + - portrait + - resize + - tall + - vertical + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f338 + voted: false +up-down-left-right: + aliases: + names: + - arrows-alt + changes: + - '2' + - 5.0.0 + - unreleased + label: Up down left right + search: + terms: + - arrow + - arrows + - bigger + - enlarge + - expand + - fullscreen + - move + - position + - reorder + - resize + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0b2 + voted: false +up-from-line: + aliases: + names: + - arrow-alt-from-bottom + changes: + - 5.0.0 + - unreleased + label: Up from line + search: + terms: + - download + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f346 + voted: false +up-long: + aliases: + names: + - long-arrow-alt-up + changes: + - 5.0.0 + - unreleased + label: Up long + search: + terms: + - long-arrow-up + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f30c + voted: false +up-right-and-down-left-from-center: + aliases: + names: + - expand-alt + changes: + - '1' + - 5.0.0 + - 5.12.0 + - unreleased + label: Up right and down left from center + search: + terms: + - arrows + - bigger + - enlarge + - fullscreen + - resize + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f424 + voted: false +up-right-from-square: + aliases: + names: + - external-link-alt + changes: + - 5.0.0 + - 5.11.0 + - unreleased + label: Up right from square + search: + terms: + - external-link + - new + - open + - share + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f35d + voted: false +up-to-line: + aliases: + names: + - arrow-alt-to-top + changes: + - 5.0.0 + - 5.10.1 + - unreleased + label: Up to line + search: + terms: + - upload + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f34d + voted: false upload: changes: - '1' - 5.0.0 + - unreleased label: Upload search: terms: @@ -37871,6 +48881,7 @@ upload: - regular - light - duotone + - thin unicode: f093 voted: false ups: @@ -37900,6 +48911,7 @@ usb: usb-drive: changes: - 5.11.0 + - unreleased label: USB Drive search: terms: @@ -37915,55 +48927,16 @@ usb-drive: - regular - light - duotone + - thin unicode: f8e9 voted: false -usd-circle: - changes: - - 5.0.0 - - 5.0.9 - - 5.11.0 - - 5.11.1 - label: US Dollar Circle - search: - terms: - - $ - - currency - - dollar-sign - - money - - price - - usd - styles: - - solid - - regular - - light - - duotone - unicode: f2e8 - voted: false -usd-square: - changes: - - 5.0.0 - - 5.0.9 - label: US Dollar Square - search: - terms: - - $ - - dollar-sign - - money - - price - - usd - styles: - - solid - - regular - - light - - duotone - unicode: f2e9 - voted: false user: changes: - '1' - 5.0.0 - 5.0.3 - 5.0.11 + - unreleased label: User search: terms: @@ -37979,11 +48952,14 @@ user: - regular - light - duotone + - thin unicode: f007 voted: false user-alien: changes: - 5.12.0 + - 5.14.0 + - unreleased label: User Alien search: terms: @@ -37999,53 +48975,13 @@ user-alien: - regular - light - duotone - unicode: f94a - voted: false -user-alt: - changes: - - 5.0.0 - - 5.0.3 - - 5.0.11 - label: Alternate User - search: - terms: - - account - - avatar - - head - - human - - man - - person - - profile - styles: - - solid - - regular - - light - - duotone - unicode: f406 - voted: false -user-alt-slash: - changes: - - 5.0.11 - label: Alternate User Slash - search: - terms: - - account - - avatar - - head - - human - - man - - person - - profile - styles: - - solid - - regular - - light - - duotone - unicode: f4fa + - thin + unicode: e04a voted: false user-astronaut: changes: - 5.0.11 + - unreleased label: User Astronaut search: terms: @@ -38060,28 +48996,13 @@ user-astronaut: - regular - light - duotone + - thin unicode: f4fb voted: false -user-chart: - changes: - - 5.3.0 - label: User Chart - search: - terms: - - chart - - person - - presentation - - teacher - styles: - - solid - - regular - - light - - duotone - unicode: f6a3 - voted: false user-check: changes: - 5.0.11 + - unreleased label: User Check search: terms: @@ -38094,36 +49015,13 @@ user-check: - regular - light - duotone + - thin unicode: f4fc voted: false -user-circle: - changes: - - '4.7' - - 5.0.0 - - 5.0.3 - - 5.0.11 - - 5.11.0 - - 5.11.1 - label: User Circle - search: - terms: - - account - - avatar - - head - - human - - man - - person - - profile - styles: - - solid - - regular - - light - - duotone - unicode: f2bd - voted: false user-clock: changes: - 5.0.11 + - unreleased label: User Clock search: terms: @@ -38136,28 +49034,13 @@ user-clock: - regular - light - duotone + - thin unicode: f4fd voted: false -user-cog: - changes: - - 5.0.11 - label: User Cog - search: - terms: - - admin - - cog - - person - - settings - styles: - - solid - - regular - - light - - duotone - unicode: f4fe - voted: false user-cowboy: changes: - 5.11.0 + - unreleased label: User Cowboy search: terms: @@ -38180,11 +49063,13 @@ user-cowboy: - regular - solid - duotone + - thin unicode: f8ea voted: false user-crown: changes: - 5.3.0 + - unreleased label: User Crown search: terms: @@ -38197,48 +49082,88 @@ user-crown: - regular - light - duotone + - thin unicode: f6a4 voted: false -user-edit: +user-doctor: + aliases: + names: + - user-md changes: + - '2' + - 5.0.0 + - 5.0.3 + - 5.0.7 - 5.0.11 - label: User Edit + - unreleased + label: User doctor search: terms: - - edit - - pen - - pencil - - person - - update - - write + - covid-19 + - job + - medical + - nurse + - occupation + - physician + - profile + - surgeon styles: - solid - regular - light - duotone - unicode: f4ff + - thin + unicode: f0f0 voted: false -user-friends: +user-doctor-message: + aliases: + names: + - user-md-chat + changes: + - 5.7.0 + - unreleased + label: User doctor message + search: + terms: + - advice + - comment + - diagnosis + - opinion + - prescription + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f82e + voted: false +user-gear: + aliases: + names: + - user-cog changes: - 5.0.11 - label: User Friends + - unreleased + label: User gear search: terms: - - group - - people + - admin + - cog - person - - team - - users + - settings styles: - solid - regular - light - duotone - unicode: f500 + - thin + unicode: f4fe voted: false user-graduate: changes: - 5.0.11 + - unreleased label: User Graduate search: terms: @@ -38254,28 +49179,60 @@ user-graduate: - regular - light - duotone + - thin unicode: f501 voted: false -user-hard-hat: +user-group: + aliases: + names: + - user-friends changes: - - 5.7.0 - label: Construction Worker + - 5.0.11 + - unreleased + label: User group search: terms: - - construction - - hardhat - - helmet - - safety + - group + - people + - person + - team + - users styles: - solid - regular - light - duotone - unicode: f82c + - thin + unicode: f500 + voted: false +user-group-crown: + aliases: + names: + - users-crown + changes: + - 5.3.0 + - unreleased + label: User group crown + search: + terms: + - admin + - avatar + - group + - person + - special + - team + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6a5 voted: false user-headset: changes: - 5.7.0 + - unreleased label: User Headset search: terms: @@ -38291,11 +49248,36 @@ user-headset: - regular - light - duotone + - thin unicode: f82d voted: true +user-helmet-safety: + aliases: + names: + - user-construction + - user-hard-hat + changes: + - 5.7.0 + - unreleased + label: User helmet safety + search: + terms: + - construction + - hardhat + - helmet + - safety + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f82c + voted: false user-injured: changes: - 5.4.0 + - unreleased label: User Injured search: terms: @@ -38310,73 +49292,86 @@ user-injured: - regular - light - duotone + - thin unicode: f728 voted: false -user-lock: +user-large: + aliases: + names: + - user-alt changes: + - 5.0.0 + - 5.0.3 - 5.0.11 - - 5.9.0 - label: User Lock + - unreleased + label: User large search: terms: - - admin - - lock + - account + - avatar + - head + - human + - man - person - - private - - unlock + - profile styles: - solid - regular - light - duotone - unicode: f502 + - thin + unicode: f406 voted: false -user-md: +user-large-slash: + aliases: + names: + - user-alt-slash changes: - - '2' - - 5.0.0 - - 5.0.3 - - 5.0.7 - 5.0.11 - label: Doctor + - unreleased + label: User large slash search: terms: - - covid-19 - - job - - medical - - nurse - - occupation - - physician + - account + - avatar + - head + - human + - man + - person - profile - - surgeon styles: - solid - regular - light - duotone - unicode: f0f0 + - thin + unicode: f4fa voted: false -user-md-chat: +user-lock: changes: - - 5.7.0 - label: Chat with Doctor + - 5.0.11 + - 5.9.0 + - unreleased + label: User Lock search: terms: - - advice - - comment - - diagnosis - - opinion - - prescription + - admin + - lock + - person + - private + - unlock styles: - solid - regular - light - duotone - unicode: f82e + - thin + unicode: f502 voted: false user-minus: changes: - 5.0.11 + - unreleased label: User Minus search: terms: @@ -38388,11 +49383,13 @@ user-minus: - regular - light - duotone + - thin unicode: f503 voted: false user-music: changes: - 5.11.0 + - unreleased label: User Music search: terms: @@ -38405,11 +49402,13 @@ user-music: - regular - light - duotone + - thin unicode: f8eb voted: false user-ninja: changes: - 5.0.11 + - unreleased label: User Ninja search: terms: @@ -38423,12 +49422,14 @@ user-ninja: - regular - light - duotone + - thin unicode: f504 voted: false user-nurse: changes: - 5.7.0 - 5.12.0 + - unreleased label: Nurse search: terms: @@ -38442,14 +49443,82 @@ user-nurse: - regular - light - duotone + - thin unicode: f82f voted: false +user-pen: + aliases: + names: + - user-edit + changes: + - 5.0.11 + - unreleased + label: User pen + search: + terms: + - edit + - pen + - pencil + - person + - update + - write + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4ff + voted: false +user-pilot: + changes: + - unreleased + label: User Pilot + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +user-pilot-tie: + changes: + - unreleased + label: User Pilot-tie + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +user-pinball: + changes: + - unreleased + label: User Pinball + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false user-plus: changes: - '4.3' - 5.0.0 - 5.0.3 - 5.0.11 + - unreleased label: User Plus search: terms: @@ -38464,11 +49533,14 @@ user-plus: - regular - light - duotone + - thin unicode: f234 voted: false user-robot: changes: - 5.12.0 + - 5.14.0 + - unreleased label: User Robot search: terms: @@ -38482,7 +49554,8 @@ user-robot: - regular - light - duotone - unicode: f94b + - thin + unicode: e04b voted: false user-secret: changes: @@ -38490,6 +49563,7 @@ user-secret: - 5.0.0 - 5.0.3 - 5.0.11 + - unreleased label: User Secret search: terms: @@ -38506,11 +49580,13 @@ user-secret: - regular - light - duotone + - thin unicode: f21b voted: false user-shield: changes: - 5.0.11 + - unreleased label: User Shield search: terms: @@ -38524,11 +49600,13 @@ user-shield: - regular - light - duotone + - thin unicode: f505 voted: false user-slash: changes: - 5.0.11 + - unreleased label: User Slash search: terms: @@ -38540,11 +49618,13 @@ user-slash: - regular - light - duotone + - thin unicode: f506 voted: false user-tag: changes: - 5.0.11 + - unreleased label: User Tag search: terms: @@ -38559,11 +49639,13 @@ user-tag: - regular - light - duotone + - thin unicode: f507 voted: false user-tie: changes: - 5.0.11 + - unreleased label: User Tie search: terms: @@ -38578,31 +49660,14 @@ user-tie: - regular - light - duotone + - thin unicode: f508 voted: false -user-times: - changes: - - '4.3' - - 5.0.0 - - 5.0.3 - - 5.0.11 - label: Remove User - search: - terms: - - archive - - delete - - remove - - x - styles: - - solid - - regular - - light - - duotone - unicode: f235 - voted: false user-unlock: changes: - 5.12.1 + - 5.14.0 + - unreleased label: User Unlock search: terms: @@ -38616,11 +49681,14 @@ user-unlock: - regular - solid - duotone - unicode: f958 + - thin + unicode: e058 voted: false user-visor: changes: - 5.12.0 + - 5.14.0 + - unreleased label: User Visor search: terms: @@ -38631,53 +49699,69 @@ user-visor: - regular - light - duotone - unicode: f94c + - thin + unicode: e04c voted: false -users: +user-xmark: + aliases: + names: + - user-times changes: - - '2' + - '4.3' - 5.0.0 - 5.0.3 - 5.0.11 - label: Users + - unreleased + label: User xmark search: terms: - - friends - - group - - people - - persons - - profiles - - team + - archive + - delete + - remove + - x styles: - solid - regular - light - duotone - unicode: f0c0 + - thin + unicode: f235 voted: false -users-class: +users: + aliases: + names: + - group changes: - - 5.2.0 - label: Users Class + - '2' + - 5.0.0 + - 5.0.3 + - 5.0.11 + - unreleased + label: Users search: terms: - - chalkboard + - friends - group - - presentation - - students - - teachers + - people + - persons + - profiles - team styles: - solid - regular - light - duotone - unicode: f63d + - thin + unicode: f0c0 voted: false -users-cog: +users-gear: + aliases: + names: + - users-cog changes: - 5.0.11 - label: Users Cog + - unreleased + label: Users gear search: terms: - admin @@ -38691,30 +49775,13 @@ users-cog: - regular - light - duotone + - thin unicode: f509 voted: false -users-crown: - changes: - - 5.3.0 - label: Users Crown - search: - terms: - - admin - - avatar - - group - - person - - special - - team - styles: - - solid - - regular - - light - - duotone - unicode: f6a5 - voted: false users-medical: changes: - 5.7.0 + - unreleased label: Users with Medical Symbol search: terms: @@ -38727,11 +49794,14 @@ users-medical: - regular - light - duotone + - thin unicode: f830 voted: false users-slash: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Users Slash search: terms: @@ -38749,7 +49819,8 @@ users-slash: - regular - solid - duotone - unicode: f973 + - thin + unicode: e073 voted: false usps: changes: @@ -38775,66 +49846,13 @@ ussunnah: - brands unicode: f407 voted: false -utensil-fork: - changes: - - 5.0.0 - - 5.10.2 - label: Utensil Fork - search: - terms: - - cutlery - - dining - - food - - fork - - silverware - styles: - - solid - - regular - - light - - duotone - unicode: f2e3 - voted: false -utensil-knife: - changes: - - 5.0.0 - - 5.10.2 - label: Utensil Knife - search: - terms: - - cut - - cutlery - - dining - - silverware - - tool - styles: - - solid - - regular - - light - - duotone - unicode: f2e4 - voted: false -utensil-spoon: - changes: - - 5.0.0 - - 5.10.2 - label: Utensil Spoon - search: - terms: - - cutlery - - dining - - scoop - - silverware - - spoon - styles: - - solid - - regular - - light - - duotone - unicode: f2e5 - voted: false utensils: + aliases: + names: + - cutlery changes: - 5.0.0 + - unreleased label: Utensils search: terms: @@ -38851,28 +49869,22 @@ utensils: - regular - light - duotone + - thin unicode: f2e7 voted: false -utensils-alt: +v: changes: - - 5.0.0 - label: Alternate Utensils + - unreleased + label: V search: - terms: - - cutlery - - dining - - dinner - - eat - - food - - fork - - knife - - restaurant + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f2e6 + - thin + unicode: auto voted: false vaadin: changes: @@ -38887,6 +49899,8 @@ vaadin: vacuum: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Vacuum search: terms: @@ -38900,11 +49914,14 @@ vacuum: - regular - light - duotone - unicode: f94d + - thin + unicode: e04d voted: false vacuum-robot: changes: - 5.12.0 + - 5.14.0 + - unreleased label: Robot Vacuum search: terms: @@ -38918,11 +49935,13 @@ vacuum-robot: - regular - light - duotone - unicode: f94e + - thin + unicode: e04e voted: false value-absolute: changes: - 5.3.0 + - unreleased label: Value Absolute search: terms: @@ -38932,11 +49951,65 @@ value-absolute: - regular - light - duotone + - thin unicode: f6a6 voted: false +van-shuttle: + aliases: + names: + - shuttle-van + changes: + - 5.1.0 + - unreleased + label: Van shuttle + search: + terms: + - airport + - machine + - public-transportation + - transportation + - travel + - vehicle + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5b6 + voted: false +vector-circle: + changes: + - unreleased + label: Vector Circle + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +vector-polygon: + changes: + - unreleased + label: Vector Polygon + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false vector-square: changes: - 5.1.0 + - unreleased label: Vector Square search: terms: @@ -38950,6 +50023,7 @@ vector-square: - regular - light - duotone + - thin unicode: f5cb voted: false venus: @@ -38958,6 +50032,7 @@ venus: - 5.0.0 - 5.11.0 - 5.11.1 + - unreleased label: Venus search: terms: @@ -38967,12 +50042,14 @@ venus: - regular - light - duotone + - thin unicode: f221 voted: false venus-double: changes: - '4.3' - 5.0.0 + - unreleased label: Venus Double search: terms: @@ -38982,12 +50059,14 @@ venus-double: - regular - light - duotone + - thin unicode: f226 voted: false venus-mars: changes: - '4.3' - 5.0.0 + - unreleased label: Venus Mars search: terms: @@ -38997,27 +50076,44 @@ venus-mars: - regular - light - duotone + - thin unicode: f228 voted: false -vhs: +vest: changes: - - 5.11.0 - label: VHS + - 5.15.0 + - 5.15.1 + - unreleased + label: vest search: terms: - - betamax - - cassette - - rental - - retro - - tape - - video - - vintage + - biker + - fashion + - style styles: - solid + - light - regular + - duotone + unicode: e085 + voted: false +vest-patches: + changes: + - 5.15.0 + - 5.15.1 + - unreleased + label: vest-patches + search: + terms: + - biker + - fashion + - style + styles: + - solid - light + - regular - duotone - unicode: f8ec + unicode: e086 voted: false viacoin: changes: @@ -39034,7 +50130,7 @@ viadeo: changes: - '4.6' - 5.0.0 - label: Video + label: Viadeo search: terms: [] styles: @@ -39046,7 +50142,7 @@ viadeo-square: - '4.6' - 5.0.0 - 5.7.0 - label: Video Square + label: Viadeo Square search: terms: [] styles: @@ -39056,6 +50152,7 @@ viadeo-square: vial: changes: - 5.0.7 + - unreleased label: Vial search: terms: @@ -39070,11 +50167,13 @@ vial: - regular - light - duotone + - thin unicode: f492 voted: false vials: changes: - 5.0.7 + - unreleased label: Vials search: terms: @@ -39089,6 +50188,7 @@ vials: - regular - light - duotone + - thin unicode: f493 voted: false viber: @@ -39103,10 +50203,14 @@ viber: unicode: f409 voted: false video: + aliases: + names: + - video-camera changes: - '1' - 5.0.0 - 5.0.9 + - unreleased label: Video search: terms: @@ -39120,11 +50224,41 @@ video: - regular - light - duotone + - thin unicode: f03d voted: false +video-arrow-down-left: + changes: + - unreleased + label: Video Arrow-down-left + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +video-arrow-up-right: + changes: + - unreleased + label: Video Arrow-up-right + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false video-plus: changes: - 5.0.9 + - unreleased label: Video Plus search: terms: @@ -39140,11 +50274,13 @@ video-plus: - regular - light - duotone + - thin unicode: f4e1 voted: false video-slash: changes: - 5.0.9 + - unreleased label: Video Slash search: terms: @@ -39160,11 +50296,13 @@ video-slash: - regular - light - duotone + - thin unicode: f4e2 voted: false vihara: changes: - 5.3.0 + - unreleased label: Vihara search: terms: @@ -39177,6 +50315,7 @@ vihara: - regular - light - duotone + - thin unicode: f6a7 voted: false vimeo: @@ -39226,6 +50365,7 @@ vine: violin: changes: - 5.11.0 + - unreleased label: Violin search: terms: @@ -39241,11 +50381,14 @@ violin: - regular - light - duotone + - thin unicode: f8ed voted: false virus: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Virus search: terms: @@ -39260,11 +50403,14 @@ virus: - regular - solid - duotone - unicode: f974 + - thin + unicode: e074 voted: false virus-slash: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Virus Slash search: terms: @@ -39281,11 +50427,14 @@ virus-slash: - regular - solid - duotone - unicode: f975 + - thin + unicode: e075 voted: false viruses: changes: - 5.13.0 + - 5.14.0 + - unreleased label: Viruses search: terms: @@ -39302,7 +50451,8 @@ viruses: - regular - solid - duotone - unicode: f976 + - thin + unicode: e076 voted: false vk: changes: @@ -39328,6 +50478,7 @@ vnv: voicemail: changes: - 5.9.0 + - unreleased label: Voicemail search: terms: @@ -39340,12 +50491,14 @@ voicemail: - regular - light - duotone + - thin unicode: f897 voted: true volcano: changes: - 5.5.0 - 5.10.2 + - unreleased label: Volcano search: terms: @@ -39359,12 +50512,14 @@ volcano: - regular - light - duotone + - thin unicode: f770 voted: false volleyball-ball: changes: - 5.0.5 - 5.8.0 + - unreleased label: Volleyball Ball search: terms: @@ -39376,11 +50531,16 @@ volleyball-ball: - regular - light - duotone + - thin unicode: f45f voted: false volume: + aliases: + names: + - volume-medium changes: - 5.3.0 + - unreleased label: Volume search: terms: @@ -39394,20 +50554,25 @@ volume: - regular - light - duotone + - thin unicode: f6a8 voted: false -volume-down: +volume-high: + aliases: + names: + - volume-up changes: - '1' - 5.0.0 - 5.3.0 - label: Volume Down + - unreleased + label: Volume high search: terms: - audio - - lower + - higher + - louder - music - - quieter - sound - speaker styles: @@ -39415,17 +50580,25 @@ volume-down: - regular - light - duotone - unicode: f027 + - thin + unicode: f028 voted: false -volume-mute: +volume-low: + aliases: + names: + - volume-down changes: + - '1' + - 5.0.0 - 5.3.0 - label: Volume Mute + - unreleased + label: Volume low search: terms: - audio + - lower - music - - quiet + - quieter - sound - speaker styles: @@ -39433,14 +50606,16 @@ volume-mute: - regular - light - duotone - unicode: f6a9 - voted: true + - thin + unicode: f027 + voted: false volume-off: changes: - '1' - 5.0.0 - 5.3.0 - 5.8.0 + - unreleased label: Volume Off search: terms: @@ -39456,12 +50631,14 @@ volume-off: - regular - light - duotone + - thin unicode: f026 voted: false volume-slash: changes: - 5.0.0 - 5.3.0 + - unreleased label: Volume Slash search: terms: @@ -39477,20 +50654,23 @@ volume-slash: - regular - light - duotone + - thin unicode: f2e2 voted: false -volume-up: +volume-xmark: + aliases: + names: + - volume-times + - volume-mute changes: - - '1' - - 5.0.0 - 5.3.0 - label: Volume Up + - unreleased + label: Volume xmark search: terms: - audio - - higher - - louder - music + - quiet - sound - speaker styles: @@ -39498,11 +50678,17 @@ volume-up: - regular - light - duotone - unicode: f028 - voted: false + - thin + unicode: f6a9 + voted: true vote-nay: + aliases: + names: + - paper-times-to-slot + - paper-xmark-to-slot changes: - 5.5.0 + - unreleased label: Vote Nay search: terms: @@ -39518,11 +50704,16 @@ vote-nay: - regular - light - duotone + - thin unicode: f771 voted: false vote-yea: + aliases: + names: + - paper-check-to-slot changes: - 5.5.0 + - unreleased label: Vote Yea search: terms: @@ -39537,11 +50728,13 @@ vote-yea: - regular - light - duotone + - thin unicode: f772 voted: false vr-cardboard: changes: - 5.4.0 + - unreleased label: Cardboard VR search: terms: @@ -39555,6 +50748,7 @@ vr-cardboard: - regular - light - duotone + - thin unicode: f729 voted: true vuejs: @@ -39567,10 +50761,25 @@ vuejs: - brands unicode: f41f voted: false +w: + changes: + - unreleased + label: W + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false wagon-covered: changes: - 5.11.0 - 5.11.1 + - unreleased label: Covered Wagon search: terms: @@ -39586,11 +50795,13 @@ wagon-covered: - regular - solid - duotone + - thin unicode: f8ee voted: false walker: changes: - 5.7.0 + - unreleased label: Walker search: terms: @@ -39602,11 +50813,13 @@ walker: - regular - light - duotone + - thin unicode: f831 voted: false walkie-talkie: changes: - 5.11.0 + - unreleased label: Walkie Talkie search: terms: @@ -39622,29 +50835,13 @@ walkie-talkie: - regular - light - duotone + - thin unicode: f8ef voted: false -walking: - changes: - - 5.0.13 - label: Walking - search: - terms: - - exercise - - health - - pedometer - - person - - steps - styles: - - solid - - regular - - light - - duotone - unicode: f554 - voted: true wallet: changes: - 5.0.13 + - unreleased label: Wallet search: terms: @@ -39657,12 +50854,14 @@ wallet: - regular - light - duotone + - thin unicode: f555 voted: true wand: changes: - 5.4.0 - 5.4.1 + - unreleased label: Wand search: terms: @@ -39679,12 +50878,59 @@ wand: - regular - light - duotone + - thin unicode: f72a voted: false wand-magic: + aliases: + names: + - magic + changes: + - '2' + - 5.0.0 + - 5.1.0 + - unreleased + label: Wand magic + search: + terms: + - autocomplete + - automatic + - mage + - magic + - spell + - wand + - witch + - wizard + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f0d0 + voted: false +wand-magic-sparkles: + aliases: + names: + - magic-wand-sparkles + changes: + - unreleased + label: Wand magic sparkles + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +wand-sparkles: changes: - 5.4.0 - label: Wand Magic + - unreleased + label: Wand sparkles search: terms: - autocomplete @@ -39701,11 +50947,13 @@ wand-magic: - regular - light - duotone + - thin unicode: f72b voted: false warehouse: changes: - 5.0.7 + - unreleased label: Warehouse search: terms: @@ -39719,12 +50967,17 @@ warehouse: - regular - light - duotone + - thin unicode: f494 voted: false -warehouse-alt: +warehouse-full: + aliases: + names: + - warehouse-alt changes: - 5.0.7 - label: Alternate Warehouse + - unreleased + label: Warehouse full search: terms: - building @@ -39737,12 +50990,17 @@ warehouse-alt: - regular - light - duotone + - thin unicode: f495 voted: false -washer: +washing-machine: + aliases: + names: + - washer changes: - 5.9.0 - label: Washer + - unreleased + label: Washing machine search: terms: - clean @@ -39755,12 +51013,14 @@ washer: - regular - light - duotone + - thin unicode: f898 voted: true watch: changes: - 5.0.0 - 5.10.2 + - unreleased label: Watch search: terms: @@ -39773,11 +51033,27 @@ watch: - regular - light - duotone + - thin unicode: f2e1 voted: false +watch-apple: + changes: + - unreleased + label: Watch Apple + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false watch-calculator: changes: - 5.11.0 + - unreleased label: Calculator Watch search: terms: @@ -39790,12 +51066,14 @@ watch-calculator: - regular - light - duotone + - thin unicode: f8f0 voted: false watch-fitness: changes: - 5.2.0 - 5.10.2 + - unreleased label: Watch Fitness search: terms: @@ -39811,11 +51089,37 @@ watch-fitness: - regular - light - duotone + - thin unicode: f63e voted: false +watch-smart: + changes: + - unreleased + label: Watch Smart + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +watchman-monitoring: + changes: + - 5.15.0 + label: Watchman Monitoring + search: + terms: [] + styles: + - brands + unicode: e087 + voted: false water: changes: - 5.5.0 + - unreleased label: Water search: terms: @@ -39830,12 +51134,17 @@ water: - regular - light - duotone + - thin unicode: f773 voted: false -water-lower: +water-arrow-down: + aliases: + names: + - water-lower changes: - 5.5.0 - label: Lower Water Level + - unreleased + label: Water arrow down search: terms: - flood @@ -39851,12 +51160,17 @@ water-lower: - regular - light - duotone + - thin unicode: f774 voted: false -water-rise: +water-arrow-up: + aliases: + names: + - water-rise changes: - 5.5.0 - label: Rising Water Level + - unreleased + label: Water arrow up search: terms: - flood @@ -39871,11 +51185,59 @@ water-rise: - regular - light - duotone + - thin unicode: f775 voted: false +water-ladder: + aliases: + names: + - swimming-pool + - ladder-water + changes: + - 5.1.0 + - unreleased + label: Water ladder + search: + terms: + - ladder + - recreation + - swim + - water + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5c5 + voted: false +wave-pulse: + aliases: + names: + - heart-rate + changes: + - 5.2.0 + - unreleased + label: Wave Pulse + search: + terms: + - EKG + - electrocardiogram + - health + - life + - vital + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f5f8 + voted: false wave-sine: changes: - 5.9.0 + - unreleased label: Sine Wave search: terms: @@ -39887,11 +51249,13 @@ wave-sine: - regular - light - duotone + - thin unicode: f899 voted: false wave-square: changes: - 5.8.0 + - unreleased label: Square Wave search: terms: @@ -39903,11 +51267,13 @@ wave-square: - regular - solid - duotone + - thin unicode: f83e voted: false wave-triangle: changes: - 5.9.0 + - unreleased label: Triangle Wave search: terms: @@ -39919,11 +51285,13 @@ wave-triangle: - regular - light - duotone + - thin unicode: f89a voted: false waveform: changes: - 5.11.0 + - unreleased label: Waveform search: terms: @@ -39935,12 +51303,14 @@ waveform: - regular - light - duotone + - thin unicode: f8f1 voted: false -waveform-path: +waveform-lines: changes: - 5.11.0 - label: Waveform Path + - unreleased + label: Waveform lines search: terms: - amplitude @@ -39951,6 +51321,7 @@ waveform-path: - regular - light - duotone + - thin unicode: f8f2 voted: false waze: @@ -39962,46 +51333,6 @@ waze: styles: - brands unicode: f83f -webcam: - changes: - - 5.7.0 - label: Webcam - search: - terms: - - chat - - conference call - - facetime - - podcast - - video - - videoconferencing - - youtube - styles: - - solid - - regular - - light - - duotone - unicode: f832 - voted: true -webcam-slash: - changes: - - 5.7.0 - label: Webcam Slash - search: - terms: - - chat - - conference call - - facetime - - podcast - - video - - videoconferencing - - youtube - styles: - - solid - - regular - - light - - duotone - unicode: f833 - voted: true weebly: changes: - 5.1.0 @@ -40023,38 +51354,45 @@ weibo: - brands unicode: f18a voted: false -weight: +weight-hanging: changes: - - 5.0.7 - label: Weight + - 5.1.0 + - unreleased + label: Hanging Weight search: terms: - - health + - anvil + - heavy - measurement - - scale - - weight styles: - solid - regular - light - duotone - unicode: f496 + - thin + unicode: f5cd voted: false -weight-hanging: +weight-scale: + aliases: + names: + - weight changes: - - 5.1.0 - label: Hanging Weight + - 5.0.7 + - unreleased + label: Weight scale search: terms: - - anvil - - heavy + - health - measurement + - scale + - weight styles: - solid - regular - light - duotone - unicode: f5cd + - thin + unicode: f496 voted: false weixin: changes: @@ -40072,6 +51410,7 @@ whale: changes: - 5.4.0 - 5.10.1 + - unreleased label: Whale search: terms: @@ -40083,6 +51422,7 @@ whale: - regular - light - duotone + - thin unicode: f72c voted: false whatsapp: @@ -40109,6 +51449,7 @@ whatsapp-square: wheat: changes: - 5.4.0 + - unreleased label: Wheat search: terms: @@ -40122,13 +51463,32 @@ wheat: - regular - light - duotone + - thin unicode: f72d voted: false +wheat-awn: + aliases: + names: + - wheat-alt + changes: + - unreleased + label: Wheat awn + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false wheelchair: changes: - '4' - 5.0.0 - 5.10.2 + - unreleased label: Wheelchair search: terms: @@ -40140,13 +51500,86 @@ wheelchair: - regular - light - duotone + - thin unicode: f193 voted: false +wheelchair-move: + aliases: + names: + - wheelchair-alt + changes: + - unreleased + label: Wheelchair move + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false +whiskey-glass: + aliases: + names: + - glass-whiskey + changes: + - 5.6.0 + - unreleased + label: Whiskey glass + search: + terms: + - alcohol + - bar + - beverage + - bourbon + - drink + - liquor + - neat + - rye + - scotch + - whisky + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7a0 +whiskey-glass-ice: + aliases: + names: + - glass-whiskey-rocks + changes: + - 5.6.0 + - unreleased + label: Whiskey glass ice + search: + terms: + - alcohol + - bar + - beverage + - bourbon + - drink + - ice + - liquor + - rye + - scotch + - whisky + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f7a1 whistle: changes: - 5.0.5 - 5.0.7 - 5.10.2 + - unreleased label: Whistle search: terms: @@ -40159,6 +51592,7 @@ whistle: - regular - light - duotone + - thin unicode: f460 voted: false whmcs: @@ -40172,12 +51606,17 @@ whmcs: unicode: f40d voted: false wifi: + aliases: + names: + - wifi-strong + - wifi-3 changes: - '4.2' - 5.0.0 - 5.3.0 - 5.10.1 - 5.11.1 + - unreleased label: WiFi search: terms: @@ -40191,35 +51630,33 @@ wifi: - regular - light - duotone + - thin unicode: f1eb voted: false -wifi-1: +wifi-exclamation: changes: - - 5.3.0 - - 5.10.1 - - 5.11.1 - label: Wifi 1 + - unreleased + label: Wifi Exclamation search: - terms: - - connection - - hotspot - - internet - - network - - weak - - wireless + terms: [] styles: + - duotone - solid - regular - light - - duotone - unicode: f6aa - voted: true -wifi-2: + - thin + unicode: auto + voted: false +wifi-fair: + aliases: + names: + - wifi-2 changes: - 5.3.0 - 5.10.1 - 5.11.1 - label: Wifi 2 + - unreleased + label: Wifi fair search: terms: - average @@ -40233,11 +51670,13 @@ wifi-2: - regular - light - duotone + - thin unicode: f6ab voted: true wifi-slash: changes: - 5.3.0 + - unreleased label: Wifi Slash search: terms: @@ -40255,8 +51694,35 @@ wifi-slash: - regular - light - duotone + - thin unicode: f6ac voted: true +wifi-weak: + aliases: + names: + - wifi-1 + changes: + - 5.3.0 + - 5.10.1 + - 5.11.1 + - unreleased + label: Wifi weak + search: + terms: + - connection + - hotspot + - internet + - network + - weak + - wireless + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f6aa + voted: true wikipedia-w: changes: - '4.4' @@ -40272,6 +51738,7 @@ wind: changes: - 5.4.0 - 5.5.0 + - unreleased label: Wind search: terms: @@ -40286,11 +51753,13 @@ wind: - regular - light - duotone + - thin unicode: f72e voted: false wind-turbine: changes: - 5.9.0 + - unreleased label: Wind Turbine search: terms: @@ -40305,11 +51774,16 @@ wind-turbine: - regular - light - duotone + - thin unicode: f89b voted: true wind-warning: + aliases: + names: + - wind-circle-exclamation changes: - 5.5.0 + - unreleased label: Wind Warning search: terms: @@ -40327,11 +51801,13 @@ wind-warning: - regular - light - duotone + - thin unicode: f776 voted: false window: changes: - 5.0.0 + - unreleased label: Window search: terms: @@ -40343,12 +51819,17 @@ window: - regular - light - duotone + - thin unicode: f40e voted: false -window-alt: +window-flip: + aliases: + names: + - window-alt changes: - 5.0.0 - label: Alternate Window + - unreleased + label: Window flip search: terms: - browser @@ -40359,29 +51840,14 @@ window-alt: - regular - light - duotone + - thin unicode: f40f voted: false -window-close: - changes: - - '4.7' - - 5.0.0 - label: Window Close - search: - terms: - - browser - - cancel - - computer - - development - styles: - - solid - - regular - - light - - duotone - unicode: f410 - voted: false window-frame: changes: - 5.12.0 + - 5.14.0 + - unreleased label: House Window search: terms: @@ -40395,11 +51861,14 @@ window-frame: - regular - light - duotone - unicode: f94f + - thin + unicode: e04f voted: false window-frame-open: changes: - 5.12.0 + - 5.14.0 + - unreleased label: House Window Open search: terms: @@ -40413,12 +51882,14 @@ window-frame-open: - regular - light - duotone - unicode: f950 + - thin + unicode: e050 voted: false window-maximize: changes: - '4.7' - 5.0.0 + - unreleased label: Window Maximize search: terms: @@ -40431,6 +51902,7 @@ window-maximize: - regular - light - duotone + - thin unicode: f2d0 voted: false window-minimize: @@ -40438,6 +51910,7 @@ window-minimize: - '4.7' - 5.0.0 - 5.10.1 + - unreleased label: Window Minimize search: terms: @@ -40450,12 +51923,14 @@ window-minimize: - regular - light - duotone + - thin unicode: f2d1 voted: false window-restore: changes: - '4.7' - 5.0.0 + - unreleased label: Window Restore search: terms: @@ -40467,6 +51942,7 @@ window-restore: - regular - light - duotone + - thin unicode: f2d2 voted: false windows: @@ -40487,6 +51963,7 @@ windsock: changes: - 5.5.0 - 5.10.2 + - unreleased label: Windsock search: terms: @@ -40501,11 +51978,13 @@ windsock: - regular - light - duotone + - thin unicode: f777 voted: false wine-bottle: changes: - 5.4.0 + - unreleased label: Wine Bottle search: terms: @@ -40522,6 +52001,7 @@ wine-bottle: - regular - light - duotone + - thin unicode: f72f voted: false wine-glass: @@ -40531,6 +52011,7 @@ wine-glass: - 5.10.1 - 5.11.0 - 5.11.1 + - unreleased label: Wine Glass search: terms: @@ -40546,15 +52027,42 @@ wine-glass: - regular - light - duotone + - thin unicode: f4e3 voted: false -wine-glass-alt: +wine-glass-crack: + aliases: + names: + - fragile + changes: + - 5.0.9 + - unreleased + label: Wine glass crack + search: + terms: + - break + - broken + - delicate + - glass + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f4bb + voted: false +wine-glass-empty: + aliases: + names: + - wine-glass-alt changes: - 5.1.0 - 5.10.1 - 5.11.0 - 5.11.1 - label: Alternate Wine Glas + - unreleased + label: Wine glass empty search: terms: - alcohol @@ -40569,6 +52077,7 @@ wine-glass-alt: - regular - light - duotone + - thin unicode: f5ce voted: false wix: @@ -40598,6 +52107,16 @@ wizards-of-the-coast: - brands unicode: f730 voted: false +wodu: + changes: + - 5.15.0 + label: Wodu + search: + terms: [] + styles: + - brands + unicode: e088 + voted: false wolf-pack-battalion: changes: - 5.0.12 @@ -40610,9 +52129,14 @@ wolf-pack-battalion: unicode: f514 voted: false won-sign: + aliases: + names: + - won + - krw changes: - '3.2' - 5.0.0 + - unreleased label: Won Sign search: terms: @@ -40624,6 +52148,7 @@ won-sign: - regular - light - duotone + - thin unicode: f159 voted: false wordpress: @@ -40694,6 +52219,7 @@ wpressr: wreath: changes: - 5.6.0 + - unreleased label: Wreath search: terms: @@ -40708,12 +52234,14 @@ wreath: - regular - light - duotone + - thin unicode: f7e2 wrench: changes: - '2' - 5.0.0 - 5.0.13 + - unreleased label: Wrench search: terms: @@ -40730,12 +52258,28 @@ wrench: - regular - light - duotone + - thin unicode: f0ad voted: false +x: + changes: + - unreleased + label: X + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false x-ray: changes: - 5.0.7 - 5.10.2 + - unreleased label: X-Ray search: terms: @@ -40749,6 +52293,7 @@ x-ray: - regular - light - duotone + - thin unicode: f497 voted: false xbox: @@ -40783,6 +52328,56 @@ xing-square: - brands unicode: f169 voted: false +xmark: + aliases: + names: + - multiply + - times + - close + - remove + changes: + - '1' + - 5.0.0 + - 5.0.13 + - 5.11.0 + - 5.11.1 + - unreleased + label: Xmark + search: + terms: + - close + - cross + - error + - exit + - incorrect + - notice + - notification + - notify + - problem + - wrong + - x + styles: + - solid + - regular + - light + - duotone + - thin + unicode: f00d + voted: false +'y': + changes: + - unreleased + label: 'Y' + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false y-combinator: changes: - '4.4' @@ -40860,9 +52455,16 @@ yelp: unicode: f1e9 voted: false yen-sign: + aliases: + names: + - yen + - cny + - jpy + - rmb changes: - '3.2' - 5.0.0 + - unreleased label: Yen Sign search: terms: @@ -40874,6 +52476,7 @@ yen-sign: - regular - light - duotone + - thin unicode: f157 voted: false yin-yang: @@ -40882,6 +52485,7 @@ yin-yang: - 5.10.2 - 5.11.0 - 5.11.1 + - unreleased label: Yin Yang search: terms: @@ -40893,6 +52497,7 @@ yin-yang: - regular - light - duotone + - thin unicode: f6ad voted: false yoast: @@ -40932,6 +52537,20 @@ youtube-square: - brands unicode: f431 voted: false +z: + changes: + - unreleased + label: Z + search: + terms: [] + styles: + - duotone + - solid + - regular + - light + - thin + unicode: auto + voted: false zhihu: changes: - 5.2.0 diff --git a/modules/fontawesome_media/src/Plugin/media/Source/FontAwesomeIconMedia.php b/modules/fontawesome_media/src/Plugin/media/Source/FontAwesomeIconMedia.php index 3377f47..4e667bd 100644 --- a/modules/fontawesome_media/src/Plugin/media/Source/FontAwesomeIconMedia.php +++ b/modules/fontawesome_media/src/Plugin/media/Source/FontAwesomeIconMedia.php @@ -90,6 +90,10 @@ class FontAwesomeIconMedia extends MediaSourceBase { case 'fad': $srcFolder = 'duotone'; break; + + case 'fat': + $srcFolder = 'thin'; + break; } return 'libraries/fontawesome/svgs/' . $srcFolder . '/' . $icon diff --git a/src/Controller/AutocompleteController.php b/src/Controller/AutocompleteController.php index ff6c9f0..e9d37c7 100644 --- a/src/Controller/AutocompleteController.php +++ b/src/Controller/AutocompleteController.php @@ -78,6 +78,10 @@ class AutocompleteController extends ControllerBase { $iconPrefix = 'fad'; break; + case 'thin': + $iconPrefix = 'fat'; + break; + default: case 'solid': $iconPrefix = 'fas'; diff --git a/src/Form/EditorIconDialog.php b/src/Form/EditorIconDialog.php index 9125f13..98c78a3 100644 --- a/src/Form/EditorIconDialog.php +++ b/src/Form/EditorIconDialog.php @@ -119,6 +119,7 @@ class EditorIconDialog extends FormBase { 'far' => $this->t('Regular'), 'fal' => $this->t('Light'), 'fad' => $this->t('Duotone'), + 'fat' => $this->t('Thin'), ], '#default_value' => 'fas', ]; diff --git a/src/Form/SettingsForm.php b/src/Form/SettingsForm.php index f763409..39b7c3a 100644 --- a/src/Form/SettingsForm.php +++ b/src/Form/SettingsForm.php @@ -199,6 +199,12 @@ class SettingsForm extends ConfigFormBase { '#description' => $this->t('Checking this box will cause the Font Awesome library to load the file containing the duotone icon declarations (duotone.js/duotone.css)'), '#default_value' => is_null($fontawesome_config->get('use_duotone_file')) === TRUE ? TRUE : $fontawesome_config->get('use_duotone_file'), ], + 'use_thin_file' => [ + '#type' => 'checkbox', + '#title' => $this->t('Load thin icons'), + '#description' => $this->t('Checking this box will cause the Font Awesome library to load the file containing the thin icon declarations (thin.js/thin.css)'), + '#default_value' => is_null($fontawesome_config->get('use_thin_file')) === TRUE ? TRUE : $fontawesome_config->get('use_thin_file'), + ], ]; $form['shim'] = [ @@ -300,6 +306,7 @@ class SettingsForm extends ConfigFormBase { ->set('use_light_file', $values['use_light_file']) ->set('use_brands_file', $values['use_brands_file']) ->set('use_duotone_file', $values['use_duotone_file']) + ->set('use_thin_file', $values['use_thin_file']) ->save(); parent::submitForm($form, $form_state); diff --git a/src/Plugin/Field/FieldWidget/FontAwesomeIconWidget.php b/src/Plugin/Field/FieldWidget/FontAwesomeIconWidget.php index 9290736..022a2e7 100644 --- a/src/Plugin/Field/FieldWidget/FontAwesomeIconWidget.php +++ b/src/Plugin/Field/FieldWidget/FontAwesomeIconWidget.php @@ -82,7 +82,7 @@ class FontAwesomeIconWidget extends WidgetBase implements ContainerFactoryPlugin '#size' => 50, '#field_prefix' => 'fa-', '#default_value' => $items[$delta]->get('icon_name')->getValue(), - '#description' => $this->t('Name of the Font Awesome Icon. See @iconsLink for valid icon names, or begin typing for an autocomplete list. Note that all four versions of the icon will be shown - Light, Regular, Solid, and Duotone respectively. If the icon shows a question mark, that icon version is not supported in your version of Fontawesome.', [ + '#description' => $this->t('Name of the Font Awesome Icon. See @iconsLink for valid icon names, or begin typing for an autocomplete list. Note that all versions of the icon will be shown - Light, Regular, Solid, Duotone, and Thin respectively. If the icon shows a question mark, that icon version is not supported in your version of Fontawesome.', [ '@iconsLink' => Link::fromTextAndUrl($this->t('the Font Awesome icon list'), Url::fromUri('https://fontawesome.com/icons'))->toString(), ]), '#autocomplete_route_name' => 'fontawesome.autocomplete', @@ -112,6 +112,7 @@ class FontAwesomeIconWidget extends WidgetBase implements ContainerFactoryPlugin 'far' => $this->t('Regular'), 'fal' => $this->t('Light'), 'fad' => $this->t('Duotone'), + 'fat' => $this->t('Thin'), ], '#default_value' => $items[$delta]->get('style')->getValue(), ]; @@ -128,6 +129,9 @@ class FontAwesomeIconWidget extends WidgetBase implements ContainerFactoryPlugin if (is_bool($configuration_settings->get('use_duotone_file')) && !$configuration_settings->get('use_duotone_file')) { unset($element['settings']['style']['#options']['fad']); } + if (is_bool($configuration_settings->get('use_thin_file')) && !$configuration_settings->get('use_thin_file')) { + unset($element['settings']['style']['#options']['fat']); + } // Allow user to determine size. $element['settings']['size'] = [ @@ -313,6 +317,7 @@ class FontAwesomeIconWidget extends WidgetBase implements ContainerFactoryPlugin 'far' => $this->t('Regular'), 'fal' => $this->t('Light'), 'fad' => $this->t('Duotone'), + 'fat' => $this->t('Thin'), ], '#default_value' => isset($iconSettings['masking']['style']) ? $iconSettings['masking']['style'] : '', ];