summary refs log tree commit diff stats
path: root/src/components/icon_p.rs
blob: 372e2803fd1b87120208b232730e7bb20ff2b1fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use leptos::{
    IntoView, component,
    prelude::{ClassAttribute, ElementChild, Signal},
    view,
};
use leptos_icons::Icon;

#[component]
pub fn IconP(#[prop(into)] icon: Signal<icondata_core::Icon>, text: &'static str) -> impl IntoView {
    view! {
        <div class="flex justify-evenly items-center">
            <div class="mr-1">
                <Icon icon=icon />
            </div>
            <p>{text}</p>
        </div>
    }
}