0byt3m1n1-V2
Path:
/
home
/
yvffpqmy
/
hpacorporateresourcingltd.com
/
wp-content
/
plugins
/
aheto
/
includes
/
[
Home
]
File: aheto-icons.php
<?php /** * The icons library. * * @since 1.0.0 * @package Aheto * @subpackage Aheto * @author FOX-THEMES <info@foxthemes.me> */ use Aheto\Helper; defined( 'ABSPATH' ) || exit; /** * Get icons by id. * * @param string $id Icon id. * @return array */ function ahet_get_icons( $id ) { static $aheto_formatted_icons; $id = str_replace( '-', '_', $id ); if ( isset( $aheto_formatted_icons, $aheto_formatted_icons[ $id ] ) ) { return $aheto_formatted_icons[ $id ]; } $func = 'aheto_icons_' . $id; $icons = $func(); if ( 'elementor' === Helper::get_settings( 'general.builder' ) ) { if ( in_array( $id, [ 'elegant', 'font_awesome' ] ) ) { $icons = aheto_assoc_icon_has_cats( $icons ); } else { $icons = aheto_assoc_icon( $icons ); } } $aheto_formatted_icons[ $id ] = $icons; return $icons; } /** * Convert to assoc. * * @param array $icons Array to convert. * @return array */ function aheto_assoc_icon_has_cats( $icons ) { $new_icons = []; foreach ( $icons as $icon ) { $new_icons = array_merge( $new_icons, aheto_assoc_icon( $icon ) ); } return $new_icons; } /** * Convert to assoc. * * @param array $icons Array to convert. * @return array */ function aheto_assoc_icon( $icons ) { $new_icons = []; foreach ( $icons as $icon ) { $new_icons[ key( $icon ) ] = current( $icon ); } return $new_icons; } /** * Elegant Icons. * * @return array */ function aheto_icons_elegant() { return [ 'Arrow' => [ [ 'el arrow_up' => 'Up' ], [ 'el arrow_down' => 'Down' ], [ 'el arrow_left' => 'Left' ], [ 'el arrow_right' => 'Right' ], [ 'el arrow_left-up' => 'Left Up' ], [ 'el arrow_right-up' => 'Right Up' ], [ 'el arrow_right-down' => 'Right Down' ], [ 'el arrow_left-down' => 'Left Down' ], [ 'el arrow-up-down' => 'Up Down' ], [ 'el arrow_up-down_alt' => 'Up Down Alt' ], [ 'el arrow_left-right_alt' => 'Left Right Alt' ], [ 'el arrow_left-right' => 'Left Right' ], [ 'el arrow_expand_alt2' => 'Expand Alt2' ], [ 'el arrow_expand_alt' => 'Expand Alt' ], [ 'el arrow_condense' => 'Condense' ], [ 'el arrow_expand' => 'Expand' ], [ 'el arrow_move' => 'Move' ], [ 'el arrow_carrot-up' => 'Carrot Up' ], [ 'el arrow_carrot-down' => 'Carrot Down' ], [ 'el arrow_carrot-left' => 'Carrot Left' ], [ 'el arrow_carrot-right' => 'Carrot Right' ], [ 'el arrow_carrot-2up' => 'Carrot 2up' ], [ 'el arrow_carrot-2down' => 'Carrot 2down' ], [ 'el arrow_carrot-2left' => 'Carrot 2left' ], [ 'el arrow_carrot-2right' => 'Carrot 2right' ], [ 'el arrow_carrot-up_alt2' => 'Carrot Up Alt2' ], [ 'el arrow_carrot-down_alt2' => 'Carrot Down Alt2' ], [ 'el arrow_carrot-left_alt2' => 'Carrot Left Alt2' ], [ 'el arrow_carrot-right_alt2' => 'Carrot Right Alt2' ], [ 'el arrow_carrot-2up_alt2' => 'Carrot 2up Alt2' ], [ 'el arrow_carrot-2down_alt2' => 'Carrot 2down Alt2' ], [ 'el arrow_carrot-2left_alt2' => 'Carrot 2left Alt2' ], [ 'el arrow_carrot-2right_alt2' => 'Carrot 2right Alt2' ], [ 'el arrow_triangle-up' => 'Triangle Up' ], [ 'el arrow_triangle-down' => 'Triangle Down' ], [ 'el arrow_triangle-left' => 'Triangle Left' ], [ 'el arrow_triangle-right' => 'Triangle Right' ], [ 'el arrow_triangle-up_alt2' => 'Triangle Up Alt2' ], [ 'el arrow_triangle-down_alt2' => 'Triangle Down Alt2' ], [ 'el arrow_triangle-left_alt2' => 'Triangle Left Alt2' ], [ 'el arrow_triangle-right_alt2' => 'Triangle Right Alt2' ], [ 'el arrow_back' => 'Back' ], [ 'el arrow_up_alt' => 'Up Alt' ], [ 'el arrow_down_alt' => 'Down Alt' ], [ 'el arrow_left_alt' => 'Left Alt' ], [ 'el arrow_right_alt' => 'Right Alt' ], [ 'el arrow_left-up_alt' => 'Left Up Alt' ], [ 'el arrow_right-up_alt' => 'Right Up Alt' ], [ 'el arrow_right-down_alt' => 'Right Down Alt' ], [ 'el arrow_left-down_alt' => 'Left Down Alt' ], [ 'el arrow_condense_alt' => 'Condense Alt' ], [ 'el arrow_expand_alt3' => 'Expand Alt3' ], [ 'el arrow_carrot_up_alt' => 'Carrot Up Alt' ], [ 'el arrow_carrot-down_alt' => 'Carrot Down Alt' ], [ 'el arrow_carrot-left_alt' => 'Carrot Left Alt' ], [ 'el arrow_carrot-right_alt' => 'Carrot Right Alt' ], [ 'el arrow_carrot-2up_alt' => 'Carrot 2up Alt' ], [ 'el arrow_carrot-2dwnn_alt' => 'Carrot 2dwnn Alt' ], [ 'el arrow_carrot-2left_alt' => 'Carrot 2left Alt' ], [ 'el arrow_carrot-2right_alt' => 'Carrot 2right Alt' ], [ 'el arrow_triangle-up_alt' => 'Triangle Up Alt' ], [ 'el arrow_triangle-down_alt' => 'Triangle Down Alt' ], [ 'el arrow_triangle-left_alt' => 'Triangle Left Alt' ], [ 'el arrow_triangle-right_alt' => 'Triangle Right Alt' ], ], 'Social' => [ [ 'el social_facebook' => 'Facebook' ], [ 'el social_twitter' => 'Twitter' ], [ 'el social_pinterest' => 'Pinterest' ], [ 'el social_googleplus' => 'Googleplus' ], [ 'el social_tumblr' => 'Tumblr' ], [ 'el social_tumbleupon' => 'Tumbleupon' ], [ 'el social_wordpress' => 'Wordpress' ], [ 'el social_instagram' => 'Instagram' ], [ 'el social_dribbble' => 'Dribbble' ], [ 'el social_vimeo' => 'Vimeo' ], [ 'el social_linkedin' => 'Linkedin' ], [ 'el social_rss' => 'Rss' ], [ 'el social_deviantart' => 'Deviantart' ], [ 'el social_share' => 'Share' ], [ 'el social_myspace' => 'Myspace' ], [ 'el social_skype' => 'Skype' ], [ 'el social_youtube' => 'Youtube' ], [ 'el social_picassa' => 'Picassa' ], [ 'el social_googledrive' => 'Googledrive' ], [ 'el social_flickr' => 'Flickr' ], [ 'el social_blogger' => 'Blogger' ], [ 'el social_spotify' => 'Spotify' ], [ 'el social_delicious' => 'Delicious' ], [ 'el social_facebook_circle' => 'Facebook Circle' ], [ 'el social_twitter_circle' => 'Twitter Circle' ], [ 'el social_pinterest_circle' => 'Pinterest Circle' ], [ 'el social_googleplus_circle' => 'Googleplus Circle' ], [ 'el social_tumblr_circle' => 'Tumblr Circle' ], [ 'el social_stumbleupon_circle' => 'Stumbleupon Circle' ], [ 'el social_wordpress_circle' => 'Wordpress Circle' ], [ 'el social_instagram_circle' => 'Instagram Circle' ], [ 'el social_dribbble_circle' => 'Dribbble Circle' ], [ 'el social_vimeo_circle' => 'Vimeo Circle' ], [ 'el social_linkedin_circle' => 'Linkedin Circle' ], [ 'el social_rss_circle' => 'Rss Circle' ], [ 'el social_deviantart_circle' => 'Deviantart Circle' ], [ 'el social_share_circle' => 'Share Circle' ], [ 'el social_myspace_circle' => 'Myspace Circle' ], [ 'el social_skype_circle' => 'Skype Circle' ], [ 'el social_youtube_circle' => 'Youtube Circle' ], [ 'el social_picassa_circle' => 'Picassa Circle' ], [ 'el social_googledrive_alt2' => 'Googledrive Alt2' ], [ 'el social_flickr_circle' => 'Flickr Circle' ], [ 'el social_blogger_circle' => 'Blogger Circle' ], [ 'el social_spotify_circle' => 'Spotify Circle' ], [ 'el social_delicious_circle' => 'Delicious Circle' ], [ 'el social_facebook_square' => 'Facebook Square' ], [ 'el social_twitter_square' => 'Twitter Square' ], [ 'el social_pinterest_square' => 'Pinterest Square' ], [ 'el social_googleplus_square' => 'Googleplus Square' ], [ 'el social_tumblr_square' => 'Tumblr Square' ], [ 'el social_stumbleupon_square' => 'Stumbleupon Square' ], [ 'el social_wordpress_square' => 'Wordpress Square' ], [ 'el social_instagram_square' => 'Instagram Square' ], [ 'el social_dribbble_square' => 'Dribbble Square' ], [ 'el social_vimeo_square' => 'Vimeo Square' ], [ 'el social_linkedin_square' => 'Linkedin Square' ], [ 'el social_rss_square' => 'Rss Square' ], [ 'el social_deviantart_square' => 'Deviantart Square' ], [ 'el social_share_square' => 'Share Square' ], [ 'el social_myspace_square' => 'Myspace Square' ], [ 'el social_skype_square' => 'Skype Square' ], [ 'el social_youtube_square' => 'Youtube Square' ], [ 'el social_picassa_square' => 'Picassa Square' ], [ 'el social_googledrive_square' => 'Googledrive Square' ], [ 'el social_flickr_square' => 'Flickr Square' ], [ 'el social_blogger_square' => 'Blogger Square' ], [ 'el social_spotify_square' => 'Spotify Square' ], [ 'el social_delicious_square' => 'Delicious Square' ], ], 'Misc' => [ [ 'el icon_minus-06' => 'Minus 06' ], [ 'el icon_plus' => 'Plus' ], [ 'el icon_close' => 'Close' ], [ 'el icon_check' => 'Check' ], [ 'el icon_minus_alt2' => 'Minus Alt2' ], [ 'el icon_plus_alt2' => 'Plus Alt2' ], [ 'el icon_close_alt2' => 'Close Alt2' ], [ 'el icon_check_alt2' => 'Check Alt2' ], [ 'el icon_zoom-out_alt' => 'Zoom Out Alt' ], [ 'el icon_zoom-in_alt' => 'Zoom In Alt' ], [ 'el icon_search' => 'Search' ], [ 'el icon_box-empty' => 'Box Empty' ], [ 'el icon_box-selected' => 'Box Selected' ], [ 'el icon_minus-box' => 'Minus Box' ], [ 'el icon_plus-box' => 'Plus Box' ], [ 'el icon_box-checked' => 'Box Checked' ], [ 'el icon_circle-empty' => 'Circle Empty' ], [ 'el icon_circle-slelected' => 'Circle Slelected' ], [ 'el icon_stop_alt2' => 'Stop Alt2' ], [ 'el icon_stop' => 'Stop' ], [ 'el icon_pause_alt2' => 'Pause Alt2' ], [ 'el icon_pause' => 'Pause' ], [ 'el icon_menu' => 'Menu' ], [ 'el icon_menu-square_alt2' => 'Menu Square Alt2' ], [ 'el icon_menu-circle_alt2' => 'Menu Circle Alt2' ], [ 'el icon_ul' => 'Ul' ], [ 'el icon_ol' => 'Ol' ], [ 'el icon_adjust-horiz' => 'Adjust Horiz' ], [ 'el icon_adjust-vert' => 'Adjust Vert' ], [ 'el icon_document_alt' => 'Document Alt' ], [ 'el icon_documents_alt' => 'Documents Alt' ], [ 'el icon_pencil' => 'Pencil' ], [ 'el icon_pencil-edit_alt' => 'Pencil Edit Alt' ], [ 'el icon_pencil-edit' => 'Pencil Edit' ], [ 'el icon_folder-alt' => 'Folder Alt' ], [ 'el icon_folder-open_alt' => 'Folder Open Alt' ], [ 'el icon_folder-add_alt' => 'Folder Add Alt' ], [ 'el icon_info_alt' => 'Info Alt' ], [ 'el icon_error-oct_alt' => 'Error Oct Alt' ], [ 'el icon_error-circle_alt' => 'Error Circle Alt' ], [ 'el icon_error-triangle_alt' => 'Error Triangle Alt' ], [ 'el icon_question_alt2' => 'Question Alt2' ], [ 'el icon_question' => 'Question' ], [ 'el icon_comment_alt' => 'Comment Alt' ], [ 'el icon_chat_alt' => 'Chat Alt' ], [ 'el icon_vol-mute_alt' => 'Vol Mute Alt' ], [ 'el icon_volume-low_alt' => 'Volume Low Alt' ], [ 'el icon_volume-high_alt' => 'Volume High Alt' ], [ 'el icon_quotations' => 'Quotations' ], [ 'el icon_quotations_alt2' => 'Quotations Alt2' ], [ 'el icon_clock_alt' => 'Clock Alt' ], [ 'el icon_lock_alt' => 'Lock Alt' ], [ 'el icon_lock-open_alt' => 'Lock Open Alt' ], [ 'el icon_key_alt' => 'Key Alt' ], [ 'el icon_cloud_alt' => 'Cloud Alt' ], [ 'el icon_cloud-upload_alt' => 'Cloud Upload Alt' ], [ 'el icon_cloud-download_alt' => 'Cloud Download Alt' ], [ 'el icon_image' => 'Image' ], [ 'el icon_images' => 'Images' ], [ 'el icon_lightbulb_alt' => 'Lightbulb Alt' ], [ 'el icon_gift_alt' => 'Gift Alt' ], [ 'el icon_house_alt' => 'House Alt' ], [ 'el icon_genius' => 'Genius' ], [ 'el icon_mobile' => 'Mobile' ], [ 'el icon_tablet' => 'Tablet' ], [ 'el icon_laptop' => 'Laptop' ], [ 'el icon_desktop' => 'Desktop' ], [ 'el icon_camera_alt' => 'Camera Alt' ], [ 'el icon_mail_alt' => 'Mail Alt' ], [ 'el icon_cone_alt' => 'Cone Alt' ], [ 'el icon_ribbon_alt' => 'Ribbon Alt' ], [ 'el icon_bag_alt' => 'Bag Alt' ], [ 'el icon_creditcard' => 'Creditcard' ], [ 'el icon_cart_alt' => 'Cart Alt' ], [ 'el icon_paperclip' => 'Paperclip' ], [ 'el icon_tag_alt' => 'Tag Alt' ], [ 'el icon_tags_alt' => 'Tags Alt' ], [ 'el icon_trash_alt' => 'Trash Alt' ], [ 'el icon_cursor_alt' => 'Cursor Alt' ], [ 'el icon_mic_alt' => 'Mic Alt' ], [ 'el icon_compass_alt' => 'Compass Alt' ], [ 'el icon_pin_alt' => 'Pin Alt' ], [ 'el icon_pushpin_alt' => 'Pushpin Alt' ], [ 'el icon_map_alt' => 'Map Alt' ], [ 'el icon_drawer_alt' => 'Drawer Alt' ], [ 'el icon_toolbox_alt' => 'Toolbox Alt' ], [ 'el icon_book_alt' => 'Book Alt' ], [ 'el icon_calendar' => 'Calendar' ], [ 'el icon_film' => 'Film' ], [ 'el icon_table' => 'Table' ], [ 'el icon_contacts_alt' => 'Contacts Alt' ], [ 'el icon_headphones' => 'Headphones' ], [ 'el icon_lifesaver' => 'Lifesaver' ], [ 'el icon_piechart' => 'Piechart' ], [ 'el icon_refresh' => 'Refresh' ], [ 'el icon_link_alt' => 'Link Alt' ], [ 'el icon_link' => 'Link' ], [ 'el icon_loading' => 'Loading' ], [ 'el icon_blocked' => 'Blocked' ], [ 'el icon_archive_alt' => 'Archive Alt' ], [ 'el icon_heart_alt' => 'Heart Alt' ], [ 'el icon_star_alt' => 'Star Alt' ], [ 'el icon_star-half_alt' => 'Star Half Alt' ], [ 'el icon_star' => 'Star' ], [ 'el icon_star-half' => 'Star Half' ], [ 'el icon_tools' => 'Tools' ], [ 'el icon_tool' => 'Tool' ], [ 'el icon_cog' => 'Cog' ], [ 'el icon_cogs' => 'Cogs' ], [ 'el icon_minus_alt' => 'Minus Alt' ], [ 'el icon_plus_alt' => 'Plus Alt' ], [ 'el icon_close_alt' => 'Close Alt' ], [ 'el icon_check_alt' => 'Check Alt' ], [ 'el icon_zoom-out' => 'Zoom Out' ], [ 'el icon_zoom-in' => 'Zoom In' ], [ 'el icon_stop_alt' => 'Stop Alt' ], [ 'el icon_menu-square_alt' => 'Menu Square Alt' ], [ 'el icon_menu-circle_alt' => 'Menu Circle Alt' ], [ 'el icon_document' => 'Document' ], [ 'el icon_documents' => 'Documents' ], [ 'el icon_pencil_alt' => 'Pencil Alt' ], [ 'el icon_folder' => 'Folder' ], [ 'el icon_folder-open' => 'Folder Open' ], [ 'el icon_folder-add' => 'Folder Add' ], [ 'el icon_folder_upload' => 'Folder Upload' ], [ 'el icon_folder_download' => 'Folder Download' ], [ 'el icon_info' => 'Info' ], [ 'el icon_error-circle' => 'Error Circle' ], [ 'el icon_error-oct' => 'Error Oct' ], [ 'el icon_error-triangle' => 'Error Triangle' ], [ 'el icon_question_alt' => 'Question Alt' ], [ 'el icon_comment' => 'Comment' ], [ 'el icon_chat' => 'Chat' ], [ 'el icon_vol-mute' => 'Vol Mute' ], [ 'el icon_volume-low' => 'Volume Low' ], [ 'el icon_volume-high' => 'Volume High' ], [ 'el icon_quotations_alt' => 'Quotations Alt' ], [ 'el icon_clock' => 'Clock' ], [ 'el icon_lock' => 'Lock' ], [ 'el icon_lock-open' => 'Lock Open' ], [ 'el icon_key' => 'Key' ], [ 'el icon_cloud' => 'Cloud' ], [ 'el icon_cloud-upload' => 'Cloud Upload' ], [ 'el icon_cloud-download' => 'Cloud Download' ], [ 'el icon_lightbulb' => 'Lightbulb' ], [ 'el icon_gift' => 'Gift' ], [ 'el icon_house' => 'House' ], [ 'el icon_camera' => 'Camera' ], [ 'el icon_mail' => 'Mail' ], [ 'el icon_cone' => 'Cone' ], [ 'el icon_ribbon' => 'Ribbon' ], [ 'el icon_bag' => 'Bag' ], [ 'el icon_cart' => 'Cart' ], [ 'el icon_tag' => 'Tag' ], [ 'el icon_tags' => 'Tags' ], [ 'el icon_trash' => 'Trash' ], [ 'el icon_cursor' => 'Cursor' ], [ 'el icon_mic' => 'Mic' ], [ 'el icon_compass' => 'Compass' ], [ 'el icon_pin' => 'Pin' ], [ 'el icon_pushpin' => 'Pushpin' ], [ 'el icon_map' => 'Map' ], [ 'el icon_drawer' => 'Drawer' ], [ 'el icon_toolbox' => 'Toolbox' ], [ 'el icon_book' => 'Book' ], [ 'el icon_contacts' => 'Contacts' ], [ 'el icon_archive' => 'Archive' ], [ 'el icon_heart' => 'Heart' ], [ 'el icon_profile' => 'Profile' ], [ 'el icon_group' => 'Group' ], [ 'el icon_grid-2x2' => 'Grid 2x2' ], [ 'el icon_grid-3x3' => 'Grid 3x3' ], [ 'el icon_music' => 'Music' ], [ 'el icon_pause_alt' => 'Pause Alt' ], [ 'el icon_phone' => 'Phone' ], [ 'el icon_upload' => 'Upload' ], [ 'el icon_download' => 'Download' ], [ 'el icon_printer' => 'Printer' ], [ 'el icon_calulator' => 'Calulator' ], [ 'el icon_building' => 'Building' ], [ 'el icon_floppy' => 'Floppy' ], [ 'el icon_drive' => 'Drive' ], [ 'el icon_search-2' => 'Search 2' ], [ 'el icon_id' => 'Id' ], [ 'el icon_id-2' => 'Id 2' ], [ 'el icon_puzzle' => 'Puzzle' ], [ 'el icon_like' => 'Like' ], [ 'el icon_dislike' => 'Dislike' ], [ 'el icon_mug' => 'Mug' ], [ 'el icon_currency' => 'Currency' ], [ 'el icon_wallet' => 'Wallet' ], [ 'el icon_pens' => 'Pens' ], [ 'el icon_easel' => 'Easel' ], [ 'el icon_flowchart' => 'Flowchart' ], [ 'el icon_datareport' => 'Datareport' ], [ 'el icon_briefcase' => 'Briefcase' ], [ 'el icon_shield' => 'Shield' ], [ 'el icon_percent' => 'Percent' ], [ 'el icon_globe' => 'Globe' ], [ 'el icon_globe-2' => 'Globe 2' ], [ 'el icon_target' => 'Target' ], [ 'el icon_hourglass' => 'Hourglass' ], [ 'el icon_balance' => 'Balance' ], [ 'el icon_rook' => 'Rook' ], [ 'el icon_printer-alt' => 'Printer Alt' ], [ 'el icon_calculator_alt' => 'Calculator Alt' ], [ 'el icon_building_alt' => 'Building Alt' ], [ 'el icon_floppy_alt' => 'Floppy Alt' ], [ 'el icon_drive_alt' => 'Drive Alt' ], [ 'el icon_search_alt' => 'Search Alt' ], [ 'el icon_id_alt' => 'Id Alt' ], [ 'el icon_id-2_alt' => 'Id 2 Alt' ], [ 'el icon_puzzle_alt' => 'Puzzle Alt' ], [ 'el icon_like_alt' => 'Like Alt' ], [ 'el icon_dislike_alt' => 'Dislike Alt' ], [ 'el icon_mug_alt' => 'Mug Alt' ], [ 'el icon_currency_alt' => 'Currency Alt' ], [ 'el icon_wallet_alt' => 'Wallet Alt' ], [ 'el icon_pens_alt' => 'Pens Alt' ], [ 'el icon_easel_alt' => 'Easel Alt' ], [ 'el icon_flowchart_alt' => 'Flowchart Alt' ], [ 'el icon_datareport_alt' => 'Datareport Alt' ], [ 'el icon_briefcase_alt' => 'Briefcase Alt' ], [ 'el icon_shield_alt' => 'Shield Alt' ], [ 'el icon_percent_alt' => 'Percent Alt' ], [ 'el icon_globe_alt' => 'Globe Alt' ], [ 'el icon_clipboard' => 'Clipboard' ], ], ]; } /** * Font Awesome Icons. * * @return array */ function aheto_icons_font_awesome() { return [ 'New in 6.6.0' => [ [ 'fa-solid fa-handshake' => 'Handshake (Solid)' ], [ 'fa-regular fa-handshake' => 'Handshake (Outlined)' ], [ 'fa-solid fa-envelope-open' => 'Envelope Open (Solid)' ], [ 'fa-regular fa-envelope-open' => 'Envelope Open (Outlined)' ], [ 'fa-brands fa-linode' => 'Linode (Brand)' ], [ 'fa-solid fa-address-book' => 'Address Book (Solid)' ], [ 'fa-regular fa-address-book' => 'Address Book (Outlined)' ], [ 'fa-solid fa-address-card' => 'Address Card (Solid)' ], [ 'fa-regular fa-address-card' => 'Address Card (Outlined)' ], [ 'fa-solid fa-user-circle' => 'User Circle (Solid)' ], [ 'fa-regular fa-user-circle' => 'User Circle (Outlined)' ], [ 'fa-regular fa-user' => 'User Outlined' ], [ 'fa-solid fa-id-badge' => 'Identification Badge (Solid)' ], [ 'fa-solid fa-id-card' => 'Identification Card (Solid)' ], [ 'fa-regular fa-id-card' => 'Identification Card (Outlined)' ], [ 'fa-brands fa-quora' => 'Quora (Brand)' ], [ 'fa-brands fa-free-code-camp' => 'Free Code Camp (Brand)' ], [ 'fa-brands fa-telegram' => 'Telegram (Brand)' ], [ 'fa-solid fa-temperature-full' => 'Thermometer Full (Solid)' ], [ 'fa-solid fa-temperature-three-quarters' => 'Thermometer 3/4 Full (Solid)' ], [ 'fa-solid fa-temperature-half' => 'Thermometer 1/2 Full (Solid)' ], [ 'fa-solid fa-temperature-quarter' => 'Thermometer 1/4 Full (Solid)' ], [ 'fa-solid fa-temperature-empty' => 'Thermometer Empty (Solid)' ], [ 'fa-solid fa-shower' => 'Shower (Solid)' ], [ 'fa-solid fa-bath' => 'Bath (Solid)' ], [ 'fa-solid fa-podcast' => 'Podcast (Solid)' ], [ 'fa-solid fa-window-maximize' => 'Window Maximize (Solid)' ], [ 'fa-regular fa-window-maximize' => 'Window Maximize (Outlined)' ], [ 'fa-solid fa-window-minimize' => 'Window Minimize (Solid)' ], [ 'fa-solid fa-window-restore' => 'Window Restore (Solid)' ], [ 'fa-solid fa-window-close' => 'Window Close (Solid)' ], [ 'fa-regular fa-window-close' => 'Window Close (Outlined)' ], [ 'fa-brands fa-bandcamp' => 'Bandcamp (Brand)' ], [ 'fa-brands fa-grav' => 'Grav (Brand)' ], [ 'fa-brands fa-etsy' => 'Etsy (Brand)' ], [ 'fa-brands fa-imdb' => 'IMDB (Brand)' ], [ 'fa-brands fa-ravelry' => 'Ravelry (Brand)' ], [ 'fa-brands fa-eercast' => 'Eercast (Brand)' ], [ 'fa-solid fa-microchip' => 'Microchip (Solid)' ], [ 'fa-regular fa-snowflake' => 'Snowflake (Outlined)' ], [ 'fa-brands fa-superpowers' => 'Superpowers (Brand)' ], [ 'fa-brands fa-wpexplorer' => 'WPExplorer (Brand)' ], [ 'fa-brands fa-meetup' => 'Meetup (Brand)' ] ], 'Web Application Icons' => [ [ 'fa-solid fa-martini-glass' => 'Glass (Solid)' ], [ 'fa-solid fa-music' => 'Music (Solid)' ], [ 'fa-solid fa-search' => 'Search (Solid)' ], [ 'fa-regular fa-envelope' => 'Envelope Outlined (Regular)' ], [ 'fa-solid fa-heart' => 'Heart (Solid)' ], [ 'fa-solid fa-star' => 'Star (Solid)' ], [ 'fa-regular fa-star' => 'Star Outlined (Regular)' ], [ 'fa-solid fa-user' => 'User (Solid)' ], [ 'fa-solid fa-film' => 'Film (Solid)' ], [ 'fa-solid fa-check' => 'Check (Solid)' ], [ 'fa-solid fa-times' => 'Times (Solid)' ], [ 'fa-solid fa-magnifying-glass-plus' => 'Search Plus (Solid)' ], [ 'fa-solid fa-magnifying-glass-minus' => 'Search Minus (Solid)' ], [ 'fa-solid fa-power-off' => 'Power Off (Solid)' ], [ 'fa-solid fa-signal' => 'Signal (Solid)' ], [ 'fa-solid fa-cog' => 'Cog (Solid)' ], [ 'fa-regular fa-trash-can' => 'Trash Outlined (Regular)' ], [ 'fa-solid fa-house' => 'Home (Solid)' ], [ 'fa-regular fa-clock' => 'Clock Outlined (Regular)' ], [ 'fa-solid fa-road' => 'Road (Solid)' ], [ 'fa-solid fa-download' => 'Download (Solid)' ], [ 'fa-solid fa-inbox' => 'Inbox (Solid)' ], [ 'fa-solid fa-arrows-rotate' => 'Refresh (Solid)' ], [ 'fa-solid fa-lock' => 'Lock (Solid)' ], [ 'fa-solid fa-flag' => 'Flag (Solid)' ], [ 'fa-solid fa-headphones' => 'Headphones (Solid)' ], [ 'fa-solid fa-volume-xmark' => 'Volume Off (Solid)' ], [ 'fa-solid fa-volume-low' => 'Volume Down (Solid)' ], [ 'fa-solid fa-volume-high' => 'Volume Up (Solid)' ], [ 'fa-solid fa-qrcode' => 'QRCode (Solid)' ], [ 'fa-solid fa-barcode' => 'Barcode (Solid)' ], [ 'fa-solid fa-tag' => 'Tag (Solid)' ], [ 'fa-solid fa-tags' => 'Tags (Solid)' ], [ 'fa-solid fa-book' => 'Book (Solid)' ], [ 'fa-solid fa-bookmark' => 'Bookmark (Solid)' ], [ 'fa-solid fa-print' => 'Print (Solid)' ], [ 'fa-solid fa-camera' => 'Camera (Solid)' ], [ 'fa-solid fa-video' => 'Video Camera (Solid)' ], [ 'fa-regular fa-image' => 'Picture Outlined (Regular)' ], [ 'fa-solid fa-pencil' => 'Pencil (Solid)' ], [ 'fa-solid fa-location-dot' => 'Map Marker (Solid)' ], [ 'fa-solid fa-circle-half-stroke' => 'Adjust (Solid)' ], [ 'fa-solid fa-droplet' => 'Tint (Solid)' ], [ 'fa-regular fa-square-pen' => 'Pencil Square Outlined (Regular)' ], [ 'fa-regular fa-share-from-square' => 'Share Square Outlined (Regular)' ], [ 'fa-regular fa-square-check' => 'Check Square Outlined (Regular)' ], [ 'fa-solid fa-arrows-up-down-left-right' => 'Arrows (Solid)' ], [ 'fa-solid fa-circle-plus' => 'Plus Circle (Solid)' ], [ 'fa-solid fa-circle-minus' => 'Minus Circle (Solid)' ], [ 'fa-solid fa-circle-xmark' => 'Times Circle (Solid)' ], [ 'fa-solid fa-circle-check' => 'Check Circle (Solid)' ], [ 'fa-solid fa-circle-question' => 'Question Circle (Solid)' ], [ 'fa-solid fa-circle-info' => 'Info Circle (Solid)' ], [ 'fa-solid fa-crosshairs' => 'Crosshairs (Solid)' ], [ 'fa-regular fa-circle-xmark' => 'Times Circle Outlined (Regular)' ], [ 'fa-regular fa-circle-check' => 'Check Circle Outlined (Regular)' ], [ 'fa-solid fa-ban' => 'Ban (Solid)' ], [ 'fa-solid fa-share' => 'Share (Solid)' ], [ 'fa-solid fa-plus' => 'Plus (Solid)' ], [ 'fa-solid fa-minus' => 'Minus (Solid)' ], [ 'fa-solid fa-asterisk' => 'Asterisk (Solid)' ], [ 'fa-solid fa-circle-exclamation' => 'Exclamation Circle (Solid)' ], [ 'fa-solid fa-gift' => 'Gift (Solid)' ], [ 'fa-solid fa-leaf' => 'Leaf (Solid)' ], [ 'fa-solid fa-fire' => 'Fire (Solid)' ], [ 'fa-solid fa-eye' => 'Eye (Solid)' ], [ 'fa-solid fa-eye-slash' => 'Eye Slash (Solid)' ], [ 'fa-solid fa-triangle-exclamation' => 'Exclamation Triangle (Solid)' ], [ 'fa-solid fa-plane' => 'Plane (Solid)' ], [ 'fa-solid fa-calendar-days' => 'Calendar (Solid)' ], [ 'fa-solid fa-shuffle' => 'Random (Solid)' ], [ 'fa-solid fa-comment' => 'Comment (Solid)' ], [ 'fa-solid fa-magnet' => 'Magnet (Solid)' ], [ 'fa-solid fa-retweet' => 'Retweet (Solid)' ], [ 'fa-solid fa-cart-shopping' => 'Shopping Cart (Solid)' ], [ 'fa-solid fa-folder' => 'Folder (Solid)' ], [ 'fa-solid fa-folder-open' => 'Folder Open (Solid)' ], [ 'fa-solid fa-arrows-up-down' => 'Arrows Vertical (Solid)' ], [ 'fa-solid fa-arrows-left-right' => 'Arrows Horizontal (Solid)' ], [ 'fa-solid fa-chart-bar' => 'Bar Chart (Solid)' ], [ 'fa-solid fa-camera-retro' => 'Camera Retro (Solid)' ], [ 'fa-solid fa-key' => 'Key (Solid)' ], [ 'fa-solid fa-gears' => 'Cogs (Solid)' ], [ 'fa-solid fa-comments' => 'Comments (Solid)' ], [ 'fa-regular fa-thumbs-up' => 'Thumbs Up Outlined (Regular)' ], [ 'fa-regular fa-thumbs-down' => 'Thumbs Down Outlined (Regular)' ], [ 'fa-solid fa-star-half-stroke' => 'Star Half (Solid)' ], [ 'fa-regular fa-heart' => 'Heart Outlined (Regular)' ], [ 'fa-solid fa-right-from-bracket' => 'Sign Out (Solid)' ], [ 'fa-solid fa-thumbtack' => 'Thumb Tack (Solid)' ], [ 'fa-solid fa-arrow-up-right-from-square' => 'External Link (Solid)' ], [ 'fa-solid fa-right-to-bracket' => 'Sign In (Solid)' ], [ 'fa-solid fa-trophy' => 'Trophy (Solid)' ], [ 'fa-solid fa-upload' => 'Upload (Solid)' ], [ 'fa-regular fa-lemon' => 'Lemon Outlined (Regular)' ], [ 'fa-solid fa-phone' => 'Phone (Solid)' ], [ 'fa-regular fa-square' => 'Square Outlined (Regular)' ], [ 'fa-regular fa-bookmark' => 'Bookmark Outlined (Regular)' ], [ 'fa-solid fa-square-phone' => 'Phone Square (Solid)' ], [ 'fa-solid fa-unlock' => 'Unlock (Solid)' ], [ 'fa-solid fa-credit-card' => 'Credit Card (Solid)' ], [ 'fa-solid fa-rss' => 'RSS (Solid)' ], [ 'fa-regular fa-hard-drive' => 'HDD Outlined (Regular)' ], [ 'fa-solid fa-bullhorn' => 'Bullhorn (Solid)' ], [ 'fa-solid fa-bell' => 'Bell (Solid)' ], [ 'fa-solid fa-certificate' => 'Certificate (Solid)' ], [ 'fa-solid fa-earth-americas' => 'Globe (Solid)' ], [ 'fa-solid fa-wrench' => 'Wrench (Solid)' ], [ 'fa-solid fa-list-check' => 'Tasks (Solid)' ], [ 'fa-solid fa-filter' => 'Filter (Solid)' ], [ 'fa-solid fa-briefcase' => 'Briefcase (Solid)' ], [ 'fa-solid fa-users' => 'Users (Solid)' ], [ 'fa-solid fa-cloud' => 'Cloud (Solid)' ], [ 'fa-solid fa-flask' => 'Flask (Solid)' ], [ 'fa-solid fa-square' => 'Square (Solid)' ], [ 'fa-solid fa-bars' => 'Bars (Solid)' ], [ 'fa-solid fa-wand-magic-sparkles' => 'Magic (Solid)' ], [ 'fa-solid fa-truck' => 'Truck (Solid)' ], [ 'fa-solid fa-money-bill-wave' => 'Money (Solid)' ], [ 'fa-solid fa-arrow-down-wide-short' => 'Sort (Solid)' ], [ 'fa-solid fa-arrow-down-a-z' => 'Sort Descending (Solid)' ], [ 'fa-solid fa-arrow-up-a-z' => 'Sort Ascending (Solid)' ], [ 'fa-solid fa-envelope' => 'Envelope (Solid)' ], [ 'fa-solid fa-gavel' => 'Gavel (Solid)' ], [ 'fa-solid fa-gauge-high' => 'Tachometer (Solid)' ], [ 'fa-regular fa-comment' => 'Comment Outlined (Regular)' ], [ 'fa-regular fa-comments' => 'Comments Outlined (Regular)' ], [ 'fa-solid fa-bolt' => 'Lightning Bolt (Solid)' ], [ 'fa-solid fa-sitemap' => 'Sitemap (Solid)' ], [ 'fa-solid fa-umbrella' => 'Umbrella (Solid)' ], [ 'fa-regular fa-lightbulb' => 'Lightbulb Outlined (Regular)' ], [ 'fa-solid fa-arrow-right-arrow-left' => 'Exchange (Solid)' ], [ 'fa-solid fa-cloud-arrow-down' => 'Cloud Download (Solid)' ], [ 'fa-solid fa-cloud-arrow-up' => 'Cloud Upload (Solid)' ], [ 'fa-solid fa-suitcase' => 'Suitcase (Solid)' ], [ 'fa-regular fa-bell' => 'Bell Outlined (Regular)' ], [ 'fa-solid fa-mug-saucer' => 'Coffee (Solid)' ], [ 'fa-solid fa-utensils' => 'Cutlery (Solid)' ], [ 'fa-regular fa-building' => 'Building Outlined (Regular)' ], [ 'fa-solid fa-jet-fighter-up' => 'Fighter Jet (Solid)' ], [ 'fa-solid fa-beer-mug-empty' => 'Beer (Solid)' ], [ 'fa-solid fa-square-plus' => 'Plus Square (Solid)' ], [ 'fa-solid fa-desktop' => 'Desktop (Solid)' ], [ 'fa-solid fa-laptop' => 'Laptop (Solid)' ], [ 'fa-solid fa-tablet-screen-button' => 'Tablet (Solid)' ], [ 'fa-solid fa-mobile-screen' => 'Mobile Phone (Solid)' ], [ 'fa-regular fa-circle' => 'Circle Outlined (Regular)' ], [ 'fa-solid fa-quote-left' => 'Quote Left (Solid)' ], [ 'fa-solid fa-quote-right' => 'Quote Right (Solid)' ], [ 'fa-solid fa-spinner' => 'Spinner (Solid)' ], [ 'fa-solid fa-circle' => 'Circle (Solid)' ], [ 'fa-solid fa-reply' => 'Reply (Solid)' ], [ 'fa-regular fa-folder' => 'Folder Outlined (Regular)' ], [ 'fa-regular fa-folder-open' => 'Folder Open Outlined (Regular)' ], [ 'fa-regular fa-face-smile' => 'Smile Outlined (Regular)' ], [ 'fa-regular fa-face-frown' => 'Frown Outlined (Regular)' ], [ 'fa-regular fa-face-meh' => 'Meh Outlined (Regular)' ], [ 'fa-solid fa-gamepad' => 'Gamepad (Solid)' ], [ 'fa-regular fa-keyboard' => 'Keyboard Outlined (Regular)' ], [ 'fa-regular fa-flag' => 'Flag Outlined (Regular)' ], [ 'fa-solid fa-flag-checkered' => 'Flag Checkered (Solid)' ], [ 'fa-solid fa-terminal' => 'Terminal (Solid)' ], [ 'fa-solid fa-code' => 'Code (Solid)' ], [ 'fa-solid fa-reply-all' => 'Reply All (Solid)' ], [ 'fa-regular fa-star-half-stroke' => 'Star Half Outlined (Regular)' ], [ 'fa-solid fa-location-arrow' => 'Location Arrow (Solid)' ], [ 'fa-solid fa-crop' => 'Crop (Solid)' ], [ 'fa-solid fa-code-branch' => 'Code Fork (Solid)' ], [ 'fa-solid fa-circle-question' => 'Question (Solid)' ], [ 'fa-solid fa-circle-info' => 'Info (Solid)' ], [ 'fa-solid fa-circle-exclamation' => 'Exclamation (Solid)' ], [ 'fa-solid fa-eraser' => 'Eraser (Solid)' ], [ 'fa-solid fa-puzzle-piece' => 'Puzzle Piece (Solid)' ], [ 'fa-solid fa-microphone' => 'Microphone (Solid)' ], [ 'fa-solid fa-microphone-slash' => 'Microphone Slash (Solid)' ], [ 'fa-solid fa-shield-halved' => 'Shield (Solid)' ], [ 'fa-regular fa-calendar-days' => 'Calendar Outlined (Regular)' ], [ 'fa-solid fa-fire-extinguisher' => 'Fire Extinguisher (Solid)' ], [ 'fa-solid fa-rocket' => 'Rocket (Solid)' ], [ 'fa-solid fa-anchor' => 'Anchor (Solid)' ], [ 'fa-solid fa-unlock-keyhole' => 'Unlock Alt (Solid)' ], [ 'fa-solid fa-bullseye' => 'Bullseye (Solid)' ], [ 'fa-solid fa-ellipsis' => 'Ellipsis Horizontal (Solid)' ], [ 'fa-solid fa-ellipsis-vertical' => 'Ellipsis Vertical (Solid)' ], [ 'fa-solid fa-square-rss' => 'RSS Square (Solid)' ], [ 'fa-solid fa-ticket' => 'Ticket (Solid)' ], [ 'fa-solid fa-square-minus' => 'Minus Square (Solid)' ], [ 'fa-regular fa-square-minus' => 'Minus Square Outlined (Regular)' ], [ 'fa-solid fa-level-up-alt' => 'Level Up (Solid)' ], [ 'fa-solid fa-level-down-alt' => 'Level Down (Solid)' ], [ 'fa-solid fa-square-check' => 'Check Square (Solid)' ], [ 'fa-solid fa-square-pen' => 'Pencil Square (Solid)' ], [ 'fa-solid fa-square-arrow-up-right' => 'External Link Square (Solid)' ], [ 'fa-solid fa-share-from-square' => 'Share Square (Solid)' ], [ 'fa-solid fa-compass' => 'Compass (Solid)' ], [ 'fa-regular fa-square-caret-down' => 'Caret Square Outlined Down (Regular)' ], [ 'fa-regular fa-square-caret' =>'Caret Square'], [ 'fa-solid fa-caret-square-up' => 'Caret Square Solid Up' ], [ 'fa-solid fa-caret-square-right' => 'Caret Square Solid Right' ], [ 'fa-solid fa-sort-alpha-up' => 'Sort Alpha Ascending' ], [ 'fa-solid fa-sort-alpha-down' => 'Sort Alpha Descending' ], [ 'fa-solid fa-sort-amount-up' => 'Sort Amount Ascending' ], [ 'fa-solid fa-sort-amount-down' => 'Sort Amount Descending' ], [ 'fa-solid fa-sort-numeric-up' => 'Sort Numeric Ascending' ], [ 'fa-solid fa-sort-numeric-down' => 'Sort Numeric Descending' ], [ 'fa-solid fa-thumbs-up' => 'Thumbs Up' ], [ 'fa-solid fa-thumbs-down' => 'Thumbs Down' ], [ 'fa-solid fa-female' => 'Female' ], [ 'fa-solid fa-male' => 'Male' ], [ 'fa-solid fa-sun' => 'Sun' ], [ 'fa-solid fa-moon' => 'Moon' ], [ 'fa-solid fa-archive' => 'Archive' ], [ 'fa-solid fa-bug' => 'Bug' ], [ 'fa-solid fa-caret-square-left' => 'Caret Square Solid Left' ], [ 'fa-solid fa-dot-circle' => 'Dot Circle' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair' ], [ 'fa-solid fa-plus-square' => 'Plus Square' ], [ 'fa-solid fa-space-shuttle' => 'Space Shuttle' ], [ 'fa-solid fa-envelope-square' => 'Envelope Square' ], [ 'fa-solid fa-university' => 'University' ], [ 'fa-solid fa-graduation-cap' => 'Graduation Cap' ], [ 'fa-solid fa-language' => 'Language' ], [ 'fa-solid fa-fax' => 'Fax' ], [ 'fa-solid fa-building' => 'Building' ], [ 'fa-solid fa-child' => 'Child' ], [ 'fa-solid fa-paw' => 'Paw' ], [ 'fa-solid fa-spoon' => 'Spoon' ], [ 'fa-solid fa-cube' => 'Cube' ], [ 'fa-solid fa-cubes' => 'Cubes' ], [ 'fa-solid fa-recycle' => 'Recycle' ], [ 'fa-solid fa-car' => 'Car' ], [ 'fa-solid fa-taxi' => 'Taxi' ], [ 'fa-solid fa-tree' => 'Tree' ], [ 'fa-solid fa-database' => 'Database' ], [ 'fa-solid fa-file-pdf' => 'PDF File' ], [ 'fa-solid fa-file-word' => 'Word File' ], [ 'fa-solid fa-file-excel' => 'Excel File' ], [ 'fa-solid fa-file-powerpoint' => 'Powerpoint File' ], [ 'fa-solid fa-file-image' => 'Image File' ], [ 'fa-solid fa-file-archive' => 'Archive File' ], [ 'fa-solid fa-file-audio' => 'Audio File' ], [ 'fa-solid fa-file-video' => 'Video File' ], [ 'fa-solid fa-file-code' => 'Code File' ], [ 'fa-solid fa-life-ring' => 'Life Ring' ], [ 'fa-solid fa-circle-notch' => 'Circle Notched' ], [ 'fa-solid fa-paper-plane' => 'Paper Plane' ], [ 'fa-solid fa-paper-plane' => 'Paper Plane Outlined' ], [ 'fa-solid fa-history' => 'History' ], [ 'fa-solid fa-circle' => 'Circle' ], [ 'fa-solid fa-sliders' => 'Sliders' ], [ 'fa-solid fa-share-alt' => 'Share Alt' ], [ 'fa-solid fa-share-alt-square' => 'Share Alt Square' ], [ 'fa-solid fa-bomb' => 'Bomb' ], [ 'fa-solid fa-futbol' => 'Futbol' ], [ 'fa-solid fa-tty' => 'TTY' ], [ 'fa-solid fa-binoculars' => 'Binoculars' ], [ 'fa-solid fa-plug' => 'Plug' ], [ 'fa-solid fa-newspaper' => 'Newspaper' ], [ 'fa-solid fa-wifi' => 'WiFi' ], [ 'fa-solid fa-calculator' => 'Calculator' ], [ 'fa-solid fa-bell-slash' => 'Bell Slash' ], [ 'fa-solid fa-bell-slash' => 'Bell Slash Outlined' ], [ 'fa-solid fa-trash' => 'Trash' ], [ 'fa-solid fa-copyright' => 'Copyright' ], [ 'fa-solid fa-at' => 'At' ], [ 'fa-solid fa-eyedropper' => 'Eyedropper' ], [ 'fa-solid fa-paint-brush' => 'Paint Brush' ], [ 'fa-solid fa-birthday-cake' => 'Birthday Cake' ], [ 'fa-solid fa-area-chart' => 'Area Chart' ], [ 'fa-solid fa-pie-chart' => 'Pie Chart' ], [ 'fa-solid fa-line-chart' => 'Line Chart' ], [ 'fa-solid fa-toggle-off' => 'Toggle Off' ], [ 'fa-solid fa-toggle-on' => 'Toggle On' ], [ 'fa-solid fa-bicycle' => 'Bicycle' ], [ 'fa-solid fa-bus' => 'Bus' ], [ 'fa-solid fa-cc' => 'Closed Captions' ], [ 'fa-solid fa-cart-plus' => 'Add to Shopping Cart' ], [ 'fa-solid fa-cart-arrow-down' => 'Shopping Cart Arrow Down' ], [ 'fa-solid fa-diamond' => 'Diamond' ], [ 'fa-solid fa-ship' => 'Ship' ], [ 'fa-solid fa-user-secret' => 'User Secret' ], [ 'fa-solid fa-motorcycle' => 'Motorcycle' ], [ 'fa-solid fa-street-view' => 'Street View' ], [ 'fa-solid fa-heartbeat' => 'Heartbeat' ], [ 'fa-solid fa-server' => 'Server' ], [ 'fa-solid fa-user-plus' => 'Add User' ], [ 'fa-solid fa-user-times' => 'Remove User' ], [ 'fa-solid fa-bed' => 'Bed' ], [ 'fa-solid fa-battery-full' => 'Battery Full' ], [ 'fa-solid fa-battery-three-quarters' => 'Battery 3/4 Full' ], [ 'fa-solid fa-battery-half' => 'Battery 1/2 Full' ], [ 'fa-solid fa-battery-quarter' => 'Battery 1/4 Full' ], [ 'fa-solid fa-battery-empty' => 'Battery Empty' ], [ 'fa-solid fa-mouse-pointer' => 'Mouse Pointer' ], [ 'fa-solid fa-i-cursor' => 'I Beam Cursor' ], [ 'fa-solid fa-object-group' => 'Object Group' ], [ 'fa-solid fa-object-ungroup' => 'Object Ungroup' ], [ 'fa-solid fa-sticky-note' => 'Sticky Note' ], [ 'fa-solid fa-sticky-note' => 'Sticky Note Outlined' ], [ 'fa-solid fa-clone' => 'Clone' ], [ 'fa-solid fa-balance-scale' => 'Balance Scale' ], [ 'fa-solid fa-hourglass' => 'Hourglass' ], [ 'fa-solid fa-hourglass-start' => 'Hourglass Start' ], [ 'fa-solid fa-hourglass-half' => 'Hourglass Half' ], [ 'fa-solid fa-hourglass-end' => 'Hourglass End' ], [ 'fa-solid fa-hand-rock' => 'Rock Hand' ], [ 'fa-solid fa-hand-paper' => 'Paper Hand' ], [ 'fa-solid fa-hand-scissors' => 'Scissors Hand' ], [ 'fa-solid fa-hand-lizard' => 'Lizard Hand' ], [ 'fa-solid fa-hand-spock' => 'Spock Hand' ], [ 'fa-solid fa-hand-pointer' => 'Hand Pointer' ], [ 'fa-solid fa-hand-peace' => 'Hand Peace' ], [ 'fa-solid fa-trademark' => 'Trademark' ], [ 'fa-solid fa-registered' => 'Registered Trademark' ], [ 'fa-solid fa-creative-commons' => 'Creative Commons' ], [ 'fa-solid fa-tv' => 'Television' ], [ 'fa-solid fa-calendar-plus' => 'Calendar Plus' ], [ 'fa-solid fa-calendar-minus' => 'Calendar Minus' ], [ 'fa-solid fa-calendar-times' => 'Calendar Times' ], [ 'fa-solid fa-calendar-check' => 'Calendar Check' ], [ 'fa-solid fa-industry' => 'Industry' ], [ 'fa-solid fa-map-pin' => 'Map Pin' ], [ 'fa-solid fa-map-signs' => 'Map Signs' ], [ 'fa-solid fa-map' => 'Map' ], [ 'fa-solid fa-map' => 'Map Outlined' ], [ 'fa-solid fa-commenting' => 'Commenting (speech, notification, note, chat, bubble, feedback, message, texting, sms, conversation)' ], [ 'fa-solid fa-commenting' => 'Commenting Outlined (speech, notification, note, chat, bubble, feedback, message, texting, sms, conversation)' ], [ 'fa-solid fa-credit-card' => 'Credit Card (money, buy, debit, checkout, purchase, payment, credit card)' ], [ 'fa-solid fa-shopping-bag' => 'Shopping Bag' ], [ 'fa-solid fa-shopping-basket' => 'Shopping Basket' ], [ 'fa-solid fa-hashtag' => 'Hashtag' ], [ 'fa-solid fa-bluetooth' => 'Bluetooth' ], [ 'fa-solid fa-bluetooth-b' => 'Bluetooth' ], [ 'fa-solid fa-percent' => 'Percent' ], [ 'fa-solid fa-universal-access' => 'Universal Access' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair Alt (handicap, person)' ], [ 'fa-solid fa-question-circle' => 'Question Circle' ], [ 'fa-solid fa-blind' => 'Blind' ], [ 'fa-solid fa-audio-description' => 'Audio Description' ], [ 'fa-solid fa-volume-control-phone' => 'Volume Control Phone (telephone)' ], [ 'fa-solid fa-braille' => 'Braille' ], [ 'fa-solid fa-assistive-listening-systems' => 'Assistive Listening Systems' ], [ 'fa-solid fa-american-sign-language-interpreting' => 'American Sign Language Interpreting (asl-interpreting)' ], [ 'fa-solid fa-deaf' => 'Deaf (deafness, hard-of-hearing)' ], [ 'fa-solid fa-sign-language' => 'Sign Language (signing)' ], [ 'fa-solid fa-low-vision' => 'Low Vision' ], [ 'fa-solid fa-handshake' => 'Handshake Outlined' ], [ 'fa-solid fa-envelope-open' => 'Envelope Open (email, e-mail, letter, support, mail, message, notification)' ], [ 'fa-solid fa-envelope-open' => 'Envelope Open Outlined (email, e-mail, letter, support, mail, message, notification)' ], [ 'fa-solid fa-address-book' => 'Address Book' ], [ 'fa-solid fa-address-book' => 'Address Book Outlined' ], [ 'fa-solid fa-address-card' => 'Address Card (vcard)' ], [ 'fa-solid fa-address-card' => 'Address Card Outlined (vcard-o)' ], [ 'fa-solid fa-user-circle' => 'User Circle' ], [ 'fa-solid fa-user-circle' => 'User Circle Outlined' ], [ 'fa-solid fa-user' => 'User Outlined' ], [ 'fa-solid fa-id-badge' => 'Identification Badge' ], [ 'fa-solid fa-id-card' => 'Identification Card (drivers-license)' ], [ 'fa-solid fa-id-card' => 'Identification Card Outlined (drivers-license-o)' ], [ 'fa-solid fa-thermometer-full' => 'Thermometer Full (thermometer-4, thermometer)' ], [ 'fa-solid fa-thermometer-three-quarters' => 'Thermometer 3/4 Full (thermometer-3)' ], [ 'fa-solid fa-thermometer-half' => 'Thermometer 1/2 Full (thermometer-2)' ], [ 'fa-solid fa-thermometer-quarter' => 'Thermometer 1/4 Full (thermometer-1)' ], [ 'fa-solid fa-thermometer-empty' => 'Thermometer Empty (thermometer-0)' ], [ 'fa-solid fa-shower' => 'Shower' ], [ 'fa-solid fa-bath' => 'Bath (bathtub, s15)' ], [ 'fa-solid fa-podcast' => 'Podcast' ], [ 'fa-solid fa-window-maximize' => 'Window Maximize' ], [ 'fa-solid fa-window-minimize' => 'Window Minimize' ], [ 'fa-solid fa-window-restore' => 'Window Restore' ], [ 'fa-solid fa-window-close' => 'Window Close (times-rectangle)' ], [ 'fa-solid fa-window-close' => 'Window Close Outline (times-rectangle-o)' ], [ 'fa-solid fa-microchip' => 'Microchip' ], [ 'fa-solid fa-snowflake' => 'Snowflake' ], ], 'Medical Icons' => [ [ 'fa-solid fa-heart' => 'Heart (love, like, favorite)' ], [ 'fa-solid fa-heart' => 'Heart Outlined (love, like, favorite)' ], [ 'fa-solid fa-user-md' => 'User MD (doctor, profile, medical, nurse)' ], [ 'fa-solid fa-stethoscope' => 'Stethoscope' ], [ 'fa-solid fa-hospital' => 'Hospital (building)' ], [ 'fa-solid fa-ambulance' => 'Ambulance (vehicle, support, help)' ], [ 'fa-solid fa-medkit' => 'Medkit (first aid, firstaid, help, support, health)' ], [ 'fa-solid fa-h-square' => 'H Square (hospital, hotel)' ], [ 'fa-solid fa-plus-square' => 'Plus Square (add, new, create, expand)' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair (handicap, person)' ], [ 'fa-solid fa-heartbeat' => 'Heartbeat (ekg)' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair Alt (handicap, person)' ], ], 'Text Editor Icons' => [ [ 'fa-solid fa-th-large' => 'Th Large (blocks, squares, boxes, grid)' ], [ 'fa-solid fa-th' => 'Th (blocks, squares, boxes, grid)' ], [ 'fa-solid fa-th-list' => 'Th List (ul, ol, checklist, finished, completed, done, todo)' ], [ 'fa-solid fa-file' => 'File (new, page, pdf, document)' ], [ 'fa-solid fa-repeat' => 'Repeat (redo, forward) (rotate-right)' ], [ 'fa-solid fa-list-alt' => 'List Alt (ul, ol, checklist, finished, completed, done, todo)' ], [ 'fa-solid fa-font' => 'Font (text)' ], [ 'fa-solid fa-bold' => 'Bold' ], [ 'fa-solid fa-italic' => 'Italic (italics)' ], [ 'fa-solid fa-text-height' => 'Text Height' ], [ 'fa-solid fa-text-width' => 'Text Width' ], [ 'fa-solid fa-align-left' => 'Align Left (text)' ], [ 'fa-solid fa-align-center' => 'Align Center (middle, text)' ], [ 'fa-solid fa-align-right' => 'Align Right (text)' ], [ 'fa-solid fa-align-justify' => 'Align Justify (text)' ], [ 'fa-solid fa-list' => 'List (ul, ol, checklist, finished, completed, done, todo)' ], [ 'fa-solid fa-outdent' => 'Outdent (dedent)' ], [ 'fa-solid fa-indent' => 'Indent' ], [ 'fa-solid fa-link' => 'Link (chain)' ], [ 'fa-solid fa-scissors' => 'Scissors (cut)' ], [ 'fa-solid fa-files' => 'Files (duplicate, clone, copy)' ], [ 'fa-solid fa-paperclip' => 'Paperclip (attachment)' ], [ 'fa-solid fa-floppy-disk' => 'Floppy Disk (save)' ], [ 'fa-solid fa-list-ul' => 'List Ul (ul, ol, checklist, todo, list)' ], [ 'fa-solid fa-list-ol' => 'List Ol (ul, ol, checklist, list, todo, list, numbers)' ], [ 'fa-solid fa-strikethrough' => 'Strikethrough' ], [ 'fa-solid fa-underline' => 'Underline' ], [ 'fa-solid fa-table' => 'Table (data, excel, spreadsheet)' ], [ 'fa-solid fa-columns' => 'Columns (split, panes)' ], [ 'fa-solid fa-undo' => 'Undo (back) (rotate-left)' ], [ 'fa-solid fa-clipboard' => 'Clipboard (copy, paste)' ], [ 'fa-solid fa-file-text' => 'File Text (new, page, pdf, document)' ], [ 'fa-solid fa-chain' => 'Chain Broken (remove, unlink)' ], [ 'fa-solid fa-superscript' => 'Superscript (exponential)' ], [ 'fa-solid fa-subscript' => 'Subscript' ], [ 'fa-solid fa-eraser' => 'Eraser (remove, delete)' ], [ 'fa-solid fa-file' => 'File (new, page, pdf, document)' ], [ 'fa-solid fa-file-text' => 'File Text (new, page, pdf, document)' ], [ 'fa-solid fa-header' => 'Header (heading)' ], [ 'fa-solid fa-paragraph' => 'Paragraph' ], ], 'Spinner Icons' => [ [ 'fa-solid fa-cog' => 'Cog (settings, gear)' ], [ 'fa-solid fa-refresh' => 'Refresh (reload, sync)' ], [ 'fa-solid fa-spinner' => 'Spinner (loading, progress)' ], [ 'fa-solid fa-circle-notch' => 'Circle Notched' ], ], 'File Type Icons' => [ [ 'fa-solid fa-file' => 'File (new, page, pdf, document)' ], [ 'fa-solid fa-file-text' => 'File Text (new, page, pdf, document)' ], [ 'fa-solid fa-file-pdf' => 'PDF File' ], [ 'fa-solid fa-file-word' => 'Word File' ], [ 'fa-solid fa-file-excel' => 'Excel File' ], [ 'fa-solid fa-file-powerpoint' => 'PowerPoint File' ], [ 'fa-solid fa-file-image' => 'Image File (file-photo, file-picture)' ], [ 'fa-solid fa-file-archive' => 'Archive File (file-zip)' ], [ 'fa-solid fa-file-audio' => 'Audio File (file-sound)' ], [ 'fa-solid fa-file-video' => 'Video File (file-movie)' ], [ 'fa-solid fa-file-code' => 'Code File' ], ], 'Directional Icons' => [ [ 'fa-solid fa-arrow-down' => 'Arrow Down (download)' ], [ 'fa-solid fa-arrow-up' => 'Arrow Up' ], [ 'fa-solid fa-arrows' => 'Arrows (move, reorder, resize)' ], [ 'fa-solid fa-chevron-left' => 'Chevron Left (bracket, previous, back)' ], [ 'fa-solid fa-chevron-right' => 'Chevron Right (bracket, next, forward)' ], [ 'fa-solid fa-arrow-left' => 'Arrow Left (previous, back)' ], [ 'fa-solid fa-arrow-right' => 'Arrow Right (next, forward)' ], [ 'fa-solid fa-arrow-up' => 'Arrow Up' ], [ 'fa-solid fa-arrow-down' => 'Arrow Down (download)' ], [ 'fa-solid fa-chevron-up' => 'Chevron Up' ], [ 'fa-solid fa-chevron-down' => 'Chevron Down' ], [ 'fa-solid fa-arrows-v' => 'Arrows Vertical (resize)' ], [ 'fa-solid fa-arrows-h' => 'Arrows Horizontal (resize)' ], [ 'fa-solid fa-hand-point-right' => 'Hand Point Right (point, right, next, forward, finger)' ], [ 'fa-solid fa-hand-point-left' => 'Hand Point Left (point, left, previous, back, finger)' ], [ 'fa-solid fa-hand-point-up' => 'Hand Point Up (point, finger)' ], [ 'fa-solid fa-hand-point-down' => 'Hand Point Down (point, finger)' ], [ 'fa-solid fa-arrow-circle-left' => 'Arrow Circle Left (previous, back)' ], [ 'fa-solid fa-arrow-circle-right' => 'Arrow Circle Right (next, forward)' ], [ 'fa-solid fa-arrow-circle-up' => 'Arrow Circle Up' ], [ 'fa-solid fa-arrow-circle-down' => 'Arrow Circle Down (download)' ], [ 'fa-solid fa-expand' => 'Expand (enlarge, fullscreen, bigger, move, reorder, resize, arrow)' ], [ 'fa-solid fa-caret-down' => 'Caret Down (more, dropdown, menu, triangle down, arrow)' ], [ 'fa-solid fa-caret-up' => 'Caret Up (triangle up, arrow)' ], [ 'fa-solid fa-caret-left' => 'Caret Left (previous, back, triangle left, arrow)' ], [ 'fa-solid fa-caret-right' => 'Caret Right (next, forward, triangle right, arrow)' ], [ 'fa-solid fa-exchange' => 'Exchange (transfer, arrows, arrow)' ], [ 'fa-solid fa-angle-double-left' => 'Angle Double Left (laquo, quote, previous, back, arrows)' ], [ 'fa-solid fa-angle-double-right' => 'Angle Double Right (raquo, quote, next, forward, arrows)' ], [ 'fa-solid fa-angle-double-up' => 'Angle Double Up (arrows)' ], [ 'fa-solid fa-angle-double-down' => 'Angle Double Down (arrows)' ], [ 'fa-solid fa-angle-left' => 'Angle Left (previous, back, arrow)' ], [ 'fa-solid fa-angle-right' => 'Angle Right (next, forward, arrow)' ], [ 'fa-solid fa-angle-up' => 'Angle Up (arrow)' ], [ 'fa-solid fa-angle-down' => 'Angle Down (arrow)' ], [ 'fa-solid fa-chevron-circle-left' => 'Chevron Circle Left (previous, back, arrow)' ], [ 'fa-solid fa-chevron-circle-right' => 'Chevron Circle Right (next, forward, arrow)' ], [ 'fa-solid fa-chevron-circle-up' => 'Chevron Circle Up (arrow)' ], [ 'fa-solid fa-chevron-circle-down' => 'Chevron Circle Down (more, dropdown, menu, arrow)' ], [ 'fa-solid fa-caret-square-down' => 'Caret Square Down (more, dropdown, menu, toggle-down)' ], [ 'fa-solid fa-caret-square-up' => 'Caret Square Up (toggle-up)' ], [ 'fa-solid fa-caret-square-right' => 'Caret Square Right (next, forward, toggle-right)' ], [ 'fa-solid fa-long-arrow-down' => 'Long Arrow Down' ], [ 'fa-solid fa-long-arrow-up' => 'Long Arrow Up' ], [ 'fa-solid fa-long-arrow-left' => 'Long Arrow Left (previous, back)' ], [ 'fa-solid fa-long-arrow-right' => 'Long Arrow Right' ], [ 'fa-solid fa-arrow-circle-right' => 'Arrow Circle Right (next, forward)' ], [ 'fa-solid fa-arrow-circle-left' => 'Arrow Circle Left (previous, back)' ], [ 'fa-solid fa-caret-square-left' => 'Caret Square Left (previous, back, toggle-left)' ], ], 'Video Player Icons' => [ [ 'fa-solid fa-circle-play' => 'Play Circle' ], [ 'fa-solid fa-step-backward' => 'Step Backward (rewind, previous, beginning, start, first)' ], [ 'fa-solid fa-backward' => 'Fast Backward (rewind, previous, beginning, start, first)' ], [ 'fa-solid fa-backward' => 'Backward (rewind, previous)' ], [ 'fa-solid fa-play' => 'Play (start, playing, music, sound)' ], [ 'fa-solid fa-pause' => 'Pause (wait)' ], [ 'fa-solid fa-stop' => 'Stop (block, box, square)' ], [ 'fa-solid fa-forward' => 'Forward (next)' ], [ 'fa-solid fa-fast-forward' => 'Fast Forward (next, end, last)' ], [ 'fa-solid fa-step-forward' => 'Step Forward (next, end, last)' ], [ 'fa-solid fa-eject' => 'Eject' ], [ 'fa-solid fa-expand' => 'Expand (enlarge, bigger, resize)' ], [ 'fa-solid fa-compress' => 'Compress (collapse, combine, contract, merge, smaller)' ], [ 'fa-solid fa-random' => 'Random (sort, shuffle)' ], [ 'fa-solid fa-expand' => 'Arrows Alt (expand, enlarge, fullscreen, bigger, move, reorder, resize, arrow)' ], [ 'fa-solid fa-circle-play' => 'Play Circle (start, playing)' ], [ 'fa-brands fa-youtube' => 'YouTube Play (start, playing)' ], [ 'fa-solid fa-circle-pause' => 'Pause Circle' ], [ 'fa-solid fa-circle-pause' => 'Pause Circle Outlined' ], [ 'fa-solid fa-circle-stop' => 'Stop Circle' ], [ 'fa-solid fa-circle-stop' => 'Stop Circle Outlined' ], ], 'Form Control Icons' => [ [ 'fa-solid fa-square-check' => 'Check Square (todo, done, agree, accept, confirm, ok)' ], [ 'fa-solid fa-square' => 'Square (block, square, box)' ], [ 'fa-solid fa-square' => 'Square Outlined (block, box)' ], [ 'fa-solid fa-square-plus' => 'Plus Square (add, new, create, expand)' ], [ 'fa-solid fa-circle' => 'Circle (dot, notification)' ], [ 'fa-solid fa-circle' => 'Circle Outlined' ], [ 'fa-solid fa-square-minus' => 'Minus Square (hide, minify, delete, remove, trash, collapse)' ], [ 'fa-solid fa-square-minus' => 'Minus Square Outlined (hide, minify, delete, remove, trash, collapse)' ], [ 'fa-solid fa-square-check' => 'Check Square (checkmark, done, todo, agree, accept, confirm, ok)' ], [ 'fa-solid fa-circle-dot' => 'Dot Circle (target, bullseye, notification)' ], [ 'fa-solid fa-square-plus' => 'Plus Square Outlined (add, new, create, expand)' ], ], 'Transportation Icons' => [ [ 'fa-solid fa-plane' => 'Plane (travel, trip, location, destination, airplane, fly, mode)' ], [ 'fa-solid fa-truck' => 'Truck (shipping)' ], [ 'fa-solid fa-ambulance' => 'Ambulance (vehicle, support, help)' ], [ 'fa-solid fa-jet-fighter' => 'Fighter Jet (fly, plane, airplane, quick, fast, travel)' ], [ 'fa-solid fa-rocket' => 'Rocket (app)' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair (handicap, person)' ], [ 'fa-solid fa-space-shuttle' => 'Space Shuttle' ], [ 'fa-solid fa-car' => 'Car (vehicle, automobile)' ], [ 'fa-solid fa-taxi' => 'Taxi (vehicle, cab)' ], [ 'fa-solid fa-bicycle' => 'Bicycle (vehicle, bike)' ], [ 'fa-solid fa-bus' => 'Bus (vehicle)' ], [ 'fa-solid fa-ship' => 'Ship (boat, sea)' ], [ 'fa-solid fa-motorcycle' => 'Motorcycle (vehicle, bike)' ], [ 'fa-solid fa-train' => 'Train' ], [ 'fa-solid fa-subway' => 'Subway' ], [ 'fa-solid fa-wheelchair' => 'Wheelchair Alt (handicap, person)' ], ], 'Chart Icons' => [ [ 'fa-solid fa-bar-chart' => 'Bar Chart (graph, analytics, statistics)' ], [ 'fa-solid fa-chart-area' => 'Area Chart (graph, analytics, statistics)' ], [ 'fa-solid fa-chart-pie' => 'Pie Chart (graph, analytics, statistics)' ], [ 'fa-solid fa-chart-line' => 'Line Chart (graph, analytics, statistics)' ], ], 'Brand Icons' => [ [ 'fa-brands fa-x-twitter' => 'Twitter' ], [ 'fa-brands fa-facebook' => 'Facebook' ], [ 'fa-brands fa-linkedin' => 'LinkedIn' ], [ 'fa-brands fa-github' => 'GitHub' ], [ 'fa-brands fa-pinterest' => 'Pinterest' ], [ 'fa-brands fa-google' => 'Google' ], [ 'fa-brands fa-youtube' => 'YouTube' ], [ 'fa-brands fa-tumblr' => 'Tumblr' ], [ 'fa-brands fa-apple' => 'Apple' ], [ 'fa-brands fa-windows' => 'Windows' ], [ 'fa-brands fa-android' => 'Android' ], [ 'fa-brands fa-linux' => 'Linux' ], [ 'fa-brands fa-dribbble' => 'Dribbble' ], [ 'fa-brands fa-skype' => 'Skype' ], [ 'fa-brands fa-dropbox' => 'Dropbox' ], [ 'fa-brands fa-instagram' => 'Instagram' ], [ 'fa-brands fa-bitbucket' => 'Bitbucket' ], [ 'fa-brands fa-spotify' => 'Spotify' ], [ 'fa-brands fa-soundcloud' => 'SoundCloud' ], [ 'fa-brands fa-vine' => 'Vine' ], [ 'fa-brands fa-reddit' => 'Reddit' ], [ 'fa-brands fa-twitch' => 'Twitch' ], [ 'fa-brands fa-paypal' => 'PayPal' ], [ 'fa-brands fa-cc-visa' => 'Visa Credit Card' ], [ 'fa-brands fa-cc-mastercard' => 'MasterCard Credit Card' ], [ 'fa-brands fa-cc-discover' => 'Discover Credit Card' ], [ 'fa-brands fa-cc-amex' => 'American Express Credit Card' ], [ 'fa-brands fa-cc-stripe' => 'Stripe Credit Card' ], [ 'fa-brands fa-lastfm' => 'Last.fm' ], [ 'fa-brands fa-y-combinator' => 'Y Combinator' ], [ 'fa-brands fa-snapchat' => 'Snapchat' ], [ 'fa-brands fa-telegram' => 'Telegram' ], [ 'fa-brands fa-quora' => 'Quora' ], [ 'fa-brands fa-free-code-camp' => 'Free Code Camp' ], [ 'fa-brands fa-gitlab' => 'GitLab' ], [ 'fa-brands fa-viadeo' => 'Viadeo' ], [ 'fa-brands fa-whatsapp' => 'WhatsApp' ], [ 'fa-brands fa-facebook-messenger' => 'Facebook Messenger' ], [ 'fa-brands fa-codepen' => 'CodePen' ], [ 'fa-brands fa-jsfiddle' => 'JSFiddle' ], [ 'fa-brands fa-git' => 'Git' ], [ 'fa-brands fa-hacker-news' => 'Hacker News' ], [ 'fa-brands fa-pied-piper' => 'Pied Piper' ], [ 'fa-brands fa-leanpub' => 'Leanpub' ], [ 'fa-brands fa-sellsy' => 'Sellsy' ], [ 'fa-brands fa-shoppify' => 'Shopify' ], [ 'fa-brands fa-stack-overflow' => 'Stack Overflow' ], [ 'fa-brands fa-vimeo' => 'Vimeo' ], [ 'fa-brands fa-yelp' => 'Yelp' ], [ 'fa-brands fa-wix' => 'Wix' ], [ 'fa-brands fa-wpbeginner' => 'WPBeginner' ], [ 'fa-brands fa-envira' => 'Envira Gallery' ], [ 'fa-brands fa-gitter' => 'Gitter' ], [ 'fa-brands fa-google-plus-g' => 'Google Plus' ], [ 'fa-brands fa-tumblr-square' => 'Tumblr Square' ], [ 'fa-brands fa-facebook-f' => 'Facebook F' ], [ 'fa-brands fa-twitter-square' => 'Twitter Square' ], [ 'fa-brands fa-linkedin-in' => 'LinkedIn In' ], [ 'fa-brands fa-github-alt' => 'GitHub Alt' ], [ 'fa-brands fa-pinterest-p' => 'Pinterest P' ], [ 'fa-brands fa-google-plus-square' => 'Google Plus Square' ], [ 'fa-brands fa-youtube-square' => 'YouTube Square' ], [ 'fa-brands fa-xing' => 'Xing' ], [ 'fa-brands fa-xing-square' => 'Xing Square' ], [ 'fa-brands fa-slack' => 'Slack' ], [ 'fa-brands fa-wordpress' => 'WordPress' ], [ 'fa-brands fa-openid' => 'OpenID' ], [ 'fa-brands fa-yahoo' => 'Yahoo' ], [ 'fa-brands fa-reddit-alien' => 'Reddit Alien' ], [ 'fa-brands fa-tumblr' => 'Tumblr' ], [ 'fa-brands fa-vimeo-v' => 'Vimeo V' ], [ 'fa-brands fa-docker' => 'Docker' ], [ 'fa-brands fa-chrome' => 'Chrome' ], [ 'fa-brands fa-firefox' => 'Firefox' ], [ 'fa-brands fa-edge' => 'Edge' ], [ 'fa-brands fa-opera' => 'Opera' ], [ 'fa-brands fa-internet-explorer' => 'Internet Explorer' ], [ 'fa-brands fa-dashcube' => 'Dashcube' ], [ 'fa-brands fa-buysellads' => 'BuySellAds' ], [ 'fa-brands fa-connectdevelop' => 'ConnectDevelop' ], [ 'fa-brands fa-forumbee' => 'Forumbee' ], [ 'fa-brands fa-fort-awesome' => 'Fort Awesome' ], [ 'fa-brands fa-joomla' => 'Joomla' ], [ 'fa-brands fa-etsy' => 'Etsy' ], [ 'fa-brands fa-imdb' => 'IMDB' ], [ 'fa-brands fa-ravelry' => 'Ravelry' ], [ 'fa-brands fa-eercast' => 'Eercast' ], [ 'fa-brands fa-superpowers' => 'Superpowers' ], [ 'fa-brands fa-wpexplorer' => 'WPExplorer' ], [ 'fa-brands fa-meetup' => 'Meetup' ], [ 'fa-brands fa-vk' => 'VK' ], [ 'fa-brands fa-weibo' => 'Weibo' ], [ 'fa-brands fa-renren' => 'Renren' ], [ 'fa-brands fa-pagelines' => 'Pagelines' ], [ 'fa-brands fa-stack-exchange' => 'Stack Exchange' ], [ 'fa-brands fa-rebel' => 'Rebel Alliance' ], [ 'fa-brands fa-empire' => 'Galactic Empire' ], [ 'fa-brands fa-git-square' => 'Git Square' ], [ 'fa-brands fa-git' => 'Git' ], [ 'fa-brands fa-hacker-news' => 'Hacker News' ], [ 'fa-brands fa-tencent-weibo' => 'Tencent Weibo' ], [ 'fa-brands fa-qq' => 'QQ' ], [ 'fa-brands fa-weixin' => 'Weixin' ], [ 'fa-brands fa-share-alt' => 'Share Alt' ], [ 'fa-brands fa-share-alt-square' => 'Share Alt Square' ], [ 'fa-brands fa-slideshare' => 'Slideshare' ], [ 'fa-brands fa-twitch' => 'Twitch' ], [ 'fa-brands fa-yelp' => 'Yelp' ], [ 'fa-brands fa-paypal' => 'PayPal' ], [ 'fa-brands fa-google-wallet' => 'Google Wallet' ], [ 'fa-brands fa-cc-visa' => 'Visa Credit Card' ], [ 'fa-brands fa-cc-mastercard' => 'MasterCard Credit Card' ], [ 'fa-brands fa-cc-discover' => 'Discover Credit Card' ], [ 'fa-brands fa-cc-amex' => 'American Express Credit Card' ], [ 'fa-brands fa-cc-paypal' => 'PayPal Credit Card' ], [ 'fa-brands fa-cc-stripe' => 'Stripe Credit Card' ], [ 'fa-brands fa-lastfm' => 'Last.fm' ], [ 'fa-brands fa-lastfm-square' => 'Last.fm Square' ], [ 'fa-brands fa-ioxhost' => 'Ioxhost' ], [ 'fa-brands fa-angellist' => 'AngelList' ], ], 'Hand Icons' => [ [ 'fa fa-thumbs-o-up' => 'Thumbs Up Outlined(like, approve, favorite, agree, hand)' ], [ 'fa fa-thumbs-o-down' => 'Thumbs Down Outlined(dislike, disapprove, disagree, hand)' ], [ 'fa fa-hand-o-right' => 'Hand Outlined Right(point, right, next, forward, finger)' ], [ 'fa fa-hand-o-left' => 'Hand Outlined Left(point, left, previous, back, finger)' ], [ 'fa fa-hand-o-up' => 'Hand Outlined Up(point, finger)' ], [ 'fa fa-hand-o-down' => 'Hand Outlined Down(point, finger)' ], [ 'fa fa-thumbs-up' => 'thumbs-up(like, favorite, approve, agree, hand)' ], [ 'fa fa-thumbs-down' => 'thumbs-down(dislike, disapprove, disagree, hand)' ], [ 'fa fa-hand-rock-o' => 'Rock (Hand)(hand-grab-o)' ], [ 'fa fa-hand-paper-o' => 'Paper (Hand)(stop)(hand-stop-o)' ], [ 'fa fa-hand-scissors-o' => 'Scissors (Hand)' ], [ 'fa fa-hand-lizard-o' => 'Lizard (Hand)' ], [ 'fa fa-hand-spock-o' => 'Spock (Hand)' ], [ 'fa fa-hand-pointer-o' => 'Hand Pointer' ], [ 'fa fa-hand-peace-o' => 'Hand Peace' ], ], 'Payment Icons' => [ [ 'fa fa-credit-card' => 'credit-card(money, buy, debit, checkout, purchase, payment)' ], [ 'fa fa-paypal' => 'Paypal' ], [ 'fa fa-google-wallet' => 'Google Wallet' ], [ 'fa fa-cc-visa' => 'Visa Credit Card' ], [ 'fa fa-cc-mastercard' => 'MasterCard Credit Card' ], [ 'fa fa-cc-discover' => 'Discover Credit Card' ], [ 'fa fa-cc-amex' => 'American Express Credit Card(amex)' ], [ 'fa fa-cc-paypal' => 'Paypal Credit Card' ], [ 'fa fa-cc-stripe' => 'Stripe Credit Card' ], [ 'fa fa-cc-jcb' => 'JCB Credit Card' ], [ 'fa fa-cc-diners-club' => 'Diner\'s Club Credit Card' ], [ 'fa fa-credit-card-alt' => 'Credit Card(money, buy, debit, checkout, purchase, payment, credit card)' ], ], 'Currency Icons' => [ [ 'fa fa-money' => 'Money(cash, money, buy, checkout, purchase, payment)' ], [ 'fa fa-eur' => 'Euro (EUR)(euro)' ], [ 'fa fa-gbp' => 'GBP' ], [ 'fa fa-usd' => 'US Dollar(dollar)' ], [ 'fa fa-inr' => 'Indian Rupee (INR)(rupee)' ], [ 'fa fa-jpy' => 'Japanese Yen (JPY)(cny, rmb, yen)' ], [ 'fa fa-rub' => 'Russian Ruble (RUB)(ruble, rouble)' ], [ 'fa fa-krw' => 'Korean Won (KRW)(won)' ], [ 'fa fa-btc' => 'Bitcoin (BTC)(bitcoin)' ], [ 'fa fa-try' => 'Turkish Lira (TRY)(turkish-lira)' ], [ 'fa fa-ils' => 'Shekel (ILS)(shekel, sheqel)' ], [ 'fa fa-gg' => 'GG Currency' ], [ 'fa fa-gg-circle' => 'GG Currency Circle' ], ], 'Currency Icons' => [ [ 'fa-solid fa-money-bill' => 'Money (cash, money, buy, checkout, purchase, payment)' ], [ 'fa-solid fa-euro-sign' => 'Euro (EUR) (euro)' ], [ 'fa-solid fa-pound-sign' => 'GBP (British Pound)' ], [ 'fa-solid fa-dollar-sign' => 'US Dollar (dollar)' ], [ 'fa-solid fa-rupee-sign' => 'Indian Rupee (INR) (rupee)' ], [ 'fa-solid fa-yen-sign' => 'Japanese Yen (JPY) (yen)' ], [ 'fa-solid fa-ruble-sign' => 'Russian Ruble (RUB) (ruble, rouble)' ], [ 'fa-solid fa-won-sign' => 'Korean Won (KRW) (won)' ], [ 'fa-brands fa-bitcoin' => 'Bitcoin (BTC) (bitcoin)' ], [ 'fa-solid fa-lira-sign' => 'Turkish Lira (TRY) (turkish-lira)' ], [ 'fa-solid fa-shekel-sign' => 'Shekel (ILS) (shekel, sheqel)' ], [ 'fa-solid fa-g' => 'GG Currency' ], [ 'fa-solid fa-g-circle' => 'GG Currency Circle' ], ], 'Accessibility Icons' => [ [ 'fa-solid fa-wheelchair' => 'Wheelchair (handicap, person)' ], [ 'fa-solid fa-tty' => 'TTY' ], [ 'fa-solid fa-closed-captioning' => 'Closed Captions' ], [ 'fa-solid fa-universal-access' => 'Universal Access' ], [ 'fa-solid fa-wheelchair-move' => 'Wheelchair Alt (handicap, person)' ], [ 'fa-solid fa-question-circle' => 'Question Circle Outlined' ], [ 'fa-solid fa-blind' => 'Blind' ], [ 'fa-solid fa-audio-description' => 'Audio Description' ], [ 'fa-solid fa-volume-control-phone' => 'Volume Control Phone (telephone)' ], [ 'fa-solid fa-braille' => 'Braille' ], [ 'fa-solid fa-assistive-listening-systems' => 'Assistive Listening Systems' ], [ 'fa-solid fa-american-sign-language-interpreting' => 'American Sign Language Interpreting (asl-interpreting)' ], [ 'fa-solid fa-deaf' => 'Deaf (deafness, hard-of-hearing)' ], [ 'fa-solid fa-sign-language' => 'Sign Language (signing)' ], [ 'fa-solid fa-low-vision' => 'Low Vision' ], ], 'Gender Icons' => [ [ 'fa-solid fa-venus' => 'Venus (female)' ], [ 'fa-solid fa-mars' => 'Mars (male)' ], [ 'fa-solid fa-mercury' => 'Mercury (transgender)' ], [ 'fa-solid fa-transgender' => 'Transgender (intersex)' ], [ 'fa-solid fa-transgender-alt' => 'Transgender Alt' ], [ 'fa-solid fa-venus-double' => 'Venus Double' ], [ 'fa-solid fa-mars-double' => 'Mars Double' ], [ 'fa-solid fa-venus-mars' => 'Venus Mars' ], [ 'fa-solid fa-mars-stroke' => 'Mars Stroke' ], [ 'fa-solid fa-mars-stroke-v' => 'Mars Stroke Vertical' ], [ 'fa-solid fa-mars-stroke-h' => 'Mars Stroke Horizontal' ], [ 'fa-solid fa-neuter' => 'Neuter' ], [ 'fa-solid fa-genderless' => 'Genderless' ], ], ]; } /** * Ion Icons. * * @return array */ function aheto_icons_ionicons() { return [ [ 'ion-alert' => 'Alert' ], [ 'ion-alert-circled' => 'Alert Circled' ], [ 'ion-android-add' => 'Android Add' ], [ 'ion-android-add-circle' => 'Android Add Circle' ], [ 'ion-android-alarm-clock' => 'Android Alarm Clock' ], [ 'ion-android-alert' => 'Android Alert' ], [ 'ion-android-apps' => 'Android Apps' ], [ 'ion-android-archive' => 'Android Archive' ], [ 'ion-android-arrow-back' => 'Android Arrow Back' ], [ 'ion-android-arrow-down' => 'Android Arrow Down' ], [ 'ion-android-arrow-dropdown' => 'Android Arrow Dropdown' ], [ 'ion-android-arrow-dropdown-circle' => 'Android Arrow Dropdown Circle' ], [ 'ion-android-arrow-dropleft' => 'Android Arrow Dropleft' ], [ 'ion-android-arrow-dropleft-circle' => 'Android Arrow Dropleft Circle' ], [ 'ion-android-arrow-dropright' => 'Android Arrow Dropright' ], [ 'ion-android-arrow-dropright-circle' => 'Android Arrow Dropright Circle' ], [ 'ion-android-arrow-dropup' => 'Android Arrow Dropup' ], [ 'ion-android-arrow-dropup-circle' => 'Android Arrow Dropup Circle' ], [ 'ion-android-arrow-forward' => 'Android Arrow Forward' ], [ 'ion-android-arrow-up' => 'Android Arrow Up' ], [ 'ion-android-attach' => 'Android Attach' ], [ 'ion-android-bar' => 'Android Bar' ], [ 'ion-android-bicycle' => 'Android Bicycle' ], [ 'ion-android-boat' => 'Android Boat' ], [ 'ion-android-bookmark' => 'Android Bookmark' ], [ 'ion-android-bulb' => 'Android Bulb' ], [ 'ion-android-bus' => 'Android Bus' ], [ 'ion-android-calendar' => 'Android Calendar' ], [ 'ion-android-call' => 'Android Call' ], [ 'ion-android-camera' => 'Android Camera' ], [ 'ion-android-cancel' => 'Android Cancel' ], [ 'ion-android-car' => 'Android Car' ], [ 'ion-android-cart' => 'Android Cart' ], [ 'ion-android-chat' => 'Android Chat' ], [ 'ion-android-checkbox' => 'Android Checkbox' ], [ 'ion-android-checkbox-blank' => 'Android Checkbox Blank' ], [ 'ion-android-checkbox-outline' => 'Android Checkbox Outline' ], [ 'ion-android-checkbox-outline-blank' => 'Android Checkbox Outline Blank' ], [ 'ion-android-checkmark-circle' => 'Android Checkmark Circle' ], [ 'ion-android-clipboard' => 'Android Clipboard' ], [ 'ion-android-close' => 'Android Close' ], [ 'ion-android-cloud' => 'Android Cloud' ], [ 'ion-android-cloud-circle' => 'Android Cloud Circle' ], [ 'ion-android-cloud-done' => 'Android Cloud Done' ], [ 'ion-android-cloud-outline' => 'Android Cloud Outline' ], [ 'ion-android-color-palette' => 'Android Color Palette' ], [ 'ion-android-compass' => 'Android Compass' ], [ 'ion-android-contact' => 'Android Contact' ], [ 'ion-android-contacts' => 'Android Contacts' ], [ 'ion-android-contract' => 'Android Contract' ], [ 'ion-android-create' => 'Android Create' ], [ 'ion-android-delete' => 'Android Delete' ], [ 'ion-android-desktop' => 'Android Desktop' ], [ 'ion-android-document' => 'Android Document' ], [ 'ion-android-done' => 'Android Done' ], [ 'ion-android-done-all' => 'Android Done All' ], [ 'ion-android-download' => 'Android Download' ], [ 'ion-android-drafts' => 'Android Drafts' ], [ 'ion-android-exit' => 'Android Exit' ], [ 'ion-android-expand' => 'Android Expand' ], [ 'ion-android-favorite' => 'Android Favorite' ], [ 'ion-android-favorite-outline' => 'Android Favorite Outline' ], [ 'ion-android-film' => 'Android Film' ], [ 'ion-android-folder' => 'Android Folder' ], [ 'ion-android-folder-open' => 'Android Folder Open' ], [ 'ion-android-funnel' => 'Android Funnel' ], [ 'ion-android-globe' => 'Android Globe' ], [ 'ion-android-hand' => 'Android Hand' ], [ 'ion-android-hangout' => 'Android Hangout' ], [ 'ion-android-happy' => 'Android Happy' ], [ 'ion-android-home' => 'Android Home' ], [ 'ion-android-image' => 'Android Image' ], [ 'ion-android-laptop' => 'Android Laptop' ], [ 'ion-android-list' => 'Android List' ], [ 'ion-android-locate' => 'Android Locate' ], [ 'ion-android-lock' => 'Android Lock' ], [ 'ion-android-mail' => 'Android Mail' ], [ 'ion-android-map' => 'Android Map' ], [ 'ion-android-menu' => 'Android Menu' ], [ 'ion-android-microphone' => 'Android Microphone' ], [ 'ion-android-microphone-off' => 'Android Microphone Off' ], [ 'ion-android-more-horizontal' => 'Android More Horizontal' ], [ 'ion-android-more-vertical' => 'Android More Vertical' ], [ 'ion-android-navigate' => 'Android Navigate' ], [ 'ion-android-notifications' => 'Android Notifications' ], [ 'ion-android-notifications-none' => 'Android Notifications None' ], [ 'ion-android-notifications-off' => 'Android Notifications Off' ], [ 'ion-android-open' => 'Android Open' ], [ 'ion-android-options' => 'Android Options' ], [ 'ion-android-people' => 'Android People' ], [ 'ion-android-person' => 'Android Person' ], [ 'ion-android-person-add' => 'Android Person Add' ], [ 'ion-android-phone-landscape' => 'Android Phone Landscape' ], [ 'ion-android-phone-portrait' => 'Android Phone Portrait' ], [ 'ion-android-pin' => 'Android Pin' ], [ 'ion-android-plane' => 'Android Plane' ], [ 'ion-android-playstore' => 'Android Playstore' ], [ 'ion-android-print' => 'Android Print' ], [ 'ion-android-radio-button-off' => 'Android Radio Button Off' ], [ 'ion-android-radio-button-on' => 'Android Radio Button On' ], [ 'ion-android-refresh' => 'Android Refresh' ], [ 'ion-android-remove' => 'Android Remove' ], [ 'ion-android-remove-circle' => 'Android Remove Circle' ], [ 'ion-android-restaurant' => 'Android Restaurant' ], [ 'ion-android-sad' => 'Android Sad' ], [ 'ion-android-search' => 'Android Search' ], [ 'ion-android-send' => 'Android Send' ], [ 'ion-android-settings' => 'Android Settings' ], [ 'ion-android-share' => 'Android Share' ], [ 'ion-android-share-alt' => 'Android Share Alt' ], [ 'ion-android-star' => 'Android Star' ], [ 'ion-android-star-half' => 'Android Star Half' ], [ 'ion-android-star-outline' => 'Android Star Outline' ], [ 'ion-android-stopwatch' => 'Android Stopwatch' ], [ 'ion-android-subway' => 'Android Subway' ], [ 'ion-android-sunny' => 'Android Sunny' ], [ 'ion-android-sync' => 'Android Sync' ], [ 'ion-android-textsms' => 'Android Textsms' ], [ 'ion-android-time' => 'Android Time' ], [ 'ion-android-train' => 'Android Train' ], [ 'ion-android-unlock' => 'Android Unlock' ], [ 'ion-android-upload' => 'Android Upload' ], [ 'ion-android-volume-down' => 'Android Volume Down' ], [ 'ion-android-volume-mute' => 'Android Volume Mute' ], [ 'ion-android-volume-off' => 'Android Volume Off' ], [ 'ion-android-volume-up' => 'Android Volume Up' ], [ 'ion-android-walk' => 'Android Walk' ], [ 'ion-android-warning' => 'Android Warning' ], [ 'ion-android-watch' => 'Android Watch' ], [ 'ion-android-wifi' => 'Android Wifi' ], [ 'ion-aperture' => 'Aperture' ], [ 'ion-archive' => 'Archive' ], [ 'ion-arrow-down-a' => 'Arrow Down A' ], [ 'ion-arrow-down-b' => 'Arrow Down B' ], [ 'ion-arrow-down-c' => 'Arrow Down C' ], [ 'ion-arrow-expand' => 'Arrow Expand' ], [ 'ion-arrow-graph-down-left' => 'Arrow Graph Down Left' ], [ 'ion-arrow-graph-down-right' => 'Arrow Graph Down Right' ], [ 'ion-arrow-graph-up-left' => 'Arrow Graph Up Left' ], [ 'ion-arrow-graph-up-right' => 'Arrow Graph Up Right' ], [ 'ion-arrow-left-a' => 'Arrow Left A' ], [ 'ion-arrow-left-b' => 'Arrow Left B' ], [ 'ion-arrow-left-c' => 'Arrow Left C' ], [ 'ion-arrow-move' => 'Arrow Move' ], [ 'ion-arrow-resize' => 'Arrow Resize' ], [ 'ion-arrow-return-left' => 'Arrow Return Left' ], [ 'ion-arrow-return-right' => 'Arrow Return Right' ], [ 'ion-arrow-right-a' => 'Arrow Right A' ], [ 'ion-arrow-right-b' => 'Arrow Right B' ], [ 'ion-arrow-right-c' => 'Arrow Right C' ], [ 'ion-arrow-shrink' => 'Arrow Shrink' ], [ 'ion-arrow-swap' => 'Arrow Swap' ], [ 'ion-arrow-up-a' => 'Arrow Up A' ], [ 'ion-arrow-up-b' => 'Arrow Up B' ], [ 'ion-arrow-up-c' => 'Arrow Up C' ], [ 'ion-asterisk' => 'Asterisk' ], [ 'ion-at' => 'At' ], [ 'ion-backspace' => 'Backspace' ], [ 'ion-backspace-outline' => 'Backspace Outline' ], [ 'ion-bag' => 'Bag' ], [ 'ion-battery-charging' => 'Battery Charging' ], [ 'ion-battery-empty' => 'Battery Empty' ], [ 'ion-battery-full' => 'Battery Full' ], [ 'ion-battery-half' => 'Battery Half' ], [ 'ion-battery-low' => 'Battery Low' ], [ 'ion-beaker' => 'Beaker' ], [ 'ion-beer' => 'Beer' ], [ 'ion-bluetooth' => 'Bluetooth' ], [ 'ion-bonfire' => 'Bonfire' ], [ 'ion-bookmark' => 'Bookmark' ], [ 'ion-bowtie' => 'Bowtie' ], [ 'ion-briefcase' => 'Briefcase' ], [ 'ion-bug' => 'Bug' ], [ 'ion-calculator' => 'Calculator' ], [ 'ion-calendar' => 'Calendar' ], [ 'ion-camera' => 'Camera' ], [ 'ion-card' => 'Card' ], [ 'ion-cash' => 'Cash' ], [ 'ion-chatbox' => 'Chatbox' ], [ 'ion-chatbox-working' => 'Chatbox Working' ], [ 'ion-chatboxes' => 'Chatboxes' ], [ 'ion-chatbubble' => 'Chatbubble' ], [ 'ion-chatbubble-working' => 'Chatbubble Working' ], [ 'ion-chatbubbles' => 'Chatbubbles' ], [ 'ion-checkmark' => 'Checkmark' ], [ 'ion-checkmark-circled' => 'Checkmark Circled' ], [ 'ion-checkmark-round' => 'Checkmark Round' ], [ 'ion-chevron-down' => 'Chevron Down' ], [ 'ion-chevron-left' => 'Chevron Left' ], [ 'ion-chevron-right' => 'Chevron Right' ], [ 'ion-chevron-up' => 'Chevron Up' ], [ 'ion-clipboard' => 'Clipboard' ], [ 'ion-clock' => 'Clock' ], [ 'ion-close' => 'Close' ], [ 'ion-close-circled' => 'Close Circled' ], [ 'ion-close-round' => 'Close Round' ], [ 'ion-closed-captioning' => 'Closed Captioning' ], [ 'ion-cloud' => 'Cloud' ], [ 'ion-code' => 'Code' ], [ 'ion-code-download' => 'Code Download' ], [ 'ion-code-working' => 'Code Working' ], [ 'ion-coffee' => 'Coffee' ], [ 'ion-compass' => 'Compass' ], [ 'ion-compose' => 'Compose' ], [ 'ion-connection-bars' => 'Connectbars' ], [ 'ion-contrast' => 'Contrast' ], [ 'ion-crop' => 'Crop' ], [ 'ion-cube' => 'Cube' ], [ 'ion-disc' => 'Disc' ], [ 'ion-document' => 'Document' ], [ 'ion-document-text' => 'Document Text' ], [ 'ion-drag' => 'Drag' ], [ 'ion-earth' => 'Earth' ], [ 'ion-easel' => 'Easel' ], [ 'ion-edit' => 'Edit' ], [ 'ion-egg' => 'Egg' ], [ 'ion-eject' => 'Eject' ], [ 'ion-email' => 'Email' ], [ 'ion-email-unread' => 'Email Unread' ], [ 'ion-erlenmeyer-flask' => 'Erlenmeyer Flask' ], [ 'ion-erlenmeyer-flask-bubbles' => 'Erlenmeyer Flask Bubbles' ], [ 'ion-eye' => 'Eye' ], [ 'ion-eye-disabled' => 'Eye Disabled' ], [ 'ion-female' => 'Female' ], [ 'ion-filing' => 'Filing' ], [ 'ion-film-marker' => 'Film Marker' ], [ 'ion-fireball' => 'Fireball' ], [ 'ion-flag' => 'Flag' ], [ 'ion-flame' => 'Flame' ], [ 'ion-flash' => 'Flash' ], [ 'ion-flash-off' => 'Flash Off' ], [ 'ion-folder' => 'Folder' ], [ 'ion-fork' => 'Fork' ], [ 'ion-fork-repo' => 'Fork Repo' ], [ 'ion-forward' => 'Forward' ], [ 'ion-funnel' => 'Funnel' ], [ 'ion-gear-a' => 'Gear A' ], [ 'ion-gear-b' => 'Gear B' ], [ 'ion-grid' => 'Grid' ], [ 'ion-hammer' => 'Hammer' ], [ 'ion-happy' => 'Happy' ], [ 'ion-happy-outline' => 'Happy Outline' ], [ 'ion-headphone' => 'Headphone' ], [ 'ion-heart' => 'Heart' ], [ 'ion-heart-broken' => 'Heart Broken' ], [ 'ion-help' => 'Help' ], [ 'ion-help-buoy' => 'Help Buoy' ], [ 'ion-help-circled' => 'Help Circled' ], [ 'ion-home' => 'Home' ], [ 'ion-icecream' => 'Icecream' ], [ 'ion-image' => 'Image' ], [ 'ion-images' => 'Images' ], [ 'ion-information' => 'Information' ], [ 'ion-information-circled' => 'Informatcircled' ], [ 'ion-ionic' => 'Ionic' ], [ 'ion-ios-alarm' => 'Ios Alarm' ], [ 'ion-ios-alarm-outline' => 'Ios Alarm Outline' ], [ 'ion-ios-albums' => 'Ios Albums' ], [ 'ion-ios-albums-outline' => 'Ios Albums Outline' ], [ 'ion-ios-americanfootball' => 'Ios Americanfootball' ], [ 'ion-ios-americanfootball-outline' => 'Ios Americanfootball Outline' ], [ 'ion-ios-analytics' => 'Ios Analytics' ], [ 'ion-ios-analytics-outline' => 'Ios Analytics Outline' ], [ 'ion-ios-arrow-back' => 'Ios Arrow Back' ], [ 'ion-ios-arrow-down' => 'Ios Arrow Down' ], [ 'ion-ios-arrow-forward' => 'Ios Arrow Forward' ], [ 'ion-ios-arrow-left' => 'Ios Arrow Left' ], [ 'ion-ios-arrow-right' => 'Ios Arrow Right' ], [ 'ion-ios-arrow-thin-down' => 'Ios Arrow Thin Down' ], [ 'ion-ios-arrow-thin-left' => 'Ios Arrow Thin Left' ], [ 'ion-ios-arrow-thin-right' => 'Ios Arrow Thin Right' ], [ 'ion-ios-arrow-thin-up' => 'Ios Arrow Thin Up' ], [ 'ion-ios-arrow-up' => 'Ios Arrow Up' ], [ 'ion-ios-at' => 'Ios At' ], [ 'ion-ios-at-outline' => 'Ios At Outline' ], [ 'ion-ios-barcode' => 'Ios Barcode' ], [ 'ion-ios-barcode-outline' => 'Ios Barcode Outline' ], [ 'ion-ios-baseball' => 'Ios Baseball' ], [ 'ion-ios-baseball-outline' => 'Ios Baseball Outline' ], [ 'ion-ios-basketball' => 'Ios Basketball' ], [ 'ion-ios-basketball-outline' => 'Ios Basketball Outline' ], [ 'ion-ios-bell' => 'Ios Bell' ], [ 'ion-ios-bell-outline' => 'Ios Bell Outline' ], [ 'ion-ios-body' => 'Ios Body' ], [ 'ion-ios-body-outline' => 'Ios Body Outline' ], [ 'ion-ios-bolt' => 'Ios Bolt' ], [ 'ion-ios-bolt-outline' => 'Ios Bolt Outline' ], [ 'ion-ios-book' => 'Ios Book' ], [ 'ion-ios-book-outline' => 'Ios Book Outline' ], [ 'ion-ios-bookmarks' => 'Ios Bookmarks' ], [ 'ion-ios-bookmarks-outline' => 'Ios Bookmarks Outline' ], [ 'ion-ios-box' => 'Ios Box' ], [ 'ion-ios-box-outline' => 'Ios Box Outline' ], [ 'ion-ios-briefcase' => 'Ios Briefcase' ], [ 'ion-ios-briefcase-outline' => 'Ios Briefcase Outline' ], [ 'ion-ios-browsers' => 'Ios Browsers' ], [ 'ion-ios-browsers-outline' => 'Ios Browsers Outline' ], [ 'ion-ios-calculator' => 'Ios Calculator' ], [ 'ion-ios-calculator-outline' => 'Ios Calculator Outline' ], [ 'ion-ios-calendar' => 'Ios Calendar' ], [ 'ion-ios-calendar-outline' => 'Ios Calendar Outline' ], [ 'ion-ios-camera' => 'Ios Camera' ], [ 'ion-ios-camera-outline' => 'Ios Camera Outline' ], [ 'ion-ios-cart' => 'Ios Cart' ], [ 'ion-ios-cart-outline' => 'Ios Cart Outline' ], [ 'ion-ios-chatboxes' => 'Ios Chatboxes' ], [ 'ion-ios-chatboxes-outline' => 'Ios Chatboxes Outline' ], [ 'ion-ios-chatbubble' => 'Ios Chatbubble' ], [ 'ion-ios-chatbubble-outline' => 'Ios Chatbubble Outline' ], [ 'ion-ios-checkmark' => 'Ios Checkmark' ], [ 'ion-ios-checkmark-empty' => 'Ios Checkmark Empty' ], [ 'ion-ios-checkmark-outline' => 'Ios Checkmark Outline' ], [ 'ion-ios-circle-filled' => 'Ios Circle Filled' ], [ 'ion-ios-circle-outline' => 'Ios Circle Outline' ], [ 'ion-ios-clock' => 'Ios Clock' ], [ 'ion-ios-clock-outline' => 'Ios Clock Outline' ], [ 'ion-ios-close' => 'Ios Close' ], [ 'ion-ios-close-empty' => 'Ios Close Empty' ], [ 'ion-ios-close-outline' => 'Ios Close Outline' ], [ 'ion-ios-cloud' => 'Ios Cloud' ], [ 'ion-ios-cloud-download' => 'Ios Cloud Download' ], [ 'ion-ios-cloud-download-outline' => 'Ios Cloud Download Outline' ], [ 'ion-ios-cloud-outline' => 'Ios Cloud Outline' ], [ 'ion-ios-cloud-upload' => 'Ios Cloud Upload' ], [ 'ion-ios-cloud-upload-outline' => 'Ios Cloud Upload Outline' ], [ 'ion-ios-cloudy' => 'Ios Cloudy' ], [ 'ion-ios-cloudy-night' => 'Ios Cloudy Night' ], [ 'ion-ios-cloudy-night-outline' => 'Ios Cloudy Night Outline' ], [ 'ion-ios-cloudy-outline' => 'Ios Cloudy Outline' ], [ 'ion-ios-cog' => 'Ios Cog' ], [ 'ion-ios-cog-outline' => 'Ios Cog Outline' ], [ 'ion-ios-color-filter' => 'Ios Color Filter' ], [ 'ion-ios-color-filter-outline' => 'Ios Color Filter Outline' ], [ 'ion-ios-color-wand' => 'Ios Color Wand' ], [ 'ion-ios-color-wand-outline' => 'Ios Color Wand Outline' ], [ 'ion-ios-compose' => 'Ios Compose' ], [ 'ion-ios-compose-outline' => 'Ios Compose Outline' ], [ 'ion-ios-contact' => 'Ios Contact' ], [ 'ion-ios-contact-outline' => 'Ios Contact Outline' ], [ 'ion-ios-copy' => 'Ios Copy' ], [ 'ion-ios-copy-outline' => 'Ios Copy Outline' ], [ 'ion-ios-crop' => 'Ios Crop' ], [ 'ion-ios-crop-strong' => 'Ios Crop Strong' ], [ 'ion-ios-download' => 'Ios Download' ], [ 'ion-ios-download-outline' => 'Ios Download Outline' ], [ 'ion-ios-drag' => 'Ios Drag' ], [ 'ion-ios-email' => 'Ios Email' ], [ 'ion-ios-email-outline' => 'Ios Email Outline' ], [ 'ion-ios-eye' => 'Ios Eye' ], [ 'ion-ios-eye-outline' => 'Ios Eye Outline' ], [ 'ion-ios-fastforward' => 'Ios Fastforward' ], [ 'ion-ios-fastforward-outline' => 'Ios Fastforward Outline' ], [ 'ion-ios-filing' => 'Ios Filing' ], [ 'ion-ios-filing-outline' => 'Ios Filing Outline' ], [ 'ion-ios-film' => 'Ios Film' ], [ 'ion-ios-film-outline' => 'Ios Film Outline' ], [ 'ion-ios-flag' => 'Ios Flag' ], [ 'ion-ios-flag-outline' => 'Ios Flag Outline' ], [ 'ion-ios-flame' => 'Ios Flame' ], [ 'ion-ios-flame-outline' => 'Ios Flame Outline' ], [ 'ion-ios-flask' => 'Ios Flask' ], [ 'ion-ios-flask-outline' => 'Ios Flask Outline' ], [ 'ion-ios-flower' => 'Ios Flower' ], [ 'ion-ios-flower-outline' => 'Ios Flower Outline' ], [ 'ion-ios-folder' => 'Ios Folder' ], [ 'ion-ios-folder-outline' => 'Ios Folder Outline' ], [ 'ion-ios-football' => 'Ios Football' ], [ 'ion-ios-football-outline' => 'Ios Football Outline' ], [ 'ion-ios-game-controller-a' => 'Ios Game Controller A' ], [ 'ion-ios-game-controller-a-outline' => 'Ios Game Controller A Outline' ], [ 'ion-ios-game-controller-b' => 'Ios Game Controller B' ], [ 'ion-ios-game-controller-b-outline' => 'Ios Game Controller B Outline' ], [ 'ion-ios-gear' => 'Ios Gear' ], [ 'ion-ios-gear-outline' => 'Ios Gear Outline' ], [ 'ion-ios-glasses' => 'Ios Glasses' ], [ 'ion-ios-glasses-outline' => 'Ios Glasses Outline' ], [ 'ion-ios-grid-view' => 'Ios Grid View' ], [ 'ion-ios-grid-view-outline' => 'Ios Grid View Outline' ], [ 'ion-ios-heart' => 'Ios Heart' ], [ 'ion-ios-heart-outline' => 'Ios Heart Outline' ], [ 'ion-ios-help' => 'Ios Help' ], [ 'ion-ios-help-empty' => 'Ios Help Empty' ], [ 'ion-ios-help-outline' => 'Ios Help Outline' ], [ 'ion-ios-home' => 'Ios Home' ], [ 'ion-ios-home-outline' => 'Ios Home Outline' ], [ 'ion-ios-infinite' => 'Ios Infinite' ], [ 'ion-ios-infinite-outline' => 'Ios Infinite Outline' ], [ 'ion-ios-information' => 'Ios Information' ], [ 'ion-ios-information-empty' => 'Ios Informatempty' ], [ 'ion-ios-information-outline' => 'Ios Informatoutline' ], [ 'ion-ios-ionic-outline' => 'Ios Ionic Outline' ], [ 'ion-ios-keypad' => 'Ios Keypad' ], [ 'ion-ios-keypad-outline' => 'Ios Keypad Outline' ], [ 'ion-ios-lightbulb' => 'Ios Lightbulb' ], [ 'ion-ios-lightbulb-outline' => 'Ios Lightbulb Outline' ], [ 'ion-ios-list' => 'Ios List' ], [ 'ion-ios-list-outline' => 'Ios List Outline' ], [ 'ion-ios-location' => 'Ios Location' ], [ 'ion-ios-location-outline' => 'Ios Locatoutline' ], [ 'ion-ios-locked' => 'Ios Locked' ], [ 'ion-ios-locked-outline' => 'Ios Locked Outline' ], [ 'ion-ios-loop' => 'Ios Loop' ], [ 'ion-ios-loop-strong' => 'Ios Loop Strong' ], [ 'ion-ios-medical' => 'Ios Medical' ], [ 'ion-ios-medical-outline' => 'Ios Medical Outline' ], [ 'ion-ios-medkit' => 'Ios Medkit' ], [ 'ion-ios-medkit-outline' => 'Ios Medkit Outline' ], [ 'ion-ios-mic' => 'Ios Mic' ], [ 'ion-ios-mic-off' => 'Ios Mic Off' ], [ 'ion-ios-mic-outline' => 'Ios Mic Outline' ], [ 'ion-ios-minus' => 'Ios Minus' ], [ 'ion-ios-minus-empty' => 'Ios Minus Empty' ], [ 'ion-ios-minus-outline' => 'Ios Minus Outline' ], [ 'ion-ios-monitor' => 'Ios Monitor' ], [ 'ion-ios-monitor-outline' => 'Ios Monitor Outline' ], [ 'ion-ios-moon' => 'Ios Moon' ], [ 'ion-ios-moon-outline' => 'Ios Moon Outline' ], [ 'ion-ios-more' => 'Ios More' ], [ 'ion-ios-more-outline' => 'Ios More Outline' ], [ 'ion-ios-musical-note' => 'Ios Musical Note' ], [ 'ion-ios-musical-notes' => 'Ios Musical Notes' ], [ 'ion-ios-navigate' => 'Ios Navigate' ], [ 'ion-ios-navigate-outline' => 'Ios Navigate Outline' ], [ 'ion-ios-nutrition' => 'Ios Nutrition' ], [ 'ion-ios-nutrition-outline' => 'Ios Nutritoutline' ], [ 'ion-ios-paper' => 'Ios Paper' ], [ 'ion-ios-paper-outline' => 'Ios Paper Outline' ], [ 'ion-ios-paperplane' => 'Ios Paperplane' ], [ 'ion-ios-paperplane-outline' => 'Ios Paperplane Outline' ], [ 'ion-ios-partlysunny' => 'Ios Partlysunny' ], [ 'ion-ios-partlysunny-outline' => 'Ios Partlysunny Outline' ], [ 'ion-ios-pause' => 'Ios Pause' ], [ 'ion-ios-pause-outline' => 'Ios Pause Outline' ], [ 'ion-ios-paw' => 'Ios Paw' ], [ 'ion-ios-paw-outline' => 'Ios Paw Outline' ], [ 'ion-ios-people' => 'Ios People' ], [ 'ion-ios-people-outline' => 'Ios People Outline' ], [ 'ion-ios-person' => 'Ios Person' ], [ 'ion-ios-person-outline' => 'Ios Person Outline' ], [ 'ion-ios-personadd' => 'Ios Personadd' ], [ 'ion-ios-personadd-outline' => 'Ios Personadd Outline' ], [ 'ion-ios-photos' => 'Ios Photos' ], [ 'ion-ios-photos-outline' => 'Ios Photos Outline' ], [ 'ion-ios-pie' => 'Ios Pie' ], [ 'ion-ios-pie-outline' => 'Ios Pie Outline' ], [ 'ion-ios-pint' => 'Ios Pint' ], [ 'ion-ios-pint-outline' => 'Ios Pint Outline' ], [ 'ion-ios-play' => 'Ios Play' ], [ 'ion-ios-play-outline' => 'Ios Play Outline' ], [ 'ion-ios-plus' => 'Ios Plus' ], [ 'ion-ios-plus-empty' => 'Ios Plus Empty' ], [ 'ion-ios-plus-outline' => 'Ios Plus Outline' ], [ 'ion-ios-pricetag' => 'Ios Pricetag' ], [ 'ion-ios-pricetag-outline' => 'Ios Pricetag Outline' ], [ 'ion-ios-pricetags' => 'Ios Pricetags' ], [ 'ion-ios-pricetags-outline' => 'Ios Pricetags Outline' ], [ 'ion-ios-printer' => 'Ios Printer' ], [ 'ion-ios-printer-outline' => 'Ios Printer Outline' ], [ 'ion-ios-pulse' => 'Ios Pulse' ], [ 'ion-ios-pulse-strong' => 'Ios Pulse Strong' ], [ 'ion-ios-rainy' => 'Ios Rainy' ], [ 'ion-ios-rainy-outline' => 'Ios Rainy Outline' ], [ 'ion-ios-recording' => 'Ios Recording' ], [ 'ion-ios-recording-outline' => 'Ios Recording Outline' ], [ 'ion-ios-redo' => 'Ios Redo' ], [ 'ion-ios-redo-outline' => 'Ios Redo Outline' ], [ 'ion-ios-refresh' => 'Ios Refresh' ], [ 'ion-ios-refresh-empty' => 'Ios Refresh Empty' ], [ 'ion-ios-refresh-outline' => 'Ios Refresh Outline' ], [ 'ion-ios-reload' => 'Ios Reload' ], [ 'ion-ios-reverse-camera' => 'Ios Reverse Camera' ], [ 'ion-ios-reverse-camera-outline' => 'Ios Reverse Camera Outline' ], [ 'ion-ios-rewind' => 'Ios Rewind' ], [ 'ion-ios-rewind-outline' => 'Ios Rewind Outline' ], [ 'ion-ios-rose' => 'Ios Rose' ], [ 'ion-ios-rose-outline' => 'Ios Rose Outline' ], [ 'ion-ios-search' => 'Ios Search' ], [ 'ion-ios-search-strong' => 'Ios Search Strong' ], [ 'ion-ios-settings' => 'Ios Settings' ], [ 'ion-ios-settings-strong' => 'Ios Settings Strong' ], [ 'ion-ios-shuffle' => 'Ios Shuffle' ], [ 'ion-ios-shuffle-strong' => 'Ios Shuffle Strong' ], [ 'ion-ios-skipbackward' => 'Ios Skipbackward' ], [ 'ion-ios-skipbackward-outline' => 'Ios Skipbackward Outline' ], [ 'ion-ios-skipforward' => 'Ios Skipforward' ], [ 'ion-ios-skipforward-outline' => 'Ios Skipforward Outline' ], [ 'ion-ios-snowy' => 'Ios Snowy' ], [ 'ion-ios-speedometer' => 'Ios Speedometer' ], [ 'ion-ios-speedometer-outline' => 'Ios Speedometer Outline' ], [ 'ion-ios-star' => 'Ios Star' ], [ 'ion-ios-star-half' => 'Ios Star Half' ], [ 'ion-ios-star-outline' => 'Ios Star Outline' ], [ 'ion-ios-stopwatch' => 'Ios Stopwatch' ], [ 'ion-ios-stopwatch-outline' => 'Ios Stopwatch Outline' ], [ 'ion-ios-sunny' => 'Ios Sunny' ], [ 'ion-ios-sunny-outline' => 'Ios Sunny Outline' ], [ 'ion-ios-telephone' => 'Ios Telephone' ], [ 'ion-ios-telephone-outline' => 'Ios Telephone Outline' ], [ 'ion-ios-tennisball' => 'Ios Tennisball' ], [ 'ion-ios-tennisball-outline' => 'Ios Tennisball Outline' ], [ 'ion-ios-thunderstorm' => 'Ios Thunderstorm' ], [ 'ion-ios-thunderstorm-outline' => 'Ios Thunderstorm Outline' ], [ 'ion-ios-time' => 'Ios Time' ], [ 'ion-ios-time-outline' => 'Ios Time Outline' ], [ 'ion-ios-timer' => 'Ios Timer' ], [ 'ion-ios-timer-outline' => 'Ios Timer Outline' ], [ 'ion-ios-toggle' => 'Ios Toggle' ], [ 'ion-ios-toggle-outline' => 'Ios Toggle Outline' ], [ 'ion-ios-trash' => 'Ios Trash' ], [ 'ion-ios-trash-outline' => 'Ios Trash Outline' ], [ 'ion-ios-undo' => 'Ios Undo' ], [ 'ion-ios-undo-outline' => 'Ios Undo Outline' ], [ 'ion-ios-unlocked' => 'Ios Unlocked' ], [ 'ion-ios-unlocked-outline' => 'Ios Unlocked Outline' ], [ 'ion-ios-upload' => 'Ios Upload' ], [ 'ion-ios-upload-outline' => 'Ios Upload Outline' ], [ 'ion-ios-videocam' => 'Ios Videocam' ], [ 'ion-ios-videocam-outline' => 'Ios Videocam Outline' ], [ 'ion-ios-volume-high' => 'Ios Volume High' ], [ 'ion-ios-volume-low' => 'Ios Volume Low' ], [ 'ion-ios-wineglass' => 'Ios Wineglass' ], [ 'ion-ios-wineglass-outline' => 'Ios Wineglass Outline' ], [ 'ion-ios-world' => 'Ios World' ], [ 'ion-ios-world-outline' => 'Ios World Outline' ], [ 'ion-ipad' => 'Ipad' ], [ 'ion-iphone' => 'Iphone' ], [ 'ion-ipod' => 'Ipod' ], [ 'ion-jet' => 'Jet' ], [ 'ion-key' => 'Key' ], [ 'ion-knife' => 'Knife' ], [ 'ion-laptop' => 'Laptop' ], [ 'ion-leaf' => 'Leaf' ], [ 'ion-levels' => 'Levels' ], [ 'ion-lightbulb' => 'Lightbulb' ], [ 'ion-link' => 'Link' ], [ 'ion-load-a' => 'Load A' ], [ 'ion-load-b' => 'Load B' ], [ 'ion-load-c' => 'Load C' ], [ 'ion-load-d' => 'Load D' ], [ 'ion-location' => 'Location' ], [ 'ion-lock-combination' => 'Lock Combination' ], [ 'ion-locked' => 'Locked' ], [ 'ion-log-in' => 'Log In' ], [ 'ion-log-out' => 'Log Out' ], [ 'ion-loop' => 'Loop' ], [ 'ion-magnet' => 'Magnet' ], [ 'ion-male' => 'Male' ], [ 'ion-man' => 'Man' ], [ 'ion-map' => 'Map' ], [ 'ion-medkit' => 'Medkit' ], [ 'ion-merge' => 'Merge' ], [ 'ion-mic-a' => 'Mic A' ], [ 'ion-mic-b' => 'Mic B' ], [ 'ion-mic-c' => 'Mic C' ], [ 'ion-minus' => 'Minus' ], [ 'ion-minus-circled' => 'Minus Circled' ], [ 'ion-minus-round' => 'Minus Round' ], [ 'ion-model-s' => 'Model S' ], [ 'ion-monitor' => 'Monitor' ], [ 'ion-more' => 'More' ], [ 'ion-mouse' => 'Mouse' ], [ 'ion-music-note' => 'Music Note' ], [ 'ion-navicon' => 'Navicon' ], [ 'ion-navicon-round' => 'Navicon Round' ], [ 'ion-navigate' => 'Navigate' ], [ 'ion-network' => 'Network' ], [ 'ion-no-smoking' => 'No Smoking' ], [ 'ion-nuclear' => 'Nuclear' ], [ 'ion-outlet' => 'Outlet' ], [ 'ion-paintbrush' => 'Paintbrush' ], [ 'ion-paintbucket' => 'Paintbucket' ], [ 'ion-paper-airplane' => 'Paper Airplane' ], [ 'ion-paperclip' => 'Paperclip' ], [ 'ion-pause' => 'Pause' ], [ 'ion-person' => 'Person' ], [ 'ion-person-add' => 'Person Add' ], [ 'ion-person-stalker' => 'Person Stalker' ], [ 'ion-pie-graph' => 'Pie Graph' ], [ 'ion-pin' => 'Pin' ], [ 'ion-pinpoint' => 'Pinpoint' ], [ 'ion-pizza' => 'Pizza' ], [ 'ion-plane' => 'Plane' ], [ 'ion-planet' => 'Planet' ], [ 'ion-play' => 'Play' ], [ 'ion-playstation' => 'Playstation' ], [ 'ion-plus' => 'Plus' ], [ 'ion-plus-circled' => 'Plus Circled' ], [ 'ion-plus-round' => 'Plus Round' ], [ 'ion-podium' => 'Podium' ], [ 'ion-pound' => 'Pound' ], [ 'ion-power' => 'Power' ], [ 'ion-pricetag' => 'Pricetag' ], [ 'ion-pricetags' => 'Pricetags' ], [ 'ion-printer' => 'Printer' ], [ 'ion-pull-request' => 'Pull Request' ], [ 'ion-qr-scanner' => 'Qr Scanner' ], [ 'ion-quote' => 'Quote' ], [ 'ion-radio-waves' => 'Radio Waves' ], [ 'ion-record' => 'Record' ], [ 'ion-refresh' => 'Refresh' ], [ 'ion-reply' => 'Reply' ], [ 'ion-reply-all' => 'Reply All' ], [ 'ion-ribbon-a' => 'Ribbon A' ], [ 'ion-ribbon-b' => 'Ribbon B' ], [ 'ion-sad' => 'Sad' ], [ 'ion-sad-outline' => 'Sad Outline' ], [ 'ion-scissors' => 'Scissors' ], [ 'ion-search' => 'Search' ], [ 'ion-settings' => 'Settings' ], [ 'ion-share' => 'Share' ], [ 'ion-shuffle' => 'Shuffle' ], [ 'ion-skip-backward' => 'Skip Backward' ], [ 'ion-skip-forward' => 'Skip Forward' ], [ 'ion-social-android' => 'Social Android' ], [ 'ion-social-android-outline' => 'Social Android Outline' ], [ 'ion-social-angular' => 'Social Angular' ], [ 'ion-social-angular-outline' => 'Social Angular Outline' ], [ 'ion-social-apple' => 'Social Apple' ], [ 'ion-social-apple-outline' => 'Social Apple Outline' ], [ 'ion-social-bitcoin' => 'Social Bitcoin' ], [ 'ion-social-bitcoin-outline' => 'Social Bitcoin Outline' ], [ 'ion-social-buffer' => 'Social Buffer' ], [ 'ion-social-buffer-outline' => 'Social Buffer Outline' ], [ 'ion-social-chrome' => 'Social Chrome' ], [ 'ion-social-chrome-outline' => 'Social Chrome Outline' ], [ 'ion-social-codepen' => 'Social Codepen' ], [ 'ion-social-codepen-outline' => 'Social Codepen Outline' ], [ 'ion-social-css3' => 'Social Css3' ], [ 'ion-social-css3-outline' => 'Social Css3 Outline' ], [ 'ion-social-designernews' => 'Social Designernews' ], [ 'ion-social-designernews-outline' => 'Social Designernews Outline' ], [ 'ion-social-dribbble' => 'Social Dribbble' ], [ 'ion-social-dribbble-outline' => 'Social Dribbble Outline' ], [ 'ion-social-dropbox' => 'Social Dropbox' ], [ 'ion-social-dropbox-outline' => 'Social Dropbox Outline' ], [ 'ion-social-euro' => 'Social Euro' ], [ 'ion-social-euro-outline' => 'Social Euro Outline' ], [ 'ion-social-facebook' => 'Social Facebook' ], [ 'ion-social-facebook-outline' => 'Social Facebook Outline' ], [ 'ion-social-foursquare' => 'Social Foursquare' ], [ 'ion-social-foursquare-outline' => 'Social Foursquare Outline' ], [ 'ion-social-freebsd-devil' => 'Social Freebsd Devil' ], [ 'ion-social-github' => 'Social Github' ], [ 'ion-social-github-outline' => 'Social Github Outline' ], [ 'ion-social-google' => 'Social Google' ], [ 'ion-social-google-outline' => 'Social Google Outline' ], [ 'ion-social-googleplus' => 'Social Googleplus' ], [ 'ion-social-googleplus-outline' => 'Social Googleplus Outline' ], [ 'ion-social-hackernews' => 'Social Hackernews' ], [ 'ion-social-hackernews-outline' => 'Social Hackernews Outline' ], [ 'ion-social-html5' => 'Social Html5' ], [ 'ion-social-html5-outline' => 'Social Html5 Outline' ], [ 'ion-social-instagram' => 'Social Instagram' ], [ 'ion-social-instagram-outline' => 'Social Instagram Outline' ], [ 'ion-social-javascript' => 'Social Javascript' ], [ 'ion-social-javascript-outline' => 'Social Javascript Outline' ], [ 'ion-social-linkedin' => 'Social Linkedin' ], [ 'ion-social-linkedin-outline' => 'Social Linkedin Outline' ], [ 'ion-social-markdown' => 'Social Markdown' ], [ 'ion-social-nodejs' => 'Social Nodejs' ], [ 'ion-social-octocat' => 'Social Octocat' ], [ 'ion-social-pinterest' => 'Social Pinterest' ], [ 'ion-social-pinterest-outline' => 'Social Pinterest Outline' ], [ 'ion-social-python' => 'Social Python' ], [ 'ion-social-reddit' => 'Social Reddit' ], [ 'ion-social-reddit-outline' => 'Social Reddit Outline' ], [ 'ion-social-rss' => 'Social Rss' ], [ 'ion-social-rss-outline' => 'Social Rss Outline' ], [ 'ion-social-sass' => 'Social Sass' ], [ 'ion-social-skype' => 'Social Skype' ], [ 'ion-social-skype-outline' => 'Social Skype Outline' ], [ 'ion-social-snapchat' => 'Social Snapchat' ], [ 'ion-social-snapchat-outline' => 'Social Snapchat Outline' ], [ 'ion-social-tumblr' => 'Social Tumblr' ], [ 'ion-social-tumblr-outline' => 'Social Tumblr Outline' ], [ 'ion-social-tux' => 'Social Tux' ], [ 'ion-social-twitch' => 'Social Twitch' ], [ 'ion-social-twitch-outline' => 'Social Twitch Outline' ], [ 'ion-social-twitter' => 'Social Twitter' ], [ 'ion-social-twitter-outline' => 'Social Twitter Outline' ], [ 'ion-social-usd' => 'Social Usd' ], [ 'ion-social-usd-outline' => 'Social Usd Outline' ], [ 'ion-social-vimeo' => 'Social Vimeo' ], [ 'ion-social-vimeo-outline' => 'Social Vimeo Outline' ], [ 'ion-social-whatsapp' => 'Social Whatsapp' ], [ 'ion-social-whatsapp-outline' => 'Social Whatsapp Outline' ], [ 'ion-social-windows' => 'Social Windows' ], [ 'ion-social-windows-outline' => 'Social Windows Outline' ], [ 'ion-social-wordpress' => 'Social Wordpress' ], [ 'ion-social-wordpress-outline' => 'Social Wordpress Outline' ], [ 'ion-social-yahoo' => 'Social Yahoo' ], [ 'ion-social-yahoo-outline' => 'Social Yahoo Outline' ], [ 'ion-social-yen' => 'Social Yen' ], [ 'ion-social-yen-outline' => 'Social Yen Outline' ], [ 'ion-social-youtube' => 'Social Youtube' ], [ 'ion-social-youtube-outline' => 'Social Youtube Outline' ], [ 'ion-soup-can' => 'Soup Can' ], [ 'ion-soup-can-outline' => 'Soup Can Outline' ], [ 'ion-speakerphone' => 'Speakerphone' ], [ 'ion-speedometer' => 'Speedometer' ], [ 'ion-spoon' => 'Spoon' ], [ 'ion-star' => 'Star' ], [ 'ion-stats-bars' => 'Stats Bars' ], [ 'ion-steam' => 'Steam' ], [ 'ion-stop' => 'Stop' ], [ 'ion-thermometer' => 'Thermometer' ], [ 'ion-thumbsdown' => 'Thumbsdown' ], [ 'ion-thumbsup' => 'Thumbsup' ], [ 'ion-toggle' => 'Toggle' ], [ 'ion-toggle-filled' => 'Toggle Filled' ], [ 'ion-transgender' => 'Transgender' ], [ 'ion-trash-a' => 'Trash A' ], [ 'ion-trash-b' => 'Trash B' ], [ 'ion-trophy' => 'Trophy' ], [ 'ion-tshirt' => 'Tshirt' ], [ 'ion-tshirt-outline' => 'Tshirt Outline' ], [ 'ion-umbrella' => 'Umbrella' ], [ 'ion-university' => 'University' ], [ 'ion-unlocked' => 'Unlocked' ], [ 'ion-upload' => 'Upload' ], [ 'ion-usb' => 'Usb' ], [ 'ion-videocamera' => 'Videocamera' ], [ 'ion-volume-high' => 'Volume High' ], [ 'ion-volume-low' => 'Volume Low' ], [ 'ion-volume-medium' => 'Volume Medium' ], [ 'ion-volume-mute' => 'Volume Mute' ], [ 'ion-wand' => 'Wand' ], [ 'ion-waterdrop' => 'Waterdrop' ], [ 'ion-wifi' => 'Wifi' ], [ 'ion-wineglass' => 'Wineglass' ], [ 'ion-woman' => 'Woman' ], [ 'ion-wrench' => 'Wrench' ], [ 'ion-xbox' => 'Xbox' ], ]; } /** * Stroke 7 Icons. * * @return array */ function aheto_icons_pe_icon_7_stroke() { return [ [ 'pe-7s-album' => 'Album' ], [ 'pe-7s-arc' => 'Arc' ], [ 'pe-7s-back-2' => 'Back 2' ], [ 'pe-7s-bandaid' => 'Bandaid' ], [ 'pe-7s-car' => 'Car' ], [ 'pe-7s-diamond' => 'Diamond' ], [ 'pe-7s-door-lock' => 'Door Lock' ], [ 'pe-7s-eyedropper' => 'Eyedropper' ], [ 'pe-7s-female' => 'Female' ], [ 'pe-7s-gym' => 'Gym' ], [ 'pe-7s-hammer' => 'Hammer' ], [ 'pe-7s-headphones' => 'Headphones' ], [ 'pe-7s-helm' => 'Helm' ], [ 'pe-7s-hourglass' => 'Hourglass' ], [ 'pe-7s-leaf' => 'Leaf' ], [ 'pe-7s-magic-wand' => 'Magic Wand' ], [ 'pe-7s-male' => 'Male' ], [ 'pe-7s-map-2' => 'Map 2' ], [ 'pe-7s-next-2' => 'Next 2' ], [ 'pe-7s-paint-bucket' => 'Paint Bucket' ], [ 'pe-7s-pendrive' => 'Pendrive' ], [ 'pe-7s-photo' => 'Photo' ], [ 'pe-7s-piggy' => 'Piggy' ], [ 'pe-7s-plugin' => 'Plugin' ], [ 'pe-7s-refresh-2' => 'Refresh 2' ], [ 'pe-7s-rocket' => 'Rocket' ], [ 'pe-7s-settings' => 'Settings' ], [ 'pe-7s-shield' => 'Shield' ], [ 'pe-7s-smile' => 'Smile' ], [ 'pe-7s-usb' => 'Usb' ], [ 'pe-7s-vector' => 'Vector' ], [ 'pe-7s-wine' => 'Wine' ], [ 'pe-7s-cloud-upload' => 'Cloud Upload' ], [ 'pe-7s-cash' => 'Cash' ], [ 'pe-7s-close' => 'Close' ], [ 'pe-7s-bluetooth' => 'Bluetooth' ], [ 'pe-7s-cloud-download' => 'Cloud Download' ], [ 'pe-7s-way' => 'Way' ], [ 'pe-7s-close-circle' => 'Close Circle' ], [ 'pe-7s-id' => 'Id' ], [ 'pe-7s-angle-up' => 'Angle Up' ], [ 'pe-7s-wristwatch' => 'Wristwatch' ], [ 'pe-7s-angle-up-circle' => 'Angle Up Circle' ], [ 'pe-7s-world' => 'World' ], [ 'pe-7s-angle-right' => 'Angle Right' ], [ 'pe-7s-volume' => 'Volume' ], [ 'pe-7s-angle-right-circle' => 'Angle Right Circle' ], [ 'pe-7s-users' => 'Users' ], [ 'pe-7s-angle-left' => 'Angle Left' ], [ 'pe-7s-user-female' => 'User Female' ], [ 'pe-7s-angle-left-circle' => 'Angle Left Circle' ], [ 'pe-7s-up-arrow' => 'Up Arrow' ], [ 'pe-7s-angle-down' => 'Angle Down' ], [ 'pe-7s-switch' => 'Switch' ], [ 'pe-7s-angle-down-circle' => 'Angle Down Circle' ], [ 'pe-7s-scissors' => 'Scissors' ], [ 'pe-7s-wallet' => 'Wallet' ], [ 'pe-7s-safe' => 'Safe' ], [ 'pe-7s-volume2' => 'Volume2' ], [ 'pe-7s-volume1' => 'Volume1' ], [ 'pe-7s-voicemail' => 'Voicemail' ], [ 'pe-7s-video' => 'Video' ], [ 'pe-7s-user' => 'User' ], [ 'pe-7s-upload' => 'Upload' ], [ 'pe-7s-unlock' => 'Unlock' ], [ 'pe-7s-umbrella' => 'Umbrella' ], [ 'pe-7s-trash' => 'Trash' ], [ 'pe-7s-tools' => 'Tools' ], [ 'pe-7s-timer' => 'Timer' ], [ 'pe-7s-ticket' => 'Ticket' ], [ 'pe-7s-target' => 'Target' ], [ 'pe-7s-sun' => 'Sun' ], [ 'pe-7s-study' => 'Study' ], [ 'pe-7s-stopwatch' => 'Stopwatch' ], [ 'pe-7s-star' => 'Star' ], [ 'pe-7s-speaker' => 'Speaker' ], [ 'pe-7s-signal' => 'Signal' ], [ 'pe-7s-shuffle' => 'Shuffle' ], [ 'pe-7s-shopbag' => 'Shopbag' ], [ 'pe-7s-share' => 'Share' ], [ 'pe-7s-server' => 'Server' ], [ 'pe-7s-search' => 'Search' ], [ 'pe-7s-film' => 'Film' ], [ 'pe-7s-science' => 'Science' ], [ 'pe-7s-disk' => 'Disk' ], [ 'pe-7s-ribbon' => 'Ribbon' ], [ 'pe-7s-repeat' => 'Repeat' ], [ 'pe-7s-refresh' => 'Refresh' ], [ 'pe-7s-add-user' => 'Add User' ], [ 'pe-7s-refresh-cloud' => 'Refresh Cloud' ], [ 'pe-7s-paperclip' => 'Paperclip' ], [ 'pe-7s-radio' => 'Radio' ], [ 'pe-7s-note2' => 'Note2' ], [ 'pe-7s-print' => 'Print' ], [ 'pe-7s-network' => 'Network' ], [ 'pe-7s-prev' => 'Prev' ], [ 'pe-7s-mute' => 'Mute' ], [ 'pe-7s-power' => 'Power' ], [ 'pe-7s-medal' => 'Medal' ], [ 'pe-7s-portfolio' => 'Portfolio' ], [ 'pe-7s-like2' => 'Like2' ], [ 'pe-7s-plus' => 'Plus' ], [ 'pe-7s-left-arrow' => 'Left Arrow' ], [ 'pe-7s-play' => 'Play' ], [ 'pe-7s-key' => 'Key' ], [ 'pe-7s-plane' => 'Plane' ], [ 'pe-7s-joy' => 'Joy' ], [ 'pe-7s-photo-gallery' => 'Photo Gallery' ], [ 'pe-7s-pin' => 'Pin' ], [ 'pe-7s-phone' => 'Phone' ], [ 'pe-7s-plug' => 'Plug' ], [ 'pe-7s-pen' => 'Pen' ], [ 'pe-7s-right-arrow' => 'Right Arrow' ], [ 'pe-7s-paper-plane' => 'Paper Plane' ], [ 'pe-7s-delete-user' => 'Delete User' ], [ 'pe-7s-paint' => 'Paint' ], [ 'pe-7s-bottom-arrow' => 'Bottom Arrow' ], [ 'pe-7s-notebook' => 'Notebook' ], [ 'pe-7s-note' => 'Note' ], [ 'pe-7s-next' => 'Next' ], [ 'pe-7s-news-paper' => 'News Paper' ], [ 'pe-7s-musiclist' => 'Musiclist' ], [ 'pe-7s-music' => 'Music' ], [ 'pe-7s-mouse' => 'Mouse' ], [ 'pe-7s-more' => 'More' ], [ 'pe-7s-moon' => 'Moon' ], [ 'pe-7s-monitor' => 'Monitor' ], [ 'pe-7s-micro' => 'Micro' ], [ 'pe-7s-menu' => 'Menu' ], [ 'pe-7s-map' => 'Map' ], [ 'pe-7s-map-marker' => 'Map Marker' ], [ 'pe-7s-mail' => 'Mail' ], [ 'pe-7s-mail-open' => 'Mail Open' ], [ 'pe-7s-mail-open-file' => 'Mail Open File' ], [ 'pe-7s-magnet' => 'Magnet' ], [ 'pe-7s-loop' => 'Loop' ], [ 'pe-7s-look' => 'Look' ], [ 'pe-7s-lock' => 'Lock' ], [ 'pe-7s-lintern' => 'Lintern' ], [ 'pe-7s-link' => 'Link' ], [ 'pe-7s-like' => 'Like' ], [ 'pe-7s-light' => 'Light' ], [ 'pe-7s-less' => 'Less' ], [ 'pe-7s-keypad' => 'Keypad' ], [ 'pe-7s-junk' => 'Junk' ], [ 'pe-7s-info' => 'Info' ], [ 'pe-7s-home' => 'Home' ], [ 'pe-7s-help2' => 'Help2' ], [ 'pe-7s-help1' => 'Help1' ], [ 'pe-7s-graph3' => 'Graph3' ], [ 'pe-7s-graph2' => 'Graph2' ], [ 'pe-7s-graph1' => 'Graph1' ], [ 'pe-7s-graph' => 'Graph' ], [ 'pe-7s-global' => 'Global' ], [ 'pe-7s-gleam' => 'Gleam' ], [ 'pe-7s-glasses' => 'Glasses' ], [ 'pe-7s-gift' => 'Gift' ], [ 'pe-7s-folder' => 'Folder' ], [ 'pe-7s-flag' => 'Flag' ], [ 'pe-7s-filter' => 'Filter' ], [ 'pe-7s-file' => 'File' ], [ 'pe-7s-expand1' => 'Expand1' ], [ 'pe-7s-exapnd2' => 'Exapnd2' ], [ 'pe-7s-edit' => 'Edit' ], [ 'pe-7s-drop' => 'Drop' ], [ 'pe-7s-drawer' => 'Drawer' ], [ 'pe-7s-download' => 'Download' ], [ 'pe-7s-display2' => 'Display2' ], [ 'pe-7s-display1' => 'Display1' ], [ 'pe-7s-diskette' => 'Diskette' ], [ 'pe-7s-date' => 'Date' ], [ 'pe-7s-cup' => 'Cup' ], [ 'pe-7s-culture' => 'Culture' ], [ 'pe-7s-crop' => 'Crop' ], [ 'pe-7s-credit' => 'Credit' ], [ 'pe-7s-copy-file' => 'Copy File' ], [ 'pe-7s-config' => 'Config' ], [ 'pe-7s-compass' => 'Compass' ], [ 'pe-7s-comment' => 'Comment' ], [ 'pe-7s-coffee' => 'Coffee' ], [ 'pe-7s-cloud' => 'Cloud' ], [ 'pe-7s-clock' => 'Clock' ], [ 'pe-7s-check' => 'Check' ], [ 'pe-7s-chat' => 'Chat' ], [ 'pe-7s-cart' => 'Cart' ], [ 'pe-7s-camera' => 'Camera' ], [ 'pe-7s-call' => 'Call' ], [ 'pe-7s-calculator' => 'Calculator' ], [ 'pe-7s-browser' => 'Browser' ], [ 'pe-7s-box2' => 'Box2' ], [ 'pe-7s-box1' => 'Box1' ], [ 'pe-7s-bookmarks' => 'Bookmarks' ], [ 'pe-7s-bicycle' => 'Bicycle' ], [ 'pe-7s-bell' => 'Bell' ], [ 'pe-7s-battery' => 'Battery' ], [ 'pe-7s-ball' => 'Ball' ], [ 'pe-7s-back' => 'Back' ], [ 'pe-7s-attention' => 'Attention' ], [ 'pe-7s-anchor' => 'Anchor' ], [ 'pe-7s-albums' => 'Albums' ], [ 'pe-7s-alarm' => 'Alarm' ], [ 'pe-7s-airplay' => 'Airplay' ], ]; } /** * Themify Icons. * * @return array */ function aheto_icons_themify() { return [ [ 'ti-wand' => 'Wand' ], [ 'ti-volume' => 'Volume' ], [ 'ti-user' => 'User' ], [ 'ti-unlock' => 'Unlock' ], [ 'ti-unlink' => 'Unlink' ], [ 'ti-trash' => 'Trash' ], [ 'ti-thought' => 'Thought' ], [ 'ti-target' => 'Target' ], [ 'ti-tag' => 'Tag' ], [ 'ti-tablet' => 'Tablet' ], [ 'ti-star' => 'Star' ], [ 'ti-spray' => 'Spray' ], [ 'ti-signal' => 'Signal' ], [ 'ti-shopping-cart' => 'Shopping Cart' ], [ 'ti-shopping-cart-full' => 'Shopping Cart Full' ], [ 'ti-settings' => 'Settings' ], [ 'ti-search' => 'Search' ], [ 'ti-zoom-in' => 'Zoom In' ], [ 'ti-zoom-out' => 'Zoom Out' ], [ 'ti-cut' => 'Cut' ], [ 'ti-ruler' => 'Ruler' ], [ 'ti-ruler-pencil' => 'Ruler Pencil' ], [ 'ti-ruler-alt' => 'Ruler Alt' ], [ 'ti-bookmark' => 'Bookmark' ], [ 'ti-bookmark-alt' => 'Bookmark Alt' ], [ 'ti-reload' => 'Reload' ], [ 'ti-plus' => 'Plus' ], [ 'ti-pin' => 'Pin' ], [ 'ti-pencil' => 'Pencil' ], [ 'ti-pencil-alt' => 'Pencil Alt' ], [ 'ti-paint-roller' => 'Paint Roller' ], [ 'ti-paint-bucket' => 'Paint Bucket' ], [ 'ti-na' => 'Na' ], [ 'ti-mobile' => 'Mobile' ], [ 'ti-minus' => 'Minus' ], [ 'ti-medall' => 'Medall' ], [ 'ti-medall-alt' => 'Medall Alt' ], [ 'ti-marker' => 'Marker' ], [ 'ti-marker-alt' => 'Marker Alt' ], [ 'ti-arrow-up' => 'Arrow Up' ], [ 'ti-arrow-right' => 'Arrow Right' ], [ 'ti-arrow-left' => 'Arrow Left' ], [ 'ti-arrow-down' => 'Arrow Down' ], [ 'ti-lock' => 'Lock' ], [ 'ti-location-arrow' => 'Location Arrow' ], [ 'ti-link' => 'Link' ], [ 'ti-layout' => 'Layout' ], [ 'ti-layers' => 'Layers' ], [ 'ti-layers-alt' => 'Layers Alt' ], [ 'ti-key' => 'Key' ], [ 'ti-import' => 'Import' ], [ 'ti-image' => 'Image' ], [ 'ti-heart' => 'Heart' ], [ 'ti-heart-broken' => 'Heart Broken' ], [ 'ti-hand-stop' => 'Hand Stop' ], [ 'ti-hand-open' => 'Hand Open' ], [ 'ti-hand-drag' => 'Hand Drag' ], [ 'ti-folder' => 'Folder' ], [ 'ti-flag' => 'Flag' ], [ 'ti-flag-alt' => 'Flag Alt' ], [ 'ti-flag-alt-2' => 'Flag Alt 2' ], [ 'ti-eye' => 'Eye' ], [ 'ti-export' => 'Export' ], [ 'ti-exchange-vertical' => 'Exchange Vertical' ], [ 'ti-desktop' => 'Desktop' ], [ 'ti-cup' => 'Cup' ], [ 'ti-crown' => 'Crown' ], [ 'ti-comments' => 'Comments' ], [ 'ti-comment' => 'Comment' ], [ 'ti-comment-alt' => 'Comment Alt' ], [ 'ti-close' => 'Close' ], [ 'ti-clip' => 'Clip' ], [ 'ti-angle-up' => 'Angle Up' ], [ 'ti-angle-right' => 'Angle Right' ], [ 'ti-angle-left' => 'Angle Left' ], [ 'ti-angle-down' => 'Angle Down' ], [ 'ti-check' => 'Check' ], [ 'ti-check-box' => 'Check Box' ], [ 'ti-camera' => 'Camera' ], [ 'ti-announcement' => 'Announcement' ], [ 'ti-brush' => 'Brush' ], [ 'ti-briefcase' => 'Briefcase' ], [ 'ti-bolt' => 'Bolt' ], [ 'ti-bolt-alt' => 'Bolt Alt' ], [ 'ti-blackboard' => 'Blackboard' ], [ 'ti-bag' => 'Bag' ], [ 'ti-move' => 'Move' ], [ 'ti-arrows-vertical' => 'Arrows Vertical' ], [ 'ti-arrows-horizontal' => 'Arrows Horizontal' ], [ 'ti-fullscreen' => 'Fullscreen' ], [ 'ti-arrow-top-right' => 'Arrow Top Right' ], [ 'ti-arrow-top-left' => 'Arrow Top Left' ], [ 'ti-arrow-circle-up' => 'Arrow Circle Up' ], [ 'ti-arrow-circle-right' => 'Arrow Circle Right' ], [ 'ti-arrow-circle-left' => 'Arrow Circle Left' ], [ 'ti-arrow-circle-down' => 'Arrow Circle Down' ], [ 'ti-angle-double-up' => 'Angle Double Up' ], [ 'ti-angle-double-right' => 'Angle Double Right' ], [ 'ti-angle-double-left' => 'Angle Double Left' ], [ 'ti-angle-double-down' => 'Angle Double Down' ], [ 'ti-zip' => 'Zip' ], [ 'ti-world' => 'World' ], [ 'ti-wheelchair' => 'Wheelchair' ], [ 'ti-view-list' => 'View List' ], [ 'ti-view-list-alt' => 'View List Alt' ], [ 'ti-view-grid' => 'View Grid' ], [ 'ti-uppercase' => 'Uppercase' ], [ 'ti-upload' => 'Upload' ], [ 'ti-underline' => 'Underline' ], [ 'ti-truck' => 'Truck' ], [ 'ti-timer' => 'Timer' ], [ 'ti-ticket' => 'Ticket' ], [ 'ti-thumb-up' => 'Thumb Up' ], [ 'ti-thumb-down' => 'Thumb Down' ], [ 'ti-text' => 'Text' ], [ 'ti-stats-up' => 'Stats Up' ], [ 'ti-stats-down' => 'Stats Down' ], [ 'ti-split-v' => 'Split V' ], [ 'ti-split-h' => 'Split H' ], [ 'ti-smallcap' => 'Smallcap' ], [ 'ti-shine' => 'Shine' ], [ 'ti-shift-right' => 'Shift Right' ], [ 'ti-shift-left' => 'Shift Left' ], [ 'ti-shield' => 'Shield' ], [ 'ti-notepad' => 'Notepad' ], [ 'ti-server' => 'Server' ], [ 'ti-quote-right' => 'Quote Right' ], [ 'ti-quote-left' => 'Quote Left' ], [ 'ti-pulse' => 'Pulse' ], [ 'ti-printer' => 'Printer' ], [ 'ti-power-off' => 'Power Off' ], [ 'ti-plug' => 'Plug' ], [ 'ti-pie-chart' => 'Pie Chart' ], [ 'ti-paragraph' => 'Paragraph' ], [ 'ti-panel' => 'Panel' ], [ 'ti-package' => 'Package' ], [ 'ti-music' => 'Music' ], [ 'ti-music-alt' => 'Music Alt' ], [ 'ti-mouse' => 'Mouse' ], [ 'ti-mouse-alt' => 'Mouse Alt' ], [ 'ti-money' => 'Money' ], [ 'ti-microphone' => 'Microphone' ], [ 'ti-menu' => 'Menu' ], [ 'ti-menu-alt' => 'Menu Alt' ], [ 'ti-map' => 'Map' ], [ 'ti-map-alt' => 'Map Alt' ], [ 'ti-loop' => 'Loop' ], [ 'ti-location-pin' => 'Location Pin' ], [ 'ti-list' => 'List' ], [ 'ti-light-bulb' => 'Light Bulb' ], [ 'ti-Italic' => 'Italic' ], [ 'ti-info' => 'Info' ], [ 'ti-infinite' => 'Infinite' ], [ 'ti-id-badge' => 'Id Badge' ], [ 'ti-hummer' => 'Hummer' ], [ 'ti-home' => 'Home' ], [ 'ti-help' => 'Help' ], [ 'ti-headphone' => 'Headphone' ], [ 'ti-harddrives' => 'Harddrives' ], [ 'ti-harddrive' => 'Harddrive' ], [ 'ti-gift' => 'Gift' ], [ 'ti-game' => 'Game' ], [ 'ti-filter' => 'Filter' ], [ 'ti-files' => 'Files' ], [ 'ti-file' => 'File' ], [ 'ti-eraser' => 'Eraser' ], [ 'ti-envelope' => 'Envelope' ], [ 'ti-download' => 'Download' ], [ 'ti-direction' => 'Direction' ], [ 'ti-direction-alt' => 'Direction Alt' ], [ 'ti-dashboard' => 'Dashboard' ], [ 'ti-control-stop' => 'Control Stop' ], [ 'ti-control-shuffle' => 'Control Shuffle' ], [ 'ti-control-play' => 'Control Play' ], [ 'ti-control-pause' => 'Control Pause' ], [ 'ti-control-forward' => 'Control Forward' ], [ 'ti-control-backward' => 'Control Backward' ], [ 'ti-cloud' => 'Cloud' ], [ 'ti-cloud-up' => 'Cloud Up' ], [ 'ti-cloud-down' => 'Cloud Down' ], [ 'ti-clipboard' => 'Clipboard' ], [ 'ti-car' => 'Car' ], [ 'ti-calendar' => 'Calendar' ], [ 'ti-book' => 'Book' ], [ 'ti-bell' => 'Bell' ], [ 'ti-basketball' => 'Basketball' ], [ 'ti-bar-chart' => 'Bar Chart' ], [ 'ti-bar-chart-alt' => 'Bar Chart Alt' ], [ 'ti-back-right' => 'Back Right' ], [ 'ti-back-left' => 'Back Left' ], [ 'ti-arrows-corner' => 'Arrows Corner' ], [ 'ti-archive' => 'Archive' ], [ 'ti-anchor' => 'Anchor' ], [ 'ti-align-right' => 'Align Right' ], [ 'ti-align-left' => 'Align Left' ], [ 'ti-align-justify' => 'Align Justify' ], [ 'ti-align-center' => 'Align Center' ], [ 'ti-alert' => 'Alert' ], [ 'ti-alarm-clock' => 'Alarm Clock' ], [ 'ti-agenda' => 'Agenda' ], [ 'ti-write' => 'Write' ], [ 'ti-window' => 'Window' ], [ 'ti-widgetized' => 'Widgetized' ], [ 'ti-widget' => 'Widget' ], [ 'ti-widget-alt' => 'Widget Alt' ], [ 'ti-wallet' => 'Wallet' ], [ 'ti-video-clapper' => 'Video Clapper' ], [ 'ti-video-camera' => 'Video Camera' ], [ 'ti-vector' => 'Vector' ], [ 'ti-themify-logo' => 'Themify Logo' ], [ 'ti-themify-favicon' => 'Themify Favicon' ], [ 'ti-themify-favicon-alt' => 'Themify Favicon Alt' ], [ 'ti-support' => 'Support' ], [ 'ti-stamp' => 'Stamp' ], [ 'ti-split-v-alt' => 'Split V Alt' ], [ 'ti-slice' => 'Slice' ], [ 'ti-shortcode' => 'Shortcode' ], [ 'ti-shift-right-alt' => 'Shift Right Alt' ], [ 'ti-shift-left-alt' => 'Shift Left Alt' ], [ 'ti-ruler-alt-2' => 'Ruler Alt 2' ], [ 'ti-receipt' => 'Receipt' ], [ 'ti-pin2' => 'Pin2' ], [ 'ti-pin-alt' => 'Pin Alt' ], [ 'ti-pencil-alt2' => 'Pencil Alt2' ], [ 'ti-palette' => 'Palette' ], [ 'ti-more' => 'More' ], [ 'ti-more-alt' => 'More Alt' ], [ 'ti-microphone-alt' => 'Microphone Alt' ], [ 'ti-magnet' => 'Magnet' ], [ 'ti-line-double' => 'Line Double' ], [ 'ti-line-dotted' => 'Line Dotted' ], [ 'ti-line-dashed' => 'Line Dashed' ], [ 'ti-layout-width-full' => 'Layout Width Full' ], [ 'ti-layout-width-default' => 'Layout Width Default' ], [ 'ti-layout-width-default-alt' => 'Layout Width Default Alt' ], [ 'ti-layout-tab' => 'Layout Tab' ], [ 'ti-layout-tab-window' => 'Layout Tab Window' ], [ 'ti-layout-tab-v' => 'Layout Tab V' ], [ 'ti-layout-tab-min' => 'Layout Tab Min' ], [ 'ti-layout-slider' => 'Layout Slider' ], [ 'ti-layout-slider-alt' => 'Layout Slider Alt' ], [ 'ti-layout-sidebar-right' => 'Layout Sidebar Right' ], [ 'ti-layout-sidebar-none' => 'Layout Sidebar None' ], [ 'ti-layout-sidebar-left' => 'Layout Sidebar Left' ], [ 'ti-layout-placeholder' => 'Layout Placeholder' ], [ 'ti-layout-menu' => 'Layout Menu' ], [ 'ti-layout-menu-v' => 'Layout Menu V' ], [ 'ti-layout-menu-separated' => 'Layout Menu Separated' ], [ 'ti-layout-menu-full' => 'Layout Menu Full' ], [ 'ti-layout-media-right-alt' => 'Layout Media Right Alt' ], [ 'ti-layout-media-right' => 'Layout Media Right' ], [ 'ti-layout-media-overlay' => 'Layout Media Overlay' ], [ 'ti-layout-media-overlay-alt' => 'Layout Media Overlay Alt' ], [ 'ti-layout-media-overlay-alt-2' => 'Layout Media Overlay Alt 2' ], [ 'ti-layout-media-left-alt' => 'Layout Media Left Alt' ], [ 'ti-layout-media-left' => 'Layout Media Left' ], [ 'ti-layout-media-center-alt' => 'Layout Media Center Alt' ], [ 'ti-layout-media-center' => 'Layout Media Center' ], [ 'ti-layout-list-thumb' => 'Layout List Thumb' ], [ 'ti-layout-list-thumb-alt' => 'Layout List Thumb Alt' ], [ 'ti-layout-list-post' => 'Layout List Post' ], [ 'ti-layout-list-large-image' => 'Layout List Large Image' ], [ 'ti-layout-line-solid' => 'Layout Line Solid' ], [ 'ti-layout-grid4' => 'Layout Grid4' ], [ 'ti-layout-grid3' => 'Layout Grid3' ], [ 'ti-layout-grid2' => 'Layout Grid2' ], [ 'ti-layout-grid2-thumb' => 'Layout Grid2 Thumb' ], [ 'ti-layout-cta-right' => 'Layout Cta Right' ], [ 'ti-layout-cta-left' => 'Layout Cta Left' ], [ 'ti-layout-cta-center' => 'Layout Cta Center' ], [ 'ti-layout-cta-btn-right' => 'Layout Cta Btn Right' ], [ 'ti-layout-cta-btn-left' => 'Layout Cta Btn Left' ], [ 'ti-layout-column4' => 'Layout Column4' ], [ 'ti-layout-column3' => 'Layout Column3' ], [ 'ti-layout-column2' => 'Layout Column2' ], [ 'ti-layout-accordion-separated' => 'Layout Accordion Separated' ], [ 'ti-layout-accordion-merged' => 'Layout Accordion Merged' ], [ 'ti-layout-accordion-list' => 'Layout Accordion List' ], [ 'ti-ink-pen' => 'Ink Pen' ], [ 'ti-info-alt' => 'Info Alt' ], [ 'ti-help-alt' => 'Help Alt' ], [ 'ti-headphone-alt' => 'Headphone Alt' ], [ 'ti-hand-point-up' => 'Hand Point Up' ], [ 'ti-hand-point-right' => 'Hand Point Right' ], [ 'ti-hand-point-left' => 'Hand Point Left' ], [ 'ti-hand-point-down' => 'Hand Point Down' ], [ 'ti-gallery' => 'Gallery' ], [ 'ti-face-smile' => 'Face Smile' ], [ 'ti-face-sad' => 'Face Sad' ], [ 'ti-credit-card' => 'Credit Card' ], [ 'ti-control-skip-forward' => 'Control Skip Forward' ], [ 'ti-control-skip-backward' => 'Control Skip Backward' ], [ 'ti-control-record' => 'Control Record' ], [ 'ti-control-eject' => 'Control Eject' ], [ 'ti-comments-smiley' => 'Comments Smiley' ], [ 'ti-brush-alt' => 'Brush Alt' ], [ 'ti-youtube' => 'Youtube' ], [ 'ti-vimeo' => 'Vimeo' ], [ 'ti-twitter' => 'Twitter' ], [ 'ti-time' => 'Time' ], [ 'ti-tumblr' => 'Tumblr' ], [ 'ti-skype' => 'Skype' ], [ 'ti-share' => 'Share' ], [ 'ti-share-alt' => 'Share Alt' ], [ 'ti-rocket' => 'Rocket' ], [ 'ti-pinterest' => 'Pinterest' ], [ 'ti-new-window' => 'New Window' ], [ 'ti-microsoft' => 'Microsoft' ], [ 'ti-list-ol' => 'List Ol' ], [ 'ti-linkedin' => 'Linkedin' ], [ 'ti-layout-sidebar-2' => 'Layout Sidebar 2' ], [ 'ti-layout-grid4-alt' => 'Layout Grid4 Alt' ], [ 'ti-layout-grid3-alt' => 'Layout Grid3 Alt' ], [ 'ti-layout-grid2-alt' => 'Layout Grid2 Alt' ], [ 'ti-layout-column4-alt' => 'Layout Column4 Alt' ], [ 'ti-layout-column3-alt' => 'Layout Column3 Alt' ], [ 'ti-layout-column2-alt' => 'Layout Column2 Alt' ], [ 'ti-instagram' => 'Instagram' ], [ 'ti-google' => 'Google' ], [ 'ti-github' => 'Github' ], [ 'ti-flickr' => 'Flickr' ], [ 'ti-facebook' => 'Facebook' ], [ 'ti-dropbox' => 'Dropbox' ], [ 'ti-dribbble' => 'Dribbble' ], [ 'ti-apple' => 'Apple' ], [ 'ti-android' => 'Android' ], [ 'ti-save' => 'Save' ], [ 'ti-save-alt' => 'Save Alt' ], [ 'ti-yahoo' => 'Yahoo' ], [ 'ti-wordpress' => 'Wordpress' ], [ 'ti-vimeo-alt' => 'Vimeo Alt' ], [ 'ti-twitter-alt' => 'Twitter Alt' ], [ 'ti-tumblr-alt' => 'Tumblr Alt' ], [ 'ti-trello' => 'Trello' ], [ 'ti-stack-overflow' => 'Stack Overflow' ], [ 'ti-soundcloud' => 'Soundcloud' ], [ 'ti-sharethis' => 'Sharethis' ], [ 'ti-sharethis-alt' => 'Sharethis Alt' ], [ 'ti-reddit' => 'Reddit' ], [ 'ti-pinterest-alt' => 'Pinterest Alt' ], [ 'ti-microsoft-alt' => 'Microsoft Alt' ], [ 'ti-linux' => 'Linux' ], [ 'ti-jsfiddle' => 'Jsfiddle' ], [ 'ti-joomla' => 'Joomla' ], [ 'ti-html5' => 'Html5' ], [ 'ti-flickr-alt' => 'Flickr Alt' ], [ 'ti-email' => 'Email' ], [ 'ti-drupal' => 'Drupal' ], [ 'ti-dropbox-alt' => 'Dropbox Alt' ], [ 'ti-css3' => 'Css3' ], [ 'ti-rss' => 'Rss' ], [ 'ti-rss-alt' => 'Rss Alt' ], ]; }
©
2018.