import React from 'react'; import { SkeletonListItem } from '../ListItem/SkeletonListItem'; import { uuid } from '../../Utils/utils'; import clsx from 'clsx'; export type SkeletonListProps = { itemCount: number; className?: string; ariaLabel?: string; }; export const SkeletonList = ({ itemCount = 8, className, ariaLabel }: SkeletonListProps) => (