use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Replace(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Replace" }
path { d: "M14 4a2 2 0 0 1 2-2" }
path { d: "M16 10a2 2 0 0 1-2-2" }
path { d: "M20 2a2 2 0 0 1 2 2" }
path { d: "M22 8a2 2 0 0 1-2 2" }
path { d: "m3 7 3 3 3-3" }
path { d: "M6 10V5a3 3 0 0 1 3-3h1" }
rect { width: "8", height: "8", x: "2", y: "14", rx: "2" }
}
}
}