use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ToggleRight(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ToggleRight" }
circle { cx: "15", cy: "12", r: "3" }
rect { width: "20", height: "14", x: "7", y: "5", rx: "7" }
}
}
}