From 417571b064f9b5923cd8efd93cf7c75b593b5090 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sun, 13 Mar 2022 18:58:17 -0700 Subject: [PATCH] refactor(search): use native binding for value prop --- src/Search/Search.svelte | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Search/Search.svelte b/src/Search/Search.svelte index 0658f266..a0fb4629 100644 --- a/src/Search/Search.svelte +++ b/src/Search/Search.svelte @@ -37,9 +37,6 @@ /** Specify the value of the search input */ export let value = ""; - /** Specify the `type` attribute of the search input */ - export let type = "text"; - /** Specify the `placeholder` attribute of the search input */ export let placeholder = "Search..."; @@ -125,6 +122,8 @@