cosmic/widget/text_input/mod.rs
1// Copyright 2019 H�ctor Ram�n, Iced contributors
2// Copyright 2023 System76 <info@system76.com>
3// SPDX-License-Identifier: MIT
4
5//! A text input widget from iced widgets plus some added details.
6
7pub mod cursor;
8pub mod editor;
9mod input;
10mod style;
11pub mod value;
12
13pub use crate::theme::TextInput as Style;
14pub use input::*;
15pub use style::{Appearance, StyleSheet};