SQLEditorLoadingSnippets.tsx 988 B

123456789101112131415161718192021222324252627282930
  1. import { Skeleton } from 'ui'
  2. const SQLEditorLoadingSnippets = () => {
  3. return (
  4. <>
  5. <div className="flex flex-row h-6 px-3 items-center gap-3">
  6. <Skeleton className="h-4 w-5" />
  7. <Skeleton className="w-40 h-4" />
  8. </div>
  9. <div className="flex flex-row h-6 px-3 items-center gap-3">
  10. <Skeleton className="h-4 w-5" />
  11. <Skeleton className="w-32 h-4" />
  12. </div>
  13. <div className="flex flex-row h-6 px-3 items-center gap-3 opacity-75">
  14. <Skeleton className="h-4 w-5" />
  15. <Skeleton className="w-20 h-4" />
  16. </div>
  17. <div className="flex flex-row h-6 px-3 items-center gap-3 opacity-50">
  18. <Skeleton className="h-4 w-5" />
  19. <Skeleton className="w-40 h-4" />
  20. </div>
  21. <div className="flex flex-row h-6 px-3 items-center gap-3 opacity-25">
  22. <Skeleton className="h-4 w-5" />
  23. <Skeleton className="w-20 h-4" />
  24. </div>
  25. </>
  26. )
  27. }
  28. export default SQLEditorLoadingSnippets