yew_heroicons/size_24/outline/
cube.rs1use yew::prelude::*;
2use crate::props::Props;
3
4#[function_component]
6pub fn CubeIcon(props: &Props) -> Html {
7 let Props { class } = props.clone();
8
9 html! {
10<svg {class} fill-rule="currentColor" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
11 <path stroke-linecap="round" stroke-linejoin="round" d="M21 7.5l-9-5.25L3 7.5m18 0l-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9"/>
12</svg>
13 }
14}