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/layout/flipping-logo.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/components/molecules/layout/flipping-logo.tsx') diff --git a/src/components/molecules/layout/flipping-logo.tsx b/src/components/molecules/layout/flipping-logo.tsx index 7bb7afc..6f7645f 100644 --- a/src/components/molecules/layout/flipping-logo.tsx +++ b/src/components/molecules/layout/flipping-logo.tsx @@ -1,13 +1,13 @@ import Logo from '@components/atoms/images/logo'; import Image from 'next/image'; -import { FC } from 'react'; +import { VFC } from 'react'; import styles from './flipping-logo.module.scss'; type FlippingLogoProps = { /** - * Adds additional classes to the logo wrapper. + * Set additional classnames to the logo wrapper. */ - additionalClasses?: string; + className?: string; /** * Photo alternative text. */ @@ -27,14 +27,14 @@ type FlippingLogoProps = { * * Render a logo and a photo with a flipping effect. */ -const FlippingLogo: FC = ({ - additionalClasses, +const FlippingLogo: VFC = ({ + className = '', altText, logoTitle, photo, }) => { return ( -
+
{altText}
-- cgit v1.2.3