yew_heroicons/size_24/solid/
chat_bubble_bottom_center.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%22M4%2E848%202%2E771A49%2E144%2049%2E144%200%200112%202%2E25c2%2E43%200%204%2E817%2E178%207%2E152%2E52%201%2E978%2E292%203%2E348%202%2E024%203%2E348%203%2E97v6%2E02c0%201%2E946%2D1%2E37%203%2E678%2D3%2E348%203%2E97a48%2E901%2048%2E901%200%2001%2D3%2E476%2E383%2E39%2E39%200%2000%2D%2E297%2E17l%2D2%2E755%204%2E133a%2E75%2E75%200%2001%2D1%2E248%200l%2D2%2E755%2D4%2E133a%2E39%2E39%200%2000%2D%2E297%2D%2E17%2048%2E9%2048%2E9%200%2001%2D3%2E476%2D%2E384c%2D1%2E978%2D%2E29%2D3%2E348%2D2%2E024%2D3%2E348%2D3%2E97V6%2E741c0%2D1%2E946%201%2E37%2D3%2E68%203%2E348%2D3%2E97z%22%20clip%2Drule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E">
5#[function_component]
6pub fn ChatBubbleBottomCenterIcon(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="M4.848 2.771A49.144 49.144 0 0112 2.25c2.43 0 4.817.178 7.152.52 1.978.292 3.348 2.024 3.348 3.97v6.02c0 1.946-1.37 3.678-3.348 3.97a48.901 48.901 0 01-3.476.383.39.39 0 00-.297.17l-2.755 4.133a.75.75 0 01-1.248 0l-2.755-4.133a.39.39 0 00-.297-.17 48.9 48.9 0 01-3.476-.384c-1.978-.29-3.348-2.024-3.348-3.97V6.741c0-1.946 1.37-3.68 3.348-3.97z" clip-rule="evenodd"/>
12</svg>
13  }
14}