import { ReactNode } from 'react' // Children should be a shape or set of shapes with a bg color to animate over const SheenLoader = ({ children, className, }: { children: ReactNode className?: string }) => { return (
{children}
) } export default SheenLoader