use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Spline(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Spline" }
<circle cx="19" cy="5" r="2" />
<circle cx="5" cy="19" r="2" />
path { d: "M5 17A12 12 0 0 1 17 5" }
}
}
}