import { useTheme } from 'next-themes' 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 }) => { const { theme } = useTheme() return (
{children}
) } export default SheenLoader