use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn Copyleft(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - Copyleft"</title>
<circle cx="12" cy="12" r="10" />
<path d="M9.17 14.83a4 4 0 1 0 0-5.66" />
</SvgIcon>
}
}