From fea7f1a3b0802598c47629d0904574b27383d225 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 16 Jan 2024 18:53:26 +1100 Subject: [PATCH] Update src/TextInput/TextInput.svelte Correcting type attribute definition for HTML attributes Co-authored-by: Enrico Sacchetti --- src/TextInput/TextInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TextInput/TextInput.svelte b/src/TextInput/TextInput.svelte index ff704fc4..ede4ea55 100644 --- a/src/TextInput/TextInput.svelte +++ b/src/TextInput/TextInput.svelte @@ -94,7 +94,7 @@ /** * Set HTML attributes on the `input` element - * @type {Record} + * @type {import('svelte/elements').HTMLInputAttributes} */ export let inputAttributes = {};