From 2038b9ab8627846bf587a46ef0824f1c88ce3806 Mon Sep 17 00:00:00 2001 From: Ryan Collins Date: Fri, 30 Aug 2024 14:20:06 +1200 Subject: [PATCH] Add icon to TextInputOptions --- src/configuration.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/configuration.d.ts b/src/configuration.d.ts index d9a28ba..e66dbea 100644 --- a/src/configuration.d.ts +++ b/src/configuration.d.ts @@ -621,6 +621,10 @@ export interface TextInputOptions extends BaseInputOptions { * Text shown when this input has no value. */ placeholder?: string; + /** + * Icon shown beside the input. + */ + icon?: Icon; } export interface TextInput extends BaseInput {