use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Play(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Play" }
path { d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z" }
}
}
}