iced-yoda/wgpu/src/widget/rule.rs

11 lines
338 B
Rust
Raw Normal View History

2020-08-13 12:54:34 -05:00
//! Display a horizontal or vertical rule for dividing content.
use crate::Renderer;
pub use iced_graphics::rule::{FillMode, Style, StyleSheet};
2020-08-13 12:54:34 -05:00
/// Display a horizontal or vertical rule for dividing content.
///
/// This is an alias of an `iced_native` rule with an `iced_wgpu::Renderer`.
pub type Rule = iced_native::Rule<Renderer>;