use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Code(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Code"</title>
<path d="m16 18 6-6-6-6" />
<path d="m8 6-6 6 6 6" />
</SvgIcon>
}
}