summaryrefslogtreecommitdiffstats
path: root/wgpu/src/widget/rule.rs
blob: 3f7bc67ad0930d52c8ff2560350d117d008c1e29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//! Display a horizontal or vertical rule for dividing content.

use crate::Renderer;

pub use iced_graphics::rule::{FillMode, Style, StyleSheet};

/// 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>;