11 lines
328 B
Rust
11 lines
328 B
Rust
|
|
//! Display a horizontal or vertical rule for dividing content.
|
||
|
|
|
||
|
|
use crate::Renderer;
|
||
|
|
|
||
|
|
pub use iced_graphics::rule::{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>;
|