chore(TextInput): add html type example to

This commit is contained in:
Enrico Sacchetti 2023-01-17 23:35:31 -05:00
commit b9f8e1cffd
No known key found for this signature in database
GPG key ID: 3374B89ECA60D796

View file

@ -1,4 +1,6 @@
<script> <script lang="ts">
import type { HTMLLabelAttributes } from "svelte/elements";
/** /**
* @event {null | number | string} change * @event {null | number | string} change
* @event {null | number | string} input * @event {null | number | string} input
@ -10,6 +12,9 @@
*/ */
export let size = undefined; export let size = undefined;
// TODO: complete implementation
export let labelAttributes: HTMLLabelAttributes = {};
/** /**
* Specify the input value. * Specify the input value.
* *