remove unused property

pull/853/head
Cory LaViska 2022-08-03 10:56:37 -04:00
rodzic bf1121d126
commit 7b55b38aa4
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -1,5 +1,5 @@
import { html, LitElement } from 'lit';
import { customElement, property, query, state } from 'lit/decorators.js';
import { customElement, property, state } from 'lit/decorators.js';
import { classMap } from 'lit/directives/class-map.js';
import { emit } from 'src/internal/event';
import { watch } from '../../internal/watch';
@ -24,8 +24,6 @@ import type { CSSResultGroup } from 'lit';
export default class SlRadio extends LitElement {
static styles: CSSResultGroup = styles;
@query('.radio__input') input: HTMLInputElement;
@state() checked = false;
@state() protected hasFocus = false;