From 2ee0224c4516bb77a3180b94b1098fc00ca471e8 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Mon, 10 Feb 2025 18:47:49 -0500 Subject: [PATCH 1/3] medium --- src/lib/components/DataInput/Textarea.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/DataInput/Textarea.svelte b/src/lib/components/DataInput/Textarea.svelte index 5f7a041..27ac120 100644 --- a/src/lib/components/DataInput/Textarea.svelte +++ b/src/lib/components/DataInput/Textarea.svelte @@ -11,7 +11,7 @@ error?: string | Snippet; label?: string | Snippet; resizable?: boolean | 'yes' | 'no' | 'x' | 'y'; - size?: DaisySize; + size?: DaisySize | 'md'; } & SvelteHTMLElements['textarea']; let { bordered, @@ -25,7 +25,7 @@ }: Props = $props(); -