import { FileText, Settings } from 'lucide-react' import { Button } from 'shared/ui/button' import { Label } from 'shared/ui/label' import { StandardsConfig } from './definition' interface StandardsPreviewProps { config: StandardsConfig } const StandardSkeleton = ({ index }: { index: number }) => (
{index + 1}
) export const StandardsPreview: React.FC = ({ config, }) => { const skeletonCount = config.maxItems || 7 return (
{Array.from({ length: skeletonCount }, (_, index) => ( ))}
) }