use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ToggleRight(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ToggleRight"</title>
<circle cx="15" cy="12" r="3" />
<rect width="20" height="14" x="2" y="5" rx="7" />
</SvgIcon>
}
}