import { Skeleton } from '@admin/components/ui/skeleton' const ICON_SKELETON_KEYS = Array.from({ length: 40 }, (_, index) => `icon-skeleton-${index}`) export function IconsColumnSkeleton() { return (
{ICON_SKELETON_KEYS.map((key) => ( ))}
) }