mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-13 04:50:29 +00:00
Split up mdi icons (#4379)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import "@polymer/paper-icon-button/paper-icon-button";
|
||||
import "../../../components/ha-icon-button";
|
||||
import {
|
||||
css,
|
||||
CSSResult,
|
||||
@@ -46,20 +46,20 @@ export class HuiEntityEditor extends LitElement {
|
||||
@change="${this._valueChanged}"
|
||||
allow-custom-entity
|
||||
></ha-entity-picker>
|
||||
<paper-icon-button
|
||||
<ha-icon-button
|
||||
title="Move entity down"
|
||||
icon="hass:arrow-down"
|
||||
.index="${index}"
|
||||
@click="${this._entityDown}"
|
||||
?disabled="${index === this.entities!.length - 1}"
|
||||
></paper-icon-button>
|
||||
<paper-icon-button
|
||||
></ha-icon-button>
|
||||
<ha-icon-button
|
||||
title="Move entity up"
|
||||
icon="hass:arrow-up"
|
||||
.index="${index}"
|
||||
@click="${this._entityUp}"
|
||||
?disabled="${index === 0}"
|
||||
></paper-icon-button>
|
||||
></ha-icon-button>
|
||||
</div>
|
||||
`;
|
||||
})}
|
||||
|
||||
Reference in New Issue
Block a user