import Image from 'next/image'; import { CSSProperties } from 'react'; interface IProps { height?: CSSProperties['height']; } const Loader = ({ height = 'auto' }: IProps) => { return (