BlueSky & more on desktop lazurite.stormlightlabs.org/
tauri rust typescript bluesky appview atproto solid
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 385 B view raw
1import { For } from "solid-js"; 2 3export function ProfileSkeleton() { 4 return ( 5 <div class="grid gap-[0.85rem]" aria-hidden> 6 <span class="skeleton-block h-18 w-18 rounded-full" /> 7 <For each={["w-[min(16rem,80%)]", "w-[min(11rem,64%)]", "w-[min(9rem,48%)]"]}> 8 {w => <span class={`skeleton-block h-[0.85rem] ${w} rounded-full`} />} 9 </For> 10 </div> 11 ); 12}