Files
Dorod-Sky/skyvern-frontend/src/components/BadgeLoading.tsx

8 lines
141 B
TypeScript
Raw Normal View History

2024-07-30 11:17:29 -07:00
import { Skeleton } from "./ui/skeleton";
function BadgeLoading() {
return <Skeleton className="h-7 w-24" />;
}
export { BadgeLoading };