mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
17 lines
320 B
TypeScript
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"
|
|
/>
|
|
)
|
|
}
|