From 2e1f4b6a12d49069827181c560a24877e6168f63 Mon Sep 17 00:00:00 2001 From: doryan Date: Wed, 14 Aug 2024 18:54:13 +0400 Subject: [PATCH] feat(frame): remove frame from Input component --- src/view/components/input.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/view/components/input.rs b/src/view/components/input.rs index 1122208..9de6c80 100644 --- a/src/view/components/input.rs +++ b/src/view/components/input.rs @@ -45,7 +45,6 @@ pub struct Input { component: Box, input: I, input_label: Label, - input_frame: Frame, } pub struct InputBuilder { @@ -74,8 +73,6 @@ impl Product for Input { impl Input { } - pub fn get_frame(&self) -> &Frame { - &self.input_frame pub fn get_input(&self) -> &I { &self.input }