Files
commerce/src/components/common/StaticImage/StaticImage.tsx
lytrankieio123 bd7cf33a51 🎨 styles: custom shape
:%s
2021-09-10 09:28:38 +07:00

16 lines
349 B
TypeScript

import React from 'react'
import s from './StaticImage.module.scss'
import Image from 'next/image'
export interface Props {
src: StaticImageData,
alt?: string,
}
const StaticImage = ({ src, alt }: Props) => {
return (
<Image src={src} alt={alt} placeholder='blur' className={s.staticImage}/>
)
}
export default StaticImage