diff --git a/homeassistant/components/coinbase/sensor.py b/homeassistant/components/coinbase/sensor.py index d5abb7d66f5..f37af04065e 100644 --- a/homeassistant/components/coinbase/sensor.py +++ b/homeassistant/components/coinbase/sensor.py @@ -31,7 +31,7 @@ CURRENCY_ICONS = { "USD": "mdi:currency-usd", } -DEFAULT_COIN_ICON = "mdi:currency-usd-circle" +DEFAULT_COIN_ICON = "mdi:cash" ATTRIBUTION = "Data provided by coinbase.com" diff --git a/homeassistant/components/ebox/sensor.py b/homeassistant/components/ebox/sensor.py index 3c43dd36130..7ec453b7c3a 100644 --- a/homeassistant/components/ebox/sensor.py +++ b/homeassistant/components/ebox/sensor.py @@ -52,7 +52,7 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = ( key="balance", name="Balance", native_unit_of_measurement=PRICE, - icon="mdi:cash-usd", + icon="mdi:cash", ), SensorEntityDescription( key="limit", diff --git a/homeassistant/components/fido/sensor.py b/homeassistant/components/fido/sensor.py index 0e61b580902..6964abd9b3d 100644 --- a/homeassistant/components/fido/sensor.py +++ b/homeassistant/components/fido/sensor.py @@ -44,13 +44,13 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = ( key="fido_dollar", name="Fido dollar", native_unit_of_measurement=PRICE, - icon="mdi:cash-usd", + icon="mdi:cash", ), SensorEntityDescription( key="balance", name="Balance", native_unit_of_measurement=PRICE, - icon="mdi:cash-usd", + icon="mdi:cash", ), SensorEntityDescription( key="data_used", diff --git a/homeassistant/components/habitica/sensor.py b/homeassistant/components/habitica/sensor.py index eb42426e8ea..ae27e0a51fc 100644 --- a/homeassistant/components/habitica/sensor.py +++ b/homeassistant/components/habitica/sensor.py @@ -26,7 +26,7 @@ SENSORS_TYPES = { "exp": ST("EXP", "mdi:star", "EXP", ["stats", "exp"]), "toNextLevel": ST("Next Lvl", "mdi:star", "EXP", ["stats", "toNextLevel"]), "lvl": ST("Lvl", "mdi:arrow-up-bold-circle-outline", "Lvl", ["stats", "lvl"]), - "gp": ST("Gold", "mdi:currency-usd-circle", "Gold", ["stats", "gp"]), + "gp": ST("Gold", "mdi:circle-multiple", "Gold", ["stats", "gp"]), "class": ST("Class", "mdi:sword", "", ["stats", "class"]), } diff --git a/homeassistant/components/homematic/entity.py b/homeassistant/components/homematic/entity.py index 50b9bcb2bfc..2fb23f707e3 100644 --- a/homeassistant/components/homematic/entity.py +++ b/homeassistant/components/homematic/entity.py @@ -238,7 +238,7 @@ class HMHub(Entity): @property def icon(self): """Return the icon to use in the frontend, if any.""" - return "mdi:gradient" + return "mdi:gradient-vertical" def _update_hub(self, now): """Retrieve latest state.""" diff --git a/homeassistant/components/icloud/device_tracker.py b/homeassistant/components/icloud/device_tracker.py index 2f53e782750..233df6a7556 100644 --- a/homeassistant/components/icloud/device_tracker.py +++ b/homeassistant/components/icloud/device_tracker.py @@ -134,13 +134,13 @@ class IcloudTrackerEntity(TrackerEntity): def icon_for_icloud_device(icloud_device: IcloudDevice) -> str: - """Return a battery icon valid identifier.""" + """Return an icon for the device.""" switcher = { - "iPad": "mdi:tablet-ipad", - "iPhone": "mdi:cellphone-iphone", + "iPad": "mdi:tablet", + "iPhone": "mdi:cellphone", "iPod": "mdi:ipod", "iMac": "mdi:desktop-mac", - "MacBookPro": "mdi:laptop-mac", + "MacBookPro": "mdi:laptop", } return switcher.get(icloud_device.device_class, "mdi:cellphone-link") diff --git a/homeassistant/components/jewish_calendar/sensor.py b/homeassistant/components/jewish_calendar/sensor.py index 824eba46973..6a57eb0eeda 100644 --- a/homeassistant/components/jewish_calendar/sensor.py +++ b/homeassistant/components/jewish_calendar/sensor.py @@ -22,7 +22,7 @@ DATA_SENSORS = ( SensorEntityDescription( key="date", name="Date", - icon="mdi:judaism", + icon="mdi:star-david", ), SensorEntityDescription( key="weekly_portion",