├── .clang-format ├── .gitignore ├── .qmake.conf ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components ├── CMakeLists.txt ├── components.pro ├── fonts │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf ├── icons │ ├── LICENSE │ ├── action │ │ └── svg │ │ │ └── production │ │ │ ├── ic_3d_rotation_24px.svg │ │ │ ├── ic_accessibility_24px.svg │ │ │ ├── ic_accessible_24px.svg │ │ │ ├── ic_account_balance_24px.svg │ │ │ ├── ic_account_balance_wallet_24px.svg │ │ │ ├── ic_account_box_24px.svg │ │ │ ├── ic_account_circle_24px.svg │ │ │ ├── ic_add_shopping_cart_24px.svg │ │ │ ├── ic_alarm_24px.svg │ │ │ ├── ic_alarm_add_24px.svg │ │ │ ├── ic_alarm_off_24px.svg │ │ │ ├── ic_alarm_on_24px.svg │ │ │ ├── ic_all_out_24px.svg │ │ │ ├── ic_android_24px.svg │ │ │ ├── ic_announcement_24px.svg │ │ │ ├── ic_aspect_ratio_24px.svg │ │ │ ├── ic_assessment_24px.svg │ │ │ ├── ic_assignment_24px.svg │ │ │ ├── ic_assignment_ind_24px.svg │ │ │ ├── ic_assignment_late_24px.svg │ │ │ ├── ic_assignment_return_24px.svg │ │ │ ├── ic_assignment_returned_24px.svg │ │ │ ├── ic_assignment_turned_in_24px.svg │ │ │ ├── ic_autorenew_24px.svg │ │ │ ├── ic_backup_24px.svg │ │ │ ├── ic_book_24px.svg │ │ │ ├── ic_bookmark_24px.svg │ │ │ ├── ic_bookmark_border_24px.svg │ │ │ ├── ic_bug_report_24px.svg │ │ │ ├── ic_build_24px.svg │ │ │ ├── ic_cached_24px.svg │ │ │ ├── ic_camera_enhance_24px.svg │ │ │ ├── ic_card_giftcard_24px.svg │ │ │ ├── ic_card_membership_24px.svg │ │ │ ├── ic_card_travel_24px.svg │ │ │ ├── ic_change_history_24px.svg │ │ │ ├── ic_check_circle_24px.svg │ │ │ ├── ic_chrome_reader_mode_24px.svg │ │ │ ├── ic_class_24px.svg │ │ │ ├── ic_code_24px.svg │ │ │ ├── ic_compare_arrows_24px.svg │ │ │ ├── ic_copyright_24px.svg │ │ │ ├── ic_credit_card_24px.svg │ │ │ ├── ic_dashboard_24px.svg │ │ │ ├── ic_date_range_24px.svg │ │ │ ├── ic_delete_24px.svg │ │ │ ├── ic_delete_forever_24px.svg │ │ │ ├── ic_description_24px.svg │ │ │ ├── ic_dns_24px.svg │ │ │ ├── ic_done_24px.svg │ │ │ ├── ic_done_all_24px.svg │ │ │ ├── ic_donut_large_24px.svg │ │ │ ├── ic_donut_small_24px.svg │ │ │ ├── ic_eject_24px.svg │ │ │ ├── ic_euro_symbol_24px.svg │ │ │ ├── ic_event_24px.svg │ │ │ ├── ic_event_seat_24px.svg │ │ │ ├── ic_exit_to_app_24px.svg │ │ │ ├── ic_explore_24px.svg │ │ │ ├── ic_extension_24px.svg │ │ │ ├── ic_face_24px.svg │ │ │ ├── ic_favorite_24px.svg │ │ │ ├── ic_favorite_border_24px.svg │ │ │ ├── ic_feedback_24px.svg │ │ │ ├── ic_find_in_page_24px.svg │ │ │ ├── ic_find_replace_24px.svg │ │ │ ├── ic_fingerprint_24px.svg │ │ │ ├── ic_flight_land_24px.svg │ │ │ ├── ic_flight_takeoff_24px.svg │ │ │ ├── ic_flip_to_back_24px.svg │ │ │ ├── ic_flip_to_front_24px.svg │ │ │ ├── ic_g_translate_24px.svg │ │ │ ├── ic_gavel_24px.svg │ │ │ ├── ic_get_app_24px.svg │ │ │ ├── ic_gif_24px.svg │ │ │ ├── ic_grade_24px.svg │ │ │ ├── ic_group_work_24px.svg │ │ │ ├── ic_help_24px.svg │ │ │ ├── ic_help_outline_24px.svg │ │ │ ├── ic_highlight_off_24px.svg │ │ │ ├── ic_history_24px.svg │ │ │ ├── ic_home_24px.svg │ │ │ ├── ic_hourglass_empty_24px.svg │ │ │ ├── ic_hourglass_full_24px.svg │ │ │ ├── ic_http_24px.svg │ │ │ ├── ic_https_24px.svg │ │ │ ├── ic_important_devices_24px.svg │ │ │ ├── ic_info_24px.svg │ │ │ ├── ic_info_outline_24px.svg │ │ │ ├── ic_input_24px.svg │ │ │ ├── ic_invert_colors_24px.svg │ │ │ ├── ic_label_24px.svg │ │ │ ├── ic_label_outline_24px.svg │ │ │ ├── ic_language_24px.svg │ │ │ ├── ic_launch_24px.svg │ │ │ ├── ic_lightbulb_outline_24px.svg │ │ │ ├── ic_line_style_24px.svg │ │ │ ├── ic_line_weight_24px.svg │ │ │ ├── ic_list_24px.svg │ │ │ ├── ic_lock_24px.svg │ │ │ ├── ic_lock_open_24px.svg │ │ │ ├── ic_lock_outline_24px.svg │ │ │ ├── ic_loyalty_24px.svg │ │ │ ├── ic_markunread_mailbox_24px.svg │ │ │ ├── ic_motorcycle_24px.svg │ │ │ ├── ic_note_add_24px.svg │ │ │ ├── ic_offline_pin_24px.svg │ │ │ ├── ic_opacity_24px.svg │ │ │ ├── ic_open_in_browser_24px.svg │ │ │ ├── ic_open_in_new_24px.svg │ │ │ ├── ic_open_with_24px.svg │ │ │ ├── ic_pageview_24px.svg │ │ │ ├── ic_pan_tool_24px.svg │ │ │ ├── ic_payment_24px.svg │ │ │ ├── ic_perm_camera_mic_24px.svg │ │ │ ├── ic_perm_contact_calendar_24px.svg │ │ │ ├── ic_perm_data_setting_24px.svg │ │ │ ├── ic_perm_device_information_24px.svg │ │ │ ├── ic_perm_identity_24px.svg │ │ │ ├── ic_perm_media_24px.svg │ │ │ ├── ic_perm_phone_msg_24px.svg │ │ │ ├── ic_perm_scan_wifi_24px.svg │ │ │ ├── ic_pets_24px.svg │ │ │ ├── ic_picture_in_picture_24px.svg │ │ │ ├── ic_picture_in_picture_alt_24px.svg │ │ │ ├── ic_play_for_work_24px.svg │ │ │ ├── ic_polymer_24px.svg │ │ │ ├── ic_power_settings_new_24px.svg │ │ │ ├── ic_pregnant_woman_24px.svg │ │ │ ├── ic_print_24px.svg │ │ │ ├── ic_query_builder_24px.svg │ │ │ ├── ic_question_answer_24px.svg │ │ │ ├── ic_receipt_24px.svg │ │ │ ├── ic_record_voice_over_24px.svg │ │ │ ├── ic_redeem_24px.svg │ │ │ ├── ic_remove_shopping_cart_24px.svg │ │ │ ├── ic_reorder_24px.svg │ │ │ ├── ic_report_problem_24px.svg │ │ │ ├── ic_restore_24px.svg │ │ │ ├── ic_restore_page_24px.svg │ │ │ ├── ic_room_24px.svg │ │ │ ├── ic_rounded_corner_24px.svg │ │ │ ├── ic_rowing_24px.svg │ │ │ ├── ic_schedule_24px.svg │ │ │ ├── ic_search_24px.svg │ │ │ ├── ic_settings_24px.svg │ │ │ ├── ic_settings_applications_24px.svg │ │ │ ├── ic_settings_backup_restore_24px.svg │ │ │ ├── ic_settings_bluetooth_24px.svg │ │ │ ├── ic_settings_brightness_24px.svg │ │ │ ├── ic_settings_cell_24px.svg │ │ │ ├── ic_settings_ethernet_24px.svg │ │ │ ├── ic_settings_input_antenna_24px.svg │ │ │ ├── ic_settings_input_component_24px.svg │ │ │ ├── ic_settings_input_composite_24px.svg │ │ │ ├── ic_settings_input_hdmi_24px.svg │ │ │ ├── ic_settings_input_svideo_24px.svg │ │ │ ├── ic_settings_overscan_24px.svg │ │ │ ├── ic_settings_phone_24px.svg │ │ │ ├── ic_settings_power_24px.svg │ │ │ ├── ic_settings_remote_24px.svg │ │ │ ├── ic_settings_voice_24px.svg │ │ │ ├── ic_shop_24px.svg │ │ │ ├── ic_shop_two_24px.svg │ │ │ ├── ic_shopping_basket_24px.svg │ │ │ ├── ic_shopping_cart_24px.svg │ │ │ ├── ic_speaker_notes_24px.svg │ │ │ ├── ic_speaker_notes_off_24px.svg │ │ │ ├── ic_spellcheck_24px.svg │ │ │ ├── ic_stars_24px.svg │ │ │ ├── ic_store_24px.svg │ │ │ ├── ic_subject_24px.svg │ │ │ ├── ic_supervisor_account_24px.svg │ │ │ ├── ic_swap_horiz_24px.svg │ │ │ ├── ic_swap_vert_24px.svg │ │ │ ├── ic_swap_vertical_circle_24px.svg │ │ │ ├── ic_system_update_alt_24px.svg │ │ │ ├── ic_tab_24px.svg │ │ │ ├── ic_tab_unselected_24px.svg │ │ │ ├── ic_theaters_24px.svg │ │ │ ├── ic_thumb_down_24px.svg │ │ │ ├── ic_thumb_up_24px.svg │ │ │ ├── ic_thumbs_up_down_24px.svg │ │ │ ├── ic_timeline_24px.svg │ │ │ ├── ic_toc_24px.svg │ │ │ ├── ic_today_24px.svg │ │ │ ├── ic_toll_24px.svg │ │ │ ├── ic_touch_app_24px.svg │ │ │ ├── ic_track_changes_24px.svg │ │ │ ├── ic_translate_24px.svg │ │ │ ├── ic_trending_down_24px.svg │ │ │ ├── ic_trending_flat_24px.svg │ │ │ ├── ic_trending_up_24px.svg │ │ │ ├── ic_turned_in_24px.svg │ │ │ ├── ic_turned_in_not_24px.svg │ │ │ ├── ic_update_24px.svg │ │ │ ├── ic_verified_user_24px.svg │ │ │ ├── ic_view_agenda_24px.svg │ │ │ ├── ic_view_array_24px.svg │ │ │ ├── ic_view_carousel_24px.svg │ │ │ ├── ic_view_column_24px.svg │ │ │ ├── ic_view_day_24px.svg │ │ │ ├── ic_view_headline_24px.svg │ │ │ ├── ic_view_list_24px.svg │ │ │ ├── ic_view_module_24px.svg │ │ │ ├── ic_view_quilt_24px.svg │ │ │ ├── ic_view_stream_24px.svg │ │ │ ├── ic_view_week_24px.svg │ │ │ ├── ic_visibility_24px.svg │ │ │ ├── ic_visibility_off_24px.svg │ │ │ ├── ic_watch_later_24px.svg │ │ │ ├── ic_work_24px.svg │ │ │ ├── ic_youtube_searched_for_24px.svg │ │ │ ├── ic_zoom_in_24px.svg │ │ │ └── ic_zoom_out_24px.svg │ ├── alert │ │ └── svg │ │ │ └── production │ │ │ ├── ic_add_alert_24px.svg │ │ │ ├── ic_error_24px.svg │ │ │ ├── ic_error_outline_24px.svg │ │ │ └── ic_warning_24px.svg │ ├── av │ │ └── svg │ │ │ └── production │ │ │ ├── ic_add_to_queue_24px.svg │ │ │ ├── ic_airplay_24px.svg │ │ │ ├── ic_album_24px.svg │ │ │ ├── ic_art_track_24px.svg │ │ │ ├── ic_av_timer_24px.svg │ │ │ ├── ic_branding_watermark_24px.svg │ │ │ ├── ic_call_to_action_24px.svg │ │ │ ├── ic_closed_caption_24px.svg │ │ │ ├── ic_equalizer_24px.svg │ │ │ ├── ic_explicit_24px.svg │ │ │ ├── ic_fast_forward_24px.svg │ │ │ ├── ic_fast_rewind_24px.svg │ │ │ ├── ic_featured_play_list_24px.svg │ │ │ ├── ic_featured_video_24px.svg │ │ │ ├── ic_fiber_dvr_24px.svg │ │ │ ├── ic_fiber_manual_record_24px.svg │ │ │ ├── ic_fiber_new_24px.svg │ │ │ ├── ic_fiber_pin_24px.svg │ │ │ ├── ic_fiber_smart_record_24px.svg │ │ │ ├── ic_forward_10_24px.svg │ │ │ ├── ic_forward_30_24px.svg │ │ │ ├── ic_forward_5_24px.svg │ │ │ ├── ic_games_24px.svg │ │ │ ├── ic_hd_24px.svg │ │ │ ├── ic_hearing_24px.svg │ │ │ ├── ic_high_quality_24px.svg │ │ │ ├── ic_library_add_24px.svg │ │ │ ├── ic_library_books_24px.svg │ │ │ ├── ic_library_music_24px.svg │ │ │ ├── ic_loop_24px.svg │ │ │ ├── ic_mic_24px.svg │ │ │ ├── ic_mic_none_24px.svg │ │ │ ├── ic_mic_off_24px.svg │ │ │ ├── ic_movie_24px.svg │ │ │ ├── ic_music_video_24px.svg │ │ │ ├── ic_new_releases_24px.svg │ │ │ ├── ic_not_interested_24px.svg │ │ │ ├── ic_note_24px.svg │ │ │ ├── ic_pause_24px.svg │ │ │ ├── ic_pause_circle_filled_24px.svg │ │ │ ├── ic_pause_circle_outline_24px.svg │ │ │ ├── ic_play_arrow_24px.svg │ │ │ ├── ic_play_circle_filled_24px.svg │ │ │ ├── ic_play_circle_outline_24px.svg │ │ │ ├── ic_playlist_add_24px.svg │ │ │ ├── ic_playlist_add_check_24px.svg │ │ │ ├── ic_playlist_play_24px.svg │ │ │ ├── ic_queue_24px.svg │ │ │ ├── ic_queue_music_24px.svg │ │ │ ├── ic_queue_play_next_24px.svg │ │ │ ├── ic_radio_24px.svg │ │ │ ├── ic_recent_actors_24px.svg │ │ │ ├── ic_remove_from_queue_24px.svg │ │ │ ├── ic_repeat_24px.svg │ │ │ ├── ic_repeat_one_24px.svg │ │ │ ├── ic_replay_10_24px.svg │ │ │ ├── ic_replay_24px.svg │ │ │ ├── ic_replay_30_24px.svg │ │ │ ├── ic_replay_5_24px.svg │ │ │ ├── ic_shuffle_24px.svg │ │ │ ├── ic_skip_next_24px.svg │ │ │ ├── ic_skip_previous_24px.svg │ │ │ ├── ic_slow_motion_video_24px.svg │ │ │ ├── ic_snooze_24px.svg │ │ │ ├── ic_sort_by_alpha_24px.svg │ │ │ ├── ic_stop_24px.svg │ │ │ ├── ic_subscriptions_24px.svg │ │ │ ├── ic_subtitles_24px.svg │ │ │ ├── ic_surround_sound_24px.svg │ │ │ ├── ic_video_call_24px.svg │ │ │ ├── ic_video_label_24px.svg │ │ │ ├── ic_video_library_24px.svg │ │ │ ├── ic_videocam_24px.svg │ │ │ ├── ic_videocam_off_24px.svg │ │ │ ├── ic_volume_down_24px.svg │ │ │ ├── ic_volume_mute_24px.svg │ │ │ ├── ic_volume_off_24px.svg │ │ │ ├── ic_volume_up_24px.svg │ │ │ ├── ic_web_24px.svg │ │ │ └── ic_web_asset_24px.svg │ ├── communication │ │ └── svg │ │ │ └── production │ │ │ ├── ic_business_24px.svg │ │ │ ├── ic_call_24px.svg │ │ │ ├── ic_call_end_24px.svg │ │ │ ├── ic_call_made_24px.svg │ │ │ ├── ic_call_merge_24px.svg │ │ │ ├── ic_call_missed_24px.svg │ │ │ ├── ic_call_missed_outgoing_24px.svg │ │ │ ├── ic_call_received_24px.svg │ │ │ ├── ic_call_split_24px.svg │ │ │ ├── ic_chat_24px.svg │ │ │ ├── ic_chat_bubble_24px.svg │ │ │ ├── ic_chat_bubble_outline_24px.svg │ │ │ ├── ic_clear_all_24px.svg │ │ │ ├── ic_comment_24px.svg │ │ │ ├── ic_contact_mail_24px.svg │ │ │ ├── ic_contact_phone_24px.svg │ │ │ ├── ic_contacts_24px.svg │ │ │ ├── ic_dialer_sip_24px.svg │ │ │ ├── ic_dialpad_24px.svg │ │ │ ├── ic_email_24px.svg │ │ │ ├── ic_forum_24px.svg │ │ │ ├── ic_import_contacts_24px.svg │ │ │ ├── ic_import_export_24px.svg │ │ │ ├── ic_invert_colors_off_24px.svg │ │ │ ├── ic_live_help_24px.svg │ │ │ ├── ic_location_off_24px.svg │ │ │ ├── ic_location_on_24px.svg │ │ │ ├── ic_mail_outline_24px.svg │ │ │ ├── ic_message_24px.svg │ │ │ ├── ic_no_sim_24px.svg │ │ │ ├── ic_phone_24px.svg │ │ │ ├── ic_phonelink_erase_24px.svg │ │ │ ├── ic_phonelink_lock_24px.svg │ │ │ ├── ic_phonelink_ring_24px.svg │ │ │ ├── ic_phonelink_setup_24px.svg │ │ │ ├── ic_portable_wifi_off_24px.svg │ │ │ ├── ic_present_to_all_24px.svg │ │ │ ├── ic_ring_volume_24px.svg │ │ │ ├── ic_rss_feed_24px.svg │ │ │ ├── ic_screen_share_24px.svg │ │ │ ├── ic_speaker_phone_24px.svg │ │ │ ├── ic_stay_current_landscape_24px.svg │ │ │ ├── ic_stay_current_portrait_24px.svg │ │ │ ├── ic_stay_primary_landscape_24px.svg │ │ │ ├── ic_stay_primary_portrait_24px.svg │ │ │ ├── ic_stop_screen_share_24px.svg │ │ │ ├── ic_swap_calls_24px.svg │ │ │ ├── ic_textsms_24px.svg │ │ │ ├── ic_voicemail_24px.svg │ │ │ └── ic_vpn_key_24px.svg │ ├── content │ │ └── svg │ │ │ └── production │ │ │ ├── ic_add_24px.svg │ │ │ ├── ic_add_box_24px.svg │ │ │ ├── ic_add_circle_24px.svg │ │ │ ├── ic_add_circle_outline_24px.svg │ │ │ ├── ic_archive_24px.svg │ │ │ ├── ic_backspace_24px.svg │ │ │ ├── ic_block_24px.svg │ │ │ ├── ic_clear_24px.svg │ │ │ ├── ic_content_copy_24px.svg │ │ │ ├── ic_content_cut_24px.svg │ │ │ ├── ic_content_paste_24px.svg │ │ │ ├── ic_create_24px.svg │ │ │ ├── ic_delete_sweep_24px.svg │ │ │ ├── ic_drafts_24px.svg │ │ │ ├── ic_filter_list_24px.svg │ │ │ ├── ic_flag_24px.svg │ │ │ ├── ic_font_download_24px.svg │ │ │ ├── ic_forward_24px.svg │ │ │ ├── ic_gesture_24px.svg │ │ │ ├── ic_inbox_24px.svg │ │ │ ├── ic_link_24px.svg │ │ │ ├── ic_low_priority_24px.svg │ │ │ ├── ic_mail_24px.svg │ │ │ ├── ic_markunread_24px.svg │ │ │ ├── ic_move_to_inbox_24px.svg │ │ │ ├── ic_next_week_24px.svg │ │ │ ├── ic_redo_24px.svg │ │ │ ├── ic_remove_24px.svg │ │ │ ├── ic_remove_circle_24px.svg │ │ │ ├── ic_remove_circle_outline_24px.svg │ │ │ ├── ic_reply_24px.svg │ │ │ ├── ic_reply_all_24px.svg │ │ │ ├── ic_report_24px.svg │ │ │ ├── ic_save_24px.svg │ │ │ ├── ic_select_all_24px.svg │ │ │ ├── ic_send_24px.svg │ │ │ ├── ic_sort_24px.svg │ │ │ ├── ic_text_format_24px.svg │ │ │ ├── ic_unarchive_24px.svg │ │ │ ├── ic_undo_24px.svg │ │ │ └── ic_weekend_24px.svg │ ├── device │ │ └── svg │ │ │ └── production │ │ │ ├── ic_access_alarm_24px.svg │ │ │ ├── ic_access_alarms_24px.svg │ │ │ ├── ic_access_time_24px.svg │ │ │ ├── ic_add_alarm_24px.svg │ │ │ ├── ic_airplanemode_active_24px.svg │ │ │ ├── ic_airplanemode_inactive_24px.svg │ │ │ ├── ic_battery_20_24px.svg │ │ │ ├── ic_battery_30_24px.svg │ │ │ ├── ic_battery_50_24px.svg │ │ │ ├── ic_battery_60_24px.svg │ │ │ ├── ic_battery_80_24px.svg │ │ │ ├── ic_battery_90_24px.svg │ │ │ ├── ic_battery_alert_24px.svg │ │ │ ├── ic_battery_charging_20_24px.svg │ │ │ ├── ic_battery_charging_30_24px.svg │ │ │ ├── ic_battery_charging_50_24px.svg │ │ │ ├── ic_battery_charging_60_24px.svg │ │ │ ├── ic_battery_charging_80_24px.svg │ │ │ ├── ic_battery_charging_90_24px.svg │ │ │ ├── ic_battery_charging_full_24px.svg │ │ │ ├── ic_battery_full_24px.svg │ │ │ ├── ic_battery_std_24px.svg │ │ │ ├── ic_battery_unknown_24px.svg │ │ │ ├── ic_bluetooth_24px.svg │ │ │ ├── ic_bluetooth_connected_24px.svg │ │ │ ├── ic_bluetooth_disabled_24px.svg │ │ │ ├── ic_bluetooth_searching_24px.svg │ │ │ ├── ic_brightness_auto_24px.svg │ │ │ ├── ic_brightness_high_24px.svg │ │ │ ├── ic_brightness_low_24px.svg │ │ │ ├── ic_brightness_medium_24px.svg │ │ │ ├── ic_data_usage_24px.svg │ │ │ ├── ic_developer_mode_24px.svg │ │ │ ├── ic_devices_24px.svg │ │ │ ├── ic_dvr_24px.svg │ │ │ ├── ic_gps_fixed_24px.svg │ │ │ ├── ic_gps_not_fixed_24px.svg │ │ │ ├── ic_gps_off_24px.svg │ │ │ ├── ic_graphic_eq_24px.svg │ │ │ ├── ic_location_disabled_24px.svg │ │ │ ├── ic_location_searching_24px.svg │ │ │ ├── ic_network_cell_24px.svg │ │ │ ├── ic_network_wifi_24px.svg │ │ │ ├── ic_nfc_24px.svg │ │ │ ├── ic_screen_lock_landscape_24px.svg │ │ │ ├── ic_screen_lock_portrait_24px.svg │ │ │ ├── ic_screen_lock_rotation_24px.svg │ │ │ ├── ic_screen_rotation_24px.svg │ │ │ ├── ic_sd_storage_24px.svg │ │ │ ├── ic_settings_system_daydream_24px.svg │ │ │ ├── ic_signal_cellular_0_bar_24px.svg │ │ │ ├── ic_signal_cellular_1_bar_24px.svg │ │ │ ├── ic_signal_cellular_2_bar_24px.svg │ │ │ ├── ic_signal_cellular_3_bar_24px.svg │ │ │ ├── ic_signal_cellular_4_bar_24px.svg │ │ │ ├── ic_signal_cellular_connected_no_internet_0_bar_24px.svg │ │ │ ├── ic_signal_cellular_connected_no_internet_1_bar_24px.svg │ │ │ ├── ic_signal_cellular_connected_no_internet_2_bar_24px.svg │ │ │ ├── ic_signal_cellular_connected_no_internet_3_bar_24px.svg │ │ │ ├── ic_signal_cellular_connected_no_internet_4_bar_24px.svg │ │ │ ├── ic_signal_cellular_no_sim_24px.svg │ │ │ ├── ic_signal_cellular_null_24px.svg │ │ │ ├── ic_signal_cellular_off_24px.svg │ │ │ ├── ic_signal_wifi_0_bar_24px.svg │ │ │ ├── ic_signal_wifi_1_bar_24px.svg │ │ │ ├── ic_signal_wifi_1_bar_lock_24px.svg │ │ │ ├── ic_signal_wifi_2_bar_24px.svg │ │ │ ├── ic_signal_wifi_2_bar_lock_24px.svg │ │ │ ├── ic_signal_wifi_3_bar_24px.svg │ │ │ ├── ic_signal_wifi_3_bar_lock_24px.svg │ │ │ ├── ic_signal_wifi_4_bar_24px.svg │ │ │ ├── ic_signal_wifi_4_bar_lock_24px.svg │ │ │ ├── ic_signal_wifi_off_24px.svg │ │ │ ├── ic_storage_24px.svg │ │ │ ├── ic_usb_24px.svg │ │ │ ├── ic_wallpaper_24px.svg │ │ │ ├── ic_widgets_24px.svg │ │ │ ├── ic_wifi_lock_24px.svg │ │ │ └── ic_wifi_tethering_24px.svg │ ├── editor │ │ └── svg │ │ │ └── production │ │ │ ├── ic_attach_file_24px.svg │ │ │ ├── ic_attach_money_24px.svg │ │ │ ├── ic_border_all_24px.svg │ │ │ ├── ic_border_bottom_24px.svg │ │ │ ├── ic_border_clear_24px.svg │ │ │ ├── ic_border_color_24px.svg │ │ │ ├── ic_border_horizontal_24px.svg │ │ │ ├── ic_border_inner_24px.svg │ │ │ ├── ic_border_left_24px.svg │ │ │ ├── ic_border_outer_24px.svg │ │ │ ├── ic_border_right_24px.svg │ │ │ ├── ic_border_style_24px.svg │ │ │ ├── ic_border_top_24px.svg │ │ │ ├── ic_border_vertical_24px.svg │ │ │ ├── ic_bubble_chart_24px.svg │ │ │ ├── ic_drag_handle_24px.svg │ │ │ ├── ic_format_align_center_24px.svg │ │ │ ├── ic_format_align_justify_24px.svg │ │ │ ├── ic_format_align_left_24px.svg │ │ │ ├── ic_format_align_right_24px.svg │ │ │ ├── ic_format_bold_24px.svg │ │ │ ├── ic_format_clear_24px.svg │ │ │ ├── ic_format_color_fill_24px.svg │ │ │ ├── ic_format_color_reset_24px.svg │ │ │ ├── ic_format_color_text_24px.svg │ │ │ ├── ic_format_indent_decrease_24px.svg │ │ │ ├── ic_format_indent_increase_24px.svg │ │ │ ├── ic_format_italic_24px.svg │ │ │ ├── ic_format_line_spacing_24px.svg │ │ │ ├── ic_format_list_bulleted_24px.svg │ │ │ ├── ic_format_list_numbered_24px.svg │ │ │ ├── ic_format_paint_24px.svg │ │ │ ├── ic_format_quote_24px.svg │ │ │ ├── ic_format_shapes_24px.svg │ │ │ ├── ic_format_size_24px.svg │ │ │ ├── ic_format_strikethrough_24px.svg │ │ │ ├── ic_format_textdirection_l_to_r_24px.svg │ │ │ ├── ic_format_textdirection_r_to_l_24px.svg │ │ │ ├── ic_format_underlined_24px.svg │ │ │ ├── ic_functions_24px.svg │ │ │ ├── ic_highlight_24px.svg │ │ │ ├── ic_insert_chart_24px.svg │ │ │ ├── ic_insert_comment_24px.svg │ │ │ ├── ic_insert_drive_file_24px.svg │ │ │ ├── ic_insert_emoticon_24px.svg │ │ │ ├── ic_insert_invitation_24px.svg │ │ │ ├── ic_insert_link_24px.svg │ │ │ ├── ic_insert_photo_24px.svg │ │ │ ├── ic_linear_scale_24px.svg │ │ │ ├── ic_merge_type_24px.svg │ │ │ ├── ic_mode_comment_24px.svg │ │ │ ├── ic_mode_edit_24px.svg │ │ │ ├── ic_monetization_on_24px.svg │ │ │ ├── ic_money_off_24px.svg │ │ │ ├── ic_multiline_chart_24px.svg │ │ │ ├── ic_pie_chart_24px.svg │ │ │ ├── ic_pie_chart_outlined_24px.svg │ │ │ ├── ic_publish_24px.svg │ │ │ ├── ic_short_text_24px.svg │ │ │ ├── ic_show_chart_24px.svg │ │ │ ├── ic_space_bar_24px.svg │ │ │ ├── ic_strikethrough_s_24px.svg │ │ │ ├── ic_text_fields_24px.svg │ │ │ ├── ic_title_24px.svg │ │ │ ├── ic_vertical_align_bottom_24px.svg │ │ │ ├── ic_vertical_align_center_24px.svg │ │ │ ├── ic_vertical_align_top_24px.svg │ │ │ └── ic_wrap_text_24px.svg │ ├── file │ │ └── svg │ │ │ └── production │ │ │ ├── ic_attachment_24px.svg │ │ │ ├── ic_cloud_24px.svg │ │ │ ├── ic_cloud_circle_24px.svg │ │ │ ├── ic_cloud_done_24px.svg │ │ │ ├── ic_cloud_download_24px.svg │ │ │ ├── ic_cloud_off_24px.svg │ │ │ ├── ic_cloud_queue_24px.svg │ │ │ ├── ic_cloud_upload_24px.svg │ │ │ ├── ic_create_new_folder_24px.svg │ │ │ ├── ic_file_download_24px.svg │ │ │ ├── ic_file_upload_24px.svg │ │ │ ├── ic_folder_24px.svg │ │ │ ├── ic_folder_open_24px.svg │ │ │ └── ic_folder_shared_24px.svg │ ├── hardware │ │ └── svg │ │ │ └── production │ │ │ ├── ic_cast_24px.svg │ │ │ ├── ic_cast_connected_24px.svg │ │ │ ├── ic_computer_24px.svg │ │ │ ├── ic_desktop_mac_24px.svg │ │ │ ├── ic_desktop_windows_24px.svg │ │ │ ├── ic_developer_board_24px.svg │ │ │ ├── ic_device_hub_24px.svg │ │ │ ├── ic_devices_other_24px.svg │ │ │ ├── ic_dock_24px.svg │ │ │ ├── ic_gamepad_24px.svg │ │ │ ├── ic_headset_24px.svg │ │ │ ├── ic_headset_mic_24px.svg │ │ │ ├── ic_keyboard_24px.svg │ │ │ ├── ic_keyboard_arrow_down_24px.svg │ │ │ ├── ic_keyboard_arrow_left_24px.svg │ │ │ ├── ic_keyboard_arrow_right_24px.svg │ │ │ ├── ic_keyboard_arrow_up_24px.svg │ │ │ ├── ic_keyboard_backspace_24px.svg │ │ │ ├── ic_keyboard_capslock_24px.svg │ │ │ ├── ic_keyboard_hide_24px.svg │ │ │ ├── ic_keyboard_return_24px.svg │ │ │ ├── ic_keyboard_tab_24px.svg │ │ │ ├── ic_keyboard_voice_24px.svg │ │ │ ├── ic_laptop_24px.svg │ │ │ ├── ic_laptop_chromebook_24px.svg │ │ │ ├── ic_laptop_mac_24px.svg │ │ │ ├── ic_laptop_windows_24px.svg │ │ │ ├── ic_memory_24px.svg │ │ │ ├── ic_mouse_24px.svg │ │ │ ├── ic_phone_android_24px.svg │ │ │ ├── ic_phone_iphone_24px.svg │ │ │ ├── ic_phonelink_24px.svg │ │ │ ├── ic_phonelink_off_24px.svg │ │ │ ├── ic_power_input_24px.svg │ │ │ ├── ic_router_24px.svg │ │ │ ├── ic_scanner_24px.svg │ │ │ ├── ic_security_24px.svg │ │ │ ├── ic_sim_card_24px.svg │ │ │ ├── ic_smartphone_24px.svg │ │ │ ├── ic_speaker_24px.svg │ │ │ ├── ic_speaker_group_24px.svg │ │ │ ├── ic_tablet_24px.svg │ │ │ ├── ic_tablet_android_24px.svg │ │ │ ├── ic_tablet_mac_24px.svg │ │ │ ├── ic_toys_24px.svg │ │ │ ├── ic_tv_24px.svg │ │ │ ├── ic_videogame_asset_24px.svg │ │ │ └── ic_watch_24px.svg │ ├── image │ │ └── svg │ │ │ └── production │ │ │ ├── ic_add_a_photo_24px.svg │ │ │ ├── ic_add_to_photos_24px.svg │ │ │ ├── ic_adjust_24px.svg │ │ │ ├── ic_assistant_24px.svg │ │ │ ├── ic_assistant_photo_24px.svg │ │ │ ├── ic_audiotrack_24px.svg │ │ │ ├── ic_blur_circular_24px.svg │ │ │ ├── ic_blur_linear_24px.svg │ │ │ ├── ic_blur_off_24px.svg │ │ │ ├── ic_blur_on_24px.svg │ │ │ ├── ic_brightness_1_24px.svg │ │ │ ├── ic_brightness_2_24px.svg │ │ │ ├── ic_brightness_3_24px.svg │ │ │ ├── ic_brightness_4_24px.svg │ │ │ ├── ic_brightness_5_24px.svg │ │ │ ├── ic_brightness_6_24px.svg │ │ │ ├── ic_brightness_7_24px.svg │ │ │ ├── ic_broken_image_24px.svg │ │ │ ├── ic_brush_24px.svg │ │ │ ├── ic_burst_mode_24px.svg │ │ │ ├── ic_camera_24px.svg │ │ │ ├── ic_camera_alt_24px.svg │ │ │ ├── ic_camera_front_24px.svg │ │ │ ├── ic_camera_rear_24px.svg │ │ │ ├── ic_camera_roll_24px.svg │ │ │ ├── ic_center_focus_strong_24px.svg │ │ │ ├── ic_center_focus_weak_24px.svg │ │ │ ├── ic_collections_24px.svg │ │ │ ├── ic_collections_bookmark_24px.svg │ │ │ ├── ic_color_lens_24px.svg │ │ │ ├── ic_colorize_24px.svg │ │ │ ├── ic_compare_24px.svg │ │ │ ├── ic_control_point_24px.svg │ │ │ ├── ic_control_point_duplicate_24px.svg │ │ │ ├── ic_crop_16_9_24px.svg │ │ │ ├── ic_crop_24px.svg │ │ │ ├── ic_crop_3_2_24px.svg │ │ │ ├── ic_crop_5_4_24px.svg │ │ │ ├── ic_crop_7_5_24px.svg │ │ │ ├── ic_crop_din_24px.svg │ │ │ ├── ic_crop_free_24px.svg │ │ │ ├── ic_crop_landscape_24px.svg │ │ │ ├── ic_crop_original_24px.svg │ │ │ ├── ic_crop_portrait_24px.svg │ │ │ ├── ic_crop_rotate_24px.svg │ │ │ ├── ic_crop_square_24px.svg │ │ │ ├── ic_dehaze_24px.svg │ │ │ ├── ic_details_24px.svg │ │ │ ├── ic_edit_24px.svg │ │ │ ├── ic_exposure_24px.svg │ │ │ ├── ic_exposure_neg_1_24px.svg │ │ │ ├── ic_exposure_neg_2_24px.svg │ │ │ ├── ic_exposure_plus_1_24px.svg │ │ │ ├── ic_exposure_plus_2_24px.svg │ │ │ ├── ic_exposure_zero_24px.svg │ │ │ ├── ic_filter_1_24px.svg │ │ │ ├── ic_filter_24px.svg │ │ │ ├── ic_filter_2_24px.svg │ │ │ ├── ic_filter_3_24px.svg │ │ │ ├── ic_filter_4_24px.svg │ │ │ ├── ic_filter_5_24px.svg │ │ │ ├── ic_filter_6_24px.svg │ │ │ ├── ic_filter_7_24px.svg │ │ │ ├── ic_filter_8_24px.svg │ │ │ ├── ic_filter_9_24px.svg │ │ │ ├── ic_filter_9_plus_24px.svg │ │ │ ├── ic_filter_b_and_w_24px.svg │ │ │ ├── ic_filter_center_focus_24px.svg │ │ │ ├── ic_filter_drama_24px.svg │ │ │ ├── ic_filter_frames_24px.svg │ │ │ ├── ic_filter_hdr_24px.svg │ │ │ ├── ic_filter_none_24px.svg │ │ │ ├── ic_filter_tilt_shift_24px.svg │ │ │ ├── ic_filter_vintage_24px.svg │ │ │ ├── ic_flare_24px.svg │ │ │ ├── ic_flash_auto_24px.svg │ │ │ ├── ic_flash_off_24px.svg │ │ │ ├── ic_flash_on_24px.svg │ │ │ ├── ic_flip_24px.svg │ │ │ ├── ic_gradient_24px.svg │ │ │ ├── ic_grain_24px.svg │ │ │ ├── ic_grid_off_24px.svg │ │ │ ├── ic_grid_on_24px.svg │ │ │ ├── ic_hdr_off_24px.svg │ │ │ ├── ic_hdr_on_24px.svg │ │ │ ├── ic_hdr_strong_24px.svg │ │ │ ├── ic_hdr_weak_24px.svg │ │ │ ├── ic_healing_24px.svg │ │ │ ├── ic_image_24px.svg │ │ │ ├── ic_image_aspect_ratio_24px.svg │ │ │ ├── ic_iso_24px.svg │ │ │ ├── ic_landscape_24px.svg │ │ │ ├── ic_leak_add_24px.svg │ │ │ ├── ic_leak_remove_24px.svg │ │ │ ├── ic_lens_24px.svg │ │ │ ├── ic_linked_camera_24px.svg │ │ │ ├── ic_looks_24px.svg │ │ │ ├── ic_looks_3_24px.svg │ │ │ ├── ic_looks_4_24px.svg │ │ │ ├── ic_looks_5_24px.svg │ │ │ ├── ic_looks_6_24px.svg │ │ │ ├── ic_looks_one_24px.svg │ │ │ ├── ic_looks_two_24px.svg │ │ │ ├── ic_loupe_24px.svg │ │ │ ├── ic_monochrome_photos_24px.svg │ │ │ ├── ic_movie_creation_24px.svg │ │ │ ├── ic_movie_filter_24px.svg │ │ │ ├── ic_music_note_24px.svg │ │ │ ├── ic_nature_24px.svg │ │ │ ├── ic_nature_people_24px.svg │ │ │ ├── ic_navigate_before_24px.svg │ │ │ ├── ic_navigate_next_24px.svg │ │ │ ├── ic_palette_24px.svg │ │ │ ├── ic_panorama_24px.svg │ │ │ ├── ic_panorama_fish_eye_24px.svg │ │ │ ├── ic_panorama_horizontal_24px.svg │ │ │ ├── ic_panorama_vertical_24px.svg │ │ │ ├── ic_panorama_wide_angle_24px.svg │ │ │ ├── ic_photo_24px.svg │ │ │ ├── ic_photo_album_24px.svg │ │ │ ├── ic_photo_camera_24px.svg │ │ │ ├── ic_photo_filter_24px.svg │ │ │ ├── ic_photo_library_24px.svg │ │ │ ├── ic_photo_size_select_actual_24px.svg │ │ │ ├── ic_photo_size_select_large_24px.svg │ │ │ ├── ic_photo_size_select_small_24px.svg │ │ │ ├── ic_picture_as_pdf_24px.svg │ │ │ ├── ic_portrait_24px.svg │ │ │ ├── ic_remove_red_eye_24px.svg │ │ │ ├── ic_rotate_90_degrees_ccw_24px.svg │ │ │ ├── ic_rotate_left_24px.svg │ │ │ ├── ic_rotate_right_24px.svg │ │ │ ├── ic_slideshow_24px.svg │ │ │ ├── ic_straighten_24px.svg │ │ │ ├── ic_style_24px.svg │ │ │ ├── ic_switch_camera_24px.svg │ │ │ ├── ic_switch_video_24px.svg │ │ │ ├── ic_tag_faces_24px.svg │ │ │ ├── ic_texture_24px.svg │ │ │ ├── ic_timelapse_24px.svg │ │ │ ├── ic_timer_10_24px.svg │ │ │ ├── ic_timer_24px.svg │ │ │ ├── ic_timer_3_24px.svg │ │ │ ├── ic_timer_off_24px.svg │ │ │ ├── ic_tonality_24px.svg │ │ │ ├── ic_transform_24px.svg │ │ │ ├── ic_tune_24px.svg │ │ │ ├── ic_view_comfy_24px.svg │ │ │ ├── ic_view_compact_24px.svg │ │ │ ├── ic_vignette_24px.svg │ │ │ ├── ic_wb_auto_24px.svg │ │ │ ├── ic_wb_cloudy_24px.svg │ │ │ ├── ic_wb_incandescent_24px.svg │ │ │ ├── ic_wb_iridescent_24px.svg │ │ │ └── ic_wb_sunny_24px.svg │ ├── maps │ │ └── svg │ │ │ └── production │ │ │ ├── ic_add_location_24px.svg │ │ │ ├── ic_beenhere_24px.svg │ │ │ ├── ic_directions_24px.svg │ │ │ ├── ic_directions_bike_24px.svg │ │ │ ├── ic_directions_boat_24px.svg │ │ │ ├── ic_directions_bus_24px.svg │ │ │ ├── ic_directions_car_24px.svg │ │ │ ├── ic_directions_railway_24px.svg │ │ │ ├── ic_directions_run_24px.svg │ │ │ ├── ic_directions_subway_24px.svg │ │ │ ├── ic_directions_transit_24px.svg │ │ │ ├── ic_directions_walk_24px.svg │ │ │ ├── ic_edit_location_24px.svg │ │ │ ├── ic_ev_station_24px.svg │ │ │ ├── ic_flight_24px.svg │ │ │ ├── ic_hotel_24px.svg │ │ │ ├── ic_layers_24px.svg │ │ │ ├── ic_layers_clear_24px.svg │ │ │ ├── ic_local_activity_24px.svg │ │ │ ├── ic_local_airport_24px.svg │ │ │ ├── ic_local_atm_24px.svg │ │ │ ├── ic_local_bar_24px.svg │ │ │ ├── ic_local_cafe_24px.svg │ │ │ ├── ic_local_car_wash_24px.svg │ │ │ ├── ic_local_convenience_store_24px.svg │ │ │ ├── ic_local_dining_24px.svg │ │ │ ├── ic_local_drink_24px.svg │ │ │ ├── ic_local_florist_24px.svg │ │ │ ├── ic_local_gas_station_24px.svg │ │ │ ├── ic_local_grocery_store_24px.svg │ │ │ ├── ic_local_hospital_24px.svg │ │ │ ├── ic_local_hotel_24px.svg │ │ │ ├── ic_local_laundry_service_24px.svg │ │ │ ├── ic_local_library_24px.svg │ │ │ ├── ic_local_mall_24px.svg │ │ │ ├── ic_local_movies_24px.svg │ │ │ ├── ic_local_offer_24px.svg │ │ │ ├── ic_local_parking_24px.svg │ │ │ ├── ic_local_pharmacy_24px.svg │ │ │ ├── ic_local_phone_24px.svg │ │ │ ├── ic_local_pizza_24px.svg │ │ │ ├── ic_local_play_24px.svg │ │ │ ├── ic_local_post_office_24px.svg │ │ │ ├── ic_local_printshop_24px.svg │ │ │ ├── ic_local_see_24px.svg │ │ │ ├── ic_local_shipping_24px.svg │ │ │ ├── ic_local_taxi_24px.svg │ │ │ ├── ic_map_24px.svg │ │ │ ├── ic_my_location_24px.svg │ │ │ ├── ic_navigation_24px.svg │ │ │ ├── ic_near_me_24px.svg │ │ │ ├── ic_person_pin_24px.svg │ │ │ ├── ic_person_pin_circle_24px.svg │ │ │ ├── ic_pin_drop_24px.svg │ │ │ ├── ic_place_24px.svg │ │ │ ├── ic_rate_review_24px.svg │ │ │ ├── ic_restaurant_24px.svg │ │ │ ├── ic_restaurant_menu_24px.svg │ │ │ ├── ic_satellite_24px.svg │ │ │ ├── ic_store_mall_directory_24px.svg │ │ │ ├── ic_streetview_24px.svg │ │ │ ├── ic_subway_24px.svg │ │ │ ├── ic_terrain_24px.svg │ │ │ ├── ic_traffic_24px.svg │ │ │ ├── ic_train_24px.svg │ │ │ ├── ic_tram_24px.svg │ │ │ ├── ic_transfer_within_a_station_24px.svg │ │ │ └── ic_zoom_out_map_24px.svg │ ├── navigation │ │ └── svg │ │ │ └── production │ │ │ ├── ic_apps_24px.svg │ │ │ ├── ic_arrow_back_24px.svg │ │ │ ├── ic_arrow_downward_24px.svg │ │ │ ├── ic_arrow_drop_down_24px.svg │ │ │ ├── ic_arrow_drop_down_circle_24px.svg │ │ │ ├── ic_arrow_drop_up_24px.svg │ │ │ ├── ic_arrow_forward_24px.svg │ │ │ ├── ic_arrow_upward_24px.svg │ │ │ ├── ic_cancel_24px.svg │ │ │ ├── ic_check_24px.svg │ │ │ ├── ic_chevron_left_24px.svg │ │ │ ├── ic_chevron_right_24px.svg │ │ │ ├── ic_close_24px.svg │ │ │ ├── ic_expand_less_24px.svg │ │ │ ├── ic_expand_more_24px.svg │ │ │ ├── ic_first_page_24px.svg │ │ │ ├── ic_fullscreen_24px.svg │ │ │ ├── ic_fullscreen_exit_24px.svg │ │ │ ├── ic_last_page_24px.svg │ │ │ ├── ic_menu_24px.svg │ │ │ ├── ic_more_horiz_24px.svg │ │ │ ├── ic_more_vert_24px.svg │ │ │ ├── ic_refresh_24px.svg │ │ │ ├── ic_subdirectory_arrow_left_24px.svg │ │ │ ├── ic_subdirectory_arrow_right_24px.svg │ │ │ ├── ic_unfold_less_24px.svg │ │ │ └── ic_unfold_more_24px.svg │ ├── notification │ │ └── svg │ │ │ └── production │ │ │ ├── ic_adb_24px.svg │ │ │ ├── ic_airline_seat_flat_24px.svg │ │ │ ├── ic_airline_seat_flat_angled_24px.svg │ │ │ ├── ic_airline_seat_individual_suite_24px.svg │ │ │ ├── ic_airline_seat_legroom_extra_24px.svg │ │ │ ├── ic_airline_seat_legroom_normal_24px.svg │ │ │ ├── ic_airline_seat_legroom_reduced_24px.svg │ │ │ ├── ic_airline_seat_recline_extra_24px.svg │ │ │ ├── ic_airline_seat_recline_normal_24px.svg │ │ │ ├── ic_bluetooth_audio_24px.svg │ │ │ ├── ic_confirmation_number_24px.svg │ │ │ ├── ic_disc_full_24px.svg │ │ │ ├── ic_do_not_disturb_24px.svg │ │ │ ├── ic_do_not_disturb_alt_24px.svg │ │ │ ├── ic_do_not_disturb_off_24px.svg │ │ │ ├── ic_do_not_disturb_on_24px.svg │ │ │ ├── ic_drive_eta_24px.svg │ │ │ ├── ic_enhanced_encryption_24px.svg │ │ │ ├── ic_event_available_24px.svg │ │ │ ├── ic_event_busy_24px.svg │ │ │ ├── ic_event_note_24px.svg │ │ │ ├── ic_folder_special_24px.svg │ │ │ ├── ic_live_tv_24px.svg │ │ │ ├── ic_mms_24px.svg │ │ │ ├── ic_more_24px.svg │ │ │ ├── ic_network_check_24px.svg │ │ │ ├── ic_network_locked_24px.svg │ │ │ ├── ic_no_encryption_24px.svg │ │ │ ├── ic_ondemand_video_24px.svg │ │ │ ├── ic_personal_video_24px.svg │ │ │ ├── ic_phone_bluetooth_speaker_24px.svg │ │ │ ├── ic_phone_forwarded_24px.svg │ │ │ ├── ic_phone_in_talk_24px.svg │ │ │ ├── ic_phone_locked_24px.svg │ │ │ ├── ic_phone_missed_24px.svg │ │ │ ├── ic_phone_paused_24px.svg │ │ │ ├── ic_power_24px.svg │ │ │ ├── ic_priority_high_24px.svg │ │ │ ├── ic_rv_hookup_24px.svg │ │ │ ├── ic_sd_card_24px.svg │ │ │ ├── ic_sim_card_alert_24px.svg │ │ │ ├── ic_sms_24px.svg │ │ │ ├── ic_sms_failed_24px.svg │ │ │ ├── ic_sync_24px.svg │ │ │ ├── ic_sync_disabled_24px.svg │ │ │ ├── ic_sync_problem_24px.svg │ │ │ ├── ic_system_update_24px.svg │ │ │ ├── ic_tap_and_play_24px.svg │ │ │ ├── ic_time_to_leave_24px.svg │ │ │ ├── ic_vibration_24px.svg │ │ │ ├── ic_voice_chat_24px.svg │ │ │ ├── ic_vpn_lock_24px.svg │ │ │ ├── ic_wc_24px.svg │ │ │ └── ic_wifi_24px.svg │ ├── places │ │ └── svg │ │ │ └── production │ │ │ ├── ic_ac_unit_24px.svg │ │ │ ├── ic_airport_shuttle_24px.svg │ │ │ ├── ic_all_inclusive_24px.svg │ │ │ ├── ic_beach_access_24px.svg │ │ │ ├── ic_business_center_24px.svg │ │ │ ├── ic_casino_24px.svg │ │ │ ├── ic_child_care_24px.svg │ │ │ ├── ic_child_friendly_24px.svg │ │ │ ├── ic_fitness_center_24px.svg │ │ │ ├── ic_free_breakfast_24px.svg │ │ │ ├── ic_golf_course_24px.svg │ │ │ ├── ic_hot_tub_24px.svg │ │ │ ├── ic_kitchen_24px.svg │ │ │ ├── ic_pool_24px.svg │ │ │ ├── ic_room_service_24px.svg │ │ │ ├── ic_rv_hookup_24px.svg │ │ │ ├── ic_smoke_free_24px.svg │ │ │ ├── ic_smoking_rooms_24px.svg │ │ │ └── ic_spa_24px.svg │ ├── social │ │ └── svg │ │ │ └── production │ │ │ ├── ic_cake_24px.svg │ │ │ ├── ic_domain_24px.svg │ │ │ ├── ic_group_24px.svg │ │ │ ├── ic_group_add_24px.svg │ │ │ ├── ic_location_city_24px.svg │ │ │ ├── ic_mood_24px.svg │ │ │ ├── ic_mood_bad_24px.svg │ │ │ ├── ic_notifications_24px.svg │ │ │ ├── ic_notifications_active_24px.svg │ │ │ ├── ic_notifications_none_24px.svg │ │ │ ├── ic_notifications_off_24px.svg │ │ │ ├── ic_notifications_paused_24px.svg │ │ │ ├── ic_pages_24px.svg │ │ │ ├── ic_party_mode_24px.svg │ │ │ ├── ic_people_24px.svg │ │ │ ├── ic_people_outline_24px.svg │ │ │ ├── ic_person_24px.svg │ │ │ ├── ic_person_add_24px.svg │ │ │ ├── ic_person_outline_24px.svg │ │ │ ├── ic_plus_one_24px.svg │ │ │ ├── ic_poll_24px.svg │ │ │ ├── ic_public_24px.svg │ │ │ ├── ic_school_24px.svg │ │ │ ├── ic_sentiment_dissatisfied_24px.svg │ │ │ ├── ic_sentiment_neutral_24px.svg │ │ │ ├── ic_sentiment_satisfied_24px.svg │ │ │ ├── ic_sentiment_very_dissatisfied_24px.svg │ │ │ ├── ic_sentiment_very_satisfied_24px.svg │ │ │ ├── ic_share_24px.svg │ │ │ └── ic_whatshot_24px.svg │ └── toggle │ │ └── svg │ │ └── production │ │ ├── ic_check_box_24px.svg │ │ ├── ic_check_box_outline_blank_24px.svg │ │ ├── ic_indeterminate_check_box_24px.svg │ │ ├── ic_radio_button_checked_24px.svg │ │ ├── ic_radio_button_unchecked_24px.svg │ │ ├── ic_star_24px.svg │ │ ├── ic_star_border_24px.svg │ │ └── ic_star_half_24px.svg ├── layouts │ ├── qtmaterialslidelayout.cpp │ ├── qtmaterialslidelayout.h │ └── qtmaterialslidelayout_p.h ├── lib │ ├── qtmaterialcheckable.cpp │ ├── qtmaterialcheckable.h │ ├── qtmaterialcheckable_internal.cpp │ ├── qtmaterialcheckable_internal.h │ ├── qtmaterialcheckable_p.h │ ├── qtmaterialoverlaywidget.cpp │ ├── qtmaterialoverlaywidget.h │ ├── qtmaterialripple.cpp │ ├── qtmaterialripple.h │ ├── qtmaterialrippleoverlay.cpp │ ├── qtmaterialrippleoverlay.h │ ├── qtmaterialstatetransition.cpp │ ├── qtmaterialstatetransition.h │ ├── qtmaterialstatetransitionevent.h │ ├── qtmaterialstyle.cpp │ ├── qtmaterialstyle.h │ ├── qtmaterialstyle_p.h │ ├── qtmaterialtheme.cpp │ ├── qtmaterialtheme.h │ └── qtmaterialtheme_p.h ├── qtmaterialappbar.cpp ├── qtmaterialappbar.h ├── qtmaterialappbar_internal.cpp ├── qtmaterialappbar_internal.h ├── qtmaterialappbar_p.h ├── qtmaterialautocomplete.cpp ├── qtmaterialautocomplete.h ├── qtmaterialautocomplete_internal.cpp ├── qtmaterialautocomplete_internal.h ├── qtmaterialautocomplete_p.h ├── qtmaterialavatar.cpp ├── qtmaterialavatar.h ├── qtmaterialavatar_p.h ├── qtmaterialbadge.cpp ├── qtmaterialbadge.h ├── qtmaterialbadge_p.h ├── qtmaterialbuttonlist.cpp ├── qtmaterialbuttonlist.h ├── qtmaterialbuttonlist_p.h ├── qtmaterialcanvas.cpp ├── qtmaterialcanvas.h ├── qtmaterialcanvas_p.h ├── qtmaterialcheckbox.cpp ├── qtmaterialcheckbox.h ├── qtmaterialcheckbox_p.h ├── qtmaterialcircularprogress.cpp ├── qtmaterialcircularprogress.h ├── qtmaterialcircularprogress_internal.cpp ├── qtmaterialcircularprogress_internal.h ├── qtmaterialcircularprogress_p.h ├── qtmaterialdialog.cpp ├── qtmaterialdialog.h ├── qtmaterialdialog_internal.cpp ├── qtmaterialdialog_internal.h ├── qtmaterialdialog_p.h ├── qtmaterialdrawer.cpp ├── qtmaterialdrawer.h ├── qtmaterialdrawer_internal.cpp ├── qtmaterialdrawer_internal.h ├── qtmaterialdrawer_p.h ├── qtmaterialfab.cpp ├── qtmaterialfab.h ├── qtmaterialfab_p.h ├── qtmaterialflatbutton.cpp ├── qtmaterialflatbutton.h ├── qtmaterialflatbutton_internal.cpp ├── qtmaterialflatbutton_internal.h ├── qtmaterialflatbutton_p.h ├── qtmaterialiconbutton.cpp ├── qtmaterialiconbutton.h ├── qtmaterialiconbutton_p.h ├── qtmateriallabel.cpp ├── qtmateriallabel.h ├── qtmateriallabel_p.h ├── qtmaterialpaper.cpp ├── qtmaterialpaper.h ├── qtmaterialpaper_p.h ├── qtmaterialprogress.cpp ├── qtmaterialprogress.h ├── qtmaterialprogress_internal.cpp ├── qtmaterialprogress_internal.h ├── qtmaterialprogress_p.h ├── qtmaterialradiobutton.cpp ├── qtmaterialradiobutton.h ├── qtmaterialradiobutton_p.h ├── qtmaterialscrollbar.cpp ├── qtmaterialscrollbar.h ├── qtmaterialscrollbar_internal.cpp ├── qtmaterialscrollbar_internal.h ├── qtmaterialscrollbar_p.h ├── qtmaterialslider.cpp ├── qtmaterialslider.h ├── qtmaterialslider_internal.cpp ├── qtmaterialslider_internal.h ├── qtmaterialslider_p.h ├── qtmaterialsnackbar.cpp ├── qtmaterialsnackbar.h ├── qtmaterialsnackbar_internal.cpp ├── qtmaterialsnackbar_internal.h ├── qtmaterialsnackbar_p.h ├── qtmaterialswitch.cpp ├── qtmaterialswitch.h ├── qtmaterialswitch_internal.cpp ├── qtmaterialswitch_internal.h ├── qtmaterialswitch_p.h ├── qtmaterialsystembar.cpp ├── qtmaterialsystembar.h ├── qtmaterialsystembar_p.h ├── qtmaterialtabs.cpp ├── qtmaterialtabs.h ├── qtmaterialtabs_internal.cpp ├── qtmaterialtabs_internal.h ├── qtmaterialtabs_p.h ├── qtmaterialtextfield.cpp ├── qtmaterialtextfield.h ├── qtmaterialtextfield_internal.cpp ├── qtmaterialtextfield_internal.h ├── qtmaterialtextfield_p.h ├── qtmaterialwidget.cpp ├── qtmaterialwidget.h ├── qtmaterialwidget_p.h ├── qtmaterialwidgets.h ├── resources.qrc └── tools │ ├── materializer │ ├── qtmaterializerlabel.cpp │ └── qtmaterializerlabel.h │ ├── qtmaterializer.cpp │ ├── qtmaterializer.h │ ├── qtmaterialthemebuilder.cpp │ └── qtmaterialthemebuilder.h ├── examples ├── CMakeLists.txt ├── appbarsettingseditor.cpp ├── appbarsettingseditor.h ├── appbarsettingsform.ui ├── assets │ ├── ic_message_24px.svg │ ├── sikh.jpg │ └── uxceo-128.jpg ├── autocompletesettingseditor.cpp ├── autocompletesettingseditor.h ├── avatarsettingseditor.cpp ├── avatarsettingseditor.h ├── avatarsettingsform.ui ├── badgesettingseditor.cpp ├── badgesettingseditor.h ├── badgesettingsform.ui ├── checkboxsettingseditor.cpp ├── checkboxsettingseditor.h ├── checkboxsettingsform.ui ├── circularprogresssettingseditor.cpp ├── circularprogresssettingseditor.h ├── circularprogresssettingsform.ui ├── dialogsettingseditor.cpp ├── dialogsettingseditor.h ├── dialogsettingsform.ui ├── drawersettingseditor.cpp ├── drawersettingseditor.h ├── drawersettingsform.ui ├── examples.pro ├── examples.qrc ├── fabsettingseditor.cpp ├── fabsettingseditor.h ├── fabsettingsform.ui ├── flatbuttonsettingseditor.cpp ├── flatbuttonsettingseditor.h ├── flatbuttonsettingsform.ui ├── iconbuttonsettingseditor.cpp ├── iconbuttonsettingseditor.h ├── iconbuttonsettingsform.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── progresssettingseditor.cpp ├── progresssettingseditor.h ├── progresssettingsform.ui ├── radiobuttonsettingseditor.cpp ├── radiobuttonsettingseditor.h ├── radiobuttonsettingsform.ui ├── scrollbarsettingseditor.cpp ├── scrollbarsettingseditor.h ├── scrollbarsettingsform.ui ├── settingseditor.cpp ├── settingseditor.h ├── slidersettingseditor.cpp ├── slidersettingseditor.h ├── slidersettingsform.ui ├── snackbarsettingseditor.cpp ├── snackbarsettingseditor.h ├── snackbarsettingsform.ui ├── switchsettingseditor.cpp ├── switchsettingseditor.h ├── switchsettingsform.ui ├── tabssettingseditor.cpp ├── tabssettingseditor.h ├── tabssettingsform.ui ├── textfieldsettingseditor.cpp ├── textfieldsettingseditor.h └── textfieldsettingsform.ui ├── gifs ├── appbar.gif ├── autocomplete.gif ├── avatar.gif ├── badge.gif ├── checkbox.gif ├── circularprogress.gif ├── dialog.gif ├── drawer.gif ├── fab.gif ├── flatbutton.gif ├── iconbutton.gif ├── progress.gif ├── radiobutton.gif ├── raisedbutton.gif ├── scrollbar.gif ├── slider.gif ├── snackbar.gif ├── tabs.gif ├── textfield.gif └── toggle.gif └── qt-material-widgets.pro /.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | build*/ 3 | bin/ 4 | -------------------------------------------------------------------------------- /.qmake.conf: -------------------------------------------------------------------------------- 1 | top_srcdir=$$PWD 2 | top_builddir=$$shadowed($$PWD) 3 | -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /components/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/components/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_accessibility_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_account_balance_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_account_box_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_announcement_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_aspect_ratio_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_assessment_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_backup_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_book_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_bookmark_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_bookmark_border_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_build_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_card_membership_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_card_travel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_change_history_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_check_circle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_chrome_reader_mode_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_class_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_code_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_compare_arrows_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_credit_card_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_dashboard_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_date_range_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_delete_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_description_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_done_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_done_all_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_eject_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_event_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_event_seat_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_exit_to_app_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_favorite_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_feedback_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_flight_land_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_gavel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_get_app_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_gif_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_grade_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_home_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_hourglass_empty_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_hourglass_full_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_http_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_info_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_info_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_input_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_label_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_label_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_launch_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_line_style_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_line_weight_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_list_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_markunread_mailbox_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_note_add_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_offline_pin_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_open_in_browser_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_open_in_new_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_open_with_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_payment_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_perm_device_information_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_perm_media_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_perm_scan_wifi_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_picture_in_picture_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_picture_in_picture_alt_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_play_for_work_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_polymer_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_pregnant_woman_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_print_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_query_builder_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_question_answer_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_reorder_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_report_problem_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_room_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_schedule_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_settings_cell_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_settings_ethernet_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_settings_input_hdmi_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_shop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_shop_two_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_speaker_notes_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_spellcheck_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_stars_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_store_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_subject_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_swap_horiz_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_swap_vert_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_swap_vertical_circle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_system_update_alt_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_tab_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_theaters_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_toc_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_today_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_trending_down_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_trending_flat_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_trending_up_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_turned_in_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_turned_in_not_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_verified_user_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_agenda_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_array_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_carousel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_column_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_day_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_headline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_list_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_module_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_quilt_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_view_stream_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_watch_later_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/action/svg/production/ic_work_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/alert/svg/production/ic_error_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/alert/svg/production/ic_error_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/alert/svg/production/ic_warning_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_add_to_queue_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_airplay_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_art_track_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_branding_watermark_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_call_to_action_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_equalizer_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_explicit_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_fast_forward_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_fast_rewind_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_featured_play_list_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_featured_video_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_fiber_manual_record_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_fiber_smart_record_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_games_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_hd_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_library_add_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_library_books_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_mic_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_movie_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_music_video_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_note_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_pause_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_pause_circle_filled_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_pause_circle_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_play_arrow_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_play_circle_filled_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_play_circle_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_playlist_add_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_playlist_add_check_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_playlist_play_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_queue_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_queue_music_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_queue_play_next_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_remove_from_queue_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_repeat_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_repeat_one_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_replay_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_shuffle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_skip_next_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_skip_previous_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_stop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_subscriptions_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_subtitles_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_video_call_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_video_label_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_video_library_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_videocam_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_videocam_off_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_volume_down_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_volume_mute_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_volume_up_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_web_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/av/svg/production/ic_web_asset_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_made_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_merge_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_missed_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_missed_outgoing_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_received_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_call_split_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_chat_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_chat_bubble_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_chat_bubble_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_clear_all_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_comment_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_email_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_forum_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_import_export_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_location_on_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_mail_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_message_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_no_sim_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_phonelink_erase_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_present_to_all_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_rss_feed_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_screen_share_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_stay_current_landscape_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_stay_current_portrait_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_stay_primary_landscape_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_stay_primary_portrait_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_swap_calls_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_textsms_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/communication/svg/production/ic_vpn_key_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_add_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_add_box_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_add_circle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_add_circle_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_clear_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_content_copy_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_create_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_delete_sweep_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_drafts_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_filter_list_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_flag_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_font_download_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_forward_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_inbox_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_low_priority_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_mail_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_markunread_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_move_to_inbox_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_redo_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_remove_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_remove_circle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_remove_circle_outline_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_reply_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_reply_all_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_report_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_save_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_send_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_sort_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_text_format_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/content/svg/production/ic_undo_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_access_time_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_airplanemode_active_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_20_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_30_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_50_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_60_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_80_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_90_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_alert_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_charging_full_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_full_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_battery_std_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_bluetooth_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_brightness_auto_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_brightness_low_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_brightness_medium_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_devices_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_dvr_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_graphic_eq_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_network_cell_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_sd_storage_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_0_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_1_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_2_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_3_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_4_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_connected_no_internet_0_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_connected_no_internet_1_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_connected_no_internet_2_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_connected_no_internet_3_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_connected_no_internet_4_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_no_sim_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_null_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_cellular_off_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_wifi_0_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_signal_wifi_4_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_storage_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/device/svg/production/ic_widgets_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_border_all_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_border_color_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_border_outer_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_border_style_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_bubble_chart_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_drag_handle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_align_center_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_align_justify_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_align_left_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_align_right_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_clear_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_color_text_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_indent_decrease_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_indent_increase_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_italic_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_line_spacing_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_list_numbered_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_paint_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_quote_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_size_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_strikethrough_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_textdirection_l_to_r_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_textdirection_r_to_l_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_format_underlined_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_functions_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_highlight_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_insert_chart_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_insert_comment_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_insert_drive_file_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_insert_invitation_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_insert_photo_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_merge_type_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_mode_comment_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_mode_edit_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_pie_chart_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_publish_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_short_text_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_show_chart_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_space_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_text_fields_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_title_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_vertical_align_bottom_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_vertical_align_center_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_vertical_align_top_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/editor/svg/production/ic_wrap_text_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_cloud_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_cloud_download_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_cloud_upload_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_create_new_folder_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_file_download_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_file_upload_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_folder_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_folder_open_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/file/svg/production/ic_folder_shared_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_computer_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_desktop_mac_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_desktop_windows_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_developer_board_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_device_hub_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_dock_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_gamepad_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_headset_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_headset_mic_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_arrow_down_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_arrow_left_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_arrow_right_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_arrow_up_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_backspace_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_capslock_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_return_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_keyboard_tab_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_laptop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_laptop_chromebook_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_laptop_mac_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_laptop_windows_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_memory_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_mouse_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_phone_android_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_phonelink_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_power_input_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_scanner_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_security_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_sim_card_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_smartphone_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_tablet_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_tablet_android_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_toys_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_tv_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/hardware/svg/production/ic_watch_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_add_to_photos_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_adjust_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_assistant_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_assistant_photo_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_audiotrack_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_brightness_1_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_brightness_2_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_brightness_3_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_brightness_5_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_brightness_6_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_broken_image_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_burst_mode_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_camera_alt_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_camera_rear_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_collections_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_collections_bookmark_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_compare_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_control_point_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_16_9_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_3_2_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_5_4_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_7_5_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_din_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_free_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_landscape_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_original_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_portrait_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_crop_square_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_dehaze_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_details_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_edit_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_exposure_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_exposure_neg_1_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_exposure_plus_1_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_1_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_4_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_7_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_b_and_w_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_frames_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_hdr_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_filter_none_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_flash_auto_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_flash_off_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_flash_on_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_hdr_strong_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_hdr_weak_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_image_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_image_aspect_ratio_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_iso_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_landscape_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_lens_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_4_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_5_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_6_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_one_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_looks_two_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_loupe_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_movie_creation_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_music_note_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_nature_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_navigate_before_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_navigate_next_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_panorama_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_panorama_fish_eye_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_photo_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_photo_album_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_photo_library_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_photo_size_select_actual_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_slideshow_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_straighten_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_switch_camera_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_switch_video_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_transform_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_tune_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_view_comfy_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_view_compact_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_vignette_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/image/svg/production/ic_wb_cloudy_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_add_location_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_beenhere_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_directions_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_directions_railway_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_flight_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_hotel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_layers_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_airport_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_bar_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_cafe_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_convenience_store_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_drink_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_hospital_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_hotel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_library_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_movies_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_parking_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_pharmacy_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_pizza_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_post_office_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_printshop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_local_see_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_map_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_navigation_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_near_me_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_pin_drop_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_place_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_rate_review_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_restaurant_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_store_mall_directory_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/maps/svg/production/ic_terrain_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_apps_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_back_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_downward_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_drop_down_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_drop_down_circle_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_drop_up_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_forward_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_arrow_upward_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_cancel_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_check_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_chevron_left_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_chevron_right_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_close_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_expand_less_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_expand_more_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_first_page_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_fullscreen_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_fullscreen_exit_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_last_page_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_menu_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_more_horiz_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_more_vert_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_subdirectory_arrow_left_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_subdirectory_arrow_right_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_unfold_less_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/navigation/svg/production/ic_unfold_more_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_airline_seat_individual_suite_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_airline_seat_legroom_normal_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_disc_full_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_do_not_disturb_on_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_event_note_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_live_tv_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_mms_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_ondemand_video_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_personal_video_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_power_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_priority_high_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_sd_card_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_sim_card_alert_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_sms_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_sms_failed_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_system_update_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_vibration_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_voice_chat_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/notification/svg/production/ic_wifi_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/places/svg/production/ic_free_breakfast_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/places/svg/production/ic_golf_course_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/places/svg/production/ic_kitchen_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/places/svg/production/ic_room_service_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_location_city_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_notifications_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_pages_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_person_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_person_add_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_plus_one_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_poll_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/social/svg/production/ic_school_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_check_box_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_check_box_outline_blank_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_indeterminate_check_box_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_radio_button_unchecked_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_star_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/icons/toggle/svg/production/ic_star_half_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/tools/qtmaterializer.cpp: -------------------------------------------------------------------------------- 1 | #include "qtmaterializer.h" 2 | 3 | #include "materializer/qtmaterializerlabel.h" 4 | 5 | QLabel *QtMaterializer::materialise(QLabel *label) 6 | { 7 | new QtMaterializerLabel(label); 8 | return label; 9 | } 10 | -------------------------------------------------------------------------------- /components/tools/qtmaterializer.h: -------------------------------------------------------------------------------- 1 | #ifndef QTMATERIALIZER_H 2 | #define QTMATERIALIZER_H 3 | 4 | #include "../qtmaterialwidgets.h" 5 | 6 | class QLabel; 7 | 8 | class QTMATERIALWIDGETS_EXPORT QtMaterializer 9 | { 10 | public: 11 | static QLabel *materialise(QLabel *label); 12 | }; 13 | 14 | #endif // QTMATERIALIZER_H 15 | -------------------------------------------------------------------------------- /examples/assets/ic_message_24px.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/assets/sikh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/examples/assets/sikh.jpg -------------------------------------------------------------------------------- /examples/assets/uxceo-128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/examples/assets/uxceo-128.jpg -------------------------------------------------------------------------------- /examples/examples.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | assets/uxceo-128.jpg 4 | assets/sikh.jpg 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #include "mainwindow.h" 5 | 6 | int main(int argc, char *argv[]) 7 | { 8 | QApplication a(argc, argv); 9 | 10 | MainWindow window; 11 | window.show(); 12 | 13 | return QApplication::exec(); 14 | } 15 | -------------------------------------------------------------------------------- /examples/mainwindow.h: -------------------------------------------------------------------------------- 1 | #ifndef MAINWINDOW_H 2 | #define MAINWINDOW_H 3 | 4 | #include 5 | 6 | class MainWindow : public QMainWindow 7 | { 8 | Q_OBJECT 9 | 10 | public: 11 | explicit MainWindow(QWidget *parent = nullptr); 12 | ~MainWindow() override; 13 | }; 14 | 15 | #endif // MAINWINDOW_H 16 | -------------------------------------------------------------------------------- /gifs/appbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/appbar.gif -------------------------------------------------------------------------------- /gifs/autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/autocomplete.gif -------------------------------------------------------------------------------- /gifs/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/avatar.gif -------------------------------------------------------------------------------- /gifs/badge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/badge.gif -------------------------------------------------------------------------------- /gifs/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/checkbox.gif -------------------------------------------------------------------------------- /gifs/circularprogress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/circularprogress.gif -------------------------------------------------------------------------------- /gifs/dialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/dialog.gif -------------------------------------------------------------------------------- /gifs/drawer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/drawer.gif -------------------------------------------------------------------------------- /gifs/fab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/fab.gif -------------------------------------------------------------------------------- /gifs/flatbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/flatbutton.gif -------------------------------------------------------------------------------- /gifs/iconbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/iconbutton.gif -------------------------------------------------------------------------------- /gifs/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/progress.gif -------------------------------------------------------------------------------- /gifs/radiobutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/radiobutton.gif -------------------------------------------------------------------------------- /gifs/raisedbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/raisedbutton.gif -------------------------------------------------------------------------------- /gifs/scrollbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/scrollbar.gif -------------------------------------------------------------------------------- /gifs/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/slider.gif -------------------------------------------------------------------------------- /gifs/snackbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/snackbar.gif -------------------------------------------------------------------------------- /gifs/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/tabs.gif -------------------------------------------------------------------------------- /gifs/textfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/textfield.gif -------------------------------------------------------------------------------- /gifs/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebcaux/qt-material-widgets/974ba6816141bd0bfcea6ccbe24559b9c2b486dc/gifs/toggle.gif -------------------------------------------------------------------------------- /qt-material-widgets.pro: -------------------------------------------------------------------------------- 1 | TARGET = qt-material-widgets 2 | TEMPLATE = subdirs 3 | SUBDIRS = components examples 4 | CONFIG += ordered 5 | 6 | DEFINES += QT_DEPRECATED_WARNINGS 7 | --------------------------------------------------------------------------------