use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Ratio(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Ratio" }
rect { width: "12", height: "20", x: "2", y: "2", rx: "2" }
rect { width: "20", height: "12", x: "2", y: "6", rx: "2" }
}
}
}