| 4 | use super::Component; |
| 5 | |
| 6 | pub struct Input { |
| 7 | value: String, |
| 8 | placeholder: String, |
| 9 | bounds: Rect, |
| 10 | } |
| 11 | |
| 12 | impl Input { |
| 13 | pub fn new<S: Into<String>>(placeholder: S) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected