import { html } from "lit";
import { customElement, property } from "lit/decorators.js";
import { HorizontalLightComponent } from "./HorizontalLightComponent";
@customElement("ak-textarea-input")
export class AkTextareaInput extends HorizontalLightComponent {
@property({ type: String, reflect: true })
value = "";
renderControl() {
// Prevent the leading spaces added by Prettier's whitespace algo
// prettier-ignore
return html` `;
}
}
export default AkTextareaInput;