yew_heroicons/size_24/outline/
cube.rs

1use yew::prelude::*;
2use crate::props::Props;
3
4/// <img src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%20stroke%2Dwidth%3D%221%2E5%22%20stroke%3D%22currentColor%22%20aria%2Dhidden%3D%22true%22%3E%20%3Cpath%20stroke%2Dlinecap%3D%22round%22%20stroke%2Dlinejoin%3D%22round%22%20d%3D%22M21%207%2E5l%2D9%2D5%2E25L3%207%2E5m18%200l%2D9%205%2E25m9%2D5%2E25v9l%2D9%205%2E25M3%207%2E5l9%205%2E25M3%207%2E5v9l9%205%2E25m0%2D9v9%22%2F%3E%20%3C%2Fsvg%3E">
5#[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}