yew_heroicons/size_24/solid/wallet.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%20d%3D%22M2%2E273%205%2E625A4%2E483%204%2E483%200%20015%2E25%204%2E5h13%2E5c1%2E141%200%202%2E183%2E425%202%2E977%201%2E125A3%203%200%200018%2E75%203H5%2E25a3%203%200%2000%2D2%2E977%202%2E625zM2%2E273%208%2E625A4%2E483%204%2E483%200%20015%2E25%207%2E5h13%2E5c1%2E141%200%202%2E183%2E425%202%2E977%201%2E125A3%203%200%200018%2E75%206H5%2E25a3%203%200%2000%2D2%2E977%202%2E625zM5%2E25%209a3%203%200%2000%2D3%203v6a3%203%200%20003%203h13%2E5a3%203%200%20003%2D3v%2D6a3%203%200%2000%2D3%2D3H15a%2E75%2E75%200%2000%2D%2E75%2E75%202%2E25%202%2E25%200%2001%2D4%2E5%200A%2E75%2E75%200%20009%209H5%2E25z%22%2F%3E%20%3C%2Fsvg%3E">
5#[function_component]
6pub fn WalletIcon(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 d="M2.273 5.625A4.483 4.483 0 015.25 4.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0018.75 3H5.25a3 3 0 00-2.977 2.625zM2.273 8.625A4.483 4.483 0 015.25 7.5h13.5c1.141 0 2.183.425 2.977 1.125A3 3 0 0018.75 6H5.25a3 3 0 00-2.977 2.625zM5.25 9a3 3 0 00-3 3v6a3 3 0 003 3h13.5a3 3 0 003-3v-6a3 3 0 00-3-3H15a.75.75 0 00-.75.75 2.25 2.25 0 01-4.5 0A.75.75 0 009 9H5.25z"/>
12</svg>
13 }
14}