omnivore/packages/web/components/elements/images/HelpfulOwlImage.tsx
2023-09-04 13:47:24 +08:00

17 lines
320 B
TypeScript

import Image from 'next/image'
type HelpfulOwlImageProps = {
width: number
height: number
}
export const HelpfulOwlImage = (props: HelpfulOwlImageProps) => {
return (
<Image
src="/static/images/helpful-owl@2x.png"
width={200}
height={200}
alt="Picture of an owl reading"
/>
)
}