use leptos::prelude::*;
#[component]
pub fn SunMoon(
#[prop(into, optional, default = 24)] size: i32,
#[prop(into, default = "".to_string())] class: String,
) -> impl IntoView {
view! {
<svg
width={size}
height={size}
viewBox="0 0 24 24"
class=class
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 0h24v24H0z"
fill="currentColor"
/>
</svg>
}
}