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