QueryInsightsHealthScoreSkeleton.tsx9 lines · main
| 1 | export const QueryInsightsHealthScoreSkeleton = () => ( |
| 2 | <> |
| 3 | <div className="h-12 w-12 rounded-full bg-surface-300 animate-pulse" /> |
| 4 | <div className="flex flex-col gap-1.5"> |
| 5 | <div className="h-3 w-20 rounded-sm bg-surface-300 animate-pulse" /> |
| 6 | <div className="h-5 w-24 rounded-sm bg-surface-300 animate-pulse" /> |
| 7 | </div> |
| 8 | </> |
| 9 | ) |