summaryrefslogtreecommitdiffstats
path: root/wgpu/src/widget/checkbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/widget/checkbox.rs')
-rw-r--r--wgpu/src/widget/checkbox.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/wgpu/src/widget/checkbox.rs b/wgpu/src/widget/checkbox.rs
deleted file mode 100644
index 76d572d9..00000000
--- a/wgpu/src/widget/checkbox.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-//! Show toggle controls using checkboxes.
-use crate::Renderer;
-
-pub use iced_graphics::checkbox::{Style, StyleSheet};
-
-/// A box that can be checked.
-///
-/// This is an alias of an `iced_native` checkbox with an `iced_wgpu::Renderer`.
-pub type Checkbox<'a, Message> =
- iced_native::widget::Checkbox<'a, Message, Renderer>;