8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
import { Skeleton } from "./ui/skeleton";
|
|
|
|
function BadgeLoading() {
|
|
return <Skeleton className="h-7 w-24" />;
|
|
}
|
|
|
|
export { BadgeLoading };
|