yew_heroicons/size_24/solid/arrow_up.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%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22currentColor%22%20aria%2Dhidden%3D%22true%22%3E%20%3Cpath%20fill%2Drule%3D%22evenodd%22%20d%3D%22M11%2E47%202%2E47a%2E75%2E75%200%20011%2E06%200l7%2E5%207%2E5a%2E75%2E75%200%2011%2D1%2E06%201%2E06l%2D6%2E22%2D6%2E22V21a%2E75%2E75%200%2001%2D1%2E5%200V4%2E81l%2D6%2E22%206%2E22a%2E75%2E75%200%2011%2D1%2E06%2D1%2E06l7%2E5%2D7%2E5z%22%20clip%2Drule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E">
5#[function_component]
6pub fn ArrowUpIcon(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" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
11 <path fill-rule="evenodd" d="M11.47 2.47a.75.75 0 011.06 0l7.5 7.5a.75.75 0 11-1.06 1.06l-6.22-6.22V21a.75.75 0 01-1.5 0V4.81l-6.22 6.22a.75.75 0 11-1.06-1.06l7.5-7.5z" clip-rule="evenodd"/>
12</svg>
13 }
14}