remove unused property

This commit is contained in:
Cory LaViska
2022-08-03 10:56:37 -04:00
parent bf1121d126
commit 7b55b38aa4

View File

@@ -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;