import { PhotoIcon } from '@heroicons/react/20/solid' import { useState } from 'react' export const ImgWithLoader = (props: { className: string src: string alt: string }) => { const [isLoading, setIsLoading] = useState(true) return (
{isLoading && ( )} setIsLoading(false)} alt={props.alt} />
) }