RowLoading.tsx22 lines · main
| 1 | import { Skeleton } from 'ui' |
| 2 | import { TableCell, TableRow } from 'ui/src/components/shadcn/ui/table' |
| 3 | |
| 4 | export const RowLoading = () => ( |
| 5 | <TableRow> |
| 6 | <TableCell> |
| 7 | <Skeleton className="w-40 max-w-40 h-4 rounded-full" /> |
| 8 | </TableCell> |
| 9 | <TableCell> |
| 10 | <Skeleton className="w-60 max-w-60 h-4 rounded-full" /> |
| 11 | </TableCell> |
| 12 | <TableCell> |
| 13 | <Skeleton className="max-w-32 h-4 rounded-full" /> |
| 14 | </TableCell> |
| 15 | <TableCell> |
| 16 | <Skeleton className="max-w-32 h-4 rounded-full" /> |
| 17 | </TableCell> |
| 18 | <TableCell> |
| 19 | <Skeleton className="w-4 h-4 rounded-md" /> |
| 20 | </TableCell> |
| 21 | </TableRow> |
| 22 | ) |