//! Display a horizontal or vertical rule for dividing content. use crate::{Backend, Renderer}; use iced_native::rule; pub use iced_style::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_graphics::Renderer`. pub type Rule = iced_native::Rule>; impl rule::Renderer for Renderer where B: Backend, { type Style = Box; }