import React from 'react'; /* fix: added ...props and broad type to allow key and other standard attributes */ export const Skeleton = ({ className = "", ...props }: { className?: string, [key: string]: any }) => (
); export const CardSkeleton = () => (
); export const TableRowSkeleton = () => (
);