├── .gitattributes ├── Images └── Banner.svg ├── README.md └── Vector drawable ├── Ambient Display - Doze settings ├── ic_aod.xml ├── ic_doze_aways_awake.xml ├── ic_doze_hand_notification.xml ├── ic_doze_pick-up_awake.xml ├── ic_doze_pocket.xml └── ic_doze_tap_wake.xml ├── Dirac Sound ├── ic_dirac.xml ├── ic_dirac_headsets.xml ├── ic_dirac_hi-fi.xml ├── ic_dirac_presets.xml └── ic_dirac_scenes.xml ├── Display Features ├── ic_cabc.xml ├── ic_fps_indicator.xml └── ic_hbm.xml ├── KCAL Display Calibration ├── ic_kcal_blue.xml ├── ic_kcal_green.xml ├── ic_kcal_preset.xml └── ic_kcal_red.xml ├── Mi Sound Control ├── ic_sound_control_headphone.xml ├── ic_sound_control_microphone.xml └── ic_sound_control_speaker.xml ├── Pop-Up Camera Settings ├── ic_popup_calibration.xml ├── ic_popup_camera.xml ├── ic_popup_light.xml └── ic_popup_sound.xml ├── Refresh Rate - Per-app RR ├── ic_refresh_rate.xml ├── ic_refresh_rate_120.xml ├── ic_refresh_rate_144.xml ├── ic_refresh_rate_240.xml ├── ic_refresh_rate_30.xml ├── ic_refresh_rate_60.xml ├── ic_refresh_rate_90.xml └── ic_refresh_rate_disabled.xml ├── Sound Features ├── ic_clear_speaker.xml ├── ic_dolby.xml ├── ic_hi_res.xml └── ic_spatial_audio.xml └── Thermal Settings ├── ic_thermal_benchmark.xml ├── ic_thermal_browser.xml ├── ic_thermal_camera.xml ├── ic_thermal_default.xml ├── ic_thermal_games.xml ├── ic_thermal_location.xml ├── ic_thermal_phone.xml ├── ic_thermal_settings.xml ├── ic_thermal_streaming.xml ├── ic_thermal_touch_settings.xml └── ic_thermal_video.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Images/Banner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Xiaomi Parts vector drawable icons for your Xiaomi device tree 2 | 3 |
4 | 5 |
6 | 7 | #### To use icons just download this repository 8 | 9 | ``` 10 | git clone https://github.com/WSTxda/Parts-Icons.git 11 | ``` 12 | 13 | - Inspired by Material Symbols for a much better visual harmony with the AOSP 14 | - The icons have colors pre-configured in `android:tint="?android:attr/"` attribute, it is ready to use, but you can change it if necessary 15 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_aod.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_doze_aways_awake.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_doze_hand_notification.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_doze_pick-up_awake.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_doze_pocket.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Ambient Display - Doze settings/ic_doze_tap_wake.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /Vector drawable/Dirac Sound/ic_dirac.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Dirac Sound/ic_dirac_headsets.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /Vector drawable/Dirac Sound/ic_dirac_hi-fi.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Dirac Sound/ic_dirac_presets.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /Vector drawable/Dirac Sound/ic_dirac_scenes.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Display Features/ic_cabc.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /Vector drawable/Display Features/ic_fps_indicator.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Display Features/ic_hbm.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Vector drawable/KCAL Display Calibration/ic_kcal_blue.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /Vector drawable/KCAL Display Calibration/ic_kcal_green.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /Vector drawable/KCAL Display Calibration/ic_kcal_preset.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 15 | 18 | 21 | 22 | -------------------------------------------------------------------------------- /Vector drawable/KCAL Display Calibration/ic_kcal_red.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /Vector drawable/Mi Sound Control/ic_sound_control_headphone.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Mi Sound Control/ic_sound_control_microphone.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Mi Sound Control/ic_sound_control_speaker.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Pop-Up Camera Settings/ic_popup_calibration.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Pop-Up Camera Settings/ic_popup_camera.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Pop-Up Camera Settings/ic_popup_light.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Pop-Up Camera Settings/ic_popup_sound.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_120.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 20 | 21 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_144.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 20 | 21 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_240.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 20 | 21 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_30.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_60.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_90.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /Vector drawable/Refresh Rate - Per-app RR/ic_refresh_rate_disabled.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Sound Features/ic_clear_speaker.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Sound Features/ic_dolby.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Sound Features/ic_hi_res.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Sound Features/ic_spatial_audio.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_benchmark.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_browser.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_camera.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_default.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_games.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_location.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_phone.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_settings.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_streaming.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_touch_settings.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /Vector drawable/Thermal Settings/ic_thermal_video.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | --------------------------------------------------------------------------------