diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-22 18:07:26 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-22 18:08:15 +0200 |
| commit | 52c185d0f23504fc6410cf36285968eff9e7b21f (patch) | |
| tree | 3077ac11f78e9062193e5fe64a2650f246788d71 /src/components/molecules/images | |
| parent | cb6a54e54f2f013e06049b20388ca78e26201e16 (diff) | |
chore: add a Header component
Diffstat (limited to 'src/components/molecules/images')
| -rw-r--r-- | src/components/molecules/images/flipping-logo.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/molecules/images/flipping-logo.tsx b/src/components/molecules/images/flipping-logo.tsx index 0d31fa3..47e54ab 100644 --- a/src/components/molecules/images/flipping-logo.tsx +++ b/src/components/molecules/images/flipping-logo.tsx @@ -1,5 +1,5 @@ import Logo, { type LogoProps } from '@components/atoms/images/logo'; -import Image from 'next/image'; +import Image, { type ImageProps } from 'next/image'; import { FC } from 'react'; import styles from './flipping-logo.module.scss'; @@ -19,7 +19,7 @@ export type FlippingLogoProps = { /** * Photo url. */ - photo: string; + photo: ImageProps['src']; }; /** |
