mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
17 lines
435 B
Rust
17 lines
435 B
Rust
use yew::prelude::*;
|
|
|
|
use crate::default::components::ui::skeleton::Skeleton;
|
|
|
|
#[function_component]
|
|
pub fn SkeletonCard() -> Html {
|
|
html! {
|
|
<div class="flex flex-col space-y-3">
|
|
<Skeleton class="h-[125px] w-[250px] rounded-xl" />
|
|
<div class="space-y-2">
|
|
<Skeleton class="h-4 w-[250px]" />
|
|
<Skeleton class="h-4 w-[200px]" />
|
|
</div>
|
|
</div>
|
|
}
|
|
}
|