From a5df28fad0dae266a857ae110c43b3cb8b23c996 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 8 Apr 2022 19:41:40 +0200 Subject: refactor: use a consistent classname prop and avoid children prop I was using the FunctionComponent type for some component that do not use children. So I change the type to VoidFunctionComponent to avoid mistakes. I also rename all the "classes" or "additionalClasses" props to "className" to keep consistency between each components. --- src/components/molecules/images/responsive-image.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/molecules/images/responsive-image.tsx') diff --git a/src/components/molecules/images/responsive-image.tsx b/src/components/molecules/images/responsive-image.tsx index db2f5ab..9f96f18 100644 --- a/src/components/molecules/images/responsive-image.tsx +++ b/src/components/molecules/images/responsive-image.tsx @@ -1,6 +1,6 @@ import Link from '@components/atoms/links/link'; import Image, { ImageProps } from 'next/image'; -import { FC } from 'react'; +import { VFC } from 'react'; import styles from './responsive-image.module.scss'; type ResponsiveImageProps = Omit & { @@ -31,7 +31,7 @@ type ResponsiveImageProps = Omit & { * * Render a responsive image wrapped in a figure element. */ -const ResponsiveImage: FC = ({ +const ResponsiveImage: VFC = ({ alt, caption, layout, @@ -42,7 +42,7 @@ const ResponsiveImage: FC = ({ return (
{target ? ( - + {alt} {caption && (
{caption}
-- cgit v1.2.3